一百炬、使用pip包管理工具進(jìn)行安裝第三方庫(kù)
pip install pytest 和 pip install pytest-html
二、命名規(guī)則
Pytest單元測(cè)試中的類(lèi)名和方法名必須是以test開(kāi)頭,執(zhí)行中只能找到test開(kāi)頭的類(lèi)和方法
例:
class TestPy01:
def testPy001(self):
print("第一個(gè)pytest")
assert 1==1
三规婆、Pytest生成自帶的html測(cè)試報(bào)告
3.1 方式一
格式:
pytest.main("模塊.py")【運(yùn)行指定模塊下纬朝,運(yùn)行所有test開(kāi)頭的類(lèi)和測(cè)試用例】
pytest.main(["--html=./report.html","模塊.py"])
代碼:
pytest.main(["--html=../report1.html", "test_01.py"])
3.2 方式二
格式:
運(yùn)行指定模塊指定類(lèi)指定用例苹熏,冒號(hào)分割挽霉,并生成測(cè)試報(bào)告
pytest.main(['--html=./report.html','模塊.py::類(lèi)::test_a_001'])
代碼:
pytest.main(["--html=../report1.html", "test_01.py::TestPy01::testPy001"])
擴(kuò)展:
pytst.main(['-x','--html=./report.html','t12est000.py'])
-x:出現(xiàn)一條測(cè)試用例失敗就退出測(cè)試
-v:豐富信息模式, 輸出更詳細(xì)的用例執(zhí)行信息
-s:顯示print內(nèi)容
-q:簡(jiǎn)化結(jié)果信息,不會(huì)顯示每個(gè)用例的文件名
# 使用@pytest.mark.skip()跳過(guò)該用例
@pytest.mark.skip()
def test001(self):
assert 2==2
四所意、Pytest的運(yùn)行結(jié)果顯示
. 點(diǎn)號(hào)淮逊,表示用例通過(guò)
F 表示失敗 Failure
E 表示用例中存在異常 Error
五、文件讀取
先創(chuàng)建文件扶踊,然后讀取
5.1 讀取csv文件
import csv #導(dǎo)入csv模塊
class ReadCsv():
def read_csv(self):
item =[] #定義一個(gè)空列表
c = csv.reader(open("../commonDemo/test1.csv","r")) #得到csv文件對(duì)象
for csv_i in c:
item.append(csv_i) #將獲取的數(shù)據(jù)添加到列表中
return item
r = ReadCsv()
print(r.read_csv())
5.2 讀取xml文件
from xml.dom import minidom
class Readxml():
def read_xml(self,filename,onename,twoname):
root =minidom.parse(filename)
firstnode =root.getElementsByTagName(onename)[0]
secondnode=firstnode.getElementsByTagName(twoname)[0].firstChild.data
return secondnode
六泄鹏、Allure
Allure是一款輕量級(jí)并且非常靈活的開(kāi)源測(cè)試報(bào)告框架。 它支持絕大多數(shù)測(cè)試框架秧耗, 例如TestNG命满、Pytest、JUint等绣版。它簡(jiǎn)單易用胶台,易于集成。
Allure下載
-
首先配置allure的環(huán)境變量
-
驗(yàn)證allure是否配置成功
- 其次要安裝allure
pip install allure-pytest
allure-pytest是Pytest的一個(gè)插件杂抽,通過(guò)它我們可以生成Allure所需要的用于生成測(cè)試報(bào)告的數(shù)據(jù)
6.1. Allure常用的幾個(gè)特性
@allure.feature # 用于描述被測(cè)試產(chǎn)品需求
@allure.story # 用于描述feature的用戶(hù)場(chǎng)景诈唬,即測(cè)試需求
with allure.step(): # 用于描述測(cè)試步驟,將會(huì)輸出到報(bào)告中
allure.attach # 用于向測(cè)試報(bào)告中輸入一些附加的信息缩麸,通常是一些測(cè)試數(shù)據(jù)铸磅,截圖等
- 例1:
import pytest,allure,os
class TestClass005():
@allure.feature("用戶(hù)登錄功能")#用于定義被測(cè)試的功能,被測(cè)產(chǎn)品的需求點(diǎn)
@allure.story("登錄成功") #用于定義被測(cè)功能的用戶(hù)場(chǎng)景杭朱,即子功能點(diǎn)
def test_success(self):
assert 1==1
@allure.feature("用戶(hù)登錄功能")#用于定義被測(cè)試的功能阅仔,被測(cè)產(chǎn)品的需求點(diǎn)
@allure.story("登錄失敗") #用于定義被測(cè)功能的用戶(hù)場(chǎng)景,即子功能點(diǎn)
def test_fail(self):
assert 1==2
if __name__ == '__main__':
pytest.main(['--alluredir', 'report/result', 'test_06.py']) #生成json類(lèi)型的測(cè)試報(bào)告
split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean' #將測(cè)試報(bào)告轉(zhuǎn)為html格式
os.system(split) # system函數(shù)可以將字符串轉(zhuǎn)化成命令在服務(wù)器上運(yùn)行
- 例2
import pytest,os,allure
class TestShop():
@allure.feature("購(gòu)物車(chē)")
@allure.story("產(chǎn)品展示")
def testshow(self):
with allure.step("查看哈吉利系列車(chē)信息"):
allure.attach("博越","吉利")
with allure.step("查看哈弗系列車(chē)信息"):
allure.attach("H7","哈弗")
if __name__ == '__main__':
pytest.main(['--alluredir', 'report/result', 'test_07.py'])
split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean'
os.system(split)
Pytest和allure效果展示