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
c41db159
Commit
c41db159
authored
Oct 11, 2016
by
Syed Hassan Raza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix empty context KeyError for conditional module
parent
d145457b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
6 deletions
+42
-6
cms/djangoapps/contentstore/views/preview.py
+6
-2
cms/djangoapps/contentstore/views/tests/test_preview.py
+36
-4
No files found.
cms/djangoapps/contentstore/views/preview.py
View file @
c41db159
...
...
@@ -256,9 +256,13 @@ def _load_preview_module(request, descriptor):
def
_is_xblock_reorderable
(
xblock
,
context
):
"""
Returns true if the specified xblock is in the set of reorderable xblocks.
Returns true if the specified xblock is in the set of reorderable xblocks
otherwise returns false.
"""
return
xblock
.
location
in
context
[
'reorderable_items'
]
try
:
return
xblock
.
location
in
context
[
'reorderable_items'
]
except
KeyError
:
return
False
# pylint: disable=unused-argument
...
...
cms/djangoapps/contentstore/views/tests/test_preview.py
View file @
c41db159
...
...
@@ -3,10 +3,10 @@ Tests for contentstore.views.preview.py
"""
import
re
import
ddt
from
mock
import
M
ock
import
m
ock
from
xblock.core
import
XBlock
from
django.test.client
import
RequestFactory
from
django.test.client
import
Client
,
RequestFactory
from
xblock.core
import
XBlockAside
from
student.tests.factories
import
UserFactory
...
...
@@ -15,6 +15,7 @@ from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
contentstore.views.preview
import
get_preview_fragment
,
_preview_module_system
from
contentstore.utils
import
reverse_usage_url
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore.tests.test_asides
import
AsideTestType
from
xblock_config.models
import
StudioConfig
...
...
@@ -105,6 +106,37 @@ class GetPreviewHtmlTestCase(ModuleStoreTestCase):
self
.
assertNotRegexpMatches
(
html
,
r"data-block-type=[\"\']test_aside[\"\']"
)
self
.
assertNotRegexpMatches
(
html
,
"Aside rendered"
)
@mock.patch
(
'xmodule.conditional_module.ConditionalModule.is_condition_satisfied'
)
def
test_preview_conditional_module_children_context
(
self
,
mock_is_condition_satisfied
):
"""
Testst that when empty context is pass to children of ConditionalModule it will not raise KeyError.
"""
mock_is_condition_satisfied
.
return_value
=
True
client
=
Client
()
client
.
login
(
username
=
self
.
user
.
username
,
password
=
self
.
user_password
)
with
self
.
store
.
default_store
(
ModuleStoreEnum
.
Type
.
split
):
course
=
CourseFactory
.
create
()
conditional_block
=
ItemFactory
.
create
(
parent_location
=
course
.
location
,
category
=
"conditional"
)
# child conditional_block
ItemFactory
.
create
(
parent_location
=
conditional_block
.
location
,
category
=
"conditional"
)
url
=
reverse_usage_url
(
'preview_handler'
,
conditional_block
.
location
,
kwargs
=
{
'handler'
:
'xmodule_handler/conditional_get'
}
)
response
=
client
.
post
(
url
)
self
.
assertEqual
(
response
.
status_code
,
200
)
@XBlock.needs
(
"field-data"
)
@XBlock.needs
(
"i18n"
)
...
...
@@ -128,8 +160,8 @@ class StudioXBlockServiceBindingTest(ModuleStoreTestCase):
super
(
StudioXBlockServiceBindingTest
,
self
)
.
setUp
()
self
.
user
=
UserFactory
()
self
.
course
=
CourseFactory
.
create
()
self
.
request
=
Mock
()
self
.
field_data
=
Mock
()
self
.
request
=
mock
.
Mock
()
self
.
field_data
=
mock
.
Mock
()
@XBlock.register_temp_plugin
(
PureXBlock
,
identifier
=
'pure'
)
@ddt.data
(
"user"
,
"i18n"
,
"field-data"
)
...
...
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