summaryrefslogtreecommitdiff
path: root/tests/auth_tests
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2016-03-02 17:53:12 -0800
committerTim Graham <timograham@gmail.com>2016-03-05 12:59:30 -0500
commit8d3fcfa39e8aab5618d9b7f6a592006e9af8cefc (patch)
tree356d8ffec99fc2dcd235bf6d18a3c3f211b4f2d5 /tests/auth_tests
parent9ed4a788aa8d6ba6a57a2daa15253c3047048dfb (diff)
Cleaned up tests to use call_command() instead of Command.execute().
Diffstat (limited to 'tests/auth_tests')
-rw-r--r--tests/auth_tests/test_management.py34
1 files changed, 13 insertions, 21 deletions
diff --git a/tests/auth_tests/test_management.py b/tests/auth_tests/test_management.py
index e8388db763..84a414a435 100644
--- a/tests/auth_tests/test_management.py
+++ b/tests/auth_tests/test_management.py
@@ -19,7 +19,7 @@ from django.core.management import call_command
from django.core.management.base import CommandError
from django.db import models
from django.test import (
- SimpleTestCase, TestCase, override_settings, override_system_checks,
+ SimpleTestCase, TestCase, mock, override_settings, override_system_checks,
)
from django.test.utils import isolate_apps
from django.utils import six
@@ -124,13 +124,12 @@ class ChangepasswordManagementCommandTestCase(TestCase):
self.stdout.close()
self.stderr.close()
- def test_that_changepassword_command_changes_joes_password(self):
+ @mock.patch.object(changepassword.Command, '_get_pass', return_value='not qwerty')
+ def test_that_changepassword_command_changes_joes_password(self, mock_get_pass):
"Executing the changepassword management command should change joe's password"
self.assertTrue(self.user.check_password('qwerty'))
- command = changepassword.Command()
- command._get_pass = lambda *args: 'not qwerty'
- command.execute(username="joe", stdout=self.stdout)
+ call_command('changepassword', username='joe', stdout=self.stdout)
command_output = self.stdout.getvalue().strip()
self.assertEqual(
@@ -139,42 +138,35 @@ class ChangepasswordManagementCommandTestCase(TestCase):
)
self.assertTrue(User.objects.get(username="joe").check_password("not qwerty"))
- def test_that_max_tries_exits_1(self):
+ @mock.patch.object(changepassword.Command, '_get_pass', side_effect=lambda *args: str(args))
+ def test_that_max_tries_exits_1(self, mock_get_pass):
"""
A CommandError should be thrown by handle() if the user enters in
mismatched passwords three times.
"""
- command = changepassword.Command()
- command._get_pass = lambda *args: str(args) or 'foo'
-
with self.assertRaises(CommandError):
- command.execute(username="joe", stdout=self.stdout, stderr=self.stderr)
+ call_command('changepassword', username='joe', stdout=self.stdout, stderr=self.stderr)
- def test_password_validation(self):
+ @mock.patch.object(changepassword.Command, '_get_pass', return_value='1234567890')
+ def test_password_validation(self, mock_get_pass):
"""
A CommandError should be raised if the user enters in passwords which
fail validation three times.
"""
- command = changepassword.Command()
- command._get_pass = lambda *args: '1234567890'
-
abort_msg = "Aborting password change for user 'joe' after 3 attempts"
with self.assertRaisesMessage(CommandError, abort_msg):
- command.execute(username="joe", stdout=self.stdout, stderr=self.stderr)
+ call_command('changepassword', username='joe', stdout=self.stdout, stderr=self.stderr)
self.assertIn('This password is entirely numeric.', self.stderr.getvalue())
- def test_that_changepassword_command_works_with_nonascii_output(self):
+ @mock.patch.object(changepassword.Command, '_get_pass', return_value='not qwerty')
+ def test_that_changepassword_command_works_with_nonascii_output(self, mock_get_pass):
"""
#21627 -- Executing the changepassword management command should allow
non-ASCII characters from the User object representation.
"""
# 'Julia' with accented 'u':
User.objects.create_user(username='J\xfalia', password='qwerty')
-
- command = changepassword.Command()
- command._get_pass = lambda *args: 'not qwerty'
-
- command.execute(username="J\xfalia", stdout=self.stdout)
+ call_command('changepassword', username='J\xfalia', stdout=self.stdout)
@override_settings(