oasdiff

command module
v0.5.1 Latest Latest
Warning

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

Go to latest
Published: Apr 4, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

README

CI codecov Go Report Card GoDoc Docker Image Version

OpenAPI Diff

This is a diff tool for OpenAPI Spec 3. It can be used in two ways:

  1. Generate a diff report in YAML, Text/Markdown or HTML from the cmd-line.
  2. Embed into a Go program as a go module

Unique features vs. other diff tools

  • This is a go module - it can be embedded into other Go programs
  • Comprehensive diff: covers all aspects of OpenAPI Specification
  • Deep diff into paths, operations, parameters, request bodies, responses, schemas, enums, callbacks, security etc.
  • Patch support is currently being added - see work in progress

Build

git clone https://github.com/Tufin/oasdiff.git
cd oasdiff
go build

Running from the command-line

./oasdiff -base data/openapi-test1.yaml -revision data/openapi-test2.yaml

Running with Docker

Comparing public files (text output):
docker run --rm -t tufin/oasdiff -format text -base https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test1.yaml -revision https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test3.yaml
Comparing public files (HTML output):
docker run --rm -t tufin/oasdiff -format html -base https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test1.yaml -revision https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test3.yaml
Comparing public files (yaml output):
docker run --rm -t tufin/oasdiff -base https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test1.yaml -revision https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test3.yaml
Comparing public files (change summary):
docker run --rm -t tufin/oasdiff -summary -base https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test1.yaml -revision https://raw.githubusercontent.com/Tufin/oasdiff/main/data/openapi-test3.yaml 
Comparing local files (yaml output):
docker run --rm -t -v $(pwd)/data:/data:ro tufin/oasdiff -base /data/openapi-test1.yaml -revision /data/openapi-test3.yaml

Replace "$(pwd)/data" by the path that contains your files.

Help
docker run --rm -t tufin/oasdiff -help

Output example - Text

New Endpoints

Deleted Endpoints

POST /subscribe
POST /register

Modified Endpoints

GET /api/{domain}/{project}/badges/security-score

  • Modified query param: filter
    • Content changed
      • Schema changed
  • Modified query param: image
  • Modified header param: user
    • Schema changed
      • Schema added
    • Content changed
  • Modified cookie param: test
    • Content changed
  • Response changed
    • New response: default
    • Deleted response: 200
    • Modified response: 201
      • Content changed
        • Schema changed
          • Type changed from 'string' to 'object'

GET /api/{domain}/{project}/install-command

  • Deleted header param: network-policies
  • Response changed
    • Modified response: default
      • Description changed from 'Tufin1' to 'Tufin'
      • Headers changed
        • Deleted header: X-RateLimit-Limit

Output example - YAML

info:
  title:
    from: Tufin
    to: Tufin1
  contact:
    added: true
  license:
    added: true
  version:
    from: 1.0.0
    to: 1.0.1
paths:
  deleted:
    - /register
    - /subscribe
  modified:
    /api/{domain}/{project}/badges/security-score:
      operations:
        modified:
          GET:
            tags:
              deleted:
                - security
            parameters:
              modified:
                cookie:
                  test:
                    content:
                      mediaType: true
                header:
                  user:
                    schema:
                      schemaAdded: true
                    content:
                      mediaTypeDeleted: true
                query:
                  filter:
                    content:
                      schema:
                        required:
                          added:
                            - type
            responses:
              added:
                - default
              deleted:
                - "200"
              modified:
                "201":
                  content:
                    schema:
                      type:
                        from: string
                        to: object
      parameters:
        deleted:
          path:
            - domain
    /api/{domain}/{project}/install-command:
      operations:
        modified:
          GET:
            parameters:
              deleted:
                header:
                  - network-policies
            responses:
              modified:
                default:
                  description:
                    from: Tufin1
                    to: Tufin
                  headers:
                    deleted:
                      - X-RateLimit-Limit
            servers:
              added:
                - https://www.tufin.io/securecloud
endpoints:
  deleted:
    - method: POST
      path: /subscribe
    - method: POST
      path: /register
  modified:
    ? method: GET
      path: /api/{domain}/{project}/badges/security-score
    : tags:
        deleted:
          - security
      parameters:
        modified:
          cookie:
            test:
              content:
                mediaType: true
          header:
            user:
              schema:
                schemaAdded: true
              content:
                mediaTypeDeleted: true
          query:
            filter:
              content:
                schema:
                  required:
                    added:
                      - type
      responses:
        added:
          - default
        deleted:
          - "200"
        modified:
          "201":
            content:
              schema:
                type:
                  from: string
                  to: object
    ? method: GET
      path: /api/{domain}/{project}/install-command
    : parameters:
        deleted:
          header:
            - network-policies
      responses:
        modified:
          default:
            description:
              from: Tufin1
              to: Tufin
            headers:
              deleted:
                - X-RateLimit-Limit
      servers:
        added:
          - https://www.tufin.io/securecloud
security:
  deleted:
    - bearerAuth
servers:
  deleted:
    - tufin.com
tags:
  deleted:
    - security
    - reuven
externalDocs:
  deleted: true
components:
  schemas:
    added:
      - requests
    modified:
      network-policies:
        additionalPropertiesAllowed:
          from: true
          to: false
      rules:
        additionalPropertiesAllowed:
          from: null
          to: false
  parameters:
    deleted:
      header:
        - network-policies
  headers:
    deleted:
      - new
    modified:
      test:
        schema:
          additionalPropertiesAllowed:
            from: true
            to: false
      testc:
        content:
          schema:
            type:
              from: object
              to: string
  requestBodies:
    deleted:
      - reuven
  responses:
    added:
      - default
    deleted:
      - OK
  securitySchemes:
    deleted:
      - OAuth

Embedding into your Go program

diff.Get(&diff.Config{}, spec1, spec2)

See full example: main.go

Notes

  1. oasdiff expects OpenAPI References to be resolved.
    References are normally resolved automatically when you load the spec. In other cases you can resolve refs using this function.

  2. Use configuration to exclude certain types of changes:

  3. Extensions are excluded by default. Use configuration to specify which ones to include.

  4. Paths vs. Endpoints
    OpenAPI Specification has a hierarchial model of Paths and Operations.
    oasdiff respects this heirarchy and displays a hierarchial diff with path changes: added, deleted and modified, and within the later "modified" section, another set of operation changes: added, deleted and modified.
    For example:

    paths:
        deleted:
            - /register
            - /subscribe
        modified:
            /api/{domain}/{project}/badges/security-score:
                operations:
                    modified:
                        GET:

oasdiff also outputs an altrnate simplified view of "endpoints" which are a flattened combination of OpenAPI Paths and Operations, for example:

   endpoints:
        deleted:
            - method: POST
              path: /subscribe
            - method: POST
              path: /register
        modified:
            ?   method: GET
                path: /api/{domain}/{project}/badges/security-score
            :   tags:
                    deleted:
                        - security

Work in progress

  1. Patch support: currently supports Descriptions and a few fields in Schema

Credits

This project relies on the excellent implementation of OpenAPI 3.0 for Go: kin-openapi

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package diff provides a diff function for OpenAPI Spec 3.
Package diff provides a diff function for OpenAPI Spec 3.
Package load provides a function to load an OpenAPI spec from a URL or a Path
Package load provides a function to load an OpenAPI spec from a URL or a Path
Package report generates OpenAPI Spec diff reports as text and HTML.
Package report generates OpenAPI Spec diff reports as text and HTML.

Jump to

Keyboard shortcuts

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