主頁 > 知識(shí)庫 > Pytest之測(cè)試命名規(guī)則的使用

Pytest之測(cè)試命名規(guī)則的使用

熱門標(biāo)簽:電話外呼系統(tǒng)招商代理 蘇州人工外呼系統(tǒng)軟件 電話機(jī)器人貸款詐騙 看懂地圖標(biāo)注方法 淮安呼叫中心外呼系統(tǒng)如何 打印谷歌地圖標(biāo)注 廣東旅游地圖標(biāo)注 佛山通用400電話申請(qǐng) 京華圖書館地圖標(biāo)注

背景:

pytest以特定規(guī)則搜索測(cè)試用例,所以測(cè)試用例文件、測(cè)試類以及類中的方法、測(cè)試函數(shù)這些命名都必須符合規(guī)則,才能被pytest搜索到并加入測(cè)試運(yùn)行隊(duì)列中。

默認(rèn)搜索規(guī)則:

  • 如果pytest命令行有指定目錄,則從該目錄中開始查找測(cè)試用例文件,如果沒有指定,則從當(dāng)前運(yùn)行目錄開始查找文件。注意,該查找是遞歸查找,子目錄中的文件也會(huì)被查找到。
  • 并不是能夠查找到目錄下的所有文件,只有符合命名規(guī)則的文件才會(huì)被查找。默認(rèn)規(guī)則是以test_開頭或者以_test結(jié)尾的.py文件。
  • 在測(cè)試文件中查找Test開頭的類,以及類中以test_開頭的方法,查找測(cè)試文件中test_開頭的函數(shù)。

測(cè)試用例默認(rèn)命名規(guī)則

  • 除非pytest命令指定到測(cè)試用例文件,否則測(cè)試用例文件命名應(yīng)該以 test_開頭或者以_test結(jié)尾。
  • 測(cè)試函數(shù)命名,測(cè)試類的方法命名應(yīng)該以test_開頭。
  • 測(cè)試類命名應(yīng)當(dāng)以Test開頭。

tips: 測(cè)試類的不應(yīng)該有構(gòu)造函數(shù)。

筆者習(xí)慣裝測(cè)試用例的文件夾,測(cè)試用例文件,測(cè)試函數(shù),類中的測(cè)試方法都以test_開頭。建議保持一種統(tǒng)一的風(fēng)格。

示例:

# func.py
def add(a,b):
 return a+b

# ./test_case/test_func.py
import pytest
from func import *

class TestFunc:

 #def __init__(self):
  #self.a = 1

 def test_add_by_class(self):
  assert add(2,3) == 5


def test_add_by_func():
 assert add(4,6) == 10

'''
# stdout:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1
rootdir: D:\Python3.7\project\pytest
plugins: allure-pytest-2.8.9, rerunfailures-8.0
collected 2 items

test_case\test_func.py ..                                                [100%]

============================== 2 passed in 0.04s ==============================
[Finished in 1.3s]
######################################################################
'''

測(cè)試結(jié)果中,test_case\test_func.py … 。兩個(gè)點(diǎn)號(hào)代表兩個(gè)測(cè)試用例。

錯(cuò)誤示范,當(dāng)測(cè)試類有構(gòu)造函數(shù)時(shí):

# func.py
def add(a,b):
 return a+b

# ./test_case/test_func.py
import pytest
from func import *

class TestFunc:

 def __init__(self):
  self.a = 1

 def test_add_by_class(self):
  assert add(2,3) == 5


def test_add_by_func():
 assert add(4,6) == 10

'''
# stdout:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1
rootdir: D:\Python3.7\project\pytest
plugins: allure-pytest-2.8.9, rerunfailures-8.0
collected 1 item

test_case\test_func.py .                                                 [100%]

============================== warnings summary ===============================
test_case\test_func.py:4
  D:\Python3.7\project\pytest\test_case\test_func.py:4: PytestCollectionWarning: cannot collect test class 'TestFunc' because it has a __init__ constructor (from: test_case/test_func.py)
    class TestFunc:

-- Docs: https://docs.pytest.org/en/latest/warnings.html
======================== 1 passed, 1 warning in 0.04s =========================
[Finished in 1.4s]
######################################################################
'''

會(huì)報(bào)錯(cuò),pytest只能找到test_開頭的函數(shù),但是不能找到Test開頭的含有構(gòu)造函數(shù)的測(cè)試類。

自定義測(cè)試用例命名規(guī)則

如果因?yàn)槟撤N需要,需要使用其他命名規(guī)則命名的測(cè)試文件、測(cè)試函數(shù)、測(cè)試類以及測(cè)試類的方法,可以通過pytest.ini配置文件做到。

在測(cè)試系統(tǒng)的頂層目錄創(chuàng)建pytest.ini文件,在pytest.ini文件中寫入如下配置:

[pytest]
# 更改測(cè)試文件命名規(guī)則
python_files = HG*

# 更改測(cè)試類命名規(guī)則
python_classes = HG*

# 更嗨測(cè)試函數(shù)命名規(guī)則
python_functions = HG*

示例:

# func.py
def add(a,b):
 return a+b

# ./test_case/HG_func.py
import pytest
from func import *

class HGFunc:

 #def __init__(self):
  #self.a = 1

 def HG_add_by_class(self):
  assert add(2,3) == 5


def HG_add_by_func():
 assert add(4,6) == 10

'''
stdout:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- D:\Python3.7\python.exe
cachedir: .pytest_cache
rootdir: D:\Python3.7\project\pytest, inifile: pytest.ini
plugins: allure-pytest-2.8.9, rerunfailures-8.0
collecting ... collected 2 items

test_case/HG_func.py::HGFunc::HG_add_by_class PASSED                     [ 50%]
test_case/HG_func.py::HG_add_by_func PASSED                              [100%]

============================== 2 passed in 0.03s ==============================
[Finished in 1.3s]
'''

Tips:

  • pytest.ini是可以改變pytest運(yùn)行方式的配置文件,但是正常情況下,測(cè)試系統(tǒng)里根本不需要存在pytest.ini文件,我們使用默認(rèn)的運(yùn)行方式即可工作。
  • pytest.ini還有許多其他個(gè)性化配置,當(dāng)有需要時(shí),可以在自動(dòng)化測(cè)試項(xiàng)目的頂層目錄里創(chuàng)建pytest.ini文件,添加配置,達(dá)到個(gè)性化運(yùn)行的目的。

到此這篇關(guān)于Pytest之測(cè)試命名規(guī)則的使用的文章就介紹到這了,更多相關(guān)Pytest 命名規(guī)則內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 詳解用Pytest+Allure生成漂亮的HTML圖形化測(cè)試報(bào)告
  • python pytest進(jìn)階之conftest.py詳解
  • python pytest進(jìn)階之fixture詳解
  • Pytest測(cè)試框架基本使用方法詳解
  • Pytest mark使用實(shí)例及原理解析
  • 簡單了解pytest測(cè)試框架setup和tearDown
  • python的pytest框架之命令行參數(shù)詳解(下)
  • python單元測(cè)試框架pytest的使用示例

標(biāo)簽:衡水 江蘇 駐馬店 呼和浩特 畢節(jié) 股票 中山 湖州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Pytest之測(cè)試命名規(guī)則的使用》,本文關(guān)鍵詞  Pytest,之,測(cè)試,命名,規(guī)則,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Pytest之測(cè)試命名規(guī)則的使用》相關(guān)的同類信息!
  • 本頁收集關(guān)于Pytest之測(cè)試命名規(guī)則的使用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章