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
4896e445
Commit
4896e445
authored
Jun 07, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write a test for the XML unicode conversion fix.
parent
aac7e364
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
common/lib/xmodule/xmodule/modulestore/tests/test_xml.py
+14
-2
No files found.
common/lib/xmodule/xmodule/modulestore/tests/test_xml.py
View file @
4896e445
from
xmodule.
modulestore
import
Location
from
xmodule.
course_module
import
CourseDescriptor
from
xmodule.modulestore.xml
import
XMLModuleStore
from
xmodule.modulestore.xml
import
XMLModuleStore
from
xmodule.modulestore.xml_importer
import
import_from_xml
from
.test_modulestore
import
check_path_to_location
from
.test_modulestore
import
check_path_to_location
from
.
import
DATA_DIR
from
.
import
DATA_DIR
...
@@ -15,3 +14,16 @@ class TestXMLModuleStore(object):
...
@@ -15,3 +14,16 @@ class TestXMLModuleStore(object):
print
"finished import"
print
"finished import"
check_path_to_location
(
modulestore
)
check_path_to_location
(
modulestore
)
def
test_unicode_chars_in_xml_content
(
self
):
# edX/full/6.002_Spring_2012 has non-ASCII chars, and during
# uniquification of names, would raise a UnicodeError. It no longer does.
# Load the course, but don't make error modules. This will succeed,
# but will record the errors.
modulestore
=
XMLModuleStore
(
DATA_DIR
,
course_dirs
=
[
'full'
],
load_error_modules
=
False
)
# Look up the errors during load. There should be none.
location
=
CourseDescriptor
.
id_to_location
(
"edX/full/6.002_Spring_2012"
)
errors
=
modulestore
.
get_item_errors
(
location
)
assert
errors
==
[]
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