pytest:
需要安装pytest和pytest-html(生成html测试报告)
pip install pytest 和 pip install pytest-html
命名规则
Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨
unittest:Setup>> setupclass teardown teardownclass
Pytest的setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样)
运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown
运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class
Pytest生成自带的html测试报告:
直接执行pytest.main()
【自动查找当前目录下,以test_开头的文件或者以_test结尾的py文件】(课堂练习_test)
pytest.main("模块.py")
【运行指定模块下,运行所有test开头的类和测试用例】
pip install pytest-html() :python自带的插件
pytest.main(["--html=./report.html","test3.py"])
Pytest调用语句:
pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001‘])
运行指定模块指定类指定用例,冒号分割,并生成测试报告
pytest.main([‘-x‘,‘--html=./report.html‘,‘t12est000.py‘])
-v: 丰富信息模式, 输出更详细的用例执行信息
-s:显示print内容
-q: 简化结果信息,不会显示每个用例的文件名
Pytest的运行方式:
. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error
allure:
Allure是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成。
首先要安装allure
pip install allure-pytest
allure-pytest是Pytest的一个插件,通过它我们可以生成Allure所需要的用于生成测试报告的数据
Allure常用的几个特性:
@allure.feature # 用于描述被测试产品需求
@allure.story # 用于描述feature的用户场景,即测试需求
with allure.step(): # 用于描述测试步骤,将会输出到报告中
allure.attach # 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等
allure.feature:
allure.feature # 用于描述被测试产品需求
allure.story:
@allure.story # 用于描述feature的用户场景,即测试需求
Pytest和allure结合:
Pytest和allure结合生成html格式的测试报告
pytest.main([ ‘--alluredir‘, ‘report/result‘, ‘test001.py‘]) ## 将测试报告转为html格式 --html=../report.htmlsplit = ‘allure ‘ + ‘generate ‘ + ‘./report/result ‘ + ‘-o ‘ + ‘./report/html ‘ + ‘--clean‘os.system(split)#system函数可以将字符串转化成命令在服务器上运行
Pytest和allure效果展示:
requests:
requests是一个很实用的Python HTTP客户端库,编写爬虫和测试服务器响应数据时经常会用到,Requests是Python语言的第三方的库,专门用于发送HTTP请求
GET请求
r = requests.get(‘http://www.baidu.com‘)
传参
payload = {‘key1‘: ‘value1‘, ‘key2‘: ‘value2‘, ‘key3‘: None}r = requests.get(‘http://www.baidu.com ‘, params=payload)
post请求
类似python中的表单提交
payload = {‘key1‘: ‘value1‘, ‘key2‘: ‘value2‘}
r = requests.post("http://httpbin.org/post", data=payload)
传递文件(了解)
url = ‘http://httpbin.org/post‘ files = {‘file‘: open(‘report.xls‘, ‘rb‘)}
r = requests.post(url, files=files)
Requests响应:
r.status_code 响应状态码
r.heards 响应头
r.cookies 响应cookies
r.text 响应文本
r. encoding 当前编码
r. content 以字节形式(二进制)返回
最常用的是根据响应状态码判断接口是否连通,经常用于做接口中断言判断
通过聚合数据请求:
发送无参数的get请求:
发送有参数的get请求:
Request扩充:
1:添加等待时间
requests.get(url,timeout=1) #超过等待时间则报错
2:添加请求头信息
requests.get(url,headers=headers) #设置请求头
3:添加文件
requests.post(url, files=files) #添加文件
request+pytest+allure:
读取文件中的数据
requests拿到数据请求接口返回状态码
通过断言验证返回状态码和200对比
生成allure的测试报告
模块总览dataDemo(存放数据)>> readDemo(读取数据)useRequests(发送请求)>>testDemo(生成报告):
存储数据:
读取数据(readDemo):
将读取的数据存放在列表中
request请求接口返回状态码:
pytest断言设置并结合allure生成测试报告:
测试报告:
接口自动化测试 pytest+allure+requests
原文:https://www.cnblogs.com/wandongyu/p/13700584.html