Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.64 KB

CUSTOMIZING-CHECKS.md

File metadata and controls

35 lines (29 loc) · 1.64 KB

How to Add Custom Breaking-Changes Checks

Unit Test

  1. Add a unit test for your scenario in one of the test files under checker with a comment "BC: <use-case> is breaking"
  2. Add any accompanying OpenAPI specs under data

Localized Messages

  1. Add localized texts under checker/localizations_src (you can use Google Translate for Russian)
  2. Update localization source file:
    go-localize -input checker/localizations_src -output checker/localizations
    
    To install go-localize:
    go install github.com/m1/go-localize@latest
    
  3. Make sure that checker/localizations/localizations.go contains the new messages

Write the Checker Function

  1. Create new go file under checker and name it by the breaking change use case
  2. Create a check func inside the file and name it accordingly
  3. Add the checker func to the defaultChecks or optionalChecks list

Documentation

  1. Optionally, add additional unit tests and comment them with "BC: <use-case> is breaking" or "BC: <use-case> is not breaking"
  2. Update BREAKING-CHANGES-EXAMPLES.md:
    ./scripts/test.sh
    
  3. Make sure that BREAKING-CHANGES-EXAMPLES.md was updated with your use-cases
  4. If your check is optional, also add it to this list of optional checks

Example

See this example of adding a custom check: https://github.com/Tufin/oasdiff/pull/208/files