78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
|
|
BASIC_TESTS = """
|
|
>>> from django.contrib.auth.models import User, AnonymousUser
|
|
>>> u = User.objects.create_user('testuser', 'test@example.com', 'testpw')
|
|
>>> u.has_usable_password()
|
|
True
|
|
>>> u.check_password('bad')
|
|
False
|
|
>>> u.check_password('testpw')
|
|
True
|
|
>>> u.set_unusable_password()
|
|
>>> u.save()
|
|
>>> u.check_password('testpw')
|
|
False
|
|
>>> u.has_usable_password()
|
|
False
|
|
>>> u2 = User.objects.create_user('testuser2', 'test2@example.com')
|
|
>>> u2.has_usable_password()
|
|
False
|
|
|
|
>>> u.is_authenticated()
|
|
True
|
|
>>> u.is_staff
|
|
False
|
|
>>> u.is_active
|
|
True
|
|
|
|
>>> a = AnonymousUser()
|
|
>>> a.is_authenticated()
|
|
False
|
|
>>> a.is_staff
|
|
False
|
|
>>> a.is_active
|
|
False
|
|
>>> a.groups.all()
|
|
[]
|
|
>>> a.user_permissions.all()
|
|
[]
|
|
|
|
#
|
|
# Tests for createsuperuser management command.
|
|
# It's nearly impossible to test the interactive mode -- a command test helper
|
|
# would be needed (and *awesome*) -- so just test the non-interactive mode.
|
|
# This covers most of the important validation, but not all.
|
|
#
|
|
>>> from django.core.management import call_command
|
|
|
|
>>> call_command("createsuperuser", noinput=True, username="joe", email="joe@somewhere.org")
|
|
Superuser created successfully.
|
|
|
|
>>> u = User.objects.get(username="joe")
|
|
>>> u.email
|
|
u'joe@somewhere.org'
|
|
>>> u.password
|
|
u'!'
|
|
"""
|
|
|
|
from django.test import TestCase
|
|
from django.core import mail
|
|
|
|
class PasswordResetTest(TestCase):
|
|
fixtures = ['authtestdata.json']
|
|
urls = 'django.contrib.auth.urls'
|
|
|
|
def test_email_not_found(self):
|
|
"Error is raised if the provided email address isn't currently registered"
|
|
response = self.client.get('/password_reset/')
|
|
self.assertEquals(response.status_code, 200)
|
|
response = self.client.post('/password_reset/', {'email': 'not_a_real_email@email.com'})
|
|
self.assertContains(response, "That e-mail address doesn't have an associated user account")
|
|
self.assertEquals(len(mail.outbox), 0)
|
|
|
|
def test_email_found(self):
|
|
"Email is sent if a valid email address is provided for password reset"
|
|
response = self.client.post('/password_reset/', {'email': 'staffmember@example.com'})
|
|
self.assertEquals(response.status_code, 302)
|
|
self.assertEquals(len(mail.outbox), 1)
|