Skip to main content

A Postman to OpenAPI spec converter with mocking facilities

Project description

Openman

A postman to openapi spec conversion tool, which automatically

  • Converts your postman collection (2.1) to OpeanAPI Spec (3.0.0)
  • Mocks your openapi collection to generate responses from postman examples

Other than these, this tool can easily handle ignored fields in responses (explained below)

NOTE Please use postman collection ver 2.1 export (and not 2.0 or earlier). This library only support postman collection 2.1

Installation

NOTE This repo needs you to have python 3.5+ installed

As of now, I haven't pushed this tool to pipy repo yet. Hence, its clone only for now.

PIP

pip install openman

Manual

To install, simple clone this repo

git clone https://github.com/codeasashu/openman.git

and install

python setup.py install

Quick Start

This tool can be used as a python package or as a standalone cli.

To start, simply type openman --help and it will display help

Usage: openman [OPTIONS] COMMAND [ARGS]...

  Convert or mock your postman collection to openapi schema

Options:
  --help  Show this message and exit.

Commands:
  convert
  mock

Convert postman to openapi spec

Easy!! Just use convert command (default output is yaml)

openman convert postman-collection.json spec.yaml

Or, you can output to json by

openman convert -f json postman-collection.json spec.yaml

Mocking spec

I am using the some cherry on top of the awesome project Connexion

Basically, I am using postman example as mock responses, given the request has matching parameters (query, headers etc.). Even if they do not match, this tool gives out the mock responses for provided schema.

openman mock spec.yaml

Ignore schema

Sometimes, your api responses have some data which varies. For instance, consider this response for the api POST /user:

{
    "result": {
        "timestamp": 1572696732,
        "username": "abc",
        "tags": {
            "tag1" : "something",
            "tag3": "somethig else"
        },
        "some-changing-key": "whatever"
    }
}

You do want to record the username, timestamp fields, but what about some-changing-key field? What about fields inside tags? You want to keep the tags key as it will always be included in response, but do not want to keep some-changing-key as it may or maynot appear in responses.

Sometimes you may want to ignore only the values of a key, while sometimes you want the key value pair to be ignored alltogether

For such cases, you may not want to document them. For such purpose, Ignore file is used.

In ignore file, you can document the fields you want the openman to ignore. It uses the jsonpath-rw library and uses its syntax (which is quite easy to learn).

To ignore only values but keep the keys, simple use the jsonpath-rw syntax that points to the key. For ex- $.result.tags.[*] will find everything inside tags field in result object.

To ignore both key and values, simply use the above method, i.e. write your jsonpath-rw regex that matches the path, and append :a to it. For example, if you want to delete everything inside tag including tag field itself, you can do so by: $.result.tags.[*]:a

Taking above example, you want to ignore following fields:

  • everything inside tags (ignore value but NOT the key tags)
  • some-changing-key field (ignore both key and value)

You can define them in a file ignore.yaml as such:

schema:
   /user:
     post:
       200:
         - '$.result.tags.[*]' //Ignore everything inside tags field
         - '$.result.some-changing-key:a' //Ignore 'some-changing-key'. Note the leading :a 

and then you can convert your postman collection to openapi spec without these fields:

openman -i ignore.yaml postman-collection.json spec.yaml

PS: Leading :a in jsonpath-rw syntax with ignore both the key and values, otherwise only values are ignored.

Change spec format

The default output conversion format is yaml. However, you can easily change the format to json by:

openman -f json postman-collection.json spec.json

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Openman-0.1.1.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

Openman-0.1.1-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file Openman-0.1.1.tar.gz.

File metadata

  • Download URL: Openman-0.1.1.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.4

File hashes

Hashes for Openman-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c80582fbc3b586030282191eb59ee22f47f154c72951ad10300f94de0c82e866
MD5 ad163da5f5ad4ad3800c95bff41b209f
BLAKE2b-256 d7233eadc70d3d99a9979d2303ba3e755b02be62381046db1db00bbb849ee78a

See more details on using hashes here.

File details

Details for the file Openman-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: Openman-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/42.0.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.4

File hashes

Hashes for Openman-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5b9164b1b6527ac450a49066f3238914f184ad37ef1438e354041d5c6d0999ec
MD5 151f5cd17567427591822e1ebcef1181
BLAKE2b-256 0a15410405fef44f3e97976efe6076be18833b0d3ecbfcddc5c7eccfc991086e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page