Implementation of the OpenAPI generator for Postman format v2.1: from the Adyen OpenAPI files it generates the Postman collections in the Postman V2 JSON format.
The collections are available on the AdyenDev Postman space as well as in the Adyen Postman GitHub repository.
More on our blog Effortless API Testing with the Adyen Postman collections.
See the available options to customise the generation.
Run with the pre-built image passing -i
inputspec (path of the OpenAPI spec file) and -o
output dir (location
of the generated file i.e ./postman/gen).
It supports the following commands:
generate
: create the postman.json filepush
: create postman.json and push to your postman.com defaultMy Workspace
. This uses the Postman API and requires a valid API key from Postman's integrations dashboard.
# generate only
docker run -v $(pwd):/usr/src/app \
-it --rm --name postmanv2-container gcatanese/openapi-generator-postman-v2 generate \
-i src/test/resources/SampleProject.yaml \
-o tmp
# generate only (with additional parameters)
docker run -v $(pwd):/usr/src/app \
-it --rm --name postmanv2-container gcatanese/openapi-generator-postman-v2 generate \
-i src/test/resources/SampleProject.yaml \
-o tmp \
--additional-properties folderStrategy=Tags,postmanVariables=MY_VAR1-ANOTHERVAR
# generate and push to Postman.com
# note: require POSTMAN API KEY
docker run -v $(pwd):/usr/src/app \
-e POSTMAN_API_KEY=YOUR_POSTMAN_API_KEY \
-it --rm --name postmanv2-container gcatanese/openapi-generator-postman-v2 push \
-i src/test/resources/SampleProject.yaml \
-o tmp \
--additional-properties folderStrategy=Tags,postmanVariables=MY_VAR1-ANOTHERVAR
Clone and build OpenAPI Generator CLI
Build postman-v2
from source
Run OpenAPI Generator adding postman-v2
jar file in the class path and specifying the PostmanV2Generator
generator:
java -cp target/openapi-generator-postman-v2.jar:/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar \
org.openapitools.codegen.OpenAPIGenerator generate -g com.tweesky.cloudtools.codegen.PostmanV2Generator \
-i src/test/resources/BasicJson.json -o output
Property | Value | Notes |
---|---|---|
generator name | postman-v2 | pass this to the generate command after -g |
generator stability | DEVELOPMENT | |
generator type | DOCUMENTATION | |
generator default templating engine | mustache | |
helpTxt | Creates a Postman json file (v2.1.0) | Schema https://schema.postman.com/collection/json/v2.1.0/draft-07/collection.json |
These options may be applied as additional-properties (cli) or configOptions (plugins).
Option | Description | Values | Default |
---|---|---|---|
folderStrategy | whether to create folders according to the spec’s paths or tags | Paths, Tags | Paths |
pathParamsAsVariables | boolean, whether to create Postman variables for path parameters | true, false | false |
postmanVariables | kebab-case list of Postman variables (i.e VAR1-VAR2-VAR3) to be created during the generation. Matching placeholders in request bodies will be defined as Postman variables | ||
generatedVariables | kebab-case list of auto-generated variables (i.e VAR1-VAR2-VAR3). Matching placeholders in request bodies will be replaced with {{$guid}} Postman formula |
||
requestParameterGeneration | whether to generate the request parameters based on the schema or the examples | Example, Schema | Example |