單元測試之pytest

?單元測試之pytest

前提:需要安裝pytest和pytest-html(生成html測試報告)

一.命名規(guī)則

**Pytest單元測試中的類名和方法名必須是以test開頭

impor tpytest

from xml.dom import minidom

classTestPy01():

deftestPy001(self):

print("第一個pytest")

assert1==1

deftestPy002(self):

print("第二個pytest")

assert1==2

deftestPy003(self):

print("第三個pytest")

assert1==1

if__name__=='__main__':

pytest.main()

二、Pytest生成自帶的html測試報告

前提條件:需要下載pytest-html模塊(python自帶的生成測試報告模塊)

方式一:

pytest.main(["--html=./report.html","模塊.py"])

方式二:

pytest.main([‘--html=./report.html’,‘模塊.py::類::test_a_001'])

方式三:

pytst.main(['-x','--html=./report.html','t12est000.py'])

-x:出現(xiàn)一條測試用例失敗就退出測試

-v:豐富信息模式,輸出更詳細(xì)的用例執(zhí)行信息

-s:顯示print內(nèi)容

-q:簡化結(jié)果信息,不會顯示每個用例的文件名



跳過該用例使用@pytest.mark.skip()

@pytest.mark.skip()

def test001(self):

assert2==2

三、Pytest的運(yùn)行方式

.點(diǎn)號,表示用例通過

F表示失敗Failure

E表示用例中存在異常Error

四、文件讀取

##讀取csv文件

import csv#導(dǎo)入csv模塊

classReadCsv():

def read_csv(self):

item=[]#定義一個空列表

c=csv.reader(open("../commonDemo/test1.csv","r"))#得到csv文件對象

forcsv_iinc:

item.append(csv_i)#將獲取的數(shù)據(jù)添加到列表中

returnitem


r=ReadCsv()

print(r.read_csv())

##讀取xml文件

from xml.dom import minidom

classReadxml():

defread_xml(self,filename,onename,twoname):

root=minidom.parse(filename)

firstnode=root.getElementsByTagName(onename)[0]

secondnode=firstnode.getElementsByTagName(twoname)[0].firstChild.data

returnsecondnode

五、Allure

Allure是一款輕量級并且非常靈活的開源測試報告框架,它支持絕大多數(shù)測試框架, 例如TestNG、Pytest、JUint等。它簡單易用,易于集成

1.先下載Allure→配置Alluer環(huán)境變量→輸入allure檢驗配置是否成功→安裝allure,輸入(pip install allure-pytest)

2.Allure常用的特性

@allure.feature# 用于描述被測試產(chǎn)品需求

@allure.story# 用于描述feature的用戶場景,即測試需求

withallure.step():# 用于描述測試步驟,將會輸出到報告中

allure.attach# 用于向測試報告中輸入一些附加的信息,通常是一些測試數(shù)據(jù),截圖等

案例:

import pytest,allure,os

classTestClass005():

@allure.feature("用戶登錄功能")#用于定義被測試的功能,被測產(chǎn)品的需求點(diǎn)

@allure.story("登錄成功")#用于定義被測功能的用戶場景,即子功能點(diǎn)

deftest_success(self):

assert1==1

@allure.feature("用戶登錄功能")#用于定義被測試的功能,被測產(chǎn)品的需求點(diǎn)

@allure.story("登錄失敗")#用于定義被測功能的用戶場景,即子功能點(diǎn)

deftest_fail(self):

assert1==2

if__name__=='__main__':

pytest.main(['--alluredir','report/result','test_06.py'])#生成json類型的測試報告

split='allure '+'generate '+'./report/result '+'-o '+'./report/html '+'--clean'#將測試報告轉(zhuǎn)為html格式

os.system(split)# system函數(shù)可以將字符串轉(zhuǎn)化成命令在服務(wù)器上運(yùn)行

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容