You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.4 KiB
89 lines
3.4 KiB
from django.conf import settings
|
|
from django.contrib.auth.models import User
|
|
from django.core.urlresolvers import reverse
|
|
from django.test import TestCase
|
|
|
|
from registration.forms import RegistrationForm
|
|
|
|
|
|
class SimpleBackendViewTests(TestCase):
|
|
urls = 'registration.backends.simple.urls'
|
|
|
|
def test_allow(self):
|
|
"""
|
|
The setting ``REGISTRATION_OPEN`` appropriately controls
|
|
whether registration is permitted.
|
|
|
|
"""
|
|
old_allowed = getattr(settings, 'REGISTRATION_OPEN', True)
|
|
settings.REGISTRATION_OPEN = True
|
|
|
|
resp = self.client.get(reverse('registration_register'))
|
|
self.assertEqual(200, resp.status_code)
|
|
|
|
settings.REGISTRATION_OPEN = False
|
|
|
|
# Now all attempts to hit the register view should redirect to
|
|
# the 'registration is closed' message.
|
|
resp = self.client.get(reverse('registration_register'))
|
|
self.assertRedirects(resp, reverse('registration_disallowed'))
|
|
|
|
resp = self.client.post(reverse('registration_register'),
|
|
data={'username': 'bob',
|
|
'email': 'bob@example.com',
|
|
'password1': 'secret',
|
|
'password2': 'secret'})
|
|
self.assertRedirects(resp, reverse('registration_disallowed'))
|
|
|
|
settings.REGISTRATION_OPEN = old_allowed
|
|
|
|
def test_registration_get(self):
|
|
"""
|
|
HTTP ``GET`` to the registration view uses the appropriate
|
|
template and populates a registration form into the context.
|
|
|
|
"""
|
|
resp = self.client.get(reverse('registration_register'))
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertTemplateUsed(resp,
|
|
'registration/registration_form.html')
|
|
self.failUnless(isinstance(resp.context['form'],
|
|
RegistrationForm))
|
|
|
|
def test_registration(self):
|
|
"""
|
|
Registration creates a new account and logs the user in.
|
|
|
|
"""
|
|
resp = self.client.post(reverse('registration_register'),
|
|
data={'username': 'bob',
|
|
'email': 'bob@example.com',
|
|
'password1': 'secret',
|
|
'password2': 'secret'})
|
|
|
|
new_user = User.objects.get(username='bob')
|
|
self.assertEqual(302, resp.status_code)
|
|
self.failUnless(new_user.get_absolute_url() in resp['Location'])
|
|
|
|
self.failUnless(new_user.check_password('secret'))
|
|
self.assertEqual(new_user.email, 'bob@example.com')
|
|
|
|
# New user must be active.
|
|
self.failUnless(new_user.is_active)
|
|
|
|
# New user must be logged in.
|
|
resp = self.client.get(reverse('registration_register'))
|
|
self.failUnless(resp.context['user'].is_authenticated())
|
|
|
|
def test_registration_failure(self):
|
|
"""
|
|
Registering with invalid data fails.
|
|
|
|
"""
|
|
resp = self.client.post(reverse('registration_register'),
|
|
data={'username': 'bob',
|
|
'email': 'bob@example.com',
|
|
'password1': 'secret',
|
|
'password2': 'notsecret'})
|
|
self.assertEqual(200, resp.status_code)
|
|
self.failIf(resp.context['form'].is_valid())
|
|
|