-
Notifications
You must be signed in to change notification settings - Fork 60
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
Fail on missing properties. #342
Merged
nhtruong
merged 6 commits into
opensearch-project:main
from
dblock:fail-on-additional-properties
Jun 19, 2024
Merged
Fail on missing properties. #342
nhtruong
merged 6 commits into
opensearch-project:main
from
dblock:fail-on-additional-properties
Jun 19, 2024
Conversation
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
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
|
dblock
force-pushed
the
fail-on-additional-properties
branch
2 times, most recently
from
June 17, 2024 20:45
a2797e8
to
130f86c
Compare
@nhtruong I'll write tests and document this, but would love your thoughts in the meantime please? |
nhtruong
reviewed
Jun 17, 2024
dblock
force-pushed
the
fail-on-additional-properties
branch
from
June 18, 2024 12:29
130f86c
to
b650c9d
Compare
dblock
requested review from
harshavamsi,
sachetalva,
Xtansia,
VachaShah,
Tokesh and
aabeshov
as code owners
June 18, 2024 14:02
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
nhtruong
reviewed
Jun 18, 2024
Signed-off-by: dblock <[email protected]>
Signed-off-by: dblock <[email protected]>
Signed-off-by: dblock <[email protected]>
Signed-off-by: dblock <[email protected]>
dblock
force-pushed
the
fail-on-additional-properties
branch
from
June 18, 2024 20:31
b8484ac
to
2f91b80
Compare
Signed-off-by: dblock <[email protected]>
dblock
force-pushed
the
fail-on-additional-properties
branch
2 times, most recently
from
June 18, 2024 20:42
e80d5bb
to
25886d8
Compare
Signed-off-by: dblock <[email protected]>
dblock
force-pushed
the
fail-on-additional-properties
branch
from
June 18, 2024 20:45
25886d8
to
b789df6
Compare
nhtruong
approved these changes
Jun 19, 2024
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: false
the 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-errors
that 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
required
field. 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.