Tools for validating OpenAPI (Swagger) files.
Перейти к файлу
Ray Chen c0aaed0421
Readme update (#496)
* Updated readme file.
2020-03-24 13:49:20 +08:00
.ci fix issue caused by host path parameter value with url (#482) 2020-03-16 10:46:08 +08:00
.vscode Update pathInPayLoad for MISSING_REQUIRED_PROPERTIES and OBJECT_ADDITONAL_PROPERTIES (#438) 2019-07-12 11:21:34 +08:00
documentation Update documentation with missing error code (#364) 2018-12-05 14:45:37 -08:00
lib Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
regression Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
scripts Remove global cache (#393) 2019-03-06 10:05:37 -08:00
test Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
.gitattributes adding gitattributes. 2017-04-18 16:41:23 -07:00
.gitignore Add package lock file. (#451) 2019-09-02 16:43:38 +08:00
.gitmodules Add regression suites for validateExamples (#403) 2019-05-08 11:39:02 -07:00
.prettierrc Enforce linting and styling (#399) 2019-03-08 15:38:37 -08:00
ChangeLog.md Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
LICENSE.txt move to sway and promises, better logging support, structured cli commands using yargs package, initial protype for live testing 2017-01-16 23:06:51 -08:00
README.md Readme update (#496) 2020-03-24 13:49:20 +08:00
azure-pipelines-securitytasks.yml Add security tasks to CI build pipeline (#465) 2019-12-06 09:58:34 +08:00
azure-pipelines.yml Merge from release to master (#474) 2020-01-20 12:51:33 +08:00
cli.ts Using a JSON parser with a source map (#292) 2018-08-13 12:16:26 -07:00
credScanSuppressions.json Exclude certain swaggers during cache initialization in OAV (#467) 2019-12-16 17:23:31 +08:00
index.ts Pass error filter (#412) 2019-04-05 16:06:04 -07:00
jest.config.js Add regression suites for validateExamples (#403) 2019-05-08 11:39:02 -07:00
oav.code-workspace Remove generated CloudError (#366) 2018-12-06 16:11:21 -08:00
package-lock.json Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
package.json Enable request parameter suppression. (#493) 2020-03-23 14:57:41 +08:00
tsconfig.json Add regression suites for validateExamples (#403) 2019-05-08 11:39:02 -07:00
tslint.json Report exmaple position for request errors (#445) 2019-09-04 13:48:49 +08:00

README.md

openapi-validation-tools [oav]

Build Status code style: prettier

Regression: Build Status How to fix this

Tools for validating OpenAPI (Swagger) files.

Requirements

  • node.js version > 10.x

You can install the latest stable release of node.js from here. For a machine with a linux flavored OS, please follow the node.js installation instructions over here

How to install the tool

npm install -g oav

Command usage:

bash-3.2$ oav -h
Commands:
  extract-xmsexamples <spec-path>           Extracts the x-ms-examples for a
  <recordings>                              given swagger from the .NET session
                                            recordings and saves them in a file.
  generate-uml <spec-path>                  Generates a class diagram of the
                                            model definitions in the given
                                            swagger spec.
  generate-wireformat <spec-path>           Transforms the x-ms-examples for a
                                            given operation into raw
                                            request/response format and saves
                                            them in a markdown file.
  resolve-spec <spec-path>                  Resolves the swagger spec based on
                                            the selected options like allOfs,
                                            relativePaths, examples etc.
  validate-example <spec-path>              Performs validation of x-ms-examples
                                            and examples present in the spec.
  validate-spec <spec-path>                 Performs semantic validation of the
                                            spec.

Options:
  --version          Show version number                               [boolean]
  -l, --logLevel     Set the logging level for console.
  [choices: "off", "json", "error", "warn", "info", "verbose", "debug", "silly"]
                                                               [default: "warn"]
  -f, --logFilepath  Set the log file path. It must be an absolute filepath. By
                     default the logs will stored in a timestamp based log file
                     at "C:\Users\amzavery\oav_output".
  -h, --help         Show help                                         [boolean]

bash-3.2$

What does the tool do? What issues does the tool catch?

  • Semantic validation Semantic validation enforces correctness on the swagger specific elements. Such as paths and operations. Ensure the element definition meet the OpenApi 2.0 specification.

  • Model validation Model validation enforces correctness between example and swagger. It checks whether definitions for request parameters and responses, match an expected input/output payload of the service. Examples of issues:

    • required properties not sent in requests or responses;
    • defined types not matching the value provided in the payload;
    • constraints on properties not met; enumeration values that dont match the value used by the service.

    References: https://github.com/Azure/azure-rest-api-specs/issues/778 , https://github.com/Azure/azure-rest-api-specs/issues/755 , https://github.com/Azure/azure-rest-api-specs/issues/773

    Model validation requires example payloads (request/response) of the service, so the data can be matched with the defined models. See x-ms-examples extension on how to specify the examples/payloads. Swagger “examples” is also supported and data included there is validated as well. To get the most benefit from this tool, make sure to have the simplest and most complex examples possible as part of x-ms-examples.

    • Please take a look at the redis-cache swagger spec as an example for providing "x-ms-examples" over here.
    • The examples need to be provided in a separate file in the examples directory under the api-version directory azure-rest-api-specs/arm-<yourService>/<api-version>/examples/<exampleName>.json. You can take a look over here for the structure of examples.
    • We require you to provide us a minimum (just required properties/parameters of the request/response) and a maximum (full blown) example. Feel free to provide more examples as deemed necessary.
    • We have provided schemas for examples to be provided in the examples directory. It can be found over here. This will help you with intellisene and validation.
    • If you are using vscode to edit your swaggers in the azure-rest-api-specs repo then everything should work out of the box as the schemas have been added in the .vscode/settings.json file over here.
    • If you are using Visual Studio then you can use the urls provided in the settings.json file and put them in the drop down list at the top of a json file when the file is opened in VS.

How does this tool fit with others

Swagger specs validation could be split in the following:

  1. Schema validation
  2. Semantic validation
  3. Model definition validation
  4. Swagger operations execution (against mocked data or live tests)
  5. Human-eye review to complement the above

In the context of “azure-rest-api-specs” repo:

  • #1 is being performed on every PR as part of CI.
  • #2 and #3 are performed by the tool currently in openapi-validation-tools repo and by AutoRest linter. Were working towards integrating them into CI for “azure-rest-api-specs” repo.
  • #4 is not available yet, though were starting to work on it.
  • #5 will be done by the approvers of PRs in “azure-rest-api-specs”, as this wont be automated.

Autorest plugin configuration

  • Please don't edit this section unless you're re-configuring how oav plugs in to AutoRest AutoRest needs the below config to pick this up as a plug-in - see Autorest extensions.
pipeline:
  swagger-document/model-validator:
    input: swagger-document/identity

Live Validation Mode

  • A Live Validation mode has been added to OAV with the purpose of enabling validation of live traffic.
  • Usage (here is a sample of a request-response pair):
const liveValidatorOptions = {
  git: {
    url: "https://github.com/Azure/azure-rest-api-specs.git",
    shouldClone: true
  },
  directory: path.resolve(os.homedir(), "cloneRepo"),
  swaggerPathsPattern: "/specification/**/resource-manager/**/*.json",
  isPathCaseSensitive: false,
  shouldModelImplicitDefaultResponse: true
}

const apiValidator = new oav.LiveValidator(liveValidatorOptions)
await apiValidator.initialize() // Note that for a large number of specs this can take some time.

// After `initialize()` finishes we are ready to validate
const validationResult = apiValidator.validateLiveRequestResponse(requestResponsePair)

Regression testing

Output of the OAV tool has been snapshotted and committed to the repo. The regression test may be run on a sample or all of https://github.com/azure/azure-rest-api-specs. If there are changes to the snapshots the build produces a git patch file as an artifact which may be used to update the snapshots.

Fast Regression (~10mins) is used for merge validation

Slow Regression (~1 hour) is run after merge and should be fixed if it fails

Fixing regression builds

  1. Go to the failed build
  2. Download the artifact patch file
  3. In the OAV directory run git apply <path to patch file>
  4. Commit the patched changes and create a pull request
  5. Validate that the changes look ok and don't represent a breaking change in OAV
  6. Merge the PR

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.