Pytest學習(四) - fixture的使用


Pytest學習(四) - fixture的使用


前言javascript

寫這篇文章,總體仍是比較坎坷的,我發現有知識斷層,理解再整理寫出來,還真的有些難。html

做爲java黨硬磕Python,雖然對我而言是常事了(由於我比較愛折騰,哈哈),但這並不能影響個人熱情。前端

執念這東西,有時真的很強大,回想下,你有多久沒有特別想堅持學同樣技能或者看一本書了呢vue

以前就有不少粉絲和我說,六哥pytest很簡單,都是入門的東西不愛看,網上有不少教程,能不能寫點乾貨呀,但我爲何仍是要堅持寫呢?java

簡單呀,由於我想學,我以前都是拿來改改直接用,「哪裏不會點哪裏」,箇中細節處理不是很懂,想好好消化下,再整理寫出來。python

fixture功能

  • 傳入測試中的數據集
  • 配置測試前系統的數據準備,即初始化數據
  • 爲批量測試提供數據源

fixture能夠當作參數傳入

如何使用

在函數上加個裝飾器@pytest.fixture(),我的理解爲,就是java的註解在方法上標記下,依賴注入就能用了。android

fixture是有返回值,沒有返回值默認爲None。用例調用fixture返回值時,把fixture的函數名當作變量用就能夠了。瀏覽器

示例代碼以下:微信

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 18:23 # @Author  : longrong.lang # @FileName: test_fixture_AsParam.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang import pytest @pytest.fixture() def param():     return "fixture當作參數" def test_Asparam(param):     print('param : '+param)

輸出結果:


多個fixture的使用

示例代碼以下:網絡

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 18:43 # @Author  : longrong.lang # @FileName: test_Multiplefixture.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' 多個fixture使用狀況 ''' import pytest @pytest.fixture() def username():     return '軟件測試君' @pytest.fixture() def password():     return '123456' def test_login(username, password):     print('\n輸入用戶名:'+username)     print('輸入密碼:'+password)     print('登陸成功,傳入多個fixture參數成功')

輸出結果:



fixture的參數使用

示例代碼以下:

@pytest.fixture(scope="function", params=None, autouse=False, ids=None, name=None) def test():     print("fixture初始化參數列表")

參數說明:

  • scope:即做用域,function"(默認),"class","module","session"四個
  • params:可選參數列表,它將致使多個參數調用fixture函數和全部測試使用它。
  • autouse:默認:False,須要用例手動調用該fixture;若是是True,全部做用域內的測試用例都會自動調用該fixture
  • ids:params測試ID的一部分。若是沒有將從params自動生成.
  • name:默認:裝飾器的名稱,同一模塊的fixture相互調用建議寫個不一樣的name。
  • session的做用域:是整個測試會話,即開始執行pytest到結束測試

scope參數做用範圍

控制fixture的做用範圍:session>module>class>function

  • function:每個函數或方法都會調用
  • class:每個類調用一次,一個類中能夠有多個方法
  • module:每個.py文件調用一次,該文件內又有多個function和class
  • session:是多個文件調用一次,能夠跨.py文件調用,每一個.py文件就是module

scope四個參數的範圍

一、scope="function

@pytest.fixture()若是不寫參數,參數就是scope="function",它的做用範圍是每一個測試用例執行以前運行一次,銷燬代碼在測試用例以後運行。在類中的調用也是同樣的,示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:05 # @Author  : longrong.lang # @FileName: test_fixture_scopeFunction.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' scope="function"示例 ''' import pytest # 默認不填寫 @pytest.fixture() def test1():     print('\n默認不填寫參數') # 寫入默認參數 @pytest.fixture(scope='function') def test2():     print('\n寫入默認參數function') def test_defaultScope1(test1):     print('test1被調用') def test_defaultScope2(test2):     print('test2被調用') class Testclass(object):     def test_defaultScope2(self, test2):         print('\ntest2,被調用,無返回值時,默認爲None')         assert test2 == None if __name__ == '__main__':     pytest.main(["-q", "test_fixture_scopeFunction.py"])

輸出結果:


二、scope="class"

fixture爲class級別的時候,若是一個class裏面有多個用例,都調用了此fixture,那麼此fixture只在此class裏全部用例開始前執行一次。示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:15 # @Author  : longrong.lang # @FileName: test_fixture_scopeClass.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' scope="class"示例 ''' import pytest @pytest.fixture(scope='class') def data():     # 這是測試數據     print('這是個人數據源,優先準備着哈')     return [1, 2, 3, 4, 5] class TestClass(object):     def test1(self, data):         # self能夠理解爲它本身的,英譯漢我就是這麼學的哈哈         print('\n輸出個人數據源:' + str(data)) if __name__ == '__main__':     pytest.main(["-q", "test_fixture_scopeClass.py"])

輸出結果:


三、scope="module"

fixture爲module時,在當前.py腳本里面全部用例開始前只執行一次。示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:27 # @Author  : longrong.lang # @FileName: test_scopeModule.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture爲module示例 ''' import pytest @pytest.fixture(scope='module') def data():     return '\nscope爲module' def test1(data):     print(data) class TestClass(object):     def text2(self, data):         print('我在類中了哦,' + data) if __name__ == '__main__':     pytest.main(["-q", "test_scopeModule.py"])

輸出結果:

四、scope="session"

fixture爲session,容許跨.py模塊調用,經過conftest.py 共享fixture

也就是當咱們有多個.py文件的用例的時候,若是多個用例只需調用一次fixture也是能夠實現的。

必須以conftest.py命名,纔會被pytest自動識別該文件。放到項目的根目錄下就能夠全局調用了,若是放到某個package下,那就在該package內有效。

文件目錄結構以下:

建立公共數據,命名爲conftest.py,示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:37 # @Author  : longrong.lang # @FileName: conftest.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang import pytest @pytest.fixture(scope='session') def commonData():     str = ' 經過conftest.py 共享fixture'     print('獲取到%s' % str)     return str

建立測試腳本test_scope1.py,示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:45 # @Author  : longrong.lang # @FileName: test_scope1.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang import pytest def testScope1(commonData):     print(commonData)     assert commonData == ' 經過conftest.py 共享fixture' if __name__ == '__main__':     pytest.main(["-q", "test_scope1.py"])

建立測試腳本test_scope2.py,示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 19:45 # @Author  : longrong.lang # @FileName: test_scope1.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang import pytest def testScope2(commonData):     print(commonData)     assert commonData == ' 經過conftest.py 共享fixture' if __name__ == '__main__':     pytest.main(["-q", "test_scope2.py"])

而後同時執行兩個文件,cmd到腳本所在目錄,輸入命令

pytest -s test_scope2.py test_scope1.py

輸出結果:

知識點:

  • 一個工程下能夠有多個conftest.py的文件,在工程根目錄下設置的conftest文件起到全局做用。
  • 在不一樣子目錄下也能夠放conftest.py的文件,做用範圍只能在改層級以及如下目錄生效。
  • conftest是不能跨模塊調用的。

fixture的調用

  • 將fixture名做爲測試用例函數的輸入參數
  • 測試用例加上裝飾器:@pytest.mark.usefixtures(fixture_name)
  • fixture設置autouse=True

示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 20:10 # @Author  : longrong.lang # @FileName: test_fixtureCall.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture調用示例 ''' import pytest # 調用方式一 @pytest.fixture def login1():     print('第一種調用') # 傳login def test_case1(login1):     print("\n測試用例1") # 不傳login def test_case2():     print("\n測試用例2") # 調用方式二 @pytest.fixture def login2():     print("第二種調用") @pytest.mark.usefixtures("login2", "login1") def test_case3():     print("\n測試用例3") # 調用方式三 @pytest.fixture(autouse=True) def login3():     print("\n第三種調用") # 不是test開頭,加了裝飾器也不會執行fixture @pytest.mark.usefixtures("login2") def loginss():     print(123) if __name__ == '__main__':     pytest.main(["-q", "test_fixtureCall.py"])

輸出結果:

小結:

  • 在類聲明上面加 @pytest.mark.usefixtures() ,表明這個類裏面全部測試用例都會調用該fixture
  • 能夠疊加多個 @pytest.mark.usefixtures() ,先執行的放底層,後執行的放上層
  • 能夠傳多個fixture參數,先執行的放前面,後執行的放後面
  • 若是fixture有返回值,用 @pytest.mark.usefixtures() 是沒法獲取到返回值的,必須用傳參的方式(參考方式一)
  • 不是test開頭,加了裝飾器也不會執行fixture

fixture依賴其餘fixture的調用

添加了 @pytest.fixture ,若是fixture還想依賴其餘fixture,須要用函數傳參的方式,不能用 @pytest.mark.usefixtures() 的方式,不然會不生效。

示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 20:23 # @Author  : longrong.lang # @FileName: test_fixtureRelyCall.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture依賴其餘fixture的調用示例 ''' import pytest @pytest.fixture(scope='session') # 打開瀏覽器 def openBrowser():     print('\n打開Chrome瀏覽器') # @pytest.mark.usefixtures('openBrowser')這麼寫是不行的哦,確定很差使 @pytest.fixture() # 輸入帳號密碼 def loginAction(openBrowser):     print('\n輸入帳號密碼') #  登陸過程 def test_login(loginAction):     print('\n點擊登陸進入系統') if __name__ == '__main__':     pytest.main(["-q", "test_fixtureRelyCall.py"])

輸出結果:

fixture的params

@pytest.fixture有一個params參數,接受一個列表,列表中每一個數據均可以做爲用例的輸入。也就說有多少數據,就會造成多少用例,具體示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 20:30 # @Author  : longrong.lang # @FileName: test_fixtureParams.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture的params示例 ''' import pytest seq=[1,2] @pytest.fixture(params=seq) def params(request):     # request用來接收param列表數據     return request.param def test_params(params):     print(params)     assert 1 == params

輸出結果:

fixture之yield實現teardown

fixture裏面的teardown,能夠用yield來喚醒teardown的執行,示例代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 20:44 # @Author  : longrong.lang # @FileName: test_fixtrueYield.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture之yield示例 ''' # !/usr/bin/env python # -*- coding: utf-8 -*- import pytest @pytest.fixture(scope='module') def open():     print("打開瀏覽器!!!")     yield     print('關閉瀏覽器!!!') def test01():     print("\n我是第一個用例") def test02(open):     print("\n我是第二個用例") if __name__ == '__main__':     pytest.main(["-q", "test_fixtrueYield.py"])

輸出結果:

yield遇到異常

還在剛纔的代碼中修改,將test01函數中添加異常,具體代碼以下:

# -*- coding: utf-8 -*- # @Time    : 2020/10/24 20:44 # @Author  : longrong.lang # @FileName: test_fixtrueYield.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' fixture之yield示例 ''' # !/usr/bin/env python # -*- coding: utf-8 -*- import pytest @pytest.fixture(scope='module') def open():     print("打開瀏覽器!!!")     yield     print('關閉瀏覽器!!!') def test01():     print("\n我是第一個用例")     # 若是第一個用例異常了,不影響其餘的用例執行     raise Exception #此處異常 def test02(open):     print("\n我是第二個用例") if __name__ == '__main__':     pytest.main(["-q", "test_fixtrueYield.py"])

輸出結果:

小結

  • 若是yield前面的代碼,即setup部分已經拋出異常了,則不會執行yield後面的teardown內容
  • 若是測試用例拋出異常,yield後面的teardown內容仍是會正常執行

addfinalizer終結函數(不太熟悉)

@pytest.fixture(scope="module") def test_addfinalizer(request):     # 前置操做setup     print("==再次打開瀏覽器==")     test = "test_addfinalizer"     def fin():         # 後置操做teardown         print("==再次關閉瀏覽器==")     request.addfinalizer(fin)     # 返回前置操做的變量     return test def test_anthor(test_addfinalizer):     print("==最新用例==", test_addfinalizer)

小結:

  • 若是 request.addfinalizer() 前面的代碼,即setup部分已經拋出異常了,則不會執行 request.addfinalizer() 的teardown內容(和yield類似,應該是最近新版本改爲一致了)
  • 能夠聲明多個終結函數並調用

本文分享自微信公衆號 - 軟件測試君(backlight2018),做者:糖小幽

原文出處及轉載信息見文內詳細說明,若有侵權,請聯繫 yunjia_community@tencent.com 刪除。

原始發表時間:2020-10-24

本文參與騰訊雲自媒體分享計劃,歡迎正在閱讀的你也加入,一塊兒分享。

展開閱讀全文 舉報點贊 3分享

我來講兩句

0 條評論 登陸 後參與評論

相關文章

  • 使用IDEA寫Python之pytest環境搭建及第一個程序編寫

    點擊File->Settings...->Plugins,點擊marketplace選項卡,在裏面搜索python,以下圖所示:

    軟件測試君
  • Pytest的簡單應用

    Pytest是基於python的一種單元測試框架,與python自帶的unittest測試框架相似,可是比unittest框架使用起來更簡潔,效率更高。

    軟件測試君
  • Pytest學習(五) - Pytest用例執行測試後的常見報錯

    fixture裏面斷言失敗,致使fixture標記的data會報錯,使得data沒有返回值;而test_error調用了錯誤的fixture,因此error表示...

    軟件測試君
  • 《帶你裝B,帶你飛》pytest成魔之路4 - fixture 之大解剖

    fixture是pytest的一個閃光點,pytest要精通怎麼能不學習fixture呢?跟着我一塊兒深刻學習fixture吧。其實unittest和nose都支...

    北京-宏哥
  • 機器學習——Dropout原理介紹

    一:引言   由於在機器學習的一些模型中,若是模型的參數太多,而訓練樣本又太少的話,這樣訓練出來的模型很容易產生過擬合現象。在訓練bp網絡時常常遇到的一個問題,...

    深度學習思考者
  • Python3 與 C# 面向對象之~繼承與多態

    當聽到老師說:「私有的屬性方法 不會被子類繼承 」的時候,小明內心一顫,聯想到以前講的 類屬性、實例屬性、實例方法、類方法、靜態方法,因而趕忙寫個Demo驗證一...

    逸鵬
  • Python3 與 C# 面向對象之~繼承與多態

    文章彙總:https://www.cnblogs.com/dotnetcrazy/p/9160514.html

    逸鵬
  • 《Android》Lesson24-綜合項目實戰

    用戶1733354
  • Android ADB 打開 Lanucher首頁

    本文記錄一個簡單的方法,用ADB打開Android Lanucher首頁。在咱們作廠商自定義的android設備時,可能會遇到沒有內置輔助鍵(back、home...

    飲水思源爲名




  • 前端單元測試那些事

    Jest 是 Facebook 開源的一款 JS 單元測試框架,它也是 React 目前使用的單元測試框架,目前vue官方也把它看成爲單元測試框架官方推薦 。 ...

    樹醬
更多文章

做者介紹

軟件測試君

關注 專欄

精選專題

活動推薦

運營活動


廣告 關閉

目錄

  • 社區

相關文章
相關標籤/搜索