| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import unittest
-
- from django.test import TestCase
- from django.contrib.auth import authenticate
- from django.core import mail
-
- from oscar.core.compat import get_user_model
-
- User = get_user_model()
-
-
- # Skip these tests for now as they only make sense when there isn't a unique
- # index on the user class. The test suite currently uses a custom model that
- # *does* have a unique index on email. When I figure out how to swap the user
- # model per test, we can re-enable this testcase.
- @unittest.skip
- class TestEmailAuthBackendWhenUsersShareAnEmail(TestCase):
-
- def test_authenticates_when_passwords_are_different(self):
- # Create two users with the same email address
- email = 'person@example.com'
- for username in ['user1', 'user2']:
- User.objects.create_user(username, email, password=username)
-
- user = authenticate(username=email, password='user1')
- self.assertTrue(user is not None)
-
- def test_rejects_when_passwords_match(self):
- # Create two users with the same email address
- email = 'person@example.com'
- for username in ['user1', 'user2']:
- User.objects.create_user(username, email, password='password')
-
- user = authenticate(username=email, password='password')
- self.assertTrue(user is None)
-
- def test_mails_admins_when_passwords_match(self):
- # Create two users with the same email address
- email = 'person@example.com'
- for username in ['user1', 'user2']:
- User.objects.create_user(username, email, password='password')
-
- authenticate(username=email, password='password')
- self.assertEqual(1, len(mail.outbox))
|