-
-
Notifications
You must be signed in to change notification settings - Fork 814
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
Improved group_name and channel_name validation error messages. #1232
Conversation
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.
Hi @ericls.
Thanks for your input here. Are you up for finishing this PR off? (Please let us know. 🙂)
There's a few problems with the new MAX_NAME_LENGTH
variable.
- Nothing fails if I change it to say 200, or 50. (Or any other value.)
- Surely it needs to be doing something in
match_type_and_length()
? - It should probably be moved to an attribute of
BaseChannelLayer
so it can be overridden in a subclass. - Yes, it should be documented as @jpic notes.
I'm not sure I mind the tests as you've written them. (Yes, testing format()
seems unnecessary.) We can come back to that if you resolve the other issues though.
No need to adjust the existing error handling in this PR. Raising the TypeError
is fine.
Hi @carltongibson and @jpic, |
b8339ba
to
324d9d7
Compare
This needs to be rebased after #1792 |
324d9d7
to
dd94963
Compare
Thanks for the reminder, I've rebased the changes on top of the latest main. I've also noticed that the current error message is missing a |
dd94963
to
db2383a
Compare
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.
Great. Thanks @ericls. 👍
db2383a
to
b608fbb
Compare
This is to include the maximum length in the error message when validating group and channels names.
Also found that
invalid_name_error
is defined but never used. This PR also utilizes that to format error messages.Some tests were added.
Closes #1229.