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
b245fa03
Commit
b245fa03
authored
Oct 05, 2017
by
Rabia Iftikhar
Committed by
GitHub
Oct 05, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16159 from edx/ri/EDUCATOR-139-add-charset-webOb-response
EDUCATOR-139 Add charset to the WebOb response
parents
b07826cb
ee558581
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
15 deletions
+17
-15
common/lib/xmodule/xmodule/tests/test_xblock_wrappers.py
+16
-0
common/lib/xmodule/xmodule/x_module.py
+1
-15
No files found.
common/lib/xmodule/xmodule/tests/test_xblock_wrappers.py
View file @
b245fa03
...
...
@@ -363,6 +363,7 @@ class TestStudioView(XBlockWrapperTestMixin, TestCase):
self
.
assertEqual
(
html
,
rendered_content
)
@ddt.ddt
class
TestXModuleHandler
(
TestCase
):
"""
Tests that the xmodule_handler function correctly wraps handle_ajax
...
...
@@ -387,6 +388,21 @@ class TestXModuleHandler(TestCase):
self
.
assertIsInstance
(
response
,
webob
.
Response
)
self
.
assertEqual
(
response
.
body
,
'{}'
)
@ddt.data
(
u'{"test_key": "test_value"}'
,
'{"test_key": "test_value"}'
,
)
def
test_xmodule_handler_with_data
(
self
,
response_data
):
"""
Tests that xmodule_handler function correctly wraps handle_ajax when handle_ajax response is either
str or unicode.
"""
self
.
module
.
handle_ajax
=
Mock
(
return_value
=
response_data
)
response
=
self
.
module
.
xmodule_handler
(
self
.
request
)
self
.
assertIsInstance
(
response
,
webob
.
Response
)
self
.
assertEqual
(
response
.
body
,
'{"test_key": "test_value"}'
)
class
TestXmlExport
(
XBlockWrapperTestMixin
,
TestCase
):
"""
...
...
common/lib/xmodule/xmodule/x_module.py
View file @
b245fa03
...
...
@@ -881,21 +881,7 @@ class XModule(HTMLSnippet, XModuleMixin):
request_post
[
key
]
=
map
(
FileObjForWebobFiles
,
request
.
POST
.
getall
(
key
))
response_data
=
self
.
handle_ajax
(
suffix
,
request_post
)
try
:
return
Response
(
response_data
,
content_type
=
'application/json'
)
except
TypeError
:
request_environ
=
getattr
(
request
,
'environ'
)
log
.
exception
(
'Response creation failed for problem url:
%
s, response_data type:
%
s, LANG:
%
s, '
'LC_ALL:
%
s and HTTP_ACCEPT_ENCODING:
%
s'
,
request_environ
.
get
(
'HTTP_REFERER'
),
type
(
response_data
),
request_environ
.
get
(
'LANG'
),
request_environ
.
get
(
'LC_ALL'
),
request_environ
.
get
(
'HTTP_ACCEPT_ENCODING'
)
)
raise
return
Response
(
response_data
,
content_type
=
'application/json'
,
charset
=
'UTF-8'
)
def
get_child
(
self
,
usage_id
):
if
usage_id
in
self
.
_child_cache
:
...
...
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