學習-Pytest(三)setup/teardown

1. 用例運行級別

  • 模塊級(setup_module/teardown_module)開始於模塊始末,全局的瀏覽器

  • 函數級(setup_function/teardown_function)只對函數用例生效(不在類中)函數

  • 類級(setup_class/teardown_class)只在類中先後運行一次(在類中)this

  • 方法級(setup_method/teardown_method)開始於方法始末(在類中)spa

  • 類裏面的(setup/teardown)運行在調用方法的先後code

2. 函數式

2.1 setup_function/teardown_function (每一個用例開始和結束時調用一次)

# test_fixt.py

# coding:utf-8
import pytest
# 函數式

def setup_function():
    print("setup_function:每一個用例開始前都會執行")

def teardown_function():
    print("teardown_function:每一個用例結束後都會執行")

def test_one():
    print("正在執行----test_one")
    x = "this"
    assert 'h' in x

def test_two():
    print("正在執行----test_two")
    x = "hello"
    assert hasattr(x, 'check')

def test_three():
    print("正在執行----test_three")
    a = "hello"
    b = "hello world"
    assert a in b

if __name__ == "__main__":
    pytest.main(["-s", "test_fixt.py"])

運行結果blog

2.2 setup_module/teardown_module(全部用例開始和結束時調用一次)

# test_fixt.py

# coding:utf-8
import pytest
# 函數式

def setup_module():
    print("setup_module:整個.py模塊只執行一次")
    print("好比:全部用例開始前只打開一次瀏覽器")

def teardown_module():
    print("teardown_module:整個.py模塊只執行一次")
    print("好比:全部用例結束只最後關閉瀏覽器")

def setup_function():
    print("setup_function:每一個用例開始前都會執行")

def teardown_function():
    print("teardown_function:每一個用例結束前都會執行")

def test_one():
    print("正在執行----test_one")
    x = "this"
    assert 'h' in x

def test_two():
    print("正在執行----test_two")
    x = "hello"
    assert hasattr(x, 'check')

def test_three():
    print("正在執行----test_three")
    a = "hello"
    b = "hello world"
    assert a in b

if __name__ == "__main__":
    pytest.main(["-s", "test_fixt.py"])

運行結果three

 

2.3 類和方法

1.setup/teardown和unittest裏面的setup/teardown是同樣的功能,setup_class和teardown_class等價於unittest裏面的setupClass和teardownClassutf-8

import pytest
# 類和方法
class TestCase():

    def setup(self):
        print("setup: 每一個用例開始前執行")

    def teardown(self):
        print("teardown: 每一個用例結束後執行")

    def setup_class(self):
        print("setup_class:全部用例執行以前")

    def teardown_class(self):
        print("teardown_class:全部用例結束後執行")

    def setup_method(self):
        print("setup_method:  每一個用例開始前執行")

    def teardown_method(self):
        print("teardown_method:  每一個用例結束後執行")

    def test_one(self):
        print("正在執行----test_one")
        x = "this"
        assert 'h' in x

    def test_two(self):
        print("正在執行----test_two")
        x = "hello"
        assert hasattr(x, 'check')

    def test_three(self):
        print("正在執行----test_three")
        a = "hello"
        b = "hello world"
        assert a in b

if __name__ == "__main__":
    pytest.main(["-s", "test_fixtclass.py"])

運行結果it

備註:這裏setup_method和teardown_method的功能和setup/teardown功能是同樣的,通常兩者用其中一個便可io

2.4 函數和類混合

1.若是一個.py的文件裏面既有函數用例又有類和方法用例,運行順序又是怎樣的呢?

# coding:utf-8
import pytest
# 類和方法
def setup_module():
    print("setup_module:整個.py模塊只執行一次")
    print("好比:全部用例開始前只打開一次瀏覽器")

def teardown_module():
    print("teardown_module:整個.py模塊只執行一次")
    print("好比:全部用例結束只最後關閉瀏覽器")

def setup_function():
    print("setup_function:每一個用例開始前都會執行")

def teardown_function():
    print("teardown_function:每一個用例結束前都會執行")

def test_one():
    print("正在執行----test_one")
    x = "this"
    assert 'h' in x

def test_two():
    print("正在執行----test_two")
    x = "hello"
    assert hasattr(x, 'check')

class TestCase():

    def setup_class(self):
        print("setup_class:全部用例執行以前")

    def teardown_class(self):
        print("teardown_class:全部用例執行以前")

    def test_three(self):
        print("正在執行----test_three")
        x = "this"
        assert 'h' in x

    def test_four(self):
        print("正在執行----test_four")
        x = "hello"
        assert hasattr(x, 'check')

if __name__ == "__main__":
    pytest.main(["-s", "test_fixtclass.py"])

運行結果

2.從運行結果看出,setup_module/teardown_module的優先級是最大的,而後函數裏面用到的setup_function/teardown_function與類裏面的setup_class/teardown_class互不干涉

相關文章
相關標籤/搜索