最近文章一直都是python的第三方库使用及爬虫的知识,针对自动化测试的优化版本也没有及时发布出来,今天主要抽时间整理了一下,罗列了运行流程及项目工程目录。
所提供的框架仅供参考,中间还有很多不足之处,也希望大家踊跃提出疑义和建议。
下面进入代码的世界……
工程目录
apiTest
├─apiInterface
├─cases
├─common
├─config
├─dynamicData
├─logs
├─reports
│ ├─allure
│ └─html
├─runMain
├─testDatas
├─requirements.txt
└─settings.py
- apiTest:根目录
- apiInterface:是存放一些url路径,这里只是返回路径,未做多余操作
- cases:测试用例存放文件夹
- common:存放一些公共调用的类
- config:配置文件存放目录
- dynamicData:动态参数存放处,就是指一些接口的上下游需要的参数
- logs:存放程序运行的日志文件
- reports:存放程序运行完成,生成的测试报告,分为allure和html报告
- runMain:存放程序运行入口的目录
- testDatas:测试数据目录,主要是yaml文件
- requirements.txt:程序需要的依赖包
- settings.py:配置文件,路径,环境切换及各类配置的存放,类似django的setting文件
框架的运行流程
主要是运用了python、request、pytest、yaml、Jinja2、allure
组成的测试框架.
其运行流程就是执行测试用例时,会先拿接口路径,其次再读取yaml文件,然后yaml文件替换需要替换的动态数据,再然后就是接口拿到数据取利用python++pytest+requests库去请求,然后根据返回值进行断言及生成allure报告。
实际代码介绍
apiTest/apiInterface/apiMatch.py
# -*-coding:utf-8 -*-
# ** createDate: 2021/11/16 11:37
# ** scriptFile: apiMatch.py
# ** __author__: Li Feng
"""
注释信息:
"""
__all__ = ["api_match"]
class _ApiMatch:
@property
def match_european_cup(self):
"""
2021欧洲杯赛程
查询2021欧洲杯赛程详细信息
:return:
"""
return "/fapig/euro2020/schedule"
api_match = _ApiMatch()
apiTest/cases/test_european_cup.py
# -*- encoding: utf-8 -*-
"""
@__Author__: lifeng
@__Software__: PyCharm
@__File__: test_european_cup.py
@__Date__: 2021/6/13 19:00
"""
import pytest
from common.readRenderYaml import render
from apiInterface.apiMatch import api_match
from dynamicData.matchDynamic import contents
class TestNews:
# 读取yaml文件,并执行数据替换(contents=contents就是接收需要替换的参数)
data = render("api_match", "test_european_cup", contents=contents)
@pytest.mark.parametrize('test_data, title, results', data["test_data"])
def test_european_cup(self, test_data, title, results, auth):
"""
2021欧洲杯赛程
:param test_data: 测试数据
:param title: 传参名称
:param results: 预期结果
:param auth: 登录后返回一个请求对象
:return:
"""
response = auth.send_get(api_match.match_european_cup, test_data)
assert response["reason"] == results["reason"]
assert type(response["result"]["data"]) == type(results["result"]["data"])
if __name__ == '__main__':
pytest.main(["-v", "-s", "test_european_cup.py"])
apiTest/common/readRenderYaml.py
在cases
目录中的test_european_cup.py
文件中调用的render
函数就是下面的这个类提供的。
它的只要功能就是读取yaml
文件然后执行Jinja2
库进行动态参数替换。
# -*-coding:utf-8 -*-
# ** createDate: 2021/11/16 8:18
# ** scriptFile: readRenderYaml.py
# ** __author__: Li Feng
"""
注释信息:
"""
import json
import yaml
imp