-
Notifications
You must be signed in to change notification settings - Fork 9k
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
fix(oas3): fix getting initial values for request body in OpenAPI 3.x #9762
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8d1b140
fix(oas3): get examples for oneOf and anyOf in request body
glowcloud c99fee1
refactor(oas3): refactor getting initial values for request body in O…
glowcloud f568552
fix(oas3): stop schema overwrite for oneOf and anyOf
glowcloud 3a81c9b
refactor: add empty line between operations
glowcloud d4a043c
Merge branch 'master' into issue-9745-refactor
glowcloud 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 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 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 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
28 changes: 28 additions & 0 deletions
28
test/e2e-cypress/e2e/features/plugins/oas3/one-of-any-of-example.cy.js
This file contains 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,28 @@ | ||
/** | ||
* @prettier | ||
*/ | ||
|
||
describe("OpenAPI 3.0 oneOf and anyOf example", () => { | ||
it("should show example values for multipart/form-data and application/x-www-form-urlencoded content types", () => { | ||
cy.visit("/?url=/documents/features/oas3-one-of-any-of-example.yaml").then( | ||
() => { | ||
cy.contains("/documentsWithCombineOneOf") | ||
.click() | ||
.get(".try-out__btn") | ||
.click() | ||
.get("textarea") | ||
.contains("documentDate") | ||
.should("exist") | ||
cy.contains("/documentsWithCombineOneOf").click() | ||
cy.contains("/documentsWithCombineAnyOf") | ||
.click() | ||
.get(".try-out__btn") | ||
.contains("Try it out") | ||
.click() | ||
.get("textarea") | ||
.contains("documentDate") | ||
.should("exist") | ||
} | ||
) | ||
}) | ||
}) |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think
$$ref
should be the exception when checking if we have properties other thananyOf
oroneOf
in the schema.Not sure if there's a better way of doing this than filtering out these properties.