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
a89304b9
Commit
a89304b9
authored
Jan 30, 2015
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup to make tests agnostic to the modulestore being used.
parent
c56c88be
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
15 deletions
+12
-15
cms/djangoapps/contentstore/features/course-export.py
+0
-1
cms/djangoapps/contentstore/features/grading.py
+0
-1
cms/djangoapps/contentstore/tests/test_contentstore.py
+0
-0
cms/djangoapps/contentstore/tests/test_course_listing.py
+12
-12
cms/djangoapps/contentstore/views/tests/test_course_updates.py
+0
-1
No files found.
cms/djangoapps/contentstore/features/course-export.py
View file @
a89304b9
...
@@ -5,7 +5,6 @@
...
@@ -5,7 +5,6 @@
from
lettuce
import
world
,
step
from
lettuce
import
world
,
step
from
component_settings_editor_helpers
import
enter_xml_in_advanced_problem
from
component_settings_editor_helpers
import
enter_xml_in_advanced_problem
from
nose.tools
import
assert_true
,
assert_equal
from
nose.tools
import
assert_true
,
assert_equal
from
opaque_keys.edx.locations
import
SlashSeparatedCourseKey
from
contentstore.utils
import
reverse_usage_url
from
contentstore.utils
import
reverse_usage_url
...
...
cms/djangoapps/contentstore/features/grading.py
View file @
a89304b9
...
@@ -5,7 +5,6 @@ from lettuce import world, step
...
@@ -5,7 +5,6 @@ from lettuce import world, step
from
common
import
*
from
common
import
*
from
terrain.steps
import
reload_the_page
from
terrain.steps
import
reload_the_page
from
selenium.common.exceptions
import
InvalidElementStateException
from
selenium.common.exceptions
import
InvalidElementStateException
from
opaque_keys.edx.locations
import
SlashSeparatedCourseKey
from
contentstore.utils
import
reverse_course_url
from
contentstore.utils
import
reverse_course_url
from
nose.tools
import
assert_in
,
assert_not_in
,
assert_equal
,
assert_not_equal
# pylint: disable=no-name-in-module
from
nose.tools
import
assert_in
,
assert_not_in
,
assert_equal
,
assert_not_equal
# pylint: disable=no-name-in-module
...
...
cms/djangoapps/contentstore/tests/test_contentstore.py
View file @
a89304b9
This diff is collapsed.
Click to expand it.
cms/djangoapps/contentstore/tests/test_course_listing.py
View file @
a89304b9
...
@@ -18,7 +18,7 @@ from student.roles import CourseInstructorRole, CourseStaffRole, GlobalStaff, Or
...
@@ -18,7 +18,7 @@ from student.roles import CourseInstructorRole, CourseStaffRole, GlobalStaff, Or
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
xmodule.modulestore.tests.django_utils
import
ModuleStoreTestCase
from
xmodule.modulestore.tests.factories
import
CourseFactory
,
check_mongo_calls
from
xmodule.modulestore.tests.factories
import
CourseFactory
,
check_mongo_calls
from
xmodule.modulestore
import
ModuleStoreEnum
from
xmodule.modulestore
import
ModuleStoreEnum
from
opaque_keys.edx.locations
import
SlashSeparatedCourseKey
,
CourseLocator
from
opaque_keys.edx.locations
import
CourseLocator
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.django
import
modulestore
from
xmodule.error_module
import
ErrorDescriptor
from
xmodule.error_module
import
ErrorDescriptor
from
course_action_state.models
import
CourseRerunState
from
course_action_state.models
import
CourseRerunState
...
@@ -74,7 +74,7 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -74,7 +74,7 @@ class TestCourseListing(ModuleStoreTestCase):
"""
"""
Test getting courses with new access group format e.g. 'instructor_edx.course.run'
Test getting courses with new access group format e.g. 'instructor_edx.course.run'
"""
"""
course_location
=
SlashSeparatedCourseK
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
course_location
=
self
.
store
.
make_course_k
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
# get courses through iterating all courses
# get courses through iterating all courses
...
@@ -93,7 +93,7 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -93,7 +93,7 @@ class TestCourseListing(ModuleStoreTestCase):
"""
"""
GlobalStaff
()
.
add_users
(
self
.
user
)
GlobalStaff
()
.
add_users
(
self
.
user
)
course_key
=
SlashSeparatedCourseK
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
course_key
=
self
.
store
.
make_course_k
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
with
patch
(
'xmodule.modulestore.mongo.base.MongoKeyValueStore'
,
Mock
(
side_effect
=
Exception
)):
with
patch
(
'xmodule.modulestore.mongo.base.MongoKeyValueStore'
,
Mock
(
side_effect
=
Exception
)):
...
@@ -112,9 +112,9 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -112,9 +112,9 @@ class TestCourseListing(ModuleStoreTestCase):
Test the course list for regular staff when get_course returns an ErrorDescriptor
Test the course list for regular staff when get_course returns an ErrorDescriptor
"""
"""
GlobalStaff
()
.
remove_users
(
self
.
user
)
GlobalStaff
()
.
remove_users
(
self
.
user
)
CourseStaffRole
(
SlashSeparatedCourseK
ey
(
'Non'
,
'Existent'
,
'Course'
))
.
add_users
(
self
.
user
)
CourseStaffRole
(
self
.
store
.
make_course_k
ey
(
'Non'
,
'Existent'
,
'Course'
))
.
add_users
(
self
.
user
)
course_key
=
SlashSeparatedCourseK
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
course_key
=
self
.
store
.
make_course_k
ey
(
'Org1'
,
'Course1'
,
'Run1'
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
with
patch
(
'xmodule.modulestore.mongo.base.MongoKeyValueStore'
,
Mock
(
side_effect
=
Exception
)):
with
patch
(
'xmodule.modulestore.mongo.base.MongoKeyValueStore'
,
Mock
(
side_effect
=
Exception
)):
...
@@ -133,7 +133,7 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -133,7 +133,7 @@ class TestCourseListing(ModuleStoreTestCase):
"""
"""
Test getting courses with invalid course location (course deleted from modulestore).
Test getting courses with invalid course location (course deleted from modulestore).
"""
"""
course_key
=
SlashSeparatedCourseK
ey
(
'Org'
,
'Course'
,
'Run'
)
course_key
=
self
.
store
.
make_course_k
ey
(
'Org'
,
'Course'
,
'Run'
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_key
,
self
.
user
)
# get courses through iterating all courses
# get courses through iterating all courses
...
@@ -169,7 +169,7 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -169,7 +169,7 @@ class TestCourseListing(ModuleStoreTestCase):
org
=
'Org{0}'
.
format
(
number
)
org
=
'Org{0}'
.
format
(
number
)
course
=
'Course{0}'
.
format
(
number
)
course
=
'Course{0}'
.
format
(
number
)
run
=
'Run{0}'
.
format
(
number
)
run
=
'Run{0}'
.
format
(
number
)
course_location
=
SlashSeparatedCourseK
ey
(
org
,
course
,
run
)
course_location
=
self
.
store
.
make_course_k
ey
(
org
,
course
,
run
)
if
number
in
user_course_ids
:
if
number
in
user_course_ids
:
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
else
:
else
:
...
@@ -218,14 +218,14 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -218,14 +218,14 @@ class TestCourseListing(ModuleStoreTestCase):
"""
"""
store
=
modulestore
()
.
_get_modulestore_by_type
(
ModuleStoreEnum
.
Type
.
mongo
)
store
=
modulestore
()
.
_get_modulestore_by_type
(
ModuleStoreEnum
.
Type
.
mongo
)
course_location
=
SlashSeparatedCourseK
ey
(
'testOrg'
,
'testCourse'
,
'RunBabyRun'
)
course_location
=
self
.
store
.
make_course_k
ey
(
'testOrg'
,
'testCourse'
,
'RunBabyRun'
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
course_location
=
SlashSeparatedCourseK
ey
(
'testOrg'
,
'doomedCourse'
,
'RunBabyRun'
)
course_location
=
self
.
store
.
make_course_k
ey
(
'testOrg'
,
'doomedCourse'
,
'RunBabyRun'
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
store
.
delete_course
(
course_location
,
self
.
user
.
id
)
store
.
delete_course
(
course_location
,
self
.
user
.
id
)
course_location
=
SlashSeparatedCourseK
ey
(
'testOrg'
,
'erroredCourse'
,
'RunBabyRun'
)
course_location
=
self
.
store
.
make_course_k
ey
(
'testOrg'
,
'erroredCourse'
,
'RunBabyRun'
)
course
=
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
course
=
self
.
_create_course_with_access_groups
(
course_location
,
self
.
user
)
course_db_record
=
store
.
_find_one
(
course
.
location
)
course_db_record
=
store
.
_find_one
(
course
.
location
)
course_db_record
.
setdefault
(
'metadata'
,
{})
.
get
(
'tabs'
,
[])
.
append
({
"type"
:
"wiko"
,
"name"
:
"Wiki"
})
course_db_record
.
setdefault
(
'metadata'
,
{})
.
get
(
'tabs'
,
[])
.
append
({
"type"
:
"wiko"
,
"name"
:
"Wiki"
})
...
@@ -245,14 +245,14 @@ class TestCourseListing(ModuleStoreTestCase):
...
@@ -245,14 +245,14 @@ class TestCourseListing(ModuleStoreTestCase):
Create multiple courses within the same org. Verify that someone with org-wide permissions can access
Create multiple courses within the same org. Verify that someone with org-wide permissions can access
all of them.
all of them.
"""
"""
org_course_one
=
SlashSeparatedCourseK
ey
(
'AwesomeOrg'
,
'Course1'
,
'RunBabyRun'
)
org_course_one
=
self
.
store
.
make_course_k
ey
(
'AwesomeOrg'
,
'Course1'
,
'RunBabyRun'
)
CourseFactory
.
create
(
CourseFactory
.
create
(
org
=
org_course_one
.
org
,
org
=
org_course_one
.
org
,
number
=
org_course_one
.
course
,
number
=
org_course_one
.
course
,
run
=
org_course_one
.
run
run
=
org_course_one
.
run
)
)
org_course_two
=
SlashSeparatedCourseK
ey
(
'AwesomeOrg'
,
'Course2'
,
'RunRunRun'
)
org_course_two
=
self
.
store
.
make_course_k
ey
(
'AwesomeOrg'
,
'Course2'
,
'RunRunRun'
)
CourseFactory
.
create
(
CourseFactory
.
create
(
org
=
org_course_two
.
org
,
org
=
org_course_two
.
org
,
number
=
org_course_two
.
course
,
number
=
org_course_two
.
course
,
...
...
cms/djangoapps/contentstore/views/tests/test_course_updates.py
View file @
a89304b9
...
@@ -5,7 +5,6 @@ import json
...
@@ -5,7 +5,6 @@ import json
from
contentstore.tests.test_course_settings
import
CourseTestCase
from
contentstore.tests.test_course_settings
import
CourseTestCase
from
contentstore.utils
import
reverse_course_url
,
reverse_usage_url
from
contentstore.utils
import
reverse_course_url
,
reverse_usage_url
from
opaque_keys.edx.locations
import
SlashSeparatedCourseKey
from
opaque_keys.edx.keys
import
UsageKey
from
opaque_keys.edx.keys
import
UsageKey
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.django
import
modulestore
...
...
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