Convert apidoc data to JSON testcases for HttpRunner.
Project description
apidoc2runner
Convert apidoc data to JSON testcases for HttpRunner.
apidoc规范
usage
To see apidoc2runner
version:
$ python main.py -V
To see available options, run
$ python main.py -h
usage: main.py [-h] [-V] [--log-level LOG_LEVEL]
[apidoc_testset_file] [-- output_dir] [-- output_file_type]
Convert apidoc testcases to JSON testcases for HttpRunner.
positional arguments:
apidoc_testset_file Specify apidoc testset file.
-- output_dir Optional. Specify converted JSON testset folder.
-- output_file_type Optional. Generate file format , default json.
optional arguments:
-h, --help show this help message and exit
-V, --version show version
--log-level LOG_LEVEL Specify logging level, default is INFO.
examples
In most cases, you can run apidoc2runner
like this:
$ python3 main.py tests/data/test.json --output_dir tests/apidoc2runner --output_file_type yaml
INFO:root:Generate JSON testset successfully: output.json
As you see, the first parameter is apidoc source file path, and the second is converted JSON file path.
The output testset file type is detemined by the suffix of your specified file.
If you only specify apidoc source file path, the output testset is in JSON format by default and located in the same folder with source file.
$ python3 main.py tests/data/test.json
INFO:root:Generate JSON testset successfully: test/test.output.json
generated testset
generated JSON testset output.json
shows like this:
[
{
"test": {
"name": "/api/v1/Account/Login",
"request": {
"method": "POST",
"url": "https://httprunner.top/api/v1/Account/Login",
"headers": {
"Content-Type": "application/json"
},
"json": {
"UserName": "test001",
"Pwd": "123",
"VerCode": ""
}
},
"validate": []
}
}
]
参考来源
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
Built Distribution
File details
Details for the file apidoc2runner-0.0.1.tar.gz
.
File metadata
- Download URL: apidoc2runner-0.0.1.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40f87818b181d28e2e88a305e607a883065d134af2e31d90e2ffc212f4d54306 |
|
MD5 | e93ceee66643632a02cdb2873c4aab93 |
|
BLAKE2b-256 | 4c78761292a7d8d84205b5078ee40ffe1e4e0d6c0f6eaae4f889b5c1617fe498 |
File details
Details for the file apidoc2runner-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: apidoc2runner-0.0.1-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3063cb2a1543d6daac7d0ef9b21a0257b471c454eef2fe41aeb98bf36514679 |
|
MD5 | 62e781452cb9e4889fcebbe6796735e9 |
|
BLAKE2b-256 | 795955bd7c0ee7866078628dad08073833fc01f1821798d8d73cd18c24f70f0c |