-
Notifications
You must be signed in to change notification settings - Fork 0
fix: add compatibility suite tests for $ref sibling properties in JSON schema #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
400cfa6
feat: Added tests for Sibling properties Schema
makeev-pavel b367ca2
feat: Updated tests
makeev-pavel 85987dc
feat: Review
makeev-pavel 5985c8e
feat: Review
makeev-pavel 891b860
feat: Added tests
makeev-pavel cd21192
Merge branch 'refs/heads/develop' into feature/sibling-properties-jso…
makeev-pavel fdaa4d9
chore: set dev version for dependencies
b41ex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
test/compatibility-suites/openapi/templates/sibling-properties-schema.template.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| import { compareFiles } from '../../utils' | ||
| import { JsonPath } from '@netcracker/qubership-apihub-json-crawl' | ||
| import { annotation, breaking, DiffAction, nonBreaking, risky } from '../../../../src' | ||
| import { diffsMatcher } from '../../../helper/matchers' | ||
|
|
||
| const COMPONENTS_SCHEMAS = ['components', 'schemas'] | ||
|
|
||
| export function runResponseSiblingPropertiesSchema(suiteId: string, commonPath: JsonPath): void { | ||
| runTests(suiteId, commonPath) | ||
|
|
||
| test('Change referenced enum when sibling exists for ref', async () => { | ||
| const testId = 'change-referenced-enum-when-sibling-exists-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result).toEqual(diffsMatcher([ | ||
| expect.objectContaining({ | ||
| action: DiffAction.add, | ||
| afterDeclarationPaths: [ | ||
| [...COMPONENTS_SCHEMAS, 'Color', 'enum', 1], | ||
| [...commonPath, 'enum', 1], | ||
| ], | ||
| type: risky, | ||
| }), | ||
| ])) | ||
| }) | ||
|
|
||
| test('Remove sibling maxLength for ref', async () => { | ||
| const testId = 'remove-sibling-maxLength-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result).toEqual(diffsMatcher([ | ||
| expect.objectContaining({ | ||
| action: DiffAction.replace, | ||
| beforeDeclarationPaths: [[...commonPath, 'maxLength']], | ||
| afterDeclarationPaths: [[...COMPONENTS_SCHEMAS, 'Color', 'maxLength']], | ||
| type: breaking, | ||
| }), | ||
| ])) | ||
| }) | ||
| } | ||
|
|
||
| export function runSiblingPropertiesSchema(suiteId: string, commonPath: JsonPath): void { | ||
| runTests(suiteId, commonPath) | ||
|
|
||
| test('Change referenced enum when sibling exists for ref', async () => { | ||
| const testId = 'change-referenced-enum-when-sibling-exists-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result).toEqual(diffsMatcher([ | ||
| expect.objectContaining({ | ||
| action: DiffAction.add, | ||
| afterDeclarationPaths: [ | ||
| [...COMPONENTS_SCHEMAS, 'Color', 'enum', 1], | ||
| [...commonPath, 'enum', 1], | ||
| ], | ||
| type: nonBreaking, | ||
| }), | ||
| ])) | ||
| }) | ||
|
|
||
| test('Remove sibling maxLength for ref', async () => { | ||
| const testId = 'remove-sibling-maxLength-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result).toEqual(diffsMatcher([ | ||
| expect.objectContaining({ | ||
| action: DiffAction.replace, | ||
| beforeDeclarationPaths: [[...commonPath, 'maxLength']], | ||
| afterDeclarationPaths: [[...COMPONENTS_SCHEMAS, 'Color', 'maxLength']], | ||
| type: nonBreaking, | ||
| }), | ||
| ])) | ||
| }) | ||
| } | ||
|
|
||
| function runTests(suiteId: string, commonPath: JsonPath): void { | ||
b41ex marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| test('Add sibling description for ref', async () => { | ||
| const testId = 'add-sibling-description-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result).toEqual(diffsMatcher([ | ||
| expect.objectContaining({ | ||
| action: DiffAction.replace, | ||
| afterDeclarationPaths: [[...commonPath, 'description']], | ||
| beforeDeclarationPaths: [[...COMPONENTS_SCHEMAS, 'Pet', 'description']], | ||
| type: annotation, | ||
| }), | ||
| ])) | ||
| }) | ||
|
|
||
| test('Change sibling enum for ref', async () => { | ||
| const testId = 'change-sibling-enum-for-ref' | ||
| const result = await compareFiles(suiteId, testId) | ||
| expect(result.length).toEqual(0) | ||
b41ex marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| }) | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.