单元测试之pytest

 单元测试之pytest

前提:需要安装pytest和pytest-html(生成html测试报告)

一.命名规则

**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:出现一条测试用例失败就退出测试

-v:丰富信息模式,输出更详细的用例执行信息

-s:显示print内容

-q:简化结果信息,不会显示每个用例的文件名



跳过该用例使用@pytest.mark.skip()

@pytest.mark.skip()

def test001(self):

assert2==2

三、Pytest的运行方式

.点号,表示用例通过

F表示失败Failure

E表示用例中存在异常Error

四、文件读取

##读取csv文件

import csv#导入csv模块

classReadCsv():

def read_csv(self):

item=[]#定义一个空列表

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

forcsv_iinc:

item.append(csv_i)#将获取的数据添加到列表中

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是一款轻量级并且非常灵活的开源测试报告框架,它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成

1.先下载Allure→配置Alluer环境变量→输入allure检验配置是否成功→安装allure,输入(pip install allure-pytest)

2.Allure常用的特性

@allure.feature# 用于描述被测试产品需求

@allure.story# 用于描述feature的用户场景,即测试需求

withallure.step():# 用于描述测试步骤,将会输出到报告中

allure.attach# 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

案例:

import pytest,allure,os

classTestClass005():

@allure.feature("用户登录功能")#用于定义被测试的功能,被测产品的需求点

@allure.story("登录成功")#用于定义被测功能的用户场景,即子功能点

deftest_success(self):

assert1==1

@allure.feature("用户登录功能")#用于定义被测试的功能,被测产品的需求点

@allure.story("登录失败")#用于定义被测功能的用户场景,即子功能点

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'#将测试报告转为html格式

os.system(split)# system函数可以将字符串转化成命令在服务器上运行

你可能感兴趣的:(单元测试之pytest)