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
cd0aa7f3
Commit
cd0aa7f3
authored
Jun 28, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make CourseFactory more useful: accept arbitrary kwargs.
parent
ef82f33b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
common/lib/xmodule/xmodule/modulestore/tests/factories.py
+15
-13
No files found.
common/lib/xmodule/xmodule/modulestore/tests/factories.py
View file @
cd0aa7f3
...
@@ -19,14 +19,13 @@ class XModuleCourseFactory(Factory):
...
@@ -19,14 +19,13 @@ class XModuleCourseFactory(Factory):
ABSTRACT_FACTORY
=
True
ABSTRACT_FACTORY
=
True
@classmethod
@classmethod
def
_create
(
cls
,
target_class
,
*
args
,
*
*
kwargs
):
def
_create
(
cls
,
target_class
,
**
kwargs
):
template
=
Location
(
'i4x'
,
'edx'
,
'templates'
,
'course'
,
'Empty'
)
template
=
Location
(
'i4x'
,
'edx'
,
'templates'
,
'course'
,
'Empty'
)
org
=
kwargs
.
get
(
'org'
)
org
=
kwargs
.
pop
(
'org'
,
None
)
number
=
kwargs
.
get
(
'number'
)
number
=
kwargs
.
pop
(
'number'
,
None
)
display_name
=
kwargs
.
get
(
'display_name'
)
display_name
=
kwargs
.
pop
(
'display_name'
,
None
)
location
=
Location
(
'i4x'
,
org
,
number
,
location
=
Location
(
'i4x'
,
org
,
number
,
'course'
,
Location
.
clean
(
display_name
))
'course'
,
Location
.
clean
(
display_name
))
try
:
try
:
store
=
modulestore
(
'direct'
)
store
=
modulestore
(
'direct'
)
...
@@ -41,7 +40,7 @@ class XModuleCourseFactory(Factory):
...
@@ -41,7 +40,7 @@ class XModuleCourseFactory(Factory):
new_course
.
display_name
=
display_name
new_course
.
display_name
=
display_name
new_course
.
lms
.
start
=
datetime
.
datetime
.
now
(
UTC
)
new_course
.
lms
.
start
=
datetime
.
datetime
.
now
(
UTC
)
new_course
.
tabs
=
kwargs
.
get
(
new_course
.
tabs
=
kwargs
.
pop
(
'tabs'
,
'tabs'
,
[
[
{
"type"
:
"courseware"
},
{
"type"
:
"courseware"
},
...
@@ -51,15 +50,18 @@ class XModuleCourseFactory(Factory):
...
@@ -51,15 +50,18 @@ class XModuleCourseFactory(Factory):
{
"type"
:
"progress"
,
"name"
:
"Progress"
}
{
"type"
:
"progress"
,
"name"
:
"Progress"
}
]
]
)
)
new_course
.
discussion_link
=
kwargs
.
get
(
'discussion_link'
)
# Update the data in the mongo datastore
data
=
kwargs
.
pop
(
'data'
,
None
)
store
.
update_metadata
(
new_course
.
location
.
url
(),
own_metadata
(
new_course
))
data
=
kwargs
.
get
(
'data'
)
if
data
is
not
None
:
if
data
is
not
None
:
store
.
update_item
(
new_course
.
location
,
data
)
store
.
update_item
(
new_course
.
location
,
data
)
# The rest of kwargs become attributes on the course:
for
k
,
v
in
kwargs
.
iteritems
():
setattr
(
new_course
,
k
,
v
)
# Update the data in the mongo datastore
store
.
update_metadata
(
new_course
.
location
.
url
(),
own_metadata
(
new_course
))
# update_item updates the the course as it exists in the modulestore, but doesn't
# update_item updates the the course as it exists in the modulestore, but doesn't
# update the instance we are working with, so have to refetch the course after updating it.
# update the instance we are working with, so have to refetch the course after updating it.
new_course
=
store
.
get_instance
(
new_course
.
id
,
new_course
.
location
)
new_course
=
store
.
get_instance
(
new_course
.
id
,
new_course
.
location
)
...
@@ -101,7 +103,7 @@ class XModuleItemFactory(Factory):
...
@@ -101,7 +103,7 @@ class XModuleItemFactory(Factory):
return
parent
.
_replace
(
category
=
attr
.
category
,
name
=
dest_name
)
return
parent
.
_replace
(
category
=
attr
.
category
,
name
=
dest_name
)
@classmethod
@classmethod
def
_create
(
cls
,
target_class
,
*
args
,
*
*
kwargs
):
def
_create
(
cls
,
target_class
,
**
kwargs
):
"""
"""
Uses *kwargs*:
Uses *kwargs*:
...
...
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