diff options
| author | Simon Charette <charette.s@gmail.com> | 2025-02-18 12:43:38 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-03-01 19:57:53 +0100 |
| commit | fc303551077c3e023fe4f9d01fc1b3026c816fa4 (patch) | |
| tree | b0df1aee2d06932305f46e2aea596986b4f20460 /tests | |
| parent | ff3aaf036f0cb66cd8f404cd51c603e68aaa7676 (diff) | |
Fixed #36198 -- Implemented unresolved transform expression replacement.
This allows the proper resolving of F("field__transform") when
performing constraint validation.
Thanks Tom Hall for the report and Sarah for the test.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/constraints/models.py | 1 | ||||
| -rw-r--r-- | tests/constraints/tests.py | 18 | ||||
| -rw-r--r-- | tests/expressions/tests.py | 34 |
3 files changed, 53 insertions, 0 deletions
diff --git a/tests/constraints/models.py b/tests/constraints/models.py index 95a29ffa4d..41b827640e 100644 --- a/tests/constraints/models.py +++ b/tests/constraints/models.py @@ -73,6 +73,7 @@ class UniqueConstraintProduct(models.Model): name = models.CharField(max_length=255) color = models.CharField(max_length=32, null=True) age = models.IntegerField(null=True) + updated = models.DateTimeField(null=True) class Meta: constraints = [ diff --git a/tests/constraints/tests.py b/tests/constraints/tests.py index 51f09f2937..20a5357cc5 100644 --- a/tests/constraints/tests.py +++ b/tests/constraints/tests.py @@ -1,3 +1,4 @@ +from datetime import datetime, timedelta from unittest import mock from django.core.exceptions import ValidationError @@ -1030,6 +1031,23 @@ class UniqueConstraintTests(TestCase): exclude={"name"}, ) + def test_validate_field_transform(self): + updated_date = datetime(2005, 7, 26) + UniqueConstraintProduct.objects.create(name="p1", updated=updated_date) + constraint = models.UniqueConstraint( + models.F("updated__date"), name="date_created_unique" + ) + msg = "Constraint “date_created_unique” is violated." + with self.assertRaisesMessage(ValidationError, msg): + constraint.validate( + UniqueConstraintProduct, + UniqueConstraintProduct(updated=updated_date), + ) + constraint.validate( + UniqueConstraintProduct, + UniqueConstraintProduct(updated=updated_date + timedelta(days=1)), + ) + def test_validate_ordered_expression(self): constraint = models.UniqueConstraint( Lower("name").desc(), name="name_lower_uniq_desc" diff --git a/tests/expressions/tests.py b/tests/expressions/tests.py index 89601de85b..1fb4e2f34d 100644 --- a/tests/expressions/tests.py +++ b/tests/expressions/tests.py @@ -58,10 +58,12 @@ from django.db.models.expressions import ( from django.db.models.functions import ( Coalesce, Concat, + ExtractDay, Left, Length, Lower, Substr, + TruncDate, Upper, ) from django.db.models.sql import constants @@ -1330,6 +1332,38 @@ class FTests(SimpleTestCase): with self.assertRaisesMessage(TypeError, msg): "" in F("name") + def test_replace_expressions_transform(self): + replacements = {F("timestamp"): Value(None)} + transform_ref = F("timestamp__date") + self.assertIs(transform_ref.replace_expressions(replacements), transform_ref) + invalid_transform_ref = F("timestamp__invalid") + self.assertIs( + invalid_transform_ref.replace_expressions(replacements), + invalid_transform_ref, + ) + replacements = {F("timestamp"): Value(datetime.datetime(2025, 3, 1, 14, 10))} + self.assertEqual( + F("timestamp__date").replace_expressions(replacements), + TruncDate(Value(datetime.datetime(2025, 3, 1, 14, 10))), + ) + self.assertEqual( + F("timestamp__date__day").replace_expressions(replacements), + ExtractDay(TruncDate(Value(datetime.datetime(2025, 3, 1, 14, 10)))), + ) + invalid_nested_transform_ref = F("timestamp__date__invalid") + self.assertIs( + invalid_nested_transform_ref.replace_expressions(replacements), + invalid_nested_transform_ref, + ) + # `replacements` is not unnecessarily looked up a second time for + # transform-less field references as it's the case the vast majority of + # the time. + mock_replacements = mock.Mock() + mock_replacements.get.return_value = None + field_ref = F("name") + self.assertIs(field_ref.replace_expressions(mock_replacements), field_ref) + mock_replacements.get.assert_called_once_with(field_ref) + class ExpressionsTests(TestCase): def test_F_reuse(self): |
