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
dad67cb9
Commit
dad67cb9
authored
11 years ago
by
Jason Bau
Browse files
Options
Downloads
Patches
Plain Diff
change error HTTP response codes to 400 where appropriate
parent
a0948668
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/shoppingcart/tests/test_views.py
+2
-2
2 additions, 2 deletions
lms/djangoapps/shoppingcart/tests/test_views.py
lms/djangoapps/shoppingcart/views.py
+4
-3
4 additions, 3 deletions
lms/djangoapps/shoppingcart/views.py
with
6 additions
and
5 deletions
lms/djangoapps/shoppingcart/tests/test_views.py
+
2
−
2
View file @
dad67cb9
...
...
@@ -63,14 +63,14 @@ class ShoppingCartViewsTests(ModuleStoreTestCase):
PaidCourseRegistration
.
add_to_order
(
self
.
cart
,
self
.
course_id
)
self
.
login_user
()
resp
=
self
.
client
.
post
(
reverse
(
'
shoppingcart.views.add_course_to_cart
'
,
args
=
[
self
.
course_id
]))
self
.
assertEqual
(
resp
.
status_code
,
40
4
)
self
.
assertEqual
(
resp
.
status_code
,
40
0
)
self
.
assertIn
(
_
(
'
The course {0} is already in your cart.
'
.
format
(
self
.
course_id
)),
resp
.
content
)
def
test_add_course_to_cart_already_registered
(
self
):
CourseEnrollment
.
enroll
(
self
.
user
,
self
.
course_id
)
self
.
login_user
()
resp
=
self
.
client
.
post
(
reverse
(
'
shoppingcart.views.add_course_to_cart
'
,
args
=
[
self
.
course_id
]))
self
.
assertEqual
(
resp
.
status_code
,
40
4
)
self
.
assertEqual
(
resp
.
status_code
,
40
0
)
self
.
assertIn
(
_
(
'
You are already registered in course {0}.
'
.
format
(
self
.
course_id
)),
resp
.
content
)
def
test_add_nonexistent_course_to_cart
(
self
):
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/shoppingcart/views.py
+
4
−
3
View file @
dad67cb9
import
logging
from
django.http
import
HttpResponse
,
HttpResponseRedirect
,
HttpResponseNotFound
,
HttpResponseForbidden
,
Http404
from
django.http
import
(
HttpResponse
,
HttpResponseRedirect
,
HttpResponseNotFound
,
HttpResponseBadRequest
,
HttpResponseForbidden
,
Http404
)
from
django.utils.translation
import
ugettext
as
_
from
django.views.decorators.http
import
require_POST
from
django.core.urlresolvers
import
reverse
...
...
@@ -19,9 +20,9 @@ def add_course_to_cart(request, course_id):
return
HttpResponseForbidden
(
_
(
'
You must be logged-in to add to a shopping cart
'
))
cart
=
Order
.
get_cart_for_user
(
request
.
user
)
if
PaidCourseRegistration
.
part_of_order
(
cart
,
course_id
):
return
HttpResponse
NotFound
(
_
(
'
The course {0} is already in your cart.
'
.
format
(
course_id
)))
return
HttpResponse
BadRequest
(
_
(
'
The course {0} is already in your cart.
'
.
format
(
course_id
)))
if
CourseEnrollment
.
is_enrolled
(
user
=
request
.
user
,
course_id
=
course_id
):
return
HttpResponse
NotFound
(
_
(
'
You are already registered in course {0}.
'
.
format
(
course_id
)))
return
HttpResponse
BadRequest
(
_
(
'
You are already registered in course {0}.
'
.
format
(
course_id
)))
try
:
PaidCourseRegistration
.
add_to_order
(
cart
,
course_id
)
except
ItemNotFoundError
:
...
...
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