使用pytest框架需要安装pytest
pip install pytest
pytest的命名规则
Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨
Pytest生成自带的html测试报告
使用pytest框架的生成自带的html测试报告需要安装pytest-html(模块)
pip install pytest-html
例子:
pytest.main("模块.py")【运行指定模块下,运行所有test开头的类和测试用例】
pytest.main(["--html=./report.html","模块.py"])
例子2:
运行指定模块指定类指定用例,冒号分割,并生成测试报告
pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001'])
例子3:
直接执行pytest.main() 【自动查找当前目录下,以test开头的文件或者以test结尾的py文件】(课堂练习_test)
pytest.main([‘--html=./report.html’])
Pytest调用语句
pytst.main(['-x','--html=./report.html','t12est000.py'])
-x出现一条测试用例失败就退出测试
-s:显示print内容
Pytest的运行方式
. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error
文件读取
读取csv文件
import csv #导入csv模块
class ReadCsv():
def read_csv(self):
item =[] #定义一个空列表
c = csv.reader(open("../commonDemo/test1.csv","r")) #得到csv文件对象
for csv_i in c:
item.append(csv_i) #将获取的数据添加到列表中
return item
r = ReadCsv()
print(r.read_csv())
读取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是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成。
在path中新建allure的bin的文件路径
验证allure是否配置成功
其次要安装allure
allure-pytest是Pytest的一个插件,通过它我们可以生成Allure所需要的用于生成测试报告的数据
pip install allure-pytest
Allure常用的几个特性
@allure.feature # 用于描述被测试产品需求
@allure.story # 用于描述feature的用户场景,即测试需求
with allure.step(): # 用于描述测试步骤,将会输出到报告中
allure.attach # 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等
allure.feature
@allure.feature # 用于描述被测试产品需求
allure.story
@allure.story # 用于描述feature的用户场景,即测试需求
with allure.step()
用于描述测试步骤,将会输出到报告中
allure.attach
用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等