summaryrefslogtreecommitdiff
path: root/tests/update
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2022-02-03 20:24:19 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit9c19aff7c7561e3a82978a272ecdaad40dda5c00 (patch)
treef0506b668a013d0063e5fba3dbf4863b466713ba /tests/update
parentf68fa8b45dfac545cfc4111d4e52804c86db68d3 (diff)
downloaddjango-9c19aff7c7561e3a82978a272ecdaad40dda5c00.tar.gz
Refs #33476 -- Reformatted code with Black.
Diffstat (limited to 'tests/update')
-rw-r--r--tests/update/models.py4
-rw-r--r--tests/update/tests.py130
2 files changed, 71 insertions, 63 deletions
diff --git a/tests/update/models.py b/tests/update/models.py
index 131c5b327e..3993763eca 100644
--- a/tests/update/models.py
+++ b/tests/update/models.py
@@ -39,8 +39,8 @@ class Foo(models.Model):
class Bar(models.Model):
- foo = models.ForeignKey(Foo, models.CASCADE, to_field='target')
- m2m_foo = models.ManyToManyField(Foo, related_name='m2m_foo')
+ foo = models.ForeignKey(Foo, models.CASCADE, to_field="target")
+ m2m_foo = models.ManyToManyField(Foo, related_name="m2m_foo")
class UniqueNumber(models.Model):
diff --git a/tests/update/tests.py b/tests/update/tests.py
index a90f0f8323..15a657fab0 100644
--- a/tests/update/tests.py
+++ b/tests/update/tests.py
@@ -8,7 +8,14 @@ from django.test import TestCase
from django.test.utils import register_lookup
from .models import (
- A, B, Bar, D, DataPoint, Foo, RelatedPoint, UniqueNumber,
+ A,
+ B,
+ Bar,
+ D,
+ DataPoint,
+ Foo,
+ RelatedPoint,
+ UniqueNumber,
UniqueNumberChild,
)
@@ -70,7 +77,6 @@ class SimpleTest(TestCase):
class AdvancedTests(TestCase):
-
@classmethod
def setUpTestData(cls):
cls.d0 = DataPoint.objects.create(name="d0", value="apple")
@@ -93,9 +99,9 @@ class AdvancedTests(TestCase):
"""
We can update multiple objects at once.
"""
- resp = DataPoint.objects.filter(value='banana').update(value='pineapple')
+ resp = DataPoint.objects.filter(value="banana").update(value="pineapple")
self.assertEqual(resp, 2)
- self.assertEqual(DataPoint.objects.get(name="d2").value, 'pineapple')
+ self.assertEqual(DataPoint.objects.get(name="d2").value, "pineapple")
def test_update_fk(self):
"""
@@ -112,36 +118,37 @@ class AdvancedTests(TestCase):
Multiple fields can be updated at once
"""
resp = DataPoint.objects.filter(value="apple").update(
- value="fruit", another_value="peach")
+ value="fruit", another_value="peach"
+ )
self.assertEqual(resp, 1)
d = DataPoint.objects.get(name="d0")
- self.assertEqual(d.value, 'fruit')
- self.assertEqual(d.another_value, 'peach')
+ self.assertEqual(d.value, "fruit")
+ self.assertEqual(d.another_value, "peach")
def test_update_all(self):
"""
In the rare case you want to update every instance of a model, update()
is also a manager method.
"""
- self.assertEqual(DataPoint.objects.update(value='thing'), 3)
- resp = DataPoint.objects.values('value').distinct()
- self.assertEqual(list(resp), [{'value': 'thing'}])
+ self.assertEqual(DataPoint.objects.update(value="thing"), 3)
+ resp = DataPoint.objects.values("value").distinct()
+ self.assertEqual(list(resp), [{"value": "thing"}])
def test_update_slice_fail(self):
"""
We do not support update on already sliced query sets.
"""
method = DataPoint.objects.all()[:2].update
- msg = 'Cannot update a query once a slice has been taken.'
+ msg = "Cannot update a query once a slice has been taken."
with self.assertRaisesMessage(TypeError, msg):
- method(another_value='another thing')
+ method(another_value="another thing")
def test_update_respects_to_field(self):
"""
Update of an FK field which specifies a to_field works.
"""
- a_foo = Foo.objects.create(target='aaa')
- b_foo = Foo.objects.create(target='bbb')
+ a_foo = Foo.objects.create(target="aaa")
+ b_foo = Foo.objects.create(target="bbb")
bar = Bar.objects.create(foo=a_foo)
self.assertEqual(bar.foo_id, a_foo.target)
bar_qs = Bar.objects.filter(pk=bar.pk)
@@ -151,80 +158,81 @@ class AdvancedTests(TestCase):
def test_update_m2m_field(self):
msg = (
- 'Cannot update model field '
- '<django.db.models.fields.related.ManyToManyField: m2m_foo> '
- '(only non-relations and foreign keys permitted).'
+ "Cannot update model field "
+ "<django.db.models.fields.related.ManyToManyField: m2m_foo> "
+ "(only non-relations and foreign keys permitted)."
)
with self.assertRaisesMessage(FieldError, msg):
- Bar.objects.update(m2m_foo='whatever')
+ Bar.objects.update(m2m_foo="whatever")
def test_update_transformed_field(self):
A.objects.create(x=5)
A.objects.create(x=-6)
with register_lookup(IntegerField, Abs):
- A.objects.update(x=F('x__abs'))
- self.assertCountEqual(A.objects.values_list('x', flat=True), [5, 6])
+ A.objects.update(x=F("x__abs"))
+ self.assertCountEqual(A.objects.values_list("x", flat=True), [5, 6])
def test_update_annotated_queryset(self):
"""
Update of a queryset that's been annotated.
"""
# Trivial annotated update
- qs = DataPoint.objects.annotate(alias=F('value'))
- self.assertEqual(qs.update(another_value='foo'), 3)
+ qs = DataPoint.objects.annotate(alias=F("value"))
+ self.assertEqual(qs.update(another_value="foo"), 3)
# Update where annotation is used for filtering
- qs = DataPoint.objects.annotate(alias=F('value')).filter(alias='apple')
- self.assertEqual(qs.update(another_value='foo'), 1)
+ qs = DataPoint.objects.annotate(alias=F("value")).filter(alias="apple")
+ self.assertEqual(qs.update(another_value="foo"), 1)
# Update where annotation is used in update parameters
- qs = DataPoint.objects.annotate(alias=F('value'))
- self.assertEqual(qs.update(another_value=F('alias')), 3)
+ qs = DataPoint.objects.annotate(alias=F("value"))
+ self.assertEqual(qs.update(another_value=F("alias")), 3)
# Update where aggregation annotation is used in update parameters
- qs = DataPoint.objects.annotate(max=Max('value'))
+ qs = DataPoint.objects.annotate(max=Max("value"))
msg = (
- 'Aggregate functions are not allowed in this query '
- '(another_value=Max(Col(update_datapoint, update.DataPoint.value))).'
+ "Aggregate functions are not allowed in this query "
+ "(another_value=Max(Col(update_datapoint, update.DataPoint.value)))."
)
with self.assertRaisesMessage(FieldError, msg):
- qs.update(another_value=F('max'))
+ qs.update(another_value=F("max"))
def test_update_annotated_multi_table_queryset(self):
"""
Update of a queryset that's been annotated and involves multiple tables.
"""
# Trivial annotated update
- qs = DataPoint.objects.annotate(related_count=Count('relatedpoint'))
- self.assertEqual(qs.update(value='Foo'), 3)
+ qs = DataPoint.objects.annotate(related_count=Count("relatedpoint"))
+ self.assertEqual(qs.update(value="Foo"), 3)
# Update where annotation is used for filtering
- qs = DataPoint.objects.annotate(related_count=Count('relatedpoint'))
- self.assertEqual(qs.filter(related_count=1).update(value='Foo'), 1)
+ qs = DataPoint.objects.annotate(related_count=Count("relatedpoint"))
+ self.assertEqual(qs.filter(related_count=1).update(value="Foo"), 1)
# Update where aggregation annotation is used in update parameters
- qs = RelatedPoint.objects.annotate(max=Max('data__value'))
- msg = 'Joined field references are not permitted in this query'
+ qs = RelatedPoint.objects.annotate(max=Max("data__value"))
+ msg = "Joined field references are not permitted in this query"
with self.assertRaisesMessage(FieldError, msg):
- qs.update(name=F('max'))
+ qs.update(name=F("max"))
def test_update_with_joined_field_annotation(self):
- msg = 'Joined field references are not permitted in this query'
+ msg = "Joined field references are not permitted in this query"
with register_lookup(CharField, Lower):
for annotation in (
- F('data__name'),
- F('data__name__lower'),
- Lower('data__name'),
- Concat('data__name', 'data__value'),
+ F("data__name"),
+ F("data__name__lower"),
+ Lower("data__name"),
+ Concat("data__name", "data__value"),
):
with self.subTest(annotation=annotation):
with self.assertRaisesMessage(FieldError, msg):
RelatedPoint.objects.annotate(
new_name=annotation,
- ).update(name=F('new_name'))
+ ).update(name=F("new_name"))
@unittest.skipUnless(
- connection.vendor == 'mysql',
- 'UPDATE...ORDER BY syntax is supported on MySQL/MariaDB',
+ connection.vendor == "mysql",
+ "UPDATE...ORDER BY syntax is supported on MySQL/MariaDB",
)
class MySQLUpdateOrderByTest(TestCase):
"""Update field with a unique constraint using an ordered queryset."""
+
@classmethod
def setUpTestData(cls):
UniqueNumber.objects.create(number=1)
@@ -232,14 +240,14 @@ class MySQLUpdateOrderByTest(TestCase):
def test_order_by_update_on_unique_constraint(self):
tests = [
- ('-number', 'id'),
- (F('number').desc(), 'id'),
- (F('number') * -1, 'id'),
+ ("-number", "id"),
+ (F("number").desc(), "id"),
+ (F("number") * -1, "id"),
]
for ordering in tests:
with self.subTest(ordering=ordering), transaction.atomic():
updated = UniqueNumber.objects.order_by(*ordering).update(
- number=F('number') + 1,
+ number=F("number") + 1,
)
self.assertEqual(updated, 2)
@@ -247,10 +255,10 @@ class MySQLUpdateOrderByTest(TestCase):
# Ordering by annotations is omitted because they cannot be resolved in
# .update().
with self.assertRaises(IntegrityError):
- UniqueNumber.objects.annotate(
- number_inverse=F('number').desc(),
- ).order_by('number_inverse').update(
- number=F('number') + 1,
+ UniqueNumber.objects.annotate(number_inverse=F("number").desc(),).order_by(
+ "number_inverse"
+ ).update(
+ number=F("number") + 1,
)
def test_order_by_update_on_parent_unique_constraint(self):
@@ -259,19 +267,19 @@ class MySQLUpdateOrderByTest(TestCase):
UniqueNumberChild.objects.create(number=3)
UniqueNumberChild.objects.create(number=4)
with self.assertRaises(IntegrityError):
- UniqueNumberChild.objects.order_by('number').update(
- number=F('number') + 1,
+ UniqueNumberChild.objects.order_by("number").update(
+ number=F("number") + 1,
)
def test_order_by_update_on_related_field(self):
# Ordering by related fields is omitted because joined fields cannot be
# used in the ORDER BY clause.
- data = DataPoint.objects.create(name='d0', value='apple')
- related = RelatedPoint.objects.create(name='r0', data=data)
+ data = DataPoint.objects.create(name="d0", value="apple")
+ related = RelatedPoint.objects.create(name="r0", data=data)
with self.assertNumQueries(1) as ctx:
- updated = RelatedPoint.objects.order_by('data__name').update(name='new')
- sql = ctx.captured_queries[0]['sql']
- self.assertNotIn('ORDER BY', sql)
+ updated = RelatedPoint.objects.order_by("data__name").update(name="new")
+ sql = ctx.captured_queries[0]["sql"]
+ self.assertNotIn("ORDER BY", sql)
self.assertEqual(updated, 1)
related.refresh_from_db()
- self.assertEqual(related.name, 'new')
+ self.assertEqual(related.name, "new")