Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
a143309a
Commit
a143309a
authored
11 years ago
by
David Baumgold
Browse files
Options
Downloads
Patches
Plain Diff
Add unit tests to handle duplicate user registration attempts
parent
16f0d12a
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cms/djangoapps/contentstore/tests/tests.py
+29
-0
29 additions, 0 deletions
cms/djangoapps/contentstore/tests/tests.py
with
29 additions
and
0 deletions
cms/djangoapps/contentstore/tests/tests.py
+
29
−
0
View file @
a143309a
...
...
@@ -3,11 +3,13 @@ This test file will test registration, login, activation, and session activity t
"""
import
time
import
mock
import
unittest
from
django.test.utils
import
override_settings
from
django.core.cache
import
cache
from
django.core.urlresolvers
import
reverse
from
django.conf
import
settings
from
django.contrib.auth.models
import
User
from
contentstore.tests.utils
import
parse_json
,
user
,
registration
,
AjaxEnabledTestClient
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
...
...
@@ -19,6 +21,7 @@ from pytz import UTC
from
freezegun
import
freeze_time
@override_settings
(
MODULESTORE
=
TEST_MODULESTORE
)
class
ContentStoreTestCase
(
ModuleStoreTestCase
):
def
_login
(
self
,
email
,
password
):
...
...
@@ -119,6 +122,32 @@ class AuthTestCase(ContentStoreTestCase):
self
.
create_account
(
self
.
username
,
self
.
email
,
self
.
pw
)
self
.
activate_user
(
self
.
email
)
def
test_create_account_username_already_exists
(
self
):
User
.
objects
.
create_user
(
self
.
username
,
self
.
email
,
self
.
pw
)
resp
=
self
.
_create_account
(
self
.
username
,
"
abc@def.com
"
,
"
password
"
)
# we have a constraint on unique usernames, so this should fail
self
.
assertEqual
(
resp
.
status_code
,
400
)
def
test_create_account_pw_already_exists
(
self
):
User
.
objects
.
create_user
(
self
.
username
,
self
.
email
,
self
.
pw
)
resp
=
self
.
_create_account
(
"
abcdef
"
,
"
abc@def.com
"
,
self
.
pw
)
# we can have two users with the same password, so this should succeed
self
.
assertEqual
(
resp
.
status_code
,
200
)
@unittest.skipUnless
(
settings
.
SOUTH_TESTS_MIGRATE
,
"
South migrations required
"
)
def
test_create_account_email_already_exists
(
self
):
User
.
objects
.
create_user
(
self
.
username
,
self
.
email
,
self
.
pw
)
resp
=
self
.
_create_account
(
"
abcdef
"
,
self
.
email
,
"
password
"
)
# This is tricky. Django's user model doesn't have a constraint on
# unique email addresses, but we *add* that constraint during the
# migration process:
# see common/djangoapps/student/migrations/0004_add_email_index.py
#
# The behavior we *want* is for this account creation request
# to fail, due to this uniqueness constraint, but the request will
# succeed if the migrations have not run.
self
.
assertEqual
(
resp
.
status_code
,
400
)
def
test_login
(
self
):
self
.
create_account
(
self
.
username
,
self
.
email
,
self
.
pw
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment