【六:pytest框架介绍】

image.png

			常见的请求对象requests.get()requests.post()requests.delete()requests.put()requests.request()常见的响应对象rep=requests.request()//返回字符串格式数据print(req.text)//返回字节格式数据print(req.content)//返回字典格式数据print(req.json)#状态码print(req.status_code)#返回状态信息print(req.reason)print(req.cookies)print(req.encoding)print(req.headers)

pytes用例框架

pytes用例框架默认规则:1、py文件必须以test_开头,或者_test结尾2、类名必须以Test开头3、测试用例必须以test_开头总结:文件名,类名,方法名,必须符合规则post请求参数到底是传data还是json,此时要看请求头里的content-type类型请求头中content-type为application/json, 为json形式,post请求使用json参数请求头中content-type为application/x-www-form-urlencoded为表单形式,post请求时使用使用data参数json.dumps(data)   将字典格式转换成str格式json.loads(data)    将str格式转换成字典格式pytest用例管理框架的作用发现用例:从多个py文件中找执行测试用例:升序条件判断测试结果:断言生成测试报告:html测试框架python: unittest或者pytestjava:  junit,testng————————————————# 只执行冒烟用例#addopts = -vs -m "smoke"命令执行:pytest -vs       (-v:输出详细信息  -s:输出调试信息 -n 多线程执行

pytest插件的用法

			pytest强大的插件	pytestpip install pytest-ordering  控制用例的执行顺序(重点)pip install pytest-xdist    分布式并发执行测试用例(重点)pip install pytest-dependency   控制用例的依赖关系 (了解)pip install pytest-rerunfailures   失败重跑(了解)pip install pytest-assume          多重较验(了解)pip install pytest-random-order  用例随机执行(了解)pip install pytest-html            测试报告(了解)pip install -r requests.txt

pytest-ordering 用法

没加排序


"""pytest 调整测试用例执行顺序
"""def test_01():print("test 01")def test_02():print("test 02")def test_03():print("test 03")def test_04():print("test 04")E:\Home_Work\Home_Work2\pytest01\test>pytest test_oder.py
collected 4 items                                                                                                                    
=========================执行结果================================
test_oder.py::test_01 test 01
PASSED
test_oder.py::test_02 test 02
PASSED
test_oder.py::test_03 test 03
PASSED
test_oder.py::test_04 test 04
PASSED========================================================= 4 passed in 0.54s =========================================================E:\Home_Work\Home_Work2\pytest01\test>

加了排序

"""pytest 调整测试用例执行顺序
"""
import pytest@pytest.mark.run(order=4)
def test_01():print("test 01")@pytest.mark.run(order=2)
def test_02():print("test 02")@pytest.mark.run(order=3)
def test_03():print("test 03")@pytest.mark.run(order=1)
def test_04():print("test 04")E:\Home_Work\Home_Work2\pytest01\test>pytest test_oder.py
collected 4 items                                                                                                                                                                       
========================执行结果=================================test_oder.py::test_04 test 04
PASSED
test_oder.py::test_02 test 02
PASSED
test_oder.py::test_03 test 03
PASSED
test_oder.py::test_01 test 01
PASSED========================================================= 4 passed in 0.61s =========================================================E:\Home_Work\Home_Work2\pytest01\test>

pytest-xdist 用法

PYTEST 多进程并行与分布式执行 (PS:分布式采用的是多进程)


"""pytest 分布式执行测试用例
"""
import timeimport pytest@pytest.mark.run(order=4)
def test_01():time.sleep(1)print("test 01")@pytest.mark.run(order=2)
def test_02():time.sleep(1)print("test 02")@pytest.mark.run(order=3)
def test_03():time.sleep(1)print("test 03")@pytest.mark.run(order=1)
def test_04():time.sleep(1)print("test 04")==============================执行结果==========================E:\Home_Work\Home_Work2\pytest01\test>pytest -n 8 test_oder.py
testconfig-0.2.0, xdist-2.3.0
[gw0] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw1] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw2] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw3] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw4] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw5] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw6] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw7] win32 Python 3.8.7 cwd: E:\Home_Work\Home_Work2\pytest01\test
[gw0] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw1] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw2] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw3] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw4] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw5] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw6] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
[gw7] Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) [MSC v.1928 64 bit (AMD64)]
gw0 [4] / gw1 [4] / gw2 [4] / gw3 [4] / gw4 [4] / gw5 [4] / gw6 [4] / gw7 [4]
scheduling tests via LoadSchedulingtest_oder.py::test_02
test_oder.py::test_04
test_oder.py::test_03
test_oder.py::test_01
[gw1] PASSED test_oder.py::test_02
[gw3] PASSED test_oder.py::test_01
[gw0] PASSED test_oder.py::test_04
[gw2] PASSED test_oder.py::test_03======================================================== 4 passed in 14.16s =========================================================E:\Home_Work\Home_Work2\pytest01\test>pytest -n 8 test_oder.py

pytest.ini

pytest.ini:
pytest.ini 可以修改 pytest 的默认行为注意: pytest.ini 不能使用任何中文符号,包括汉字、空格、引号、冒号等等;更改默认命令行参数:
将常用的命令行参数设置为默认,省去重复输入的工作;# pytest.ini[pytest]addopts = -rsxX -l -strict --tb=short==========================================================================================
注册 mark 标记:
# pytest.ini[pytest]markers =demo : marks tests as demosmoke: marks tests as smoketest : marks tests as test切记,添加这个需要在每个用例的签名添加@pytest.markers.smoke(order=2)
==========================================================================================
控制台实时输出日志:
# pytest.ini[pytest]log_cli = 1==========================================================================================
指定 pytest 最低版本号:
# pytest.ini[pytest]minversion = 3.0==========================================================================================
指定 pytest 忽略某些目录:
pytest 收集测试用例时,会递归遍历所有子目录,包括某些你明知道没必要遍历的目录,遇到这种情况,可以使用 norecursedirs 参数简化 pytest 的搜索工作;norecursedirs 默认的设置是:.* build dist CVS _darcs {arch} *.egg ,多个路径用空格隔开。# pytest.ini[pytest]norecursedirs = .* build dist CVS _darcs {arch} *.egg venv src==========================================================================================
指定测试目录:
testpaths 限定测试用例的搜索范围,只有在 pytest 范围指定文件目录参数或测试用例标识符时,该选项才会启用;testpaths 指定的路径是以 testpaths 所在的目录为基准的相对路径;# pytest.ini[pytest]testpaths = test_path==========================================================================================
更改测试用例收集规则:
pytest 默认的用例收集规则:1、测试模块必须以 test_ 开头或以 _test 结尾;
2、测试类必须以 Test 开头,且不能有 __init__()3、测试方法必须以 test_ 开头;下面我们来添加自己的收集规则:1、添加 check_ 开头的测试模块;
2、添加 Check 开头的测试类;
3、添加 check_ 开头的测试方法;
# pytest.ini[pytest]python_files =     test_*  *_test  check_*
python_classes =   Test*   Check*
python_functions = test_*  check_*==========================================================================================
禁用 XPASS:
将标记为 @pytest.mark.xfail 但实际通过的测试用例报告为失败;# pytest.ini[pytest]xfail_strict = true==========================================================================================
避免文件名冲突:
为所有的测试目录添加 __init__.py,当多个测试目录拥有重名文件时,__init__.py 可以避免文件名冲突;==========================================================================================
动态添加及获取 ini 配置参数:
# conftest.pyimport pytestdef pytest_addoption(parser):parser.addini('nice', type='bool', default=True, help='添加 ini 参数')@pytest.fixture(autouse=True)
def get_ini(pytestconfig):"""获取 ini 参数"""nice = pytestconfig.getini('nice')print(nice)执行时,只需要在相应的用例文件中输入执行命令pytest.main()

前后置夹具:

def setup(self):print("在每个用例前执行一次")def teardown(self):print("在每个用例后执行一次")setup_class/teardown_class  在每个类之前或者之后执行一次实现部分前置  如果想在其中一个用例做数据库的验证  @pytest.fixtrue(scope="作用域",params="数据驱动",autouse="自动执行",ids="自定义参数",name="重命名")  一般回合conftest.py一起使用作用域: 可以是个 functionclass,模块,或者是个包conftest.py 名称是固定的 功能强大conftest.py 文件是单独存放@pytest.fixtrue方法的,用处是可以在读个py文件中共享前置的配	conftest.py里面的方法调用时不需要导入,可以直接使用

用法:

# coding=utf-8
import json
import re
import pytest as pytest
import requests@pytest.fixture(scope="function")
def conn_databases():print("连接数据库的操作在里面")yieldprint("关闭数据库")# 发送 按住ctrl+鼠标左键
class TestSecondRequest:# 类变量,通过类名来访问access_token = ""csrf_token = ""cookies = ""session = requests.session()def test_get_toke(self, conn_databases):url = "https://api.weixin.qq.com/cgi-bin/token"data = {"grant_type": "client_credential","appid": "wx4a6bb065c448f76f","secret": "e2219aa93e7e2c788961be3edfe7654e"}# self.get_session()# 发送get请求  ,直接使用session来发送请求,这样会话就不会断# 原来  rep = requests.request('get',url=url, params=data)rep = TestSecondRequest.session.request('get', url=url, params=data)print(rep.json())# 通过key取value值TestSecondRequest.access_token = rep.json()['access_token']if __name__ == '__main__':pytest.main(['-vs'])def test_get_toke(self, conn_databases): 只有这个用例才会去执行链接数据库

执行结果:
image.png

conftest.py文件

@pytest.fixtrue()一般回和contftest文件一起使用

1.上面一个案例是在同一个.py文件中,多个用例调用一个登陆功能,如果有多个.py的文件都需要调用这个登陆功能的话,那就不能把登陆写到用例里面去了。
此时应该要有一个配置文件,单独管理一些预置的操作场景,pytest里面默认读取conftest.py里面的配置
conftest.py配置需要注意以下点:

  • conftest.py配置脚本名称是固定的,不能改名称
  • conftest.py与运行的用例要在同一个pakage下,并且有__init__.py文件
  • 不需要import导入 conftest.py,pytest用例会自动查找

1、作用是可以在多个文件中共享前置配置
2、contftest.py调用时不需要导入
3、contftest可以有多个,或者多个层级

目录结构
image.png

image.png
image.png

接口关联的封装

生成allure-pytest级别的报告

接口自动化测试框架yaml数据驱动封装

@pytest.mark.parametrize(args_name,args_value)

列表-基础用法

import pytestclass TestApi:@pytest.mark.parametrize('args',['百里','一新','娜扎'])def test_api(self,args):print(args)if __name__ == '__main__':pytest.main(['test_api.py'])

image.png

元组-相当于解剖

import pytestclass TestApi:@pytest.mark.parametrize('name,age',[['百里',10],['一新',11],['娜扎',12]])def test_api2(self,name,age):print(name,age)if __name__ == '__main__':pytest.main(['test_api.py'])

image.png

YAML详解

主要作用:
1、配置文件
2、测试用例

数据包的组成
1、map对象 : 键值 name:号的
2、列表,用- 开头

get_token.yml

msxy- name1:1- name2:2- name3:3

基础结构:

-name: 获得统一鉴权码tokenrequest:method:geturl:https://api.weixin.qq.com/cgi-bin/tokendata:grant_type: client_credentialappid: wx4a6bb065c448f76fsecret: "e2219aa93e7e2c788961be3edfe7654evalidate:None

一个接口就用一个yaml文件

pytest运行的几种方式

运行用例的几种方式:主函数模式:1、运行所有: pytest.main()2、指定模块:pytest.main(['vs','test_login.py'])3、指定目录:pytest.main(['vs','./test_login.py'])4、通过nodeid指定运行用例:pytest.main(['vs','./文件夹名/test_login.py::test+04_fun'])  通过函数名称执行命令模式:1、运行所有:pytest2、指定模块:pytest -vs test_login.py3、指定目录:pytest -vs ./test_login.py

实战训练

目录结构

image.png

common.yaml_util.py

import os
import yamlclass YamlUtil:# 读取extract_yml文件 access_token值的获取def read_extract_yaml(self, key):with open(os.getcwd() + "/extract.yml", mode='r', encoding='utf-8')as f:value = yaml.load(stream=f, Loader=yaml.FullLoader)return value[key];# 写入extract_yml文件def write_extract_yaml(self, data):with open(os.getcwd() + "/extract.yml", mode='w', encoding='utf-8')as f:yaml.dump(data=data, stream=f, allow_unicode=True)def clear_yaml(self):with open(os.getcwd() + "/extract.yml", mode='w', encoding='utf-8')as f:f.truncate()# 读取测试用例的get_token/根据文件名而来的ymal文件def read_testcase_yaml(self,yaml_name):with open(os.getcwd() + "/testDemo/"+yaml_name, mode='r', encoding='utf-8')as f:value = yaml.load(stream=f, Loader=yaml.FullLoader)return value;

common.requests_util.py

import jsonimport requestsclass RequestsUtil:#类变量,通过session =requests.session()def send_request(self,method,url,data,**keyword):method = str(method).lower()rep =Noneif method == 'get':rep = RequestsUtil.session.request(method, url=url, params=data, **keyword)else:data=json.dumps(data)rep = RequestsUtil.session.request(method, url=url, data=data, **keyword)return rep.text

reports

报告的生成文件

temp

临时文件

testDemo.conftest 前置文件

import pytestfrom common.yaml_util import YamlUtil@pytest.fixture(scope="function")
def conn_databases():print("连接数据库的操作在里面")yieldprint("关闭数据库")# 自动清除会话,就不需要在方法里面加
@pytest.fixture(scope="session",autouse=True)
def clear_all_yaml():YamlUtil().clear_yaml()

testDemo.get_token.ymal 用例文件,一个接口一个用例

-name: 获得统一鉴权码tokenrequest:method: geturl: https://api.weixin.qq.com/cgi-bin/tokendata:grant_type: client_credentialappid: wx4a6bb065c448f76fsecret: e2219aa93e7e2c788961be3edfe7654evalidate: None

testDemo.post_edit_id.ymal

-name: 编辑接口用例request:method: posturl: https://api.weixin.qq.com/cgi-bin/tags/updatedata: {"tag": {"id": 134, "name": "广东人"}}validate: None

testDemo.test_second_request.py

# coding=utf-8
import json
import re
from unittest import resultimport pytest as pytest
import requests# @pytest.fixture(scope="function")
# def conn_databases():
#     print("连接数据库的操作在里面")
#     yield
#     print("关闭数据库")# 发送 按住ctrl+鼠标左键
from common.requests_util import RequestsUtil
from common.yaml_util import YamlUtilclass TestSecondRequest:@pytest.mark.parametrize('caseinfo',YamlUtil().read_testcase_yaml('get_token.yml'))def test_get_toke(self, caseinfo):print(caseinfo['name'])print(caseinfo['request']['method'])print(caseinfo['request']['url'])print(caseinfo['request']['data'])print(caseinfo['validate'])method=caseinfo['request']['method']url = caseinfo['request']['url']data = caseinfo['request']['data']# 请求result=RequestsUtil().send_request(method,url,data)# self.get_session()# 发送get请求  ,直接使用session来发送请求,这样会话就不会断# 原来  rep = requests.request('get',url=url, params=data)# result = TestSecondRequest.session.request(method, url=url, params=data)result=json.load(result)print(result)if 'access_token' in  result:# 通过key取value值 把access_token写入yaml中YamlUtil().write_extract_yaml({'access_token': result['access_token']})# 是否有返回这个字符船assert 'access_token' in resultelse:print("异常用例")# assert  result['errcode'] == 200

all.py

import osimport pytestif __name__ == '__main__':pytest.main()# os.system("allure generate temp -o reports --clear")// 生成allure报告

pytest.ini

[pytest]
addopts=-vs  --alluredir ./temp
testpaths=./testDemo
python_classes=Test*
python_functions=test_*markers =smoke:maoyan

问题:
在yml文件没法打实现动态参数
在yml没法实现动态上传
在yml没法实现断言
在yml文件里面数据量太大了怎么办

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/165255.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Character Animator 2024(Ch2024):打造生动角色,让动画设计更上一层楼

Character Animator 2024是一款专为角色动画设计师打造的软件,它可以帮助设计师快速创建出丰富多彩的角色动画。无论是初学者还是专业设计师,都可以通过Character Animator 2024轻松实现自己的创意。 Ch2024独特优势: 实时角色动画&#xf…

计算机网络 | 应用层

计算机网络 | 应用层 计算机网络 | 应用层应用层概述网络应用模型客户/服务器模型(Client/Server,C/S)P2P模型(Peer-to-Peer) 域名系统(DNS)层次域名空间域名服务器域名解析过程 文件传输协议&a…

DevExpress WPF Pivot Grid组件,可轻松实现多维数据分析!(二)

在上文中(点击这里回顾>>)我们主要为大家介绍了DevExpress WPF Pivot Grid组件的超快速枢轴分析功能、Microsoft分析服务等,本文将继续介绍图表透视数据的处理、MVVM支持等。欢迎持续关注我们,探索更多新功能哦~ P.S&#…

【工具】利用ffmpeg将网页中的.m3u8视频文件转化为.mp4格式

目录 0.环境 1.背景 2.前提 3.详细描述 1)在网站上找到你想下载的视频的.m3u8链接 2)打开命令行,用ffmpeg命令进行转化 3)过程&结果截图 0.环境 windows64 ffmpeg 1.背景 网页上有个.m3u8格式的视频文件,…

2023高频前端面试题(含答案)

一、简单页面1、CSS选择器样式优先级2、CSS实现三列布局(左右固定宽度,中间自适应) (1)CSS浮动 第一个float:left,第二个float:right,第三个设置margin-left和margin-right (2&#…

LC-2316. 统计无向图中无法互相到达点对数(DFS、并查集)

2316. 统计无向图中无法互相到达点对数 中等 给你一个整数 n ,表示一张 无向图 中有 n 个节点,编号为 0 到 n - 1 。同时给你一个二维整数数组 edges ,其中 edges[i] [ai, bi] 表示节点 ai 和 bi 之间有一条 无向 边。 请你返回 无法互相…

pandas写入MySQL

安装好pandas、mysql pip install pandas pip install pymysql 导入pandas、mysql import pymysql as mysql import pandas as pd 建立连接 conmysql.connect(host10.10.0.221,userroot,passwordroot,databasepandas,port3306,charsetutf8) 创建游标 curcon.cursor() 读…

vite+vue3.0 使用tailwindcss

参考资料: 安装 - TailwindCSS中文文档 | TailwindCSS中文网 npm install -D tailwindcss npm install postcss npm install autoprefixer npx tailwindcss init -p 生成/src/tailwind.config.js和/src/postcss.config.js配置文件 在/src/tailwind.config.js配置文件…

《动手学深度学习 Pytorch版》 9.6 编码器-解码器架构

为了处理这种长度可变的输入和输出, 可以设计一个包含两个主要组件的编码器-解码器(encoder-decoder)架构: 编码器(encoder):它接受一个长度可变的序列作为输入,并将其转换为具有固定…

httpd服务

文章目录 httpd服务1.安装httpd服务2.开启服务,设置服务开机自启立马生效,并查看服务状态3.查看监听端口4.关闭防火墙,设置防火墙开机不自启立马生效;关闭selinux5.写一个index.html文件,在真机浏览器访问测试效果6.查…

vue3插件开发,上传npm

创建插件 在vue3工程下,创建组件vue页: toolset.vue。并设置组件名称。注册全局组件。新建index.js文件。内容如下,可在main.js中引入index.js,注册该组件进行测试。![在这里插入图片描述](https://img-blog.csdnimg.cn/a3409d2cbeec41c797d5…

linux性能分析(四)CPU篇(一)基础

一 CPU篇 遗留: 负载与cpu关系、负载与线程的关系? ① CPU 相关概念 1、physical 物理CPU个数 --> 一般一个实体 2、cpu 核数 3、逻辑CPU个数 逻辑核 4、超线程 super thread 技术 5、各种cpu的计算方式物理 physical CPU的个数: physical id逻…

【数据结构】队列(C语言实现)

📙 作者简介 :RO-BERRY 📗 学习方向:致力于C、C、数据结构、TCP/IP、数据库等等一系列知识 📒 日后方向 : 偏向于CPP开发以及大数据方向,欢迎各位关注,谢谢各位的支持 队列 1. 队列的概念及结构…

基于侏儒猫鼬优化的BP神经网络(分类应用) - 附代码

基于侏儒猫鼬优化的BP神经网络(分类应用) - 附代码 文章目录 基于侏儒猫鼬优化的BP神经网络(分类应用) - 附代码1.鸢尾花iris数据介绍2.数据集整理3.侏儒猫鼬优化BP神经网络3.1 BP神经网络参数设置3.2 侏儒猫鼬算法应用 4.测试结果…

嵌入式养成计划-42----QT 创建项目--窗口界面--常用类及组件

一百零五、如何创建 QT 项目 创建工程 New Project / 文件–>新建。。 /ctrl N 选择一个模板–>Application -->Qt Widgets Application 选择创建的路径,以及设置文件名 下一步 输入类名,选择基类为 QWidget 下一步 选择这个玩意&a…

2020年亚太杯APMCM数学建模大赛A题激光标记舱口轮廓生成求解全过程文档及程序

2020年亚太杯APMCM数学建模大赛 A题 激光标记舱口轮廓生成 原题再现: 激光是20中的一项重要发明世纪,它被称为“最锋利的刀”、“最精确的尺子”和“最不寻常的光”。 激光已越来越多地应用于工业加工, 其中可以是就业在各种加工业务例如作…

凉鞋的 Godot 笔记 203. 变量的常用类型

203. 变量的常用类型 在上一篇,我们对变量进行了概述和简介,知识地图如下: 我们已经接触了,变量的字符串类型,以及一些功能。 在这一篇,我们尝试多接触一些变量的类型。 首先是整数类型。 整数类型 整…

Vue解决 npm -v 报错(一)

报错内容: npm WARN config global --global, --local are deprecated. Use --locationglobal instead. 解决方案: 代码: prefix -g 替换为: prefix --locationglobal 原创作者:吴小糖 创作时间:2023.1…

redis部署与管理

一、关系数据库与非关系型数据库: 1. 关系型数据库: 关系型数据库是一个结构化的数据库,创建在关系模型(二维表格模型)基础上,一般面向于记录。 SQL 语句(标准数据查询语言)就是一种…

【异步爬虫】requests和aiohttp中代理IP的使用

前言 在进行爬虫开发时,我们常常需要使用代理IP来隐藏自己的真实IP地址,以避免被一些网站限制或封禁。requests和aiohttp是两个非常常用的工具,本文将分别介绍如何在它们中使用代理IP,希望可以帮助大家更好地进行异步爬虫开发。 …