Opened 9 years ago
Last modified 3 weeks ago
#26609 assigned Cleanup/optimization
Add system check for field choices using unorderable iterables
Reported by: | Harry Percival | Owned by: | Karl |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | migrations |
Cc: | Karl, Claude Paroz | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Not sure if this is *quite* a bug, but thought I'd mention it since it was a puzzler.
I had an app that seemed to be generatic infinite migrations, ie "makemigrations" would always create new migrations even if I didn't do anything about it.
Eventually I figured out it was (I think) due to Python's non-deterministic dict ordering behaviour (this may be Python 3 only, IIRC said nondetermininstic ordering is to avoid some sort of security thing).
code, eg:
THINGS = { 'key1': 'val1', 'key2': 'val2', #etc } # ... myfield = models.CharField(choices=[(k,v) for k,v in THINGS], max_length=255)
I fixed it by using "sorted" on my list comprehension, but I imagine other people might be v confused, and it feels like something ppl are quite likely to do (use a dict for the basis of choices in a field?)
Change History (15)
comment:1 by , 9 years ago
Summary: | Spurious migrations cause by non-deteministic field choices order → Spurious migrations caused by non-deteministic field choices order |
---|
comment:2 by , 9 years ago
comment:3 by , 9 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
I'm afraid there's not much we can do about it.
The choices
option is meant to be ordered and the migration framework correctly detects changes in ordering.
comment:4 by , 3 weeks ago
#35854 was a duplicate. The recent support added for callables in choices is a nice workaround (#24561).
comment:5 by , 3 weeks ago
Resolution: | wontfix |
---|---|
Status: | closed → new |
Triage Stage: | Unreviewed → Accepted |
Type: | Bug → Cleanup/optimization |
Version: | 1.9 → dev |
Based on conversations in #35854, we are repurposing and reopening this ticket to grow the choices existing system check to advice against unorderable iterables.
comment:7 by , 3 weeks ago
Summary: | Spurious migrations caused by non-deteministic field choices order → Add system check for field choices using unorderable iterables |
---|
comment:8 by , 3 weeks ago
comment:9 by , 3 weeks ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:10 by , 3 weeks ago
I have not been entirely clear on how check error numbers are created. I can see where they're documented but it is not self-evident to me whether there is a pattern to them. Should this be "E013"? Should it just be added into the existing "E004"?
Also, barring testing against known unstable types, does anyone have any clever ways to do this test? I'm going to just check specifically against sets
(dicts
are something we want to continue to allow, right?). I'll use a list so it can be modified in the future if needed, but that's the only one I'm currently aware of this problem for.
comment:11 by , 3 weeks ago
Karl: as for the error code, I would use the same code E004
by strengthening the guard in the if
condition, and I guess checking against set
is reasonable (system checks are best effort):
-
django/db/models/fields/__init__.py
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index d1f31f0211..add7236a3a 100644
a b class Field(RegisterLookupMixin): 318 318 if not self.choices: 319 319 return [] 320 320 321 if not isinstance(self.choices, Iterable) or isinstance(self.choices, str):321 if not isinstance(self.choices, Iterable) or isinstance(self.choices, (str, set)): 322 322 return [ 323 323 checks.Error( 324 "'choices' must be a mapping (e.g. a dictionary) or an iterable "325 "(e.g. a list or tuple ).",324 "'choices' must be a mapping (e.g. a dictionary) or an stable iterable " 325 "(e.g. a list or tuple, but not set).", 326 326 obj=self, 327 327 id="fields.E004", 328 328 )
Test are needed though! See tests/invalid_models_tests/test_ordinary_fields.py.
Also please note that docs/ref/checks.txt will need updating.
comment:12 by , 3 weeks ago
Or replace not isinstance(self.choices, Iterable)
by not isinstance(self.choices, (Sequence, Mapping))
?
comment:13 by , 3 weeks ago
I'm cool with just adding to E004
.
However, I've run into a new issue that I haven't been able to identify.
My test works if the field uses a set like {1,2}
, but not if it is a set of tuples like {("a","A"), ("b","B")}
. If I type check right before actually doing the test it is somehow identified as a list
. It seems that Django is doing some work on the value of choices
before it does the check? Anyone know what's going on there?
comment:14 by , 3 weeks ago
For example, this test passes:
def test_unordered_choices(self): class Model(models.Model): CHOICES_INT = {1,2} field = models.IntegerField(choices=CHOICES_INT) field = Model._meta.get_field("field") self.assertEqual( field.check(), [ Error( "'choices' must be a mapping (e.g. a dictionary) or an order-stable " " iterable (e.g. a list or tuple).", obj=field, id="fields.E004", ), ], )
But this one does not (i.e. the check does not get flagged):
def test_unordered_choices(self): class Model(models.Model): CHOICES_INT = {(1, "2"), (2, "2")} field = models.IntegerField(choices=CHOICES_INT) field = Model._meta.get_field("field") self.assertEqual( field.check(), [ Error( "'choices' must be a mapping (e.g. a dictionary) or an order-stable " " iterable (e.g. a list or tuple).", obj=field, id="fields.E004", ), ], )
AssertionError: Lists differ: [] != [<Error: level=40, msg="'choices' must be [135 chars]13'>] Second list contains 1 additional elements. First extra element 0: <Error: level=40, msg="'choices' must be a 'orderable' iterable (e.g. a list or tuple), not 'set'.", hint=None, obj=<django.db.models.fields.IntegerField: field>, id='fields.E013'> - [] + [<Error: level=40, msg="'choices' must be a 'orderable' iterable (e.g. a list or tuple), not 'set'.", hint=None, obj=<django.db.models.fields.IntegerField: field>, id='fields.E013'>]
comment:15 by , 3 weeks ago
Here's my code so far, open to any ideas: https://github.com/WoosterTech/django/tree/ticket_26609
ah, i think it's not just python 3: https://mail.python.org/pipermail/python-announce-list/2012-March/009394.html