summaryrefslogtreecommitdiff
path: root/tests/admin_views/test_forms.py
diff options
context:
space:
mode:
authorshanghui <shangdahao@gmail.com>2017-11-08 17:21:30 +0800
committerTim Graham <timograham@gmail.com>2017-11-08 09:39:12 -0500
commitebb998976e2889c669972ed3d1b372cc6a2b5229 (patch)
treea757d4085c1e6f5e3307a644306c587a31561071 /tests/admin_views/test_forms.py
parent359370a8b8ca0efe99b1d4630b291ec060b69225 (diff)
Fixed #28751 -- Corrected the error message for inactive users in AdminAuthenticationForm.
Thanks SeungWon Kang for the report and Tim Graham for the review.
Diffstat (limited to 'tests/admin_views/test_forms.py')
-rw-r--r--tests/admin_views/test_forms.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/admin_views/test_forms.py b/tests/admin_views/test_forms.py
new file mode 100644
index 0000000000..8c58fe7eae
--- /dev/null
+++ b/tests/admin_views/test_forms.py
@@ -0,0 +1,17 @@
+from django.contrib.admin.forms import AdminAuthenticationForm
+from django.contrib.auth.models import User
+from django.test import TestCase
+
+
+class AdminAuthenticationFormTests(TestCase):
+ @classmethod
+ def setUpTestData(cls):
+ User.objects.create_user(username='inactive', password='password', is_active=False)
+
+ def test_inactive_user(self):
+ data = {
+ 'username': 'inactive',
+ 'password': 'password',
+ }
+ form = AdminAuthenticationForm(None, data)
+ self.assertEqual(form.non_field_errors(), ['This account is inactive.'])