2012-08-18 10:15:20 +08:00
|
|
|
import locale
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
from django.contrib.auth.management.commands import createsuperuser
|
2010-10-09 11:34:08 +08:00
|
|
|
from django.contrib.auth.models import User, AnonymousUser
|
|
|
|
from django.core.management import call_command
|
2012-07-20 22:16:57 +08:00
|
|
|
from django.test import TestCase
|
|
|
|
from django.utils.six import StringIO
|
2011-06-27 00:51:46 +08:00
|
|
|
|
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
class BasicTestCase(TestCase):
|
|
|
|
def test_user(self):
|
|
|
|
"Check that users can be created and can set their password"
|
|
|
|
u = User.objects.create_user('testuser', 'test@example.com', 'testpw')
|
|
|
|
self.assertTrue(u.has_usable_password())
|
|
|
|
self.assertFalse(u.check_password('bad'))
|
|
|
|
self.assertTrue(u.check_password('testpw'))
|
2007-12-11 14:37:07 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
# Check we can manually set an unusable password
|
|
|
|
u.set_unusable_password()
|
|
|
|
u.save()
|
|
|
|
self.assertFalse(u.check_password('testpw'))
|
|
|
|
self.assertFalse(u.has_usable_password())
|
|
|
|
u.set_password('testpw')
|
|
|
|
self.assertTrue(u.check_password('testpw'))
|
|
|
|
u.set_password(None)
|
|
|
|
self.assertFalse(u.has_usable_password())
|
2007-12-11 14:37:07 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
# Check authentication/permissions
|
|
|
|
self.assertTrue(u.is_authenticated())
|
|
|
|
self.assertFalse(u.is_staff)
|
|
|
|
self.assertTrue(u.is_active)
|
|
|
|
self.assertFalse(u.is_superuser)
|
2008-06-08 13:31:16 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
# Check API-based user creation with no password
|
|
|
|
u2 = User.objects.create_user('testuser2', 'test2@example.com')
|
|
|
|
self.assertFalse(u.has_usable_password())
|
2009-03-31 06:00:07 +08:00
|
|
|
|
2011-06-28 12:29:48 +08:00
|
|
|
def test_user_no_email(self):
|
|
|
|
"Check that users can be created without an email"
|
|
|
|
u = User.objects.create_user('testuser1')
|
2011-06-28 18:17:36 +08:00
|
|
|
self.assertEqual(u.email, '')
|
2011-06-28 12:29:48 +08:00
|
|
|
|
|
|
|
u2 = User.objects.create_user('testuser2', email='')
|
2011-06-28 18:17:36 +08:00
|
|
|
self.assertEqual(u2.email, '')
|
2011-06-28 12:29:48 +08:00
|
|
|
|
|
|
|
u3 = User.objects.create_user('testuser3', email=None)
|
2011-06-28 18:17:36 +08:00
|
|
|
self.assertEqual(u3.email, '')
|
2011-06-28 12:29:48 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
def test_anonymous_user(self):
|
|
|
|
"Check the properties of the anonymous user"
|
|
|
|
a = AnonymousUser()
|
2012-05-11 03:42:13 +08:00
|
|
|
self.assertEqual(a.pk, None)
|
2010-10-09 11:34:08 +08:00
|
|
|
self.assertFalse(a.is_authenticated())
|
|
|
|
self.assertFalse(a.is_staff)
|
|
|
|
self.assertFalse(a.is_active)
|
|
|
|
self.assertFalse(a.is_superuser)
|
|
|
|
self.assertEqual(a.groups.all().count(), 0)
|
|
|
|
self.assertEqual(a.user_permissions.all().count(), 0)
|
2008-06-08 13:31:16 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
def test_superuser(self):
|
|
|
|
"Check the creation and properties of a superuser"
|
|
|
|
super = User.objects.create_superuser('super', 'super@example.com', 'super')
|
|
|
|
self.assertTrue(super.is_superuser)
|
|
|
|
self.assertTrue(super.is_active)
|
|
|
|
self.assertTrue(super.is_staff)
|
2008-06-08 13:31:16 +08:00
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
def test_createsuperuser_management_command(self):
|
|
|
|
"Check the operation of the createsuperuser management command"
|
|
|
|
# We can use the management command to create a superuser
|
|
|
|
new_io = StringIO()
|
|
|
|
call_command("createsuperuser",
|
|
|
|
interactive=False,
|
|
|
|
username="joe",
|
|
|
|
email="joe@somewhere.org",
|
|
|
|
stdout=new_io
|
|
|
|
)
|
|
|
|
command_output = new_io.getvalue().strip()
|
|
|
|
self.assertEqual(command_output, 'Superuser created successfully.')
|
|
|
|
u = User.objects.get(username="joe")
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(u.email, 'joe@somewhere.org')
|
2011-02-22 19:33:04 +08:00
|
|
|
|
|
|
|
# created password should be unusable
|
|
|
|
self.assertFalse(u.has_usable_password())
|
2010-10-09 11:34:08 +08:00
|
|
|
|
|
|
|
# We can supress output on the management command
|
|
|
|
new_io = StringIO()
|
|
|
|
call_command("createsuperuser",
|
|
|
|
interactive=False,
|
|
|
|
username="joe2",
|
|
|
|
email="joe2@somewhere.org",
|
|
|
|
verbosity=0,
|
|
|
|
stdout=new_io
|
|
|
|
)
|
|
|
|
command_output = new_io.getvalue().strip()
|
|
|
|
self.assertEqual(command_output, '')
|
|
|
|
u = User.objects.get(username="joe2")
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(u.email, 'joe2@somewhere.org')
|
2011-02-22 19:33:04 +08:00
|
|
|
self.assertFalse(u.has_usable_password())
|
|
|
|
|
2010-10-09 11:34:08 +08:00
|
|
|
|
|
|
|
new_io = StringIO()
|
|
|
|
call_command("createsuperuser",
|
|
|
|
interactive=False,
|
|
|
|
username="joe+admin@somewhere.org",
|
|
|
|
email="joe@somewhere.org",
|
|
|
|
stdout=new_io
|
|
|
|
)
|
|
|
|
u = User.objects.get(username="joe+admin@somewhere.org")
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(u.email, 'joe@somewhere.org')
|
2011-02-22 19:33:04 +08:00
|
|
|
self.assertFalse(u.has_usable_password())
|
2012-08-18 10:15:20 +08:00
|
|
|
|
|
|
|
def test_createsuperuser_nolocale(self):
|
|
|
|
"""
|
|
|
|
Check that createsuperuser does not break when no locale is set. See
|
|
|
|
ticket #16017.
|
|
|
|
"""
|
|
|
|
|
|
|
|
old_getdefaultlocale = locale.getdefaultlocale
|
|
|
|
old_getpass = createsuperuser.getpass
|
|
|
|
try:
|
|
|
|
# Temporarily remove locale information
|
|
|
|
locale.getdefaultlocale = lambda: (None, None)
|
|
|
|
|
|
|
|
# Temporarily replace getpass to allow interactive code to be used
|
|
|
|
# non-interactively
|
|
|
|
class mock_getpass: pass
|
|
|
|
mock_getpass.getpass = staticmethod(lambda p=None: "nopasswd")
|
|
|
|
createsuperuser.getpass = mock_getpass
|
|
|
|
|
|
|
|
# Call the command in this new environment
|
|
|
|
new_io = StringIO()
|
|
|
|
call_command("createsuperuser", interactive=True, username="nolocale@somewhere.org", email="nolocale@somewhere.org", stdout=new_io)
|
|
|
|
|
|
|
|
except TypeError as e:
|
|
|
|
self.fail("createsuperuser fails if the OS provides no information about the current locale")
|
|
|
|
|
|
|
|
finally:
|
|
|
|
# Re-apply locale and getpass information
|
|
|
|
createsuperuser.getpass = old_getpass
|
|
|
|
locale.getdefaultlocale = old_getdefaultlocale
|
|
|
|
|
|
|
|
# If we were successful, a user should have been created
|
|
|
|
u = User.objects.get(username="nolocale@somewhere.org")
|
|
|
|
self.assertEqual(u.email, 'nolocale@somewhere.org')
|