app/django/contrib/auth/tests.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 10 Oct 2008 13:14:24 +0000
changeset 297 35211afcd563
parent 54 03e267d67478
permissions -rw-r--r--
Load /Users/solydzajs/Downloads/google_appengine/ into trunk/thirdparty/google_appengine.

"""
>>> from 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()
[]
"""