python單元測試之pytest的使用
一、前提準(zhǔn)備
1、前提:需要安裝pytest和pytest-html(生成html測試報(bào)告)
pip install pytest 和 pip install pytest-html
安裝插件:pip install 插件名
2、命名規(guī)范
Pytest單元測試中的類名和方法名必須是以test開頭,執(zhí)行中只能找到test開頭的類和方法,比unittest更加嚴(yán)謹(jǐn)
Pytest: setup, setup_class 和 teardown, teardown_class 函數(shù) ( 和 unittest 執(zhí)行效果一樣 ) 運(yùn)行于測試方法的始末,即 : 運(yùn)行一次測試函數(shù)會(huì)運(yùn)行一次 setup 和 teardown 運(yùn)行于測試方法的始末 , 但是不管有多少測試函數(shù)都只執(zhí)行一次 setup_class 和 teardown_class
二、pytest生成自帶的html測試報(bào)告
前提條件:需要下載pytest-html模塊(python自帶的生成測試報(bào)告模塊)
pip install pytest-html
如果不安裝pytest-html會(huì)報(bào):

案例: 1)
pytest.main("模塊.py")【運(yùn)行指定模塊下,運(yùn)行所有test開頭的類和測試用例】
pytest.main(["--html=./report.html","模塊.py"])
import pytest
class Test():
def test1(self):
print("這是測試1")
def test1(self):
print("這是測試2")
if __name__ == '__main__':
pytest.main(["--html=./report.html", "test_004.py"])
結(jié)果:


2)運(yùn)行指定模塊指定類指定用例,冒號分割,并生成測試報(bào)告
pytest.main([‘--html=./report.html',‘模塊.py::類::test_a_001'])
import pytest
class Test():
def test1(self):
print("這是測試1")
def test2(self):
print("這是測試2")
if __name__ == '__main__':
pytest.main(["--html=./report.html", "test_004.py::Test::test1"])
結(jié)果:

3)直接執(zhí)行pytest.main() 【自動(dòng)查找當(dāng)前目錄下,以test 開頭的文件或者以test結(jié)尾的py文件】
pytest.main([‘--html=./report.html'])
語句: pytst.main(['-x','--html=./report.html','t12est000.py'])
-x出現(xiàn)一條測試用例失敗就退出測試
-s:顯示print內(nèi)容
三、pytest運(yùn)行方式
. 點(diǎn)號,表示用例通過
F 表示失敗 Failure
E 表示用例中存在異常 Error
四、allure
Allure是一款輕量級并且非常靈活的開源測試報(bào)告框架。 它支持絕大多數(shù)測試框架, 例如TestNG、Pytest、JUint等。它簡單易用,易于集成
1、Allure常用的幾個(gè)特性
@allure.feature # 用于描述被測試產(chǎn)品需求
@allure.story # 用于描述 feature 的用戶場景,即測試需求
with allure.step (): # 用于描述測試步驟,將會(huì)輸出到報(bào)告中
allure.attach # 用于向測試報(bào)告中輸入一些附加的信息,通常是一些測試數(shù)據(jù),截圖等
案例1:關(guān)于pytest與Allure生成html測試用例 rr.csv
2,3,5
5,6,11
readCsv
import csv # 導(dǎo)入csv模塊
class ReadCsv():
def read_csv(self):
item = [] # 定義一個(gè)空列表
c = csv.reader(open("../dataDemo/rr.csv", "r")) # 得到csv文件對象
for csv_i in c:
item.append(csv_i) # 將獲取的數(shù)據(jù)添加到列表中
return item
r = ReadCsv()
print(r.read_csv())
開發(fā)代碼:
class Cale():
def jia(self,a,b):
c=a+b
return c
def jian(self,a,b):
c=a-b
return c
def cheng(self,a,b):
c=a*b
return c
def chu(self,a,b):
c=a/b
return c
生成html代碼:
import pytest
from pytest01.readDemo.readCsv import ReadCsv
from pytest01.demo.cale import Cale
import os
import allure
r=ReadCsv()
cc=r.read_csv()
d=Cale()
class Test():
@allure.story("加法函數(shù)測試正確")
def test001(self):
for i in cc:
dd=d.jia(int(i[0]),int(i[1]))
assert dd==int(i[2])
if __name__ == '__main__':
pytest.main(['--alluredir', 'report/result', 'test_02.py'])
split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean'
os.system(split)


到此這篇關(guān)于python單元測試之pytest的使用的文章就介紹到這了,更多相關(guān)pytest的使用內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Python使用multiprocessing實(shí)現(xiàn)一個(gè)最簡單的分布式作業(yè)調(diào)度系統(tǒng)
mutilprocess像線程一樣管理進(jìn)程,這個(gè)是mutilprocess的核心,他與threading很是相像,對多核CPU的利用率會(huì)比threading好的多,通過本文給大家介紹Python使用multiprocessing實(shí)現(xiàn)一個(gè)最簡單的分布式作業(yè)調(diào)度系統(tǒng),需要的朋友參考下2016-03-03
使用Python與BigQuery進(jìn)行交互的代碼詳解
在大數(shù)據(jù)分析的領(lǐng)域中,Google BigQuery 是一個(gè)被廣泛使用的云端數(shù)據(jù)倉庫解決方案,它由 Google Cloud 提供,并且專為處理大規(guī)模數(shù)據(jù)集、進(jìn)行快速的數(shù)據(jù)分析和復(fù)雜的查詢而設(shè)計(jì),本文給大家講解了如何使用Python與BigQuery進(jìn)行交互,需要的朋友可以參考下2025-04-04
pycharm 復(fù)制代碼出現(xiàn)空格的解決方式
這篇文章主要介紹了pycharm 復(fù)制代碼出現(xiàn)空格的解決方式,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-01-01
使用Cython中prange函數(shù)實(shí)現(xiàn)for循環(huán)的并行
Cython中提供了一個(gè)prange函數(shù),專門用于循環(huán)的并行執(zhí)行。這個(gè) prange的特殊功能是Cython獨(dú)一無二的,并且prange只能與for循環(huán)搭配使用,不能獨(dú)立存在。本文就將使用 prange 實(shí)現(xiàn) for 循環(huán)的并行,感興趣的可以了解一下2022-08-08
520使用Python實(shí)現(xiàn)“我愛你”表白
這篇文章主要介紹了520使用Python實(shí)現(xiàn)“我愛你”表白,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-05-05
Python實(shí)現(xiàn)發(fā)送郵件到自己郵箱
在日常開發(fā)中,我們經(jīng)常需要監(jiān)控應(yīng)用程序的狀態(tài),及時(shí)發(fā)現(xiàn)問題并采取措施解決。而通過郵件發(fā)送報(bào)警信息則是一種常見的實(shí)現(xiàn)方式。本文就來介紹一下Python實(shí)現(xiàn)發(fā)送郵件到自己郵箱的方法2023-04-04

