pytest + allure
pytest简单概述
需要安装pytest和pytest-html(生成html测试报告)
pip install pytest 和 pip install pytest-html
命名规则
Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨
Pytest的setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样)
运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown
运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class
Pytest生成自带的html测试报告
直接执行pytest.main()
【自动查找当前目录下,以test_开头的文件或者以_test结尾的py文件】
pytest.main(“模块.py”)
【运行指定模块下,运行所有test开头的类和测试用例】
pip install pytest-html() :python自带的插件
pytest.main(["–html=./report.html",“test3.py”])
pytest调用语句
pytest.main([’-x’,’–html=./report.html’,‘t12est000.py’])
#-x出现一条测试用例失败就退出测试
-v: 丰富信息模式, 输出更详细的用例执行信息
-s:显示print内容
-q: 简化结果信息,不会显示每个用例的文件名
-x出现一条测试用例失败就退出测试
class Calc():
def add(self,a,b):
c = a + b
return c
def jian(self,a,b):
c = a - b
return c
import pytest
from funcDemo.Calc import Calc class TestClass():
# 类名必须以 test 开头 否则在运行的时候 pytest 找不到
def setup_class(self):
print("---------start class---------")def test001(self): c = Calc() a = c.add(2,3) # 断点 # 错误值 应该是5 assert a == 1 def test002(self): c = Calc() a = c.jian(2, 3) # 错误值 应该是-1 assert a == -2 def teardown(self): print("---------end---------")
if name == ‘main’:
# 出现一条测试用例失败就退出测试
pytest.main(["-x","–html=./truth.html",“test1.py”])
-v丰富信息模式, 输出更详细的用例执行信息
pytest.main(["-v","–html=./truth.html",“test1.py”])
-s 显示print内容
pytest.main(["-s","–html=./truth.html",“test1.py”])
-q 简化结果信息,不会显示每个用例的文件名
pytest.main(["-q","–html=./truth.html",“test1.py”])
运行方式
. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error
读取CSV文件数据
class Calc():
def add(self,a,b):
c = a + b
return c
def jian(self,a,b):
c = a - b
return c
import csv
class ReadCsv():
def read_csv(self):
item = [] # 定义一个空列表
c = csv.reader(open("…/testDemo/test1.csv", “r”)) # 得到csv文件对象
for csv_i in c:
item.append(csv_i) # 将获取的数据添加到列表中
return item
r = ReadCsv()
print(r.read_csv())import pytest
from funcDemo.Calc import Calc
from testDemo.cvs_test import ReadCsv
r = ReadCsv()
a = r.read_csv()
print(a)
class TestClass():
# 类名必须以 test 开头 否则在运行的时候 pytest 找不到
def setup(self):
print("---------start---------")
def test001(self):
for i in r.read_csv():
c = Calc()
b = c.add(int(i[0]),int(i[1]))
assert b == int(i[2])
def teardown(self):
print("---------end---------")
if name == ‘main’:
pytest.main([“test1.py”])
allure
Allure是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成。
allure的几个常用特性
@allure.feature # 用于描述被测试产品需求
@allure.story # 用于描述feature的用户场景,即测试需求
with allure.step(): # 用于描述测试步骤,将会输出到报告中
allure.attach # 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等
import pytest,os
import allure
class Test(object):
@allure.feature(‘用户登录动能(登陆成功)’) # 用于定义被测试的功能,被测产品的需求点,模块
@allure.story(‘登陆成功’)
def test_success(self):
assert 1 == 1
@allure.feature('用户登录功能(登陆失败)')
@allure.story('登录失败')
def test_fail(self):
assert 2 == 1
if name == “main”:
pytest.main(["–alluredir",“report/result”,“test_one.py”]) # 生成测试报告
split = 'allure ’ + 'generate ’ + './report/result ’ + '-o ’ + './report/html ’ + ‘–clean’
os.system(split) # system函数可以将字符串转化为命令在服务器运行
import pytest,os
import allure
class Test(object):
@allure.feature(‘用户登录动能(登陆成功)’) # 用于定义被测试的功能,被测产品的需求点,模块
@allure.story(‘登陆成功’)
def test_success(self):
with allure.step(“输入用户名:”):
allure.attach(“jack”,“用户名”)
with allure.step(“输入密码:”):
allure.attach(“123”,“密码”)
@allure.feature('用户登录功能(登陆失败)')
@allure.story('登录失败')
def test_fail(self):
with allure.step("登陆失败,重新输入:"):
allure.attach("1234","用户名")
if name == “main”:
pytest.main(["–alluredir",“report/result”,“test_one.py”]) # 生成测试报告
split = 'allure ’ + 'generate ’ + './report/result ’ + '-o ’ + './report/html ’ + ‘–clean’
os.system(split) # system函数可以将字符串转化为命令在服务器运行