From 50ca4defcb2e5d1c987ed006562f7a812179b3df Mon Sep 17 00:00:00 2001 From: sarahboyce Date: Thu, 2 Mar 2023 20:06:33 +0100 Subject: [PATCH] Added test for preserving popup by reset link in the admin changelist. --- tests/admin_changelist/tests.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/admin_changelist/tests.py b/tests/admin_changelist/tests.py index c603f15298..3897453cda 100644 --- a/tests/admin_changelist/tests.py +++ b/tests/admin_changelist/tests.py @@ -1593,6 +1593,19 @@ class ChangeListTests(TestCase): 'aria-describedby="searchbar_helptext">', ) + def test_search_bar_total_link_preserves_options(self): + self.client.force_login(self.superuser) + url = reverse("admin:auth_user_changelist") + for data, href in ( + ({"is_staff__exact": "0"}, "?"), + ({"is_staff__exact": "0", IS_POPUP_VAR: "1"}, f"?{IS_POPUP_VAR}=1"), + ): + with self.subTest(data=data): + response = self.client.get(url, data=data) + self.assertContains( + response, f'0 results (1 total)' + ) + class GetAdminLogTests(TestCase): def test_custom_user_pk_not_named_id(self):