|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- from django.core.urlresolvers import reverse
- from django.test import TestCase
- from django.test.utils import override_settings
-
- import mock
-
- from .auth.backends import CombinedAuthBackend
- from .models import User
-
-
- def mock_requests_get(url, headers=None):
- response = mock.Mock(content=open('docs/src/imgs/logo-dark.png', 'rb').read())
- return response
-
-
- class CombinedAuthBackendTest(TestCase):
- def setUp(self):
- self.backend = CombinedAuthBackend()
- self.username = 'jdoe'
- self.email = 'jdoe@example.com'
- self.password = 'password'
- User.objects.create_user(username=self.username, email=self.email, password=self.password)
-
- def test_authenticate_username(self):
- self.assertTrue(self.backend.authenticate(username=self.username, password=self.password))
-
- def test_authenticate_email(self):
- self.assertTrue(self.backend.authenticate(username=self.email, password=self.password))
-
- def test_authenticate_wrong_password(self):
- self.assertIsNone(self.backend.authenticate(username=self.username, password='wrong-password'))
-
- def test_authenticate_unknown_user(self):
- self.assertIsNone(self.backend.authenticate(username='wrong-username', password='wrong-password'))
-
-
- class CreateUserTest(TestCase):
- def test_create_post(self):
- data = {
- 'username': 'jdoe',
- 'email': 'jdoe@example.com',
- 'password': 'password',
- 'password_repeat': 'password',
- }
- response = self.client.post(
- reverse('users:user-list'),
- data=data,
- )
- self.assertEqual(response.status_code, 201)
-
- @override_settings(ALLOW_NEW_REGISTRATIONS=False)
- def test_create_post_not_allowed(self):
- data = {
- 'username': 'jdoe',
- 'email': 'jdoe@example.com',
- 'password': 'password',
- 'password_repeat': 'password',
-
- }
- response = self.client.post(
- reverse('users:user-list'),
- data=data,
- )
- self.assertEqual(response.status_code, 403)
-
-
- class LogoutViewTest(TestCase):
- def setUp(self):
- User.objects.create_user(username='jdoe', password='password')
- self.client.login(username='jdoe', password='password')
-
- def test_logout_view(self):
- response = self.client.get(reverse('users:logout'))
- self.assertEqual(response.status_code, 302)
|