Commit a89304b9 by cahrens

Cleanup to make tests agnostic to the modulestore being used.

parent c56c88be
...@@ -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
......
...@@ -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
......
...@@ -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 = SlashSeparatedCourseKey('Org1', 'Course1', 'Run1') course_location = self.store.make_course_key('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 = SlashSeparatedCourseKey('Org1', 'Course1', 'Run1') course_key = self.store.make_course_key('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(SlashSeparatedCourseKey('Non', 'Existent', 'Course')).add_users(self.user) CourseStaffRole(self.store.make_course_key('Non', 'Existent', 'Course')).add_users(self.user)
course_key = SlashSeparatedCourseKey('Org1', 'Course1', 'Run1') course_key = self.store.make_course_key('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 = SlashSeparatedCourseKey('Org', 'Course', 'Run') course_key = self.store.make_course_key('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 = SlashSeparatedCourseKey(org, course, run) course_location = self.store.make_course_key(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 = SlashSeparatedCourseKey('testOrg', 'testCourse', 'RunBabyRun') course_location = self.store.make_course_key('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 = SlashSeparatedCourseKey('testOrg', 'doomedCourse', 'RunBabyRun') course_location = self.store.make_course_key('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 = SlashSeparatedCourseKey('testOrg', 'erroredCourse', 'RunBabyRun') course_location = self.store.make_course_key('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 = SlashSeparatedCourseKey('AwesomeOrg', 'Course1', 'RunBabyRun') org_course_one = self.store.make_course_key('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 = SlashSeparatedCourseKey('AwesomeOrg', 'Course2', 'RunRunRun') org_course_two = self.store.make_course_key('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,
......
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment