Pytest接口自动化测试框架搭建模板
程序员文章站
2022-03-30 11:18:30
auto_api_test开发环境: pycharm开发语言&版本: python3.7.8测试框架: pytest、测试报告: allure项目源码git地址项目目录结构 api – 模仿...
auto_api_test
开发环境: pycharm
开发语言&版本: python3.7.8
测试框架: pytest、测试报告: allure
项目目录结构
- api – 模仿po模式, 抽象出页面类, 页面类内包含页面所包含所有接口, 并封装成方法可供其他模块直接调用
- config – 配置文件目录
- data – 测试数据目录
- doc – 文档存放目录
- log – 日志
- report – 测试报告
- scripts – 测试脚本存放目录
- tools – 工具类目录
- .gitignore – git忽略
- app.py – 命令行启动入口
- pytest.ini – pytest测试框架配置文件
- readme.md – 开发说明文档
代码分析
pytest.ini
pytest框架的配置文件
[pytest] addopts = --html=../report/report.html # pytest-html报告插件配置 ;addopts = -s --alluredir report # allure-pytest报告插件配置 testpaths = ./scripts # 设置用例目录识别名称 python_files = test*_*.py # 设置测试文件识别名称 python_classes = test* # 设置测试类识别名称 python_functions = test_* # 设置测试方法识别名称
app.py
# 基础路由(方便在部署环境发生变化时切换全局基础路由) base_url = "http://xxxx.com" # 获取脚本的绝对路径(脚本在项目根目录就可以理解为项目路径) abs_path = os.path.abspath(__file__) base_dir = os.path.dirname(abs_path) # 命令行启动此脚本时执行测试用例 pytest.main(["scripts/"])
/config/config.json
配置文件, 目前包含全局请求头配置、类似全局变量的设置, 可通过tools内的工具函数进行读写
请求头具体参数根据需要自行配置
{ "headers": { "host": "xxx.com", "connection": "keep-alive", "accept": "application/json, text/plain, */*", "authorization": "xxxx", "user-agent": "mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/87.0.4280.88 safari/537.36", "content-type": "application/json;charset=utf-8", "origin": "http://xxx.com", "referer": "http://xxx.com/", "accept-encoding": "gzip, deflate", "accept-language": "zh-cn,zh;q=0.9" } }
/api/template_api.py
页面类模板, 包含页面接口的请求方法(增删改查)封装, 主要在此定义好接口和请求入参等内容
# 导包 import app import json from tools.config_info import get_header class templateapi: # xx添加接口 api_add_url = app.base_url + "/xxx/xxxx/add" # xx修改接口 api_upd_url = app.base_url + "/xxx/xxxx/upd" # xx查询接口 api_get_url = app.base_url + "/xxx/xxxx/get" # xx删除接口 api_del_url = app.base_url + "/xxx/xxxx/del/{id}" # xx添加接口函数实现 def api_add(self, session, attr1, attr2): post_data = { "attr1": attr1, "attr2": attr2 } return session.post(self.api_add_url, headers=get_header(), data=json.dumps(post_data)) # xx修改接口函数实现 def api_upd(self, session, attr1, attr2): put_data = { "attr1": attr1, "attr2": attr2 } return session.put(self.api_upd_url, headers=get_header(), data=json.dumps(put_data)) # xx查询接口函数实现 def api_get(self, session, attr1, attr2): params = { "attr1": attr1, "attr2": attr2 } return session.get(self.api_get_url, headers=get_header(), params=params) # xx删除接口函数实现 def api_del(self, session, uid): return session.delete(self.api_del_url.format(id=uid), headers=get_header())
/scripts/test_template.py
测试类以test开头, 测试类和测试方法添加allure装饰器
前置测试类方法 - 初始化requests请求库的session对象, 创建对应的页面对象
后置测试类方法 - 关闭session对象
前置测试方法 - 加休眠
测试方法中添加可选参数化装饰器, 测试方法中通过页面对象调用页面接口请求方法, 传入requests的session对象和方法需要的必要参数, 进行响应结果的处理和断言等操作
日志器可通过引入工具调用
# 导包 import pytest import requests from time import sleep from api.template_api import templateapi from tools.get_log import getlog from tools.read_file import read_json import allure # 获取日志器 log = getlog.get_log() @allure.feature('测试类模板') class testtemplate: session = none # 初始化方法 @classmethod def setup_class(cls): cls.session = requests.session() # 初始化session对象 cls.template = templateapi() # 结束方法 @classmethod def teardown_class(cls): cls.session.close() @classmethod def setup(cls): sleep(1.5) # 测试方法 @allure.story("测试方法模板-add") @pytest.mark.parametrize(("attr1", "attr2", "success", "expect"), read_json("test_add")) def test_add(self, attr1, attr2, success, expect): # 添加功能api调用 response = self.template.api_add(self.session, attr1, attr2) # 打印日志 log.info("添加功能-状态码为: {}".format(response.status_code)) # 断言状态码 assert response.status_code == expect, "状态码断言失败" @allure.story("测试方法模板-upd") @pytest.mark.parametrize(("attr1", "attr2", "success", "expect"), read_json("test_upd")) def test_upd(self, attr1, attr2, success, expect): # 添加功能api调用 response = self.template.api_upd(self.session, attr1, attr2) # 打印日志 log.info("修改功能-状态码为: {}".format(response.status_code)) # 断言状态码 assert response.status_code == expect, "状态码断言失败" @allure.story("测试方法模板-get") @pytest.mark.parametrize(("attr1", "attr2", "success", "expect"), read_json("test_get")) def test_get(self, attr1, attr2, success, expect): # 添加功能api调用 response = self.template.api_get(self.session, attr1, attr2) # 打印日志 log.info("查询功能-状态码为: {}".format(response.status_code)) # 断言状态码 assert response.status_code == expect, "状态码断言失败" @allure.story("测试方法模板-del") @pytest.mark.parametrize(("uid", "success", "expect"), read_json("test_del")) def test_del(self, uid, success, expect): # 添加功能api调用 response = self.template.api_del(self.session, uid) # 打印日志 log.info("删除功能-状态码为: {}".format(response.status_code)) # 断言状态码 assert response.status_code == expect, "状态码断言失败"
/data | /tools
测试数据和具体的操作工具类根据需要自定义
到此这篇关于pytest接口自动化测试框架搭建模板的文章就介绍到这了,更多相关pytest搭建模板内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Java课堂笔记