-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Introduce error code for validation errors. #3716
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8c29efe
Introduce error code for validation errors.
johnraz 1834760
Dont change return type of `Serializer.errors`
johnraz c7351b3
Revert change on existing tests
johnraz 42f4c55
Introduce ValidationErrorMessage
johnraz 7971343
Modify ValidationError api
johnraz 24ba3b3
Review step 1 - simplify to clarify
johnraz ba21a1e
review cleanup
johnraz 12e4b8f
WIP - Integrate 2 tuples solution for error codes
johnraz 2344d22
Deal with ValidationError instantiation
johnraz 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
Modify ValidationError api
`ValidationErrorMessage` is now abstracted in `ValidationError`'s constructor
- Loading branch information
commit 7971343a6457c7c72bf48c9c0a3838f01ea67cb3
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,8 +32,7 @@ | |
| unicode_to_repr | ||
| ) | ||
| from rest_framework.exceptions import ( | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might as well keep that formatting as-is.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. indeed blame my IDE XD |
||
| ValidationError, ValidationErrorMessage, | ||
| build_error_from_django_validation_error | ||
| ValidationError, build_error_from_django_validation_error | ||
| ) | ||
| from rest_framework.settings import api_settings | ||
| from rest_framework.utils import html, humanize_datetime, representation | ||
|
|
@@ -546,7 +545,7 @@ def fail(self, key, **kwargs): | |
| msg = MISSING_ERROR_MESSAGE.format(class_name=class_name, key=key) | ||
| raise AssertionError(msg) | ||
| message_string = msg.format(**kwargs) | ||
| raise ValidationError(ValidationErrorMessage(message_string, code=key)) | ||
| raise ValidationError(message_string, code=key) | ||
|
|
||
| @cached_property | ||
| def root(self): | ||
|
|
||
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
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 guess these would be marginally cleaner reformatted as three lines...