Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
92f53236
Commit
92f53236
authored
10 years ago
by
Adam Palay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 400s from change_enrollment causing 404s (LMS-6625)
parent
6b1a7dc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
3 deletions
+23
-3
common/djangoapps/student/tests/test_login.py
+23
-1
common/djangoapps/student/views.py
+0
-2
No files found.
common/djangoapps/student/tests/test_login.py
View file @
92f53236
...
@@ -11,6 +11,7 @@ from django.test.utils import override_settings
...
@@ -11,6 +11,7 @@ from django.test.utils import override_settings
from
django.conf
import
settings
from
django.conf
import
settings
from
django.core.cache
import
cache
from
django.core.cache
import
cache
from
django.core.urlresolvers
import
reverse
,
NoReverseMatch
from
django.core.urlresolvers
import
reverse
,
NoReverseMatch
from
django.http
import
HttpResponseBadRequest
from
student.tests.factories
import
UserFactory
,
RegistrationFactory
,
UserProfileFactory
from
student.tests.factories
import
UserFactory
,
RegistrationFactory
,
UserProfileFactory
from
student.views
import
_parse_course_id_from_string
,
_get_course_enrollment_domain
from
student.views
import
_parse_course_id_from_string
,
_get_course_enrollment_domain
...
@@ -206,9 +207,30 @@ class LoginTest(TestCase):
...
@@ -206,9 +207,30 @@ class LoginTest(TestCase):
# client1 will be logged out
# client1 will be logged out
self
.
assertEqual
(
response
.
status_code
,
302
)
self
.
assertEqual
(
response
.
status_code
,
302
)
def
_login_response
(
self
,
email
,
password
,
patched_audit_log
=
'student.views.AUDIT_LOG'
):
def
test_change_enrollment_400
(
self
):
"""
Tests that a 400 in change_enrollment doesn't lead to a 400
and in fact just redirects the user to the dashboard
without incident.
"""
# add these post params to trigger a call to change_enrollment
extra_post_params
=
{
"enrollment_action"
:
"enroll"
}
with
patch
(
'student.views.change_enrollment'
)
as
mock_change_enrollment
:
mock_change_enrollment
.
return_value
=
HttpResponseBadRequest
(
"I am a 400"
)
response
,
_
=
self
.
_login_response
(
'test@edx.org'
,
'test_password'
,
extra_post_params
=
extra_post_params
,
)
response_content
=
json
.
loads
(
response
.
content
)
self
.
assertIsNone
(
response_content
[
"redirect_url"
])
self
.
_assert_response
(
response
,
success
=
True
)
def
_login_response
(
self
,
email
,
password
,
patched_audit_log
=
'student.views.AUDIT_LOG'
,
extra_post_params
=
None
):
''' Post the login info '''
''' Post the login info '''
post_params
=
{
'email'
:
email
,
'password'
:
password
}
post_params
=
{
'email'
:
email
,
'password'
:
password
}
if
extra_post_params
is
not
None
:
post_params
.
update
(
extra_post_params
)
with
patch
(
patched_audit_log
)
as
mock_audit_log
:
with
patch
(
patched_audit_log
)
as
mock_audit_log
:
result
=
self
.
client
.
post
(
self
.
url
,
post_params
)
result
=
self
.
client
.
post
(
self
.
url
,
post_params
)
return
result
,
mock_audit_log
return
result
,
mock_audit_log
...
...
This diff is collapsed.
Click to expand it.
common/djangoapps/student/views.py
View file @
92f53236
...
@@ -559,8 +559,6 @@ def try_change_enrollment(request):
...
@@ -559,8 +559,6 @@ def try_change_enrollment(request):
enrollment_response
.
content
enrollment_response
.
content
)
)
)
)
if
enrollment_response
.
content
!=
''
:
return
enrollment_response
.
content
except
Exception
,
e
:
except
Exception
,
e
:
log
.
exception
(
"Exception automatically enrolling after login: {0}"
.
format
(
str
(
e
)))
log
.
exception
(
"Exception automatically enrolling after login: {0}"
.
format
(
str
(
e
)))
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment