Fail on missing properties.#342
Merged
nhtruong merged 6 commits intoopensearch-project:mainfrom Jun 19, 2024
Merged
Conversation
Contributor
Changes AnalysisCommit SHA: b789df6 API ChangesSummary
ReportThe full API changes report is available at: https://github.com/opensearch-project/opensearch-api-specification/actions/runs/9571977030/artifacts/1614563652 API Coverage
|
a2797e8 to
130f86c
Compare
Member
Author
|
@nhtruong I'll write tests and document this, but would love your thoughts in the meantime please? |
nhtruong
reviewed
Jun 17, 2024
130f86c to
b650c9d
Compare
Member
Author
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
Signed-off-by: dblock <dblock@amazon.com>
Signed-off-by: dblock <dblock@amazon.com>
Signed-off-by: dblock <dblock@amazon.com>
Signed-off-by: dblock <dblock@amazon.com>
b8484ac to
2f91b80
Compare
Signed-off-by: dblock <dblock@amazon.com>
e80d5bb to
25886d8
Compare
Signed-off-by: dblock <dblock@amazon.com>
25886d8 to
b789df6
Compare
nhtruong
approved these changes
Jun 19, 2024
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
A large category of bugs in the schema is that some fields are missing. For example, the distribution filed in the response from GET / was added in #336.
We should have detected the missing field in tests. Had the info schema had
additionalProperties: falsethe schema validation would have failed with "data/version must NOT have additional properties". However adding that option means that our published schema cannot be future-proof for when new fields are added.This PR dynamically injects
additionalProperties: ...withajv-errorsthat allows to custom render an error message that contains the property name that is missing.For now it only applies to any set of properties with a
requiredfield. Otherwise it creates some false positives on index responses with dynamic mappings.With this change:
You get all the errors:
Issues Resolved
Closes #338.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.