fixture做用範圍

ixture裏面有個scope參數能夠控制fixture的做用範圍:session > module > class > function

fixture(scope="function", params=None, autouse=False, ids=None, name=None):
    """使用裝飾器標記fixture的功能
     ** 做者:上海-悠悠 QQ交流羣:588402570**
     可使用此裝飾器(帶或不帶參數)來定義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>')「」。
  • function 每個函數或方法都會調用
  • class 每個類調用一次,一個類能夠有多個方法
  • module,每個.py文件調用一次,該文件內又有多個function和class
  • session 是多個文件調用一次,能夠跨.py文件調用,每一個.py文件就是module

scope="function"

@pytest.fixture()若是不寫參數,默認就是scope="function",它的做用範圍是每一個測試用例來以前運行一次,銷燬代碼在測試用例運行以後運行。html

import pytest

@pytest.fixture()
def first():
    print("\n獲取用戶名")
    a = "yoyo"
    return a

@pytest.fixture(scope="function")
def sencond():
    print("\n獲取密碼")
    b = "123456"
    return b

def test_1(first):
    '''用例傳fixture'''
    print("測試帳號:%s" %first)
    assert first == "yoyo"

def test_2(sencond):
    '''用例傳fixture'''
    print("測試密碼:%s" %sencond)
    assert sencond == "123456"

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

運行結果:session

============================= 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_fixture7.py 
獲取用戶名
測試帳號:yoyo
.
獲取密碼
測試密碼:123456
.

========================== 2 passed in 0.01 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"])

scope="class"

fixture爲class級別的時候,若是一個class裏面有多個用例,都調用了此fixture,那麼此fixture只在該class裏全部用例開始前執行一次測試

import pytest

@pytest.fixture(scope="class")
def first():
    print("\n獲取用戶名,scope爲class級別只運行一次")
    a = "yoyo"
    return a

class TestCase():
    def test_1(self, first):
        '''用例傳fixture'''
        print("測試帳號:%s" % first)
        assert first == "yoyo"

    def test_2(self, first):
        '''用例傳fixture'''
        print("測試帳號:%s" % first)
        assert first == "yoyo"

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

運行結果:spa

============================= 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_fixture9.py 
獲取用戶名,scope爲class級別只運行一次
測試帳號:yoyo
.測試帳號:yoyo
.

========================== 2 passed in 0.13 seconds ===========================

scope="module"

fixture爲module級別時,在當前.py腳本里面全部用例開始前只執行一次code

import pytest

@pytest.fixture(scope="module")
def first():
    print("\n獲取用戶名,scope爲module級別當前.py模塊只運行一次")
    a = "yoyo"
    return a


def test_1(first):
    '''用例傳fixture'''
    print("測試帳號:%s" % first)
    assert first == "yoyo"

class TestCase():
    def test_2(self, first):
        '''用例傳fixture'''
        print("測試帳號:%s" % first)
        assert first == "yoyo"

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

運行結果orm

============================= 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_fixture10.py 
獲取用戶名,scope爲module級別當前.py模塊只運行一次
測試帳號:yoyo
.測試帳號:yoyo
.

========================== 2 passed in 0.14 seconds ===========================

scope="session"

fixture爲session級別是能夠跨.py模塊調用的,也就是當咱們有多個.py文件的用例時候,若是多個用例只需調用一次fixture,那就能夠設置爲scope="session",而且寫到conftest.py文件裏htm

conftest.py文件名稱是固定的,pytest會自動識別該文件。放到工程的根目錄下,就能夠全局調用了,若是放到某個package包下,那就只在該package內有效blog

conftest.py

import pytest

@pytest.fixture(scope="session")
def first():
    print("\n獲取用戶名,scope爲session級別多個.py模塊只運行一次")
    a = "yoyo"
    return a

test_fixture11.py和test_fixture12.py用例腳本字符串

# test_fixture11.py

import pytest
def test_1(first):
    '''用例傳fixture'''
    print("測試帳號:%s" % first)
    assert first == "yoyo"

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


# test_fixture12.py
import pytest

def test_2(first):
    '''用例傳fixture'''
    print("測試帳號:%s" % first)
    assert first == "yoyo"

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

若是想同時運行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模塊只運行一次
測試帳號:yoyo
.
test_fixture12.py 測試帳號:yoyo
.

========================== 2 passed in 0.03 seconds ===========================
相關文章
相關標籤/搜索