Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/httprunner/postman2case
Convert Postman Collection Format to JSON/YAML testcases for HttpRunner.
https://github.com/httprunner/postman2case
httprunner postman postman-collection
Last synced: 2 months ago
JSON representation
Convert Postman Collection Format to JSON/YAML testcases for HttpRunner.
- Host: GitHub
- URL: https://github.com/httprunner/postman2case
- Owner: httprunner
- License: mit
- Created: 2018-04-17T07:05:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-27T19:12:07.000Z (about 5 years ago)
- Last Synced: 2024-10-09T05:48:28.293Z (3 months ago)
- Topics: httprunner, postman, postman-collection
- Language: Python
- Size: 18.6 KB
- Stars: 20
- Watchers: 5
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# postman2case
[![LICENSE](https://img.shields.io/github/license/HttpRunner/postman2case.svg)](https://github.com/HttpRunner/postman2case/blob/master/LICENSE) [![Build Status](https://travis-ci.org/HttpRunner/postman2case.svg?branch=master)](https://travis-ci.org/HttpRunner/postman2case) [![coveralls](https://coveralls.io/repos/github/HttpRunner/postman2case/badge.svg?branch=master)](https://coveralls.io/github/HttpRunner/postman2case?branch=master)
Convert postman data to JSON testcases for HttpRunner.
## usage
To see ``postman2case`` version:
```shell
$ python main.py -V
0.0.1
```To see available options, run
```shell
$ python main.py -h
usage: main.py [-h] [-V] [--log-level LOG_LEVEL]
[postman_testset_file] [output_testset_file]Convert postman testcases to JSON testcases for HttpRunner.
positional arguments:
postman_testset_file Specify postman testset file.
output_testset_file Optional. Specify converted JSON testset file.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 ``postman2case`` like this:
```shell
$ python3 main.py test/test.json output.json
INFO:root:Generate JSON testset successfully: output.json
```As you see, the first parameter is postman 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 postman source file path, the output testset is in JSON format by default and located in the same folder with source file.
```shell
$ python3 main.py test/test.json
INFO:root:Generate JSON testset successfully: test/test.output.json
```## generated testset
generated JSON testset ``output.json`` shows like this:
```json
[
{
"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": []
}
}
]
```