Socket
Socket
Sign inDemoInstall

newman-reporter-openapi

Package Overview
Dependencies
18
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    newman-reporter-openapi

Newman reporter for OpenAPI coverage


Version published
Weekly downloads
116
increased by6.42%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

newman-reporter-openapi

Newman reporter for openapi spec coverage


This is a Newman OpenAPI reporter for generating coverage reports from a Newman run based on an OpenAPI specification.

It was inspired by the openapi-backend projects route matching and a desire to see how much of the OpenAPI spec automated test generators were producing.

It determines coverage as how much of the path/method/response tree has requests made during the run.

├── path
|   └── method
|       ├── response
|       ├── response
|       └── response
└── path
    └── method
        ├── response
        └── response

It produces output like this: wide

Install the reporter


npm install newman-reporter-openapi
or
npm install -g newman-reporter-openapi

Reporter options


Add the report as a custom Newman reporter:

newman --reporters openapi

You can include multiple Newman reporters like this:

newman --reporters "cli,openapi"

The only required parameter for the OpenAPI reporter is the OpenAPI spec using --reporter-openapi-spec:

--reporter-openapi-spec ./openapi.yaml

The reporter will check each Newman API call against the server list in your OpenAPI spec.

If the server isn't in that list, for local testing for example, you can specify it via --reporter-openapi-serverUrl

--reporter-openapi-serverUrl http://127.0.0.1/3000

The reporter has three different report styles with different layouts. The default is wide.

--reporter-openapi-reportstyle wide
--reporter-openapi-reportstyle tall
--reporter-openapi-reportstyle summary

Coming soon --exportFilename for a json based export of the coverage.

Report symbols


In the reports the response codes have the following symbols:

  • + shows a response that was received
  • - shows a response that was not received
  • ? shows a received response that was not part of the spec

Report styles


There are three different versions of the report.

wide - best for when your spec has many different paths (the default) wide

tall - an option for APIs with a small number of paths otherwise it can get too tall tall

summary - for a basic summary of the coverage without path or response details summary

Keywords

FAQs

Last updated on 12 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc