swagger
Project description
生成pytest用例
1. 初始化
Swagger2Tests --init --target='./'
初始化项目时会在指定的target
目录,初始化项目,并且生成一些基础文件。
- constants 可配置一些公共参数 比如 domain等
- helpers 一些通用方法
- templates 生成模板,可进行自定义修改
生成测试文件
Swagger2Tests --swagger='https://swagger.json' --target='./'
- swagger 参数支持文件和url
当前会按请求参数类型,一次性生成固定值,如果需要每次请求都动态更改,则可以在文件里进行修改,使用Helper类的方法
def test_chargingUsingPOST(self):
# 计算费用
requestBody = {
"appid": REQUEST_APPID,
"bizContent": {
'amount': Helper.get_random_float(),
'gasId': 'string',
'gunNo': Helper.get_random_int(),
'oilNo': Helper.get_random_int()
},
"sign": "string",
"timestamp": Helper.get_random_datetime()
}
用pytest 进行接口测试
python3 pytest_main.py
import pytest
if __name__ == '__main__':
pytest.main(['-s'])
- 使用pytest_main.py 执行的意义在于,避免有使用自定义包,因目录层级而存在的包导入问题
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Swagger2Tests-1.0.7.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for Swagger2Tests-1.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f7b57adb0e3426b54af32b3162f8002d21dab1fed7effa3e7ae817c19b332df |
|
MD5 | cba5c471c406e6f3c6ae9727de93f6a5 |
|
BLAKE2b-256 | d1d7ae9777c62ad4e49d260657b710e406c8dcb410d34fb0d6f3e480c42f7170 |