Relaxed some query ordering assertions in various tests.
It accounts for differences seen on MySQL with MyISAM storage engine.
This commit is contained in:
parent
08f30d1b6a
commit
1760ad4e8c
|
@ -874,7 +874,7 @@ class ListFiltersTests(TestCase):
|
||||||
request.user = self.alfred
|
request.user = self.alfred
|
||||||
changelist = modeladmin.get_changelist_instance(request)
|
changelist = modeladmin.get_changelist_instance(request)
|
||||||
filterspec = changelist.get_filters(request)[0][0]
|
filterspec = changelist.get_filters(request)[0][0]
|
||||||
self.assertEqual(
|
self.assertCountEqual(
|
||||||
filterspec.lookup_choices,
|
filterspec.lookup_choices,
|
||||||
[
|
[
|
||||||
(self.djangonaut_book.pk, "Djangonaut: an art of living"),
|
(self.djangonaut_book.pk, "Djangonaut: an art of living"),
|
||||||
|
|
|
@ -502,7 +502,7 @@ class AggregationTests(TestCase):
|
||||||
|
|
||||||
def test_sliced_conditional_aggregate(self):
|
def test_sliced_conditional_aggregate(self):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
Author.objects.all()[:5].aggregate(
|
Author.objects.order_by("pk")[:5].aggregate(
|
||||||
test=Sum(Case(When(age__lte=35, then=1)))
|
test=Sum(Case(When(age__lte=35, then=1)))
|
||||||
)["test"],
|
)["test"],
|
||||||
3,
|
3,
|
||||||
|
|
|
@ -212,7 +212,7 @@ class NonAggregateAnnotationTestCase(TestCase):
|
||||||
with register_lookup(DecimalField, Floor):
|
with register_lookup(DecimalField, Floor):
|
||||||
books = Book.objects.annotate(floor_price=F("price__floor"))
|
books = Book.objects.annotate(floor_price=F("price__floor"))
|
||||||
|
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
books.values_list("pk", "floor_price"),
|
books.values_list("pk", "floor_price"),
|
||||||
[
|
[
|
||||||
(self.b1.pk, 30),
|
(self.b1.pk, 30),
|
||||||
|
|
|
@ -18,7 +18,7 @@ class NullIfTests(TestCase):
|
||||||
authors = Author.objects.annotate(nullif=NullIf("alias", "name")).values_list(
|
authors = Author.objects.annotate(nullif=NullIf("alias", "name")).values_list(
|
||||||
"nullif"
|
"nullif"
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
authors,
|
authors,
|
||||||
[
|
[
|
||||||
("smithj",),
|
("smithj",),
|
||||||
|
@ -34,7 +34,7 @@ class NullIfTests(TestCase):
|
||||||
authors = Author.objects.annotate(
|
authors = Author.objects.annotate(
|
||||||
nullif=NullIf("name", Value(None))
|
nullif=NullIf("name", Value(None))
|
||||||
).values_list("nullif")
|
).values_list("nullif")
|
||||||
self.assertSequenceEqual(authors, [("John Smith",), ("Rhonda",)])
|
self.assertCountEqual(authors, [("John Smith",), ("Rhonda",)])
|
||||||
|
|
||||||
def test_too_few_args(self):
|
def test_too_few_args(self):
|
||||||
msg = "'NullIf' takes exactly 2 arguments (1 given)"
|
msg = "'NullIf' takes exactly 2 arguments (1 given)"
|
||||||
|
|
|
@ -73,10 +73,10 @@ class ValuesExpressionsTests(TestCase):
|
||||||
|
|
||||||
def test_values_list_expression(self):
|
def test_values_list_expression(self):
|
||||||
companies = Company.objects.values_list("name", F("ceo__salary"))
|
companies = Company.objects.values_list("name", F("ceo__salary"))
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
companies, [("Example Inc.", 10), ("Foobar Ltd.", 20), ("Test GmbH", 30)]
|
companies, [("Example Inc.", 10), ("Foobar Ltd.", 20), ("Test GmbH", 30)]
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_values_list_expression_flat(self):
|
def test_values_list_expression_flat(self):
|
||||||
companies = Company.objects.values_list(F("ceo__salary"), flat=True)
|
companies = Company.objects.values_list(F("ceo__salary"), flat=True)
|
||||||
self.assertSequenceEqual(companies, (10, 20, 30))
|
self.assertCountEqual(companies, (10, 20, 30))
|
||||||
|
|
|
@ -155,7 +155,7 @@ class FilteredRelationTests(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_without_join(self):
|
def test_without_join(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
Author.objects.annotate(
|
Author.objects.annotate(
|
||||||
book_alice=FilteredRelation(
|
book_alice=FilteredRelation(
|
||||||
"book", condition=Q(book__title__iexact="poem by alice")
|
"book", condition=Q(book__title__iexact="poem by alice")
|
||||||
|
|
|
@ -104,7 +104,7 @@ class RecursiveSymmetricalM2MThroughTests(TestCase):
|
||||||
"first_meet": datetime.date(2013, 1, 5),
|
"first_meet": datetime.date(2013, 1, 5),
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(self.a.colleagues.all(), [self.b, self.c, self.d])
|
self.assertCountEqual(self.a.colleagues.all(), [self.b, self.c, self.d])
|
||||||
self.assertSequenceEqual(self.b.colleagues.all(), [self.a])
|
self.assertSequenceEqual(self.b.colleagues.all(), [self.a])
|
||||||
|
|
||||||
def test_recursive_m2m_remove(self):
|
def test_recursive_m2m_remove(self):
|
||||||
|
|
|
@ -44,7 +44,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_gt(self):
|
def test_gt(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
DurationModel.objects.filter(field__gt=datetime.timedelta(days=0)),
|
DurationModel.objects.filter(field__gt=datetime.timedelta(days=0)),
|
||||||
[self.objs[0], self.objs[1]],
|
[self.objs[0], self.objs[1]],
|
||||||
)
|
)
|
||||||
|
|
|
@ -326,7 +326,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_icontains(self):
|
def test_icontains(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__icontains="BaX"),
|
NullableJSONModel.objects.filter(value__icontains="BaX"),
|
||||||
self.objs[6:8],
|
self.objs[6:8],
|
||||||
)
|
)
|
||||||
|
@ -495,7 +495,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_expression_wrapper_key_transform(self):
|
def test_expression_wrapper_key_transform(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.annotate(
|
NullableJSONModel.objects.annotate(
|
||||||
expr=ExpressionWrapper(
|
expr=ExpressionWrapper(
|
||||||
KeyTransform("c", "value"),
|
KeyTransform("c", "value"),
|
||||||
|
@ -506,7 +506,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_has_key(self):
|
def test_has_key(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__has_key="a"),
|
NullableJSONModel.objects.filter(value__has_key="a"),
|
||||||
[self.objs[3], self.objs[4]],
|
[self.objs[3], self.objs[4]],
|
||||||
)
|
)
|
||||||
|
@ -570,7 +570,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_has_any_keys(self):
|
def test_has_any_keys(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__has_any_keys=["c", "l"]),
|
NullableJSONModel.objects.filter(value__has_any_keys=["c", "l"]),
|
||||||
[self.objs[3], self.objs[4], self.objs[6]],
|
[self.objs[3], self.objs[4], self.objs[6]],
|
||||||
)
|
)
|
||||||
|
@ -622,7 +622,7 @@ class TestQuerying(TestCase):
|
||||||
for value, expected in tests:
|
for value, expected in tests:
|
||||||
with self.subTest(value=value):
|
with self.subTest(value=value):
|
||||||
qs = NullableJSONModel.objects.filter(value__contains=value)
|
qs = NullableJSONModel.objects.filter(value__contains=value)
|
||||||
self.assertSequenceEqual(qs, expected)
|
self.assertCountEqual(qs, expected)
|
||||||
|
|
||||||
@skipIfDBFeature("supports_json_field_contains")
|
@skipIfDBFeature("supports_json_field_contains")
|
||||||
def test_contains_unsupported(self):
|
def test_contains_unsupported(self):
|
||||||
|
@ -647,7 +647,7 @@ class TestQuerying(TestCase):
|
||||||
qs = NullableJSONModel.objects.filter(
|
qs = NullableJSONModel.objects.filter(
|
||||||
value__contained_by={"a": "b", "c": 14, "h": True}
|
value__contained_by={"a": "b", "c": 14, "h": True}
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(qs, self.objs[2:4])
|
self.assertCountEqual(qs, self.objs[2:4])
|
||||||
|
|
||||||
@skipIfDBFeature("supports_json_field_contains")
|
@skipIfDBFeature("supports_json_field_contains")
|
||||||
def test_contained_by_unsupported(self):
|
def test_contained_by_unsupported(self):
|
||||||
|
@ -656,7 +656,7 @@ class TestQuerying(TestCase):
|
||||||
NullableJSONModel.objects.filter(value__contained_by={"a": "b"}).get()
|
NullableJSONModel.objects.filter(value__contained_by={"a": "b"}).get()
|
||||||
|
|
||||||
def test_deep_values(self):
|
def test_deep_values(self):
|
||||||
qs = NullableJSONModel.objects.values_list("value__k__l")
|
qs = NullableJSONModel.objects.values_list("value__k__l").order_by("pk")
|
||||||
expected_objs = [(None,)] * len(self.objs)
|
expected_objs = [(None,)] * len(self.objs)
|
||||||
expected_objs[4] = ("m",)
|
expected_objs[4] = ("m",)
|
||||||
self.assertSequenceEqual(qs, expected_objs)
|
self.assertSequenceEqual(qs, expected_objs)
|
||||||
|
@ -670,15 +670,15 @@ class TestQuerying(TestCase):
|
||||||
|
|
||||||
def test_isnull_key(self):
|
def test_isnull_key(self):
|
||||||
# key__isnull=False works the same as has_key='key'.
|
# key__isnull=False works the same as has_key='key'.
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__a__isnull=True),
|
NullableJSONModel.objects.filter(value__a__isnull=True),
|
||||||
self.objs[:3] + self.objs[5:],
|
self.objs[:3] + self.objs[5:],
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__j__isnull=True),
|
NullableJSONModel.objects.filter(value__j__isnull=True),
|
||||||
self.objs[:4] + self.objs[5:],
|
self.objs[:4] + self.objs[5:],
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__a__isnull=False),
|
NullableJSONModel.objects.filter(value__a__isnull=False),
|
||||||
[self.objs[3], self.objs[4]],
|
[self.objs[3], self.objs[4]],
|
||||||
)
|
)
|
||||||
|
@ -689,7 +689,7 @@ class TestQuerying(TestCase):
|
||||||
|
|
||||||
def test_isnull_key_or_none(self):
|
def test_isnull_key_or_none(self):
|
||||||
obj = NullableJSONModel.objects.create(value={"a": None})
|
obj = NullableJSONModel.objects.create(value={"a": None})
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(
|
NullableJSONModel.objects.filter(
|
||||||
Q(value__a__isnull=True) | Q(value__a=None)
|
Q(value__a__isnull=True) | Q(value__a=None)
|
||||||
),
|
),
|
||||||
|
@ -723,7 +723,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_shallow_obj_lookup(self):
|
def test_shallow_obj_lookup(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__a="b"),
|
NullableJSONModel.objects.filter(value__a="b"),
|
||||||
[self.objs[3], self.objs[4]],
|
[self.objs[3], self.objs[4]],
|
||||||
)
|
)
|
||||||
|
@ -734,7 +734,7 @@ class TestQuerying(TestCase):
|
||||||
NullableJSONModel.objects.filter(pk=OuterRef("pk")).values("value")
|
NullableJSONModel.objects.filter(pk=OuterRef("pk")).values("value")
|
||||||
),
|
),
|
||||||
).filter(field__a="b")
|
).filter(field__a="b")
|
||||||
self.assertSequenceEqual(qs, [self.objs[3], self.objs[4]])
|
self.assertCountEqual(qs, [self.objs[3], self.objs[4]])
|
||||||
|
|
||||||
def test_deep_lookup_objs(self):
|
def test_deep_lookup_objs(self):
|
||||||
self.assertSequenceEqual(
|
self.assertSequenceEqual(
|
||||||
|
@ -761,11 +761,11 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_deep_lookup_transform(self):
|
def test_deep_lookup_transform(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__c__gt=2),
|
NullableJSONModel.objects.filter(value__c__gt=2),
|
||||||
[self.objs[3], self.objs[4]],
|
[self.objs[3], self.objs[4]],
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(value__c__gt=2.33),
|
NullableJSONModel.objects.filter(value__c__gt=2.33),
|
||||||
[self.objs[3], self.objs[4]],
|
[self.objs[3], self.objs[4]],
|
||||||
)
|
)
|
||||||
|
@ -777,11 +777,11 @@ class TestQuerying(TestCase):
|
||||||
(Q(value__foo="bax"), [self.objs[0], self.objs[7]]),
|
(Q(value__foo="bax"), [self.objs[0], self.objs[7]]),
|
||||||
]
|
]
|
||||||
for condition, expected in tests:
|
for condition, expected in tests:
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.exclude(condition),
|
NullableJSONModel.objects.exclude(condition),
|
||||||
expected,
|
expected,
|
||||||
)
|
)
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(~condition),
|
NullableJSONModel.objects.filter(~condition),
|
||||||
expected,
|
expected,
|
||||||
)
|
)
|
||||||
|
@ -791,7 +791,7 @@ class TestQuerying(TestCase):
|
||||||
condition = Q(value__foo="bax")
|
condition = Q(value__foo="bax")
|
||||||
objs_with_value = [self.objs[6]]
|
objs_with_value = [self.objs[6]]
|
||||||
objs_with_different_value = [self.objs[0], self.objs[7]]
|
objs_with_different_value = [self.objs[0], self.objs[7]]
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.exclude(condition),
|
NullableJSONModel.objects.exclude(condition),
|
||||||
objs_with_different_value,
|
objs_with_different_value,
|
||||||
)
|
)
|
||||||
|
@ -808,7 +808,7 @@ class TestQuerying(TestCase):
|
||||||
objs_with_value + objs_with_different_value,
|
objs_with_value + objs_with_different_value,
|
||||||
)
|
)
|
||||||
# Add the __isnull lookup to get an exhaustive set.
|
# Add the __isnull lookup to get an exhaustive set.
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.exclude(condition & Q(value__foo__isnull=False)),
|
NullableJSONModel.objects.exclude(condition & Q(value__foo__isnull=False)),
|
||||||
self.objs[0:6] + self.objs[7:],
|
self.objs[0:6] + self.objs[7:],
|
||||||
)
|
)
|
||||||
|
@ -818,7 +818,7 @@ class TestQuerying(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_usage_in_subquery(self):
|
def test_usage_in_subquery(self):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(
|
NullableJSONModel.objects.filter(
|
||||||
id__in=NullableJSONModel.objects.filter(value__c=14),
|
id__in=NullableJSONModel.objects.filter(value__c=14),
|
||||||
),
|
),
|
||||||
|
@ -876,7 +876,7 @@ class TestQuerying(TestCase):
|
||||||
]
|
]
|
||||||
for lookup, value, expected in tests:
|
for lookup, value, expected in tests:
|
||||||
with self.subTest(lookup=lookup, value=value):
|
with self.subTest(lookup=lookup, value=value):
|
||||||
self.assertSequenceEqual(
|
self.assertCountEqual(
|
||||||
NullableJSONModel.objects.filter(**{lookup: value}),
|
NullableJSONModel.objects.filter(**{lookup: value}),
|
||||||
expected,
|
expected,
|
||||||
)
|
)
|
||||||
|
|
|
@ -347,7 +347,7 @@ class GetChoicesLimitChoicesToTests(TestCase):
|
||||||
cls.field = Bar._meta.get_field("a")
|
cls.field = Bar._meta.get_field("a")
|
||||||
|
|
||||||
def assertChoicesEqual(self, choices, objs):
|
def assertChoicesEqual(self, choices, objs):
|
||||||
self.assertEqual(choices, [(obj.pk, str(obj)) for obj in objs])
|
self.assertCountEqual(choices, [(obj.pk, str(obj)) for obj in objs])
|
||||||
|
|
||||||
def test_get_choices(self):
|
def test_get_choices(self):
|
||||||
self.assertChoicesEqual(
|
self.assertChoicesEqual(
|
||||||
|
|
|
@ -92,7 +92,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
self.assertEqual(len(f.choices), 2)
|
self.assertEqual(len(f.choices), 2)
|
||||||
|
|
||||||
# queryset can be changed after the field is created.
|
# queryset can be changed after the field is created.
|
||||||
f.queryset = Category.objects.exclude(name="Third")
|
f.queryset = Category.objects.exclude(name="Third").order_by("pk")
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
[
|
[
|
||||||
|
@ -119,7 +119,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
# Overriding label_from_instance() to print custom labels.
|
# Overriding label_from_instance() to print custom labels.
|
||||||
f.queryset = Category.objects.all()
|
f.queryset = Category.objects.order_by("pk")
|
||||||
f.label_from_instance = lambda obj: "category " + str(obj)
|
f.label_from_instance = lambda obj: "category " + str(obj)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
|
@ -132,7 +132,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_choices_freshness(self):
|
def test_choices_freshness(self):
|
||||||
f = forms.ModelChoiceField(Category.objects.all())
|
f = forms.ModelChoiceField(Category.objects.order_by("pk"))
|
||||||
self.assertEqual(len(f.choices), 4)
|
self.assertEqual(len(f.choices), 4)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
|
@ -173,7 +173,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
(self.c2.pk, "A test"),
|
(self.c2.pk, "A test"),
|
||||||
(self.c3.pk, "Third"),
|
(self.c3.pk, "Third"),
|
||||||
]
|
]
|
||||||
categories = Category.objects.all()
|
categories = Category.objects.order_by("pk")
|
||||||
for widget in [forms.RadioSelect, forms.RadioSelect()]:
|
for widget in [forms.RadioSelect, forms.RadioSelect()]:
|
||||||
for blank in [True, False]:
|
for blank in [True, False]:
|
||||||
with self.subTest(widget=widget, blank=blank):
|
with self.subTest(widget=widget, blank=blank):
|
||||||
|
@ -336,7 +336,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
class CustomModelMultipleChoiceField(forms.ModelMultipleChoiceField):
|
class CustomModelMultipleChoiceField(forms.ModelMultipleChoiceField):
|
||||||
widget = CustomCheckboxSelectMultiple
|
widget = CustomCheckboxSelectMultiple
|
||||||
|
|
||||||
field = CustomModelMultipleChoiceField(Category.objects.all())
|
field = CustomModelMultipleChoiceField(Category.objects.order_by("pk"))
|
||||||
self.assertHTMLEqual(
|
self.assertHTMLEqual(
|
||||||
field.widget.render("name", []),
|
field.widget.render("name", []),
|
||||||
(
|
(
|
||||||
|
@ -382,7 +382,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
iterator = CustomModelChoiceIterator
|
iterator = CustomModelChoiceIterator
|
||||||
widget = CustomCheckboxSelectMultiple
|
widget = CustomCheckboxSelectMultiple
|
||||||
|
|
||||||
field = CustomModelMultipleChoiceField(Category.objects.all())
|
field = CustomModelMultipleChoiceField(Category.objects.order_by("pk"))
|
||||||
self.assertHTMLEqual(
|
self.assertHTMLEqual(
|
||||||
field.widget.render("name", []),
|
field.widget.render("name", []),
|
||||||
"""
|
"""
|
||||||
|
@ -416,7 +416,7 @@ class ModelChoiceFieldTests(TestCase):
|
||||||
def test_queryset_manager(self):
|
def test_queryset_manager(self):
|
||||||
f = forms.ModelChoiceField(Category.objects)
|
f = forms.ModelChoiceField(Category.objects)
|
||||||
self.assertEqual(len(f.choices), 4)
|
self.assertEqual(len(f.choices), 4)
|
||||||
self.assertEqual(
|
self.assertCountEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
[
|
[
|
||||||
("", "---------"),
|
("", "---------"),
|
||||||
|
|
|
@ -2070,7 +2070,7 @@ class ModelMultipleChoiceFieldTests(TestCase):
|
||||||
|
|
||||||
def test_model_multiple_choice_field(self):
|
def test_model_multiple_choice_field(self):
|
||||||
f = forms.ModelMultipleChoiceField(Category.objects.all())
|
f = forms.ModelMultipleChoiceField(Category.objects.all())
|
||||||
self.assertEqual(
|
self.assertCountEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
[
|
[
|
||||||
(self.c1.pk, "Entertainment"),
|
(self.c1.pk, "Entertainment"),
|
||||||
|
@ -2139,7 +2139,7 @@ class ModelMultipleChoiceFieldTests(TestCase):
|
||||||
|
|
||||||
# queryset can be changed after the field is created.
|
# queryset can be changed after the field is created.
|
||||||
f.queryset = Category.objects.exclude(name="Third")
|
f.queryset = Category.objects.exclude(name="Third")
|
||||||
self.assertEqual(
|
self.assertCountEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
[(self.c1.pk, "Entertainment"), (self.c2.pk, "It's a test")],
|
[(self.c1.pk, "Entertainment"), (self.c2.pk, "It's a test")],
|
||||||
)
|
)
|
||||||
|
@ -2151,7 +2151,7 @@ class ModelMultipleChoiceFieldTests(TestCase):
|
||||||
|
|
||||||
f.queryset = Category.objects.all()
|
f.queryset = Category.objects.all()
|
||||||
f.label_from_instance = lambda obj: "multicategory " + str(obj)
|
f.label_from_instance = lambda obj: "multicategory " + str(obj)
|
||||||
self.assertEqual(
|
self.assertCountEqual(
|
||||||
list(f.choices),
|
list(f.choices),
|
||||||
[
|
[
|
||||||
(self.c1.pk, "multicategory Entertainment"),
|
(self.c1.pk, "multicategory Entertainment"),
|
||||||
|
|
|
@ -482,7 +482,10 @@ class FormfieldShouldDeleteFormTests(TestCase):
|
||||||
data = dict(self.data)
|
data = dict(self.data)
|
||||||
data["form-INITIAL_FORMS"] = 4
|
data["form-INITIAL_FORMS"] = 4
|
||||||
data.update(
|
data.update(
|
||||||
{"form-%d-id" % i: user.pk for i, user in enumerate(User.objects.all())}
|
{
|
||||||
|
"form-%d-id" % i: user.pk
|
||||||
|
for i, user in enumerate(User.objects.order_by("pk"))
|
||||||
|
}
|
||||||
)
|
)
|
||||||
formset = self.NormalFormset(data, queryset=User.objects.all())
|
formset = self.NormalFormset(data, queryset=User.objects.all())
|
||||||
self.assertTrue(formset.is_valid())
|
self.assertTrue(formset.is_valid())
|
||||||
|
@ -516,7 +519,10 @@ class FormfieldShouldDeleteFormTests(TestCase):
|
||||||
data = dict(self.data)
|
data = dict(self.data)
|
||||||
data["form-INITIAL_FORMS"] = 4
|
data["form-INITIAL_FORMS"] = 4
|
||||||
data.update(
|
data.update(
|
||||||
{"form-%d-id" % i: user.pk for i, user in enumerate(User.objects.all())}
|
{
|
||||||
|
"form-%d-id" % i: user.pk
|
||||||
|
for i, user in enumerate(User.objects.order_by("pk"))
|
||||||
|
}
|
||||||
)
|
)
|
||||||
data.update(self.delete_all_ids)
|
data.update(self.delete_all_ids)
|
||||||
formset = self.DeleteFormset(data, queryset=User.objects.all())
|
formset = self.DeleteFormset(data, queryset=User.objects.all())
|
||||||
|
|
|
@ -1272,7 +1272,7 @@ class MultiTableInheritanceTest(TestCase):
|
||||||
with self.assertNumQueries(2):
|
with self.assertNumQueries(2):
|
||||||
qs = BookReview.objects.prefetch_related("book")
|
qs = BookReview.objects.prefetch_related("book")
|
||||||
titles = [obj.book.title for obj in qs]
|
titles = [obj.book.title for obj in qs]
|
||||||
self.assertEqual(titles, ["Poems", "More poems"])
|
self.assertCountEqual(titles, ["Poems", "More poems"])
|
||||||
|
|
||||||
def test_m2m_to_inheriting_model(self):
|
def test_m2m_to_inheriting_model(self):
|
||||||
qs = AuthorWithAge.objects.prefetch_related("books_with_year")
|
qs = AuthorWithAge.objects.prefetch_related("books_with_year")
|
||||||
|
|
|
@ -1643,7 +1643,7 @@ class Queries4Tests(TestCase):
|
||||||
|
|
||||||
qs = CategoryItem.objects.filter(category__specialcategory__isnull=False)
|
qs = CategoryItem.objects.filter(category__specialcategory__isnull=False)
|
||||||
self.assertEqual(qs.count(), 2)
|
self.assertEqual(qs.count(), 2)
|
||||||
self.assertSequenceEqual(qs, [ci2, ci3])
|
self.assertCountEqual(qs, [ci2, ci3])
|
||||||
|
|
||||||
def test_ticket15316_exclude_false(self):
|
def test_ticket15316_exclude_false(self):
|
||||||
c1 = SimpleCategory.objects.create(name="category1")
|
c1 = SimpleCategory.objects.create(name="category1")
|
||||||
|
@ -1694,7 +1694,7 @@ class Queries4Tests(TestCase):
|
||||||
|
|
||||||
qs = CategoryItem.objects.exclude(category__specialcategory__isnull=True)
|
qs = CategoryItem.objects.exclude(category__specialcategory__isnull=True)
|
||||||
self.assertEqual(qs.count(), 2)
|
self.assertEqual(qs.count(), 2)
|
||||||
self.assertSequenceEqual(qs, [ci2, ci3])
|
self.assertCountEqual(qs, [ci2, ci3])
|
||||||
|
|
||||||
def test_ticket15316_one2one_filter_false(self):
|
def test_ticket15316_one2one_filter_false(self):
|
||||||
c = SimpleCategory.objects.create(name="cat")
|
c = SimpleCategory.objects.create(name="cat")
|
||||||
|
|
|
@ -99,7 +99,7 @@ class LiveServerTestCloseConnectionTest(LiveServerBase):
|
||||||
self.assertIsNotNone(conn.connection)
|
self.assertIsNotNone(conn.connection)
|
||||||
with self.urlopen("/model_view/") as f:
|
with self.urlopen("/model_view/") as f:
|
||||||
# The server can access the database.
|
# The server can access the database.
|
||||||
self.assertEqual(f.read().splitlines(), [b"jane", b"robert"])
|
self.assertCountEqual(f.read().splitlines(), [b"jane", b"robert"])
|
||||||
# Wait for the server's request thread to close the connection.
|
# Wait for the server's request thread to close the connection.
|
||||||
# A timeout of 0.1 seconds should be more than enough. If the wait
|
# A timeout of 0.1 seconds should be more than enough. If the wait
|
||||||
# times out, the assertion after should fail.
|
# times out, the assertion after should fail.
|
||||||
|
@ -320,7 +320,7 @@ class LiveServerDatabase(LiveServerBase):
|
||||||
Fixtures are properly loaded and visible to the live server thread.
|
Fixtures are properly loaded and visible to the live server thread.
|
||||||
"""
|
"""
|
||||||
with self.urlopen("/model_view/") as f:
|
with self.urlopen("/model_view/") as f:
|
||||||
self.assertEqual(f.read().splitlines(), [b"jane", b"robert"])
|
self.assertCountEqual(f.read().splitlines(), [b"jane", b"robert"])
|
||||||
|
|
||||||
def test_database_writes(self):
|
def test_database_writes(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue