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
cc1d389f
Commit
cc1d389f
authored
6 years ago
by
Michael Youngstrom
Browse files
Options
Downloads
Patches
Plain Diff
Replace randint in db name with pid
parent
f43aa07a
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/utils.py
+6
-3
6 additions, 3 deletions
common/lib/xmodule/xmodule/modulestore/tests/utils.py
with
6 additions
and
3 deletions
common/lib/xmodule/xmodule/modulestore/tests/utils.py
+
6
−
3
View file @
cc1d389f
"""
Helper classes and methods for running modulestore tests without Django.
"""
from
uuid
import
uuid4
import
io
import
os
import
random
...
...
@@ -228,7 +229,7 @@ class MongoContentstoreBuilder(object):
when the context closes.
"""
contentstore
=
MongoContentStore
(
db
=
'
contentstore{}
'
.
format
(
random
.
randint
(
0
,
10000
)
),
db
=
'
contentstore{}
'
.
format
(
THIS_UUID
),
collection
=
'
content
'
,
**
COMMON_DOCSTORE_CONFIG
)
...
...
@@ -286,7 +287,7 @@ class MongoModulestoreBuilder(StoreBuilderBase):
all of its assets.
"""
doc_store_config
=
dict
(
db
=
'
modulestore{}
'
.
format
(
random
.
randint
(
0
,
10000
)
),
db
=
'
modulestore{}
'
.
format
(
THIS_UUID
),
collection
=
'
xmodule
'
,
asset_collection
=
'
asset_metadata
'
,
**
COMMON_DOCSTORE_CONFIG
...
...
@@ -334,7 +335,7 @@ class VersioningModulestoreBuilder(StoreBuilderBase):
all of its assets.
"""
doc_store_config
=
dict
(
db
=
'
modulestore{}
'
.
format
(
random
.
randint
(
0
,
10000
)
),
db
=
'
modulestore{}
'
.
format
(
THIS_UUID
),
collection
=
'
split_module
'
,
**
COMMON_DOCSTORE_CONFIG
)
...
...
@@ -455,6 +456,8 @@ class MixedModulestoreBuilder(StoreBuilderBase):
return
store
.
db_connection
.
structures
THIS_UUID
=
uuid4
().
hex
COMMON_DOCSTORE_CONFIG
=
{
'
host
'
:
MONGO_HOST
,
'
port
'
:
MONGO_PORT_NUM
,
...
...
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