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
65c93d7a
Commit
65c93d7a
authored
9 years ago
by
Tasawer
Committed by
Tasawer Nawaz
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix for multiple provider ids
ECOM-2538
parent
b50daf5f
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openedx/core/djangoapps/credit/tests/test_views.py
+45
-0
45 additions, 0 deletions
openedx/core/djangoapps/credit/tests/test_views.py
openedx/core/djangoapps/credit/views.py
+2
-2
2 additions, 2 deletions
openedx/core/djangoapps/credit/views.py
with
47 additions
and
2 deletions
openedx/core/djangoapps/credit/tests/test_views.py
+
45
−
0
View file @
65c93d7a
...
...
@@ -336,6 +336,51 @@ class CreditProviderViewTests(UrlResetMixin, TestCase):
request
=
CreditRequest
.
objects
.
get
(
uuid
=
uuid
)
self
.
assertEqual
(
request
.
status
,
expected_status
)
def
test_get_providers_detail
(
self
):
"""
Verify that the method
'
get_provider_detail
'
returns provider with
the given provide in
'
provider_ids
'
.
"""
url
=
reverse
(
"
credit:providers_detail
"
)
+
"
?provider_ids=hogwarts
"
response
=
self
.
client
.
get
(
url
)
expected
=
[
{
'
enable_integration
'
:
True
,
'
description
'
:
''
,
'
url
'
:
'
https://credit.example.com/request
'
,
'
status_url
'
:
''
,
'
thumbnail_url
'
:
''
,
'
fulfillment_instructions
'
:
None
,
'
display_name
'
:
''
,
'
id
'
:
'
hogwarts
'
}
]
self
.
assertListEqual
(
json
.
loads
(
response
.
content
),
expected
)
def
test_get_providers_with_multiple_provider_ids
(
self
):
"""
Test that the method
'
get_provider_detail
'
returns multiple
providers with given
'
provider_ids
'
or when no provider in
'
provider_ids
'
is given.
"""
# Add another credit provider for the course
CreditProvider
.
objects
.
create
(
provider_id
=
'
dummy_id
'
,
enable_integration
=
True
,
provider_url
=
'
https://example.com
'
,
)
# verify that all the matching providers are returned when provider ids
# are given in parameter 'provider_ids'
url
=
reverse
(
"
credit:providers_detail
"
)
+
"
?provider_ids=hogwarts,dummy_id
"
response
=
self
.
client
.
get
(
url
)
self
.
assertEquals
(
len
(
json
.
loads
(
response
.
content
)),
2
)
# verify that all providers are returned when no provider id in
# parameter 'provider_ids' is provided
url
=
reverse
(
"
credit:providers_detail
"
)
response
=
self
.
client
.
get
(
url
)
self
.
assertEquals
(
len
(
json
.
loads
(
response
.
content
)),
2
)
@unittest.skipUnless
(
settings
.
ROOT_URLCONF
==
'
lms.urls
'
,
'
Test only valid in lms
'
)
class
CreditCourseViewSetTests
(
TestCase
):
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/credit/views.py
+
2
−
2
View file @
65c93d7a
...
...
@@ -74,8 +74,8 @@ def get_providers_detail(request):
* 404 Not Found: The provider does not exist.
"""
provider_id
=
request
.
GET
.
get
(
"
provider_id
"
,
None
)
providers_list
=
provider_id
.
split
(
"
,
"
)
if
provider_id
else
None
provider_id
s
=
request
.
GET
.
get
(
"
provider_id
s
"
,
None
)
providers_list
=
provider_id
s
.
split
(
"
,
"
)
if
provider_id
s
else
None
providers
=
api
.
get_credit_providers
(
providers_list
)
return
JsonResponse
(
providers
)
...
...
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