Skip to content
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

fixed SelectMultipleField none_of validator #538

Conversation

AbdullahAlajmi
Copy link

none_of validator for SelectMultipleField is always true and will never raise a ValidationError.
none_of validator now supports both SelectField and SelectMultipleField.

@ftm
Copy link
Contributor

ftm commented Mar 31, 2020

The CI is failing due to the issues fixed in #541. If you rebase your branch off of the current master you should receive all the necessary changes.

@ftm ftm added waiting onhold Waiting feedback and removed waiting labels Mar 31, 2020
@azmeuk
Copy link
Member

azmeuk commented Apr 21, 2020

Also, can you please add some unit tests to this PR?

@@ -594,10 +594,20 @@ def __init__(self, values, message=None, values_formatter=None):
self.values_formatter = values_formatter

def __call__(self, form, field):
if field.type == "SelectMultipleField":
Copy link
Member

@davidism davidism Apr 21, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can't be the solution, as it excludes any other fields that have a list of data. And it just doesn't feel very good to check the name of a specific field like this.

Could maybe do if isinstance(field.data, list). That might have issues with FieldList, but that might not matter. Would also have issues if you want to check "none of these specific sets of choices", rather than "doesn't contain any of these choices".

raise ValidationError(
message % dict(values=self.values_formatter(self.values))
)

if field.data in self.values:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the field is SelectMultipleField, this behavior still triggers if the new if block doesn't raise. That would sort of address my point about validating lists vs items, but it doesn't seem like the right design because there's still no way to control which type of validation you intended.

@azmeuk
Copy link
Member

azmeuk commented Oct 10, 2023

Closing as inactive, and replaced by #807

@azmeuk azmeuk closed this Oct 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
onhold Waiting feedback
Development

Successfully merging this pull request may close these issues.

4 participants