1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Added changes of **extra keyword.

This commit is contained in:
priyank.panchal 2024-09-04 21:54:15 +05:30
parent 40161746c0
commit 6ae26ddde1
2 changed files with 17 additions and 22 deletions

View File

@ -856,21 +856,19 @@ class BasicExpressionsTests(TestCase):
self.assertEqual(qs.get(), self.gmbh)
def test_subquery_with_custom_template(self):
companies = Company.objects.annotate(
ceo_manager_count=Subquery(
Employee.objects.filter(
lastname=OuterRef("ceo__lastname"),
).values("manager"),
template="(SELECT count(*) FROM (%(subquery)s) _count)",
)
custom_subquery = Company.objects.filter(
ceo__salary__in=Subquery(
Employee.objects.all().values("salary"),
salary=20,
template="(SELECT salary FROM (%(subquery)s) _subquery "
"WHERE salary = %(salary)s)",
),
)
expected_results = [
{"name": "Example Inc.", "ceo_manager_count": 1},
{"name": "Foobar Ltd.", "ceo_manager_count": 1},
{"name": "Test GmbH", "ceo_manager_count": 1},
]
self.assertListEqual(
list(companies.values("name", "ceo_manager_count")), expected_results
expected_companies = Company.objects.filter(name="Foobar Ltd.")
self.assertQuerySetEqual(
custom_subquery.order_by("name"),
expected_companies.order_by("name"),
transform=lambda x: x,
)
def test_aggregate_subquery_annotation(self):

View File

@ -726,16 +726,13 @@ class CaseExpressionTests(TestCase):
case_expression = Case(
When(integer=1, then=Value(10)),
When(integer=2, then=Value(20)),
default=Value(0),
template="CASE %(cases)s ELSE %(default)s + 5 END",
custom_default=5,
template="CASE %(cases)s ELSE %(custom_default)s END",
)
self.assertListEqual(
list(
CaseTestModel.objects.annotate(values=case_expression).values_list(
"values", flat=True
)
),
self.assertQuerySetEqual(
CaseTestModel.objects.annotate(values=case_expression).order_by("pk"),
[10, 20, 5, 20, 5, 5, 5],
transform=attrgetter("values"),
)
def test_update(self):