spectrum

command module
v1.18.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 15, 2024 License: MIT Imports: 7 Imported by: 0

README

Spectrum - OpenAPI Spec SDK and Postman Converter

Build Status Go Report Card Docs LOC License

Spectrum is a multi-purpose OpenAPI Spec SDK that includes enhanced Postman conversion. Most of the OpenAPI Spec SDK is designed to support OAS3. Some functionality for OAS2 exists.

The following article provides an overview of OpenAPI spec to Postman conversion:

  1. Blog Introduction

Use Cases

  1. Converting from OpenAPI Spec to Postman where x-tagGroups are converted to Postman folders.
  2. Programmatically editing specs for reproducible results, typically when source spec is maintained.
  3. Merging multiple specs when a single spec is desired.
  4. Splitting a spec by tags when multiple specs are desired.

Packages and Major Features

  • openapi2 (godoc)
    1. Support for OpenAPI 2 files, including serialization, deserialization, and validation.
    2. Merging of multiple specs
    3. Postman 2 Collection conversion
  • openapi3 (godoc)
    1. Support for OpenAPI 3 files, including serialization, deserialization, and validation.
    2. Merging of multiple specs
    3. Splitting specs by tag
    4. Output of spec to tabular format to HTML (API Registry), CSV, XLSX. HTML API Registry has a bonus feature that makes each line clickable. Click any line here: http://ringcentral.github.io/api-registry/
    5. Programmatic API to modify OpenAPI specs using rules
    6. Programmatic ability to "fix" spec, e.g. change response Content Type to match output (needed for Engage Voice)
    7. OpenAPI 3 linter
    8. Statistics: Counts operations, schemas, properties & parameters (with and without descriptions), etc.
    9. Postman 2 Collection conversion
    10. Ability to merge in Postman request body examples into Postman 2 Collection
    11. Functionality is built on kin-openapi: https://github.com/getkin/kin-openapi
  • openapi3edit (godoc)
    1. Programmatic SDK-based editor for OAS3 specifications.
  • openapi3lint (godoc)
    1. Extensible linter for OAS3 specifications.
  • postman2 (godoc)
    1. Support for Postman 2 Collection files, including serialization and deserialization.
    2. CLI and library to Convert OpenAPI Specs to Postman Collection
    3. Add Postman environment variables to URLs, e.g. Server URLs like https://{{HOSTNAME}}/restapi
    4. Add headers, such as environment variable based Authorization headers, such as Authorization: Bearer {{myAccessToken}}
    5. Utilize baseline Postman collection to add Postman-specific functionality including Postman prerequest scripts.
    6. Add example request bodies, e.g. JSON bodies with example parameter values.
  • raml08
    1. Support for parsing RAML v0.8
    2. Limited functionality to extracting OpenAPI v3 description and summary from description and displayName respectively.

Notes

  • Postman 4.10.7 does not natively support JSON requests so request bodies need to be entered using the raw body editor. A future task is to add Swagger request examples as default Postman request bodies.
  • Postman 2.0 spec supports polymorphism and doesn't have a canonical schema. For example, the request.url property can be populated by a URL string or a URL object. Spectrum uses the URL object since it is more flexible. The function simple.NewCanonicalCollectionFromBytes(bytes) can be used to read either a simple or object based spec into a canonical object spec.
  • This has only been used on the RingCentral Swagger spec to date but will be used for more in the future. Please feel free to use and contribute. Examples are located in the examples folder.

Installation

The following command will install the executable binary spectrum into the ~/go/bin directory.

$ go get github.com/grokify/spectrum

Usage

Simple Usage
// Instantiate a converter with default configuration
conv := spectrum.NewConverter(spectrum.Configuration{})

// Convert a Swagger spec
err := conv.Convert("path/to/swagger.json", "path/to/pman.out.json")
Usage with Features

The following can be added which are especially useful to use with environment variables.

  • Custom Hostname
  • Custom Headers
// Instantiate a converter with overrides (using Postman environment variables)
cfg := spectrum.Configuration{
	PostmanURLBase: "{{RINGCENTRAL_SERVER_URL}}",
	PostmanHeaders: []postman2.Header{
		{
			Key:   "Authorization",
			Value: "Bearer {{my_access_token}}",
		},
	},
}
conv = spectrum.NewConverter(cfg)

// Convert a Swagger spec with a default Postman spec
err := conv.MergeConvert("path/to/swagger.json", "path/to/pman.base.json", "path/to/pman.out.json")
Example

An example conversion is included, examples/ringcentral/convert.go which creates a Postman 2.0 spec for the RingCentral REST API using a base Postman 2.0 spec and the RingCentral basic Swagger 2.0 spec.

A video of importing the resulting Postman collection is available on YouTube.

Example files include:

The RingCentral spec uses the following environment variables. The following is the Postman bulk edit format:

RC_SERVER_HOSTNAME:platform.devtest.ringcentral.com
RC_APP_KEY:myAppKey
RC_APP_SECRET:myAppSecret
RC_USERNAME:myMainCompanyPhoneNumber
RC_EXTENSION:myExtension
RC_PASSWORD:myPassword

For multiple apps or users, simply create a different Postman environment for each.

To set your environment variables, use the Settings Gear icon and then click "Manage Environments"

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
cmd
examples
ext
openapi2openapi3
openapi2openapi3 relies on `swagger2openapi` to convert Swagger 2.0 specs to OpenAPI 3.0 specs.
openapi2openapi3 relies on `swagger2openapi` to convert Swagger 2.0 specs to OpenAPI 3.0 specs.
ruleschemaobjectpropsexist
ruleschemaobjectpropsexist ensures that schema objects have properties.
ruleschemaobjectpropsexist ensures that schema objects have properties.
raml08

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL