fixture裏面有個scope參數能夠控制fixture的做用範圍:session > module > class > functionhtml
fixture(scope="function", params=None, autouse=False, ids=None, name=None): """使用裝飾器標記fixture的功能 能夠使用此裝飾器(帶或不帶參數)來定義fixture功能。 fixture功能的名稱能夠在之後使用 引用它會在運行測試以前調用它:test模塊或類能夠使用pytest.mark.usefixtures(fixturename標記。 測試功能能夠直接使用fixture名稱做爲輸入參數,在這種狀況下,夾具實例從fixture返回功能將被注入。 :arg scope: scope 有四個級別參數 "function" (默認), "class", "module" or "session". :arg params: 一個可選的參數列表,它將致使多個參數調用fixture功能和全部測試使用它 :arg autouse: 若是爲True,則爲全部測試激活fixture func 能夠看到它。 若是爲False(默認值)則顯式須要參考來激活fixture :arg ids: 每一個字符串id的列表,每一個字符串對應於params 這樣他們就是測試ID的一部分。 若是沒有提供ID它們將從params自動生成 :arg name: fixture的名稱。 這默認爲裝飾函數的名稱。 若是fixture在定義它的同一模塊中使用,夾具的功能名稱將被請求夾具的功能arg遮蔽; 解決這個問題的一種方法是將裝飾函數命名 「fixture_ <fixturename>」而後使用」@ pytest.fixture(name ='<fixturename>')「」。
Scope | Desc |
---|---|
function | 每一個test都運行,默認是function的scope |
class | 每一個class的全部test只運行一次 |
module | 每一個module的全部test只運行一次 |
session | 每一個session只運行一次 |
@pytest.fixture()若是不寫參數,默認就是scope="function",它的做用範圍是每一個測試用例來以前運行一次,銷燬代碼在測試用例運行以後運行。python
import pytest @pytest.fixture() def first(): print("\n獲取用戶名") a = "Hero" return a @pytest.fixture(scope="function") def second(): print("\n獲取密碼") b = "123456" return b def test_1(first): """用例傳fixture""" print("測試帳號:%s" % first) assert first == "Hero" def test_2(second): """用例傳fixture""" print("測試密碼:%s" % second) assert second == "123456"
運行結果:session
╰ pytest -v -s ./test_data.py ================= test session starts ================= platform darwin -- Python 3.7.4, pytest-4.4.0, py-1.8.0, pluggy-0.13.0 -- /Users/zhouwanghua/Code/Leyan/python/robocop/bin/python cachedir: .pytest_cache metadata: {'Python': '3.7.4', 'Platform': 'Darwin-18.6.0-x86_64-i386-64bit', 'Packages': {'pytest': '4.4.0', 'py': '1.8.0', 'pluggy': '0.13.0'}, 'Plugins': {'bdd': '3.1.0', 'html': '1.20.0', 'metadata': '1.8.0'}} rootdir: /Users/zhouwanghua/Code/Leyan/robocop, inifile: pytest.ini plugins: bdd-3.1.0, html-1.20.0, metadata-1.8.0 collected 2 items test_data.py::test_1 獲取用戶名 測試帳號:Hero PASSED test_data.py::test_2 獲取密碼 測試密碼:123456 PASSED ================= 2 passed in 0.03 seconds =================
用例放到類裏面也同樣函數
import pytest @pytest.fixture() def first(): print("\n獲取用戶名") a = "yoyo" return a @pytest.fixture(scope="function") def sencond(): print("\n獲取密碼") b = "123456" return b class TestCase(): def test_1(self, first): '''用例傳fixture''' print("測試帳號:%s" % first) assert first == "yoyo" def test_2(self, sencond): '''用例傳fixture''' print("測試密碼:%s" % sencond) assert sencond == "123456" if __name__ == "__main__": pytest.main(["-s", "test_fixture7.py"])
fixture爲class級別的時候,若是一個class裏面有多個用例,都調用了此fixture,那麼此fixture只在該class裏全部用例開始前執行一次測試
import pytest @pytest.fixture(scope="class") def first(): print("\n獲取用戶名,scope爲class級別只運行一次") a = "Hero" return a class TestCase: def test_1(self, first): """用例傳fixture""" print("測試帳號:%s" % first) assert first == "Hero" def test_2(self, first): """用例傳fixture""" print("測試帳號:%s" % first) assert first == "Hero"
運行結果:code
╰ pytest -v -s ./test_data.py ================= test session starts ================= platform darwin -- Python 3.7.4, pytest-4.4.0, py-1.8.0, pluggy-0.13.0 -- /Users/zhouwanghua/Code/Leyan/python/robocop/bin/python cachedir: .pytest_cache metadata: {'Python': '3.7.4', 'Platform': 'Darwin-18.6.0-x86_64-i386-64bit', 'Packages': {'pytest': '4.4.0', 'py': '1.8.0', 'pluggy': '0.13.0'}, 'Plugins': {'bdd': '3.1.0', 'html': '1.20.0', 'metadata': '1.8.0'}} rootdir: /Users/zhouwanghua/Code/Leyan/robocop, inifile: pytest.ini plugins: bdd-3.1.0, html-1.20.0, metadata-1.8.0 collected 2 items test_data.py::TestCase::test_1 獲取用戶名,scope爲class級別只運行一次 測試帳號:Hero PASSED test_data.py::TestCase::test_2 測試帳號:Hero first:Hero PASSED ================= 2 passed in 0.03 seconds =================
fixture爲module級別時,在當前.py腳本里面全部用例開始前只執行一次orm
import pytest @pytest.fixture(scope="module") def first(): print("\n獲取用戶名,scope爲module級別當前.py模塊只運行一次") a = "Hero" return a def test_1(first): """用例傳fixture""" print("測試帳號:%s" % first) assert first == "Hero" class TestCase: def test_2(self, first): """用例傳fixture""" print("測試帳號:%s" % first) assert first == "Hero"
運行結果:htm
╰ pytest -v -s ./test_data.py ================= test session starts ================= platform darwin -- Python 3.7.4, pytest-4.4.0, py-1.8.0, pluggy-0.13.0 -- /Users/zhouwanghua/Code/Leyan/python/robocop/bin/python cachedir: .pytest_cache metadata: {'Python': '3.7.4', 'Platform': 'Darwin-18.6.0-x86_64-i386-64bit', 'Packages': {'pytest': '4.4.0', 'py': '1.8.0', 'pluggy': '0.13.0'}, 'Plugins': {'bdd': '3.1.0', 'html': '1.20.0', 'metadata': '1.8.0'}} rootdir: /Users/zhouwanghua/Code/Leyan/robocop, inifile: pytest.ini plugins: bdd-3.1.0, html-1.20.0, metadata-1.8.0 collected 2 items test_data.py::test_1 獲取用戶名,scope爲module級別當前.py模塊只運行一次 測試帳號:Hero PASSED test_data.py::TestCase::test_2 測試帳號:Hero PASSED ================= 2 passed in 0.04 seconds =================
fixture爲session級別是能夠跨.py模塊調用的,也就是當咱們有多個.py文件的用例時候,若是多個用例只需調用一次fixture,那就能夠設置爲scope="session",而且寫到conftest.py文件裏 conftest.py文件名稱是固定的,pytest會自動識別該文件。放到工程的根目錄下,就能夠全局調用了,若是放到某個package包下,那就只在該package內有效字符串
conftest.py import pytest @pytest.fixture(scope="session") def first(): print("\n獲取用戶名,scope爲session級別多個.py模塊只運行一次") a = "Hero" return a
test_fixture11.py和test_fixture12.py用例腳本cmd
# test_fixture11.py import pytest def test_1(first): '''用例傳fixture''' print("測試帳號:%s" % first) assert first == "Hero" # test_fixture12.py import pytest def test_2(first): '''用例傳fixture''' print("測試帳號:%s" % first) assert first == "Hero"
若是想同時運行test_fixture11.py和test_fixture12.py,在cmd執行
pytest -s test_fixture11.py test_fixture12.py
============================= test session starts ============================= platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0 rootdir: D:\YOYO\fixt, inifile: plugins: rerunfailures-4.1, metadata-1.7.0, html-1.19.0, allure-adaptor-1.7.10 collected 2 items test_fixture11.py . [ 50%] test_fixture12.py . [100%] ========================== 2 passed in 0.03 seconds =========================== D:\YOYO\fixt>pytest -s test_fixture11.py test_fixture12.py ============================= test session starts ============================= platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0 rootdir: D:\YOYO\fixt, inifile: plugins: rerunfailures-4.1, metadata-1.7.0, html-1.19.0, allure-adaptor-1.7.10 collected 2 items test_fixture11.py 獲取用戶名,scope爲session級別多個.py模塊只運行一次 測試帳號:Hero . test_fixture12.py 測試帳號:Hero . ========================== 2 passed in 0.03 seconds ===========================