Difference between revisions of "Oas tools"

From ETSI Forge
Jump to: navigation, search
Line 2: Line 2:
  
 
= A list of tools to work with OpenAPIs =
 
= A list of tools to work with OpenAPIs =
 +
 +
= Conversions among different formats =
  
 
== swagger2RAML ==
 
== swagger2RAML ==
  
 
* A swagger2RAML converter tool: https://github.com/8x8Cloud/swagger2raml
 
* A swagger2RAML converter tool: https://github.com/8x8Cloud/swagger2raml
 +
 +
== Bootprint-openapi ==
 +
 +
* https://github.com/bootprint/bootprint-openapi
 +
* https://bootprint.knappi.org/
 +
* Converts a openapi-definition into a static html page
 +
* Nodejs
 +
* https://www.npmjs.com/package/bootprint-swagger
 +
 +
=  Validation =
  
 
== JSON schema validation ==
 
== JSON schema validation ==
Line 12: Line 24:
 
* validating JSON against a JSON schema: An online example can be found at: http://www.jsonschemavalidator.net/. It’s worth noting that the online swagger editor (http://editor.swagger.io) doesn’t validate JSON examples contained within a definition file, since that’s deemed out of scope.
 
* validating JSON against a JSON schema: An online example can be found at: http://www.jsonschemavalidator.net/. It’s worth noting that the online swagger editor (http://editor.swagger.io) doesn’t validate JSON examples contained within a definition file, since that’s deemed out of scope.
 
* https://tools.ietf.org/html/draft-newton-json-content-rules-08
 
* https://tools.ietf.org/html/draft-newton-json-content-rules-08
 +
 +
= API Design tools =
  
 
== Restlet ==  
 
== Restlet ==  
Line 21: Line 35:
 
** Client: Google Chrome extension to run tests against a HTTP API
 
** Client: Google Chrome extension to run tests against a HTTP API
 
** Cloud: Deploy online API (paid service)
 
** Cloud: Deploy online API (paid service)
 +
 +
Splitting and merging the specifications
  
 
== JSON REFS ==
 
== JSON REFS ==
Line 41: Line 57:
  
 
* https://github.com/idlerun/swagger-yaml
 
* https://github.com/idlerun/swagger-yaml
* an alternate structure for defining a Swagger API which splits the definition into separate files which are combined by a NodeJS script prior to processing by the Swagger Generator.
+
* An alternate structure for defining a Swagger API which splits the definition into separate files which are combined by a NodeJS script prior to processing by the Swagger Generator.
 +
 
 +
= Testing the APIs =
  
 
== Dredd ==
 
== Dredd ==
Line 53: Line 71:
 
* https://www.getpostman.com/
 
* https://www.getpostman.com/
 
* Automatic HTTP API test suites from JSON files
 
* Automatic HTTP API test suites from JSON files
 
== Bootprint-openapi ==
 
 
* https://github.com/bootprint/bootprint-openapi
 
* https://bootprint.knappi.org/
 
* Converts a openapi-definition into a static html page
 
* Nodejs
 
* https://www.npmjs.com/package/bootprint-swagger
 
  
 
==  Swagger-test ==  
 
==  Swagger-test ==  

Revision as of 17:17, 11 July 2017

A list of tools to work with OpenAPIs

Conversions among different formats

swagger2RAML

Bootprint-openapi

Validation

JSON schema validation

API Design tools

Restlet

  • (https://restlet.com/)
  • Proprietary tools to manage RestFul APIs and Microservises
  • Tools:
    • Studio: Online tool to graphically design APIs (paid service)
    • Client: Google Chrome extension to run tests against a HTTP API
    • Cloud: Deploy online API (paid service)

Splitting and merging the specifications

JSON REFS

  • “json-refs is a simple library for interacting with JSON References and JSON Pointers. While the main purpose of this library is to provide JSON References features, since JSON References are a combination of Object structure and a JSON Pointer, this library also provides some features for JSON Pointers as well.”
  • It will provide JSON resolution also inside YAML files and can output JSON, it is therefore useful to merge different JSON and YAML files into a larger file
  • Run on NodeJS
  • https://github.com/whitlockjc/json-refs

Install

   $ npm I –g json-refs

Usage

   $ cd folder/with/yaml/tree
   $ json-refs resolve –y anything.split.yaml > anything.merged.yaml 

Swagger-yaml

  • https://github.com/idlerun/swagger-yaml
  • An alternate structure for defining a Swagger API which splits the definition into separate files which are combined by a NodeJS script prior to processing by the Swagger Generator.

Testing the APIs

Dredd

  • http://dredd.readthedocs.io/en/latest/
  • HTTP API Testing Framework, Dredd is a language-agnostic command-line tool for validating API description document against backend implementation of the API, Dredd reads your API description and step by step validates whether your API implementation replies with responses as they are described in the documentation.
  • Supports OpenAPI and API blueprint files

Postman

Swagger-test

OpenApis and RAML

Oatts

Validating Swagger Specs with Jenkins

Detect breakage between versions of API

OpenAPIs and Jenkins

AsciiDoctor

Swagger2Markup