Opened 2 days ago

Last modified 80 minutes ago

#35569 assigned Cleanup/optimization

Misleading ValidationError wording from `limit_choices_to` violation

Reported by: Jacob Walls Owned by: Jacob Walls
Component: Database layer (models, ORM) Version: 4.2
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The ValidationError raised when a choice violating ForeignKey.limit_choices_to is made refers to an instance "not existing", when in reality, the instance may exist but is simply not an allowed choice.

With the example field:

In [5]: Person(staff_member_id=2).full_clean()
---------------------------------------------------------------------------
ValidationError                           Traceback (most recent call last)
Cell In[5], line 1
----> 1 Person(staff_member_id=2).full_clean()

File ~/release/lib/python3.12/site-packages/django/db/models/base.py:1502, in Model.full_clean(self, exclude, validate_unique, validate_constraints)
   1499         errors = e.update_error_dict(errors)
   1501 if errors:
-> 1502     raise ValidationError(errors)

ValidationError: {'staff_member': ['user instance with id 2 does not exist.']}

In [6]: User.objects.get(id=2)
Out[6]: <User: anonymous>

We could use wording like "not a valid choice" and reuse that wording for nonexistent instances as well if there is a disclosure concern about introducing a distinction between the two cases.

Change History (3)

comment:1 by Jacob Walls, 2 days ago

Summary: Misleading ValidationError from `limit_choices_to` violationMisleading ValidationError wording from `limit_choices_to` violation

comment:2 by Simon Charette, 2 days ago

Triage Stage: UnreviewedAccepted

Changing the logic to disambiguate between "not exists" and "not matching" would require a non-negligible amount of work (we'd have to annotate the limits_choice_to criteria and check its value instead of simply doing queryset = queryset.complex_filter(...)) and introduces undesirable existence disclosure as you brought up.

Switching the validation error message to "not a valid choice" makes sense though as it prevents disclosure, is not an invasive patch, and quite frankly is a better user error message.

comment:3 by Jacob Walls, 80 minutes ago

Has patch: set
Note: See TracTickets for help on using tickets.
Back to Top