summaryrefslogtreecommitdiff
path: root/tests/migrations/test_operations.py
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2023-05-09 22:34:43 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-10 17:25:57 +0200
commitffff17d4b0117cce59f65c9f56fa164694eafd23 (patch)
treef0a756b34808b12bceab28cad2cbcb4dc69b612a /tests/migrations/test_operations.py
parente0f8104a968d316925f736e961a63bef73a686b4 (diff)
downloaddjango-ffff17d4b0117cce59f65c9f56fa164694eafd23.tar.gz
Fixed #34553 -- Fixed improper % escaping of literal in constraints.
Proper escaping of % in string literals used when defining constaints was attempted (a8b3f96f6) by overriding quote_value of Postgres and Oracle schema editor. The same approach was used when adding support for constraints to the MySQL/MariaDB backend (1fc2c70). Later on it was discovered that this approach was not appropriate and that a preferable one was to pass params=None when executing the constraint creation DDL to avoid any form of interpolation in the first place (42e8cf47). When the second patch was applied the corrective of the first were not removed which caused % literals to be unnecessary doubled. This flew under the radar because the existings test were crafted in a way that consecutive %% didn't catch regressions. This commit introduces an extra test for __exact lookups which highlights more adequately % doubling problems but also adjust a previous __endswith test to cover % doubling problems (%\% -> %%\%%). Thanks Thomas Kolar for the report. Refs #32369, #30408, #30593.
Diffstat (limited to 'tests/migrations/test_operations.py')
-rw-r--r--tests/migrations/test_operations.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py
index 0135dbc538..b67a871bc8 100644
--- a/tests/migrations/test_operations.py
+++ b/tests/migrations/test_operations.py
@@ -3662,7 +3662,7 @@ class OperationTests(OperationTestBase):
),
# Literal "%" should be escaped in a way that is not a considered a
# wildcard.
- (models.Q(rebate__endswith="%"), {"rebate": "10%"}, {"rebate": "10$"}),
+ (models.Q(rebate__endswith="%"), {"rebate": "10%"}, {"rebate": "10%$"}),
# Right-hand-side baked "%" literals should not be used for
# parameters interpolation.
(
@@ -3670,6 +3670,12 @@ class OperationTests(OperationTestBase):
{"name": "Albert"},
{"name": "Albert", "surname": "Alberto"},
),
+ # Exact matches against "%" literals should also be supported.
+ (
+ models.Q(name="%"),
+ {"name": "%"},
+ {"name": "Albert"},
+ ),
]
for check, valid, invalid in checks:
with self.subTest(check=check, valid=valid, invalid=invalid):