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
43e161f6
Unverified
Commit
43e161f6
authored
7 years ago
by
Brandon DeRosier
Browse files
Options
Downloads
Patches
Plain Diff
Fix the BulkEnrollSerializer courses field to internally behave with strings and lists
parent
a31855c9
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/bulk_enroll/serializers.py
+4
-3
4 additions, 3 deletions
lms/djangoapps/bulk_enroll/serializers.py
lms/djangoapps/bulk_enroll/tests/test_views.py
+17
-0
17 additions, 0 deletions
lms/djangoapps/bulk_enroll/tests/test_views.py
with
21 additions
and
3 deletions
lms/djangoapps/bulk_enroll/serializers.py
+
4
−
3
View file @
43e161f6
...
...
@@ -8,10 +8,11 @@ from rest_framework import serializers
class
StringListField
(
serializers
.
ListField
):
def
to_internal_value
(
self
,
data
):
try
:
return
data
[
0
].
split
(
'
,
'
)
except
IndexError
:
if
not
data
:
return
[]
if
isinstance
(
data
,
list
):
data
=
data
[
0
]
return
data
.
split
(
'
,
'
)
class
BulkEnrollmentSerializer
(
serializers
.
Serializer
):
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/bulk_enroll/tests/test_views.py
+
17
−
0
View file @
43e161f6
...
...
@@ -9,6 +9,7 @@ from django.core.urlresolvers import reverse
from
django.test.utils
import
override_settings
from
rest_framework.test
import
APIRequestFactory
,
APITestCase
,
force_authenticate
from
bulk_enroll.serializers
import
BulkEnrollmentSerializer
from
bulk_enroll.views
import
BulkEnrollView
from
courseware.tests.helpers
import
LoginEnrollmentTestCase
from
microsite_configuration
import
microsite
...
...
@@ -74,6 +75,22 @@ class BulkEnrollmentTest(ModuleStoreTestCase, LoginEnrollmentTestCase, APITestCa
response
.
render
()
return
response
def
test_course_list_serializer
(
self
):
"""
Test that the course serializer will work when passed a string or list.
Internally, DRF passes the data into the value conversion method as a list instead of
a string, so StringListField needs to work with both.
"""
for
key
in
[
self
.
course_key
,
[
self
.
course_key
]]:
serializer
=
BulkEnrollmentSerializer
(
data
=
{
'
identifiers
'
:
'
percivaloctavius
'
,
'
action
'
:
'
enroll
'
,
'
email_students
'
:
False
,
'
courses
'
:
key
,
})
self
.
assertTrue
(
serializer
.
is_valid
())
def
test_non_staff
(
self
):
"""
Test that non global staff users are forbidden from API use.
"""
self
.
staff
.
is_staff
=
False
...
...
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