溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

pytest中fixtures調(diào)用fixtures及fixture復(fù)用性實例分析

發(fā)布時間:2022-06-01 15:13:56 來源:億速云 閱讀:133 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“pytest中fixtures調(diào)用fixtures及fixture復(fù)用性實例分析”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

fixtures調(diào)用其他fixtures及fixture復(fù)用性 

pytest最大的優(yōu)點之一就是它非常靈活。

它可以將復(fù)雜的測試需求簡化為更簡單和有組織的函數(shù),然后這些函數(shù)可以根據(jù)自身的需求去依賴別的函數(shù)。

fixtures可以調(diào)用別的fixtures正是靈活性的體現(xiàn)之一。

一、Fixtures調(diào)用別的Fixtures

直接看一個簡單示例:

import pytest
# Arrange
@pytest.fixture
def first_entry():
    # 這是一個fixture函數(shù),返回值:"a"
    return "a"
# Arrange
@pytest.fixture
def order(first_entry):
    # 這是另一個fixture函數(shù),請求了上一個fixture函數(shù)first_entry(),
    # 并且把first_entry()的返回值,放進了列表[]里,最后返回
    return [first_entry]
def test_string(order):
    # Act
    # 測試函數(shù)中請求了第二個fixture函數(shù)order,可以拿到返回的[]
    order.append("b")
    # Assert
    assert order == ["a", "b"]

可以看到,pytest中的某個fixture請求別的fixture,就像測試函數(shù)請求fixture一樣,所有的請求規(guī)則都適用。

同樣,如果這些事情換我們自己來做的話,應(yīng)該是下面這樣子:

def first_entry():
    return "a"
def order(first_entry):
    return [first_entry]
def test_string(order):
    # Act
    order.append("b")
    # Assert
    assert order == ["a", "b"]
entry = first_entry()
the_list = order(first_entry=entry)
test_string(order=the_list)

二、Fixtures的復(fù)用性

pytest中的fixtures還可以讓我們像使用普通函數(shù)一樣,能夠定義反復(fù)重用的通用setup步驟。

兩個不同的測試函數(shù)可以請求相同的fixture,每個測試函數(shù)都會獲得該fixture的各自結(jié)果。

這樣的優(yōu)點就是,確保不同的測試函數(shù)之間不會相互影響。

我們可以使用這種機制來確保每個測試函數(shù)都獲得各自新的、干凈的、一致的數(shù)據(jù)。

import pytest
# Arrange
@pytest.fixture
def first_entry():
    return "a"
# Arrange
@pytest.fixture
def order(first_entry):
    return [first_entry]
def test_string(order):
    # Act
    order.append("b")
    # Assert
    assert order == ["a", "b"]
def test_int(order):
    # Act
    order.append(2)
    # Assert
    assert order == ["a", 2]

從代碼可以看出,fixture函數(shù)order雖然先后被兩個測試函數(shù)調(diào)用,但是每次被調(diào)用給出的結(jié)果都是一樣的。并不會因為在測試函數(shù)test_string中,進行了order.append("b")后,就影響了order在測試函數(shù)test_int中的返回值。

同樣,這些事情換成我們自己來做,那就是這樣的:

def first_entry():
    return "a"
def order(first_entry):
    return [first_entry]
def test_string(order):
    # Act
    order.append("b")
    # Assert
    assert order == ["a", "b"]
def test_int(order):
    # Act
    order.append(2)
    # Assert
    assert order == ["a", 2]
entry = first_entry()
the_list = order(first_entry=entry)
test_string(order=the_list)
entry = first_entry()
the_list = order(first_entry=entry)
test_int(order=the_list)

接下來,繼續(xù)跟著官方文檔解讀fixtures的特點:一次請求多個fixtures、fixtures被多次請求。

“pytest中fixtures調(diào)用fixtures及fixture復(fù)用性實例分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI