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
3622d0d0
Commit
3622d0d0
authored
10 years ago
by
Don Mitchell
Browse files
Options
Downloads
Plain Diff
Merge pull request #5439 from edx/mixed_ms_coverage
Test caching of courses in mixed maps
parents
87558c2c
30155d33
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py
+15
-1
15 additions, 1 deletion
...odule/xmodule/modulestore/tests/test_mixed_modulestore.py
with
15 additions
and
1 deletion
common/lib/xmodule/xmodule/modulestore/tests/test_mixed_modulestore.py
+
15
−
1
View file @
3622d0d0
...
...
@@ -31,7 +31,7 @@ from xmodule.modulestore.draft_and_published import UnsupportedRevisionError, Mo
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
,
DuplicateCourseError
,
ReferentialIntegrityError
,
NoPathToItem
from
xmodule.modulestore.mixed
import
MixedModuleStore
from
xmodule.modulestore.search
import
path_to_location
from
xmodule.modulestore.tests.factories
import
check_mongo_calls
from
xmodule.modulestore.tests.factories
import
check_mongo_calls
,
check_exact_number_of_calls
from
xmodule.modulestore.tests.mongo_connection
import
MONGO_PORT_NUM
,
MONGO_HOST
from
xmodule.tests
import
DATA_DIR
,
CourseComparisonTest
...
...
@@ -274,6 +274,20 @@ class TestMixedModuleStore(CourseComparisonTest):
SlashSeparatedCourseKey
(
'
foo
'
,
'
bar
'
,
'
2012_Fall
'
)),
mongo_ms_type
)
@ddt.data
(
'
draft
'
,
'
split
'
)
def
test_get_modulestore_cache
(
self
,
default_ms
):
"""
Make sure we cache discovered course mappings
"""
self
.
initdb
(
default_ms
)
# unset mappings
self
.
store
.
mappings
=
{}
course_key
=
self
.
course_locations
[
self
.
MONGO_COURSEID
].
course_key
with
check_exact_number_of_calls
(
self
.
store
.
default_modulestore
,
'
has_course
'
,
1
):
self
.
assertEqual
(
self
.
store
.
default_modulestore
,
self
.
store
.
_get_modulestore_for_courseid
(
course_key
))
self
.
assertIn
(
course_key
,
self
.
store
.
mappings
)
self
.
assertEqual
(
self
.
store
.
default_modulestore
,
self
.
store
.
_get_modulestore_for_courseid
(
course_key
))
@ddt.data
(
*
itertools
.
product
(
(
ModuleStoreEnum
.
Type
.
mongo
,
ModuleStoreEnum
.
Type
.
split
),
(
True
,
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