-
Notifications
You must be signed in to change notification settings - Fork 6
Fix/gr ndsp 125 duplicate keys in data contract details #159
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
Open
georgeRobertson
wants to merge
1
commit into
release_v010
Choose a base branch
from
fix/gr-ndsp-125-duplicate_keys_in_data_contract_details
base: release_v010
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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
20 changes: 12 additions & 8 deletions
20
tests/testdata/flights/flights_data_contract_error_details.json
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 |
|---|---|---|
| @@ -1,14 +1,18 @@ | ||
| { | ||
| "country_id": { | ||
| "Blank": { | ||
| "error_code": "CountryIdIsMissing", | ||
| "error_message": "Record Rejected - Country is missing an id" | ||
| "country": { | ||
| "country_id": { | ||
| "Blank": { | ||
| "error_code": "CountryIdIsMissing", | ||
| "error_message": "Record Rejected - Country is missing an id" | ||
| } | ||
| } | ||
| }, | ||
| "airport_id": { | ||
| "Blank": { | ||
| "error_code": "AirportIdIsMissing", | ||
| "error_message": "Record Rejected - Airport is missing an id" | ||
| "airport": { | ||
| "airport_id": { | ||
| "Blank": { | ||
| "error_code": "AirportIdIsMissing", | ||
| "error_message": "Record Rejected - Airport is missing an id" | ||
| } | ||
| } | ||
| } | ||
| } |
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 |
|---|---|---|
| @@ -1,27 +1,29 @@ | ||
| { | ||
| "title": { | ||
| "Blank": { | ||
| "error_code": "BLANKTITLE", | ||
| "error_message": "title should not be blank", | ||
| "error_level": "submission" | ||
| } | ||
| }, | ||
| "year": { | ||
| "Blank": { | ||
| "error_code": "BLANKYEAR", | ||
| "error_message": "year not provided", | ||
| "is_informational": true | ||
| "movies": { | ||
| "title": { | ||
| "Blank": { | ||
| "error_code": "BLANKTITLE", | ||
| "error_message": "title should not be blank", | ||
| "error_level": "submission" | ||
| } | ||
| }, | ||
| "Bad value": { | ||
| "error_code": "DODGYYEAR", | ||
| "error_message": "year value ({{year}}) is invalid", | ||
| "reporting_entity": "movies_rename_test" | ||
| } | ||
| }, | ||
| "cast.date_joined": { | ||
| "Bad value": { | ||
| "error_code": "DODGYDATE", | ||
| "error_message": "date_joined value is not valid: {{__error_value}}" | ||
| "year": { | ||
| "Blank": { | ||
| "error_code": "BLANKYEAR", | ||
| "error_message": "year not provided", | ||
| "is_informational": true | ||
| }, | ||
| "Bad value": { | ||
| "error_code": "DODGYYEAR", | ||
| "error_message": "year value ({{year}}) is invalid", | ||
| "reporting_entity": "movies_rename_test" | ||
| } | ||
| }, | ||
| "cast.date_joined": { | ||
| "Bad value": { | ||
| "error_code": "DODGYDATE", | ||
| "error_message": "date_joined value is not valid: {{__error_value}}" | ||
| } | ||
| } | ||
| } | ||
| } |
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.
Haven't investigated so might be harder than suggesting, but can't you pass the just the entities contract details to the row validator in the get_contract_metadata method?
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.
yep good spot - tested this and works with way fewer changes. Will revert the changes in here and apply the new change.