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
4d2ca166
Unverified
Commit
4d2ca166
authored
5 years ago
by
Awais Qureshi
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #21557 from edx/awais786/BOM-169
BOM-169
parents
66124234
e7712e0c
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/shoppingcart/tests/payment_fake.py
+1
-1
1 addition, 1 deletion
lms/djangoapps/shoppingcart/tests/payment_fake.py
lms/djangoapps/shoppingcart/tests/test_payment_fake.py
+2
-3
2 additions, 3 deletions
lms/djangoapps/shoppingcart/tests/test_payment_fake.py
with
3 additions
and
4 deletions
lms/djangoapps/shoppingcart/tests/payment_fake.py
+
1
−
1
View file @
4d2ca166
...
...
@@ -77,7 +77,7 @@ class PaymentFakeView(View):
Accepts one POST param
"
status
"
that can be either
"
success
"
or
"
failure
"
.
"""
new_status
=
request
.
body
new_status
=
request
.
body
.
decode
(
'
utf-8
'
)
if
new_status
not
in
[
"
success
"
,
"
failure
"
,
"
decline
"
]:
return
HttpResponseBadRequest
()
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/shoppingcart/tests/test_payment_fake.py
+
2
−
3
View file @
4d2ca166
...
...
@@ -57,7 +57,7 @@ class PaymentFakeViewTest(TestCase):
# Expect that we were served the payment page
# (not the error page)
self
.
assertIn
(
"
Payment Form
"
,
resp
.
content
)
self
.
assertIn
(
"
Payment Form
"
,
resp
.
content
.
decode
(
'
utf-8
'
)
)
def
test_rejects_invalid_signature
(
self
):
...
...
@@ -74,7 +74,7 @@ class PaymentFakeViewTest(TestCase):
)
# Expect that we got an error
self
.
assertIn
(
"
Error
"
,
resp
.
content
)
self
.
assertIn
(
"
Error
"
,
resp
.
content
.
decode
(
'
utf-8
'
)
)
def
test_sends_valid_signature
(
self
):
...
...
@@ -95,7 +95,6 @@ class PaymentFakeViewTest(TestCase):
# Generate shoppingcart signatures
post_params
=
sign
(
self
.
client_post_params
)
# Configure the view to declined payments
resp
=
self
.
client
.
put
(
'
/shoppingcart/payment_fake
'
,
...
...
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