Commit 8855b12b by Nimisha Asthagiri

Update tests to allow LMS tests to use published branch setting.

Conflicts:
	cms/djangoapps/contentstore/views/tests/test_container_page.py
	common/djangoapps/external_auth/tests/test_shib.py
	common/djangoapps/student/tests/test_login.py
	common/lib/xmodule/xmodule/modulestore/tests/django_utils.py
	common/lib/xmodule/xmodule/modulestore/tests/factories.py
	common/lib/xmodule/xmodule/modulestore/xml_importer.py
	lms/djangoapps/branding/tests.py
	lms/djangoapps/courseware/tests/test_submitting_problems.py
	lms/djangoapps/courseware/tests/test_video_handlers.py
	lms/djangoapps/instructor_task/tests/test_base.py
	lms/djangoapps/instructor_task/tests/test_integration.py
parent ea325298
...@@ -89,7 +89,7 @@ class CourseTestCase(ModuleStoreTestCase): ...@@ -89,7 +89,7 @@ class CourseTestCase(ModuleStoreTestCase):
""" """
Create a non-staff user, log them in (if authenticate=True), and return the client, user to use for testing. Create a non-staff user, log them in (if authenticate=True), and return the client, user to use for testing.
""" """
nonstaff, password = super(CourseTestCase, self).create_non_staff_authed_user_client() nonstaff, password = self.create_non_staff_user()
client = Client() client = Client()
if authenticate: if authenticate:
......
...@@ -20,16 +20,11 @@ class ContainerPageTestCase(StudioPageTestCase): ...@@ -20,16 +20,11 @@ class ContainerPageTestCase(StudioPageTestCase):
def setUp(self): def setUp(self):
super(ContainerPageTestCase, self).setUp() super(ContainerPageTestCase, self).setUp()
self.vertical = ItemFactory.create(parent_location=self.sequential.location, self.vertical = self._create_item(self.sequential.location, 'vertical', 'Unit')
category='vertical', display_name='Unit') self.html = self._create_item(self.vertical.location, "html", "HTML")
self.html = ItemFactory.create(parent_location=self.vertical.location, self.child_container = self._create_item(self.vertical.location, 'split_test', 'Split Test')
category="html", display_name="HTML") self.child_vertical = self._create_item(self.child_container.location, 'vertical', 'Child Vertical')
self.child_container = ItemFactory.create(parent_location=self.vertical.location, self.video = self._create_item(self.child_vertical.location, "video", "My Video")
category='split_test', display_name='Split Test')
self.child_vertical = ItemFactory.create(parent_location=self.child_container.location,
category='vertical', display_name='Child Vertical')
self.video = ItemFactory.create(parent_location=self.child_vertical.location,
category="video", display_name="My Video")
self.store = modulestore() self.store = modulestore()
def test_container_html(self): def test_container_html(self):
...@@ -51,14 +46,8 @@ class ContainerPageTestCase(StudioPageTestCase): ...@@ -51,14 +46,8 @@ class ContainerPageTestCase(StudioPageTestCase):
Create the scenario of an xblock with children (non-vertical) on the container page. Create the scenario of an xblock with children (non-vertical) on the container page.
This should create a container page that is a child of another container page. This should create a container page that is a child of another container page.
""" """
draft_container = ItemFactory.create( draft_container = self._create_item(self.child_container.location, "wrapper", "Wrapper")
parent_location=self.child_container.location, self._create_item(draft_container.location, "html", "Child HTML")
category="wrapper", display_name="Wrapper"
)
ItemFactory.create(
parent_location=draft_container.location,
category="html", display_name="Child HTML"
)
def test_container_html(xblock): def test_container_html(xblock):
self._test_html_content( self._test_html_content(
...@@ -135,8 +124,7 @@ class ContainerPageTestCase(StudioPageTestCase): ...@@ -135,8 +124,7 @@ class ContainerPageTestCase(StudioPageTestCase):
""" """
Verify that a public container rendered as a child of the container page returns the expected HTML. Verify that a public container rendered as a child of the container page returns the expected HTML.
""" """
empty_child_container = ItemFactory.create(parent_location=self.vertical.location, empty_child_container = self._create_item(self.vertical.location, 'split_test', 'Split Test')
category='split_test', display_name='Split Test')
published_empty_child_container = self.store.publish(empty_child_container.location, self.user.id) published_empty_child_container = self.store.publish(empty_child_container.location, self.user.id)
self.validate_preview_html(published_empty_child_container, self.reorderable_child_view, self.validate_preview_html(published_empty_child_container, self.reorderable_child_view,
can_reorder=False, can_edit=False, can_add=False) can_reorder=False, can_edit=False, can_add=False)
...@@ -145,7 +133,18 @@ class ContainerPageTestCase(StudioPageTestCase): ...@@ -145,7 +133,18 @@ class ContainerPageTestCase(StudioPageTestCase):
""" """
Verify that a draft container rendered as a child of the container page returns the expected HTML. Verify that a draft container rendered as a child of the container page returns the expected HTML.
""" """
empty_child_container = ItemFactory.create(parent_location=self.vertical.location, empty_child_container = self._create_item(self.vertical.location, 'split_test', 'Split Test')
category='split_test', display_name='Split Test')
self.validate_preview_html(empty_child_container, self.reorderable_child_view, self.validate_preview_html(empty_child_container, self.reorderable_child_view,
can_reorder=True, can_edit=True, can_add=False) can_reorder=True, can_edit=True, can_add=False)
def _create_item(self, parent_location, category, display_name, **kwargs):
"""
creates an item in the module store, without publishing it.
"""
return ItemFactory.create(
parent_location=parent_location,
category=category,
display_name=display_name,
publish_item=False,
**kwargs
)
...@@ -35,7 +35,7 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase): ...@@ -35,7 +35,7 @@ class ContentStoreToyCourseTest(ModuleStoreTestCase):
""" """
self.staff_pwd = super(ContentStoreToyCourseTest, self).setUp() self.staff_pwd = super(ContentStoreToyCourseTest, self).setUp()
self.staff_usr = self.user self.staff_usr = self.user
self.non_staff_usr, self.non_staff_pwd = self.create_non_staff_authed_user_client() self.non_staff_usr, self.non_staff_pwd = self.create_non_staff_user()
self.client = Client() self.client = Client()
self.contentstore = contentstore() self.contentstore = contentstore()
......
...@@ -18,6 +18,7 @@ from django.utils.importlib import import_module ...@@ -18,6 +18,7 @@ from django.utils.importlib import import_module
from xmodule.modulestore.tests.factories import CourseFactory from xmodule.modulestore.tests.factories import CourseFactory
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase, mixed_store_config from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase, mixed_store_config
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
from xmodule.modulestore import ModuleStoreEnum
from opaque_keys.edx.locations import SlashSeparatedCourseKey from opaque_keys.edx.locations import SlashSeparatedCourseKey
from external_auth.models import ExternalAuthMap from external_auth.models import ExternalAuthMap
...@@ -80,6 +81,7 @@ class ShibSPTest(ModuleStoreTestCase): ...@@ -80,6 +81,7 @@ class ShibSPTest(ModuleStoreTestCase):
def setUp(self): def setUp(self):
super(ShibSPTest, self).setUp(create_user=False) super(ShibSPTest, self).setUp(create_user=False)
self.test_user_id = ModuleStoreEnum.UserID.test
@unittest.skipUnless(settings.FEATURES.get('AUTH_USE_SHIB'), "AUTH_USE_SHIB not set") @unittest.skipUnless(settings.FEATURES.get('AUTH_USE_SHIB'), "AUTH_USE_SHIB not set")
def test_exception_shib_login(self): def test_exception_shib_login(self):
...@@ -376,13 +378,21 @@ class ShibSPTest(ModuleStoreTestCase): ...@@ -376,13 +378,21 @@ class ShibSPTest(ModuleStoreTestCase):
""" """
Tests that the correct course specific login and registration urls work for shib Tests that the correct course specific login and registration urls work for shib
""" """
course = CourseFactory.create(org='MITx', number='999', display_name='Robot Super Course') course = CourseFactory.create(
org='MITx',
number='999',
display_name='Robot Super Course',
user_id=self.test_user_id,
)
# Test for cases where course is found # Test for cases where course is found
for domain in ["", "shib:https://idp.stanford.edu/"]: for domain in ["", "shib:https://idp.stanford.edu/"]:
# set domains # set domains
course.enrollment_domain = domain
self.store.update_item(course, self.user.id) # temporarily set the branch to draft-preferred so we can update the course
with self.store.branch_setting(ModuleStoreEnum.Branch.draft_preferred, course.id):
course.enrollment_domain = domain
self.store.update_item(course, self.test_user_id)
# setting location to test that GET params get passed through # setting location to test that GET params get passed through
login_request = self.request_factory.get('/course_specific_login/MITx/999/Robot_Super_Course' + login_request = self.request_factory.get('/course_specific_login/MITx/999/Robot_Super_Course' +
...@@ -449,13 +459,21 @@ class ShibSPTest(ModuleStoreTestCase): ...@@ -449,13 +459,21 @@ class ShibSPTest(ModuleStoreTestCase):
""" """
# create 2 course, one with limited enrollment one without # create 2 course, one with limited enrollment one without
shib_course = CourseFactory.create(org='Stanford', number='123', display_name='Shib Only') shib_course = CourseFactory.create(
shib_course.enrollment_domain = 'shib:https://idp.stanford.edu/' org='Stanford',
self.store.update_item(shib_course, self.user.id) number='123',
display_name='Shib Only',
open_enroll_course = CourseFactory.create(org='MITx', number='999', display_name='Robot Super Course') enrollment_domain='shib:https://idp.stanford.edu/',
open_enroll_course.enrollment_domain = '' user_id=self.test_user_id,
self.store.update_item(open_enroll_course, self.user.id) )
open_enroll_course = CourseFactory.create(
org='MITx',
number='999',
display_name='Robot Super Course',
enrollment_domain='',
user_id=self.test_user_id,
)
# create 3 kinds of students, external_auth matching shib_course, external_auth not matching, no external auth # create 3 kinds of students, external_auth matching shib_course, external_auth not matching, no external auth
shib_student = UserFactory.create() shib_student = UserFactory.create()
...@@ -519,9 +537,13 @@ class ShibSPTest(ModuleStoreTestCase): ...@@ -519,9 +537,13 @@ class ShibSPTest(ModuleStoreTestCase):
student.save() student.save()
extauth.save() extauth.save()
course = CourseFactory.create(org='Stanford', number='123', display_name='Shib Only') course = CourseFactory.create(
course.enrollment_domain = 'shib:https://idp.stanford.edu/' org='Stanford',
self.store.update_item(course, self.user.id) number='123',
display_name='Shib Only',
enrollment_domain='shib:https://idp.stanford.edu/',
user_id=self.test_user_id,
)
# use django test client for sessions and url processing # use django test client for sessions and url processing
# no enrollment before trying # no enrollment before trying
......
...@@ -346,10 +346,19 @@ class ExternalAuthShibTest(ModuleStoreTestCase): ...@@ -346,10 +346,19 @@ class ExternalAuthShibTest(ModuleStoreTestCase):
""" """
def setUp(self): def setUp(self):
super(ExternalAuthShibTest, self).setUp() super(ExternalAuthShibTest, self).setUp()
self.course = CourseFactory.create(org='Stanford', number='456', display_name='NO SHIB') self.course = CourseFactory.create(
self.shib_course = CourseFactory.create(org='Stanford', number='123', display_name='Shib Only') org='Stanford',
self.shib_course.enrollment_domain = 'shib:https://idp.stanford.edu/' number='456',
self.store.update_item(self.shib_course, self.user.id) display_name='NO SHIB',
user_id=self.user.id,
)
self.shib_course = CourseFactory.create(
org='Stanford',
number='123',
display_name='Shib Only',
enrollment_domain='shib:https://idp.stanford.edu/',
user_id=self.user.id,
)
self.user_w_map = UserFactory.create(email='withmap@stanford.edu') self.user_w_map = UserFactory.create(email='withmap@stanford.edu')
self.extauth = ExternalAuthMap(external_id='withmap@stanford.edu', self.extauth = ExternalAuthMap(external_id='withmap@stanford.edu',
external_email='withmap@stanford.edu', external_email='withmap@stanford.edu',
......
...@@ -129,6 +129,13 @@ class ModuleStoreTestCase(TestCase): ...@@ -129,6 +129,13 @@ class ModuleStoreTestCase(TestCase):
your `setUp()` method. your `setUp()` method.
""" """
def setUp(self, **kwargs): def setUp(self, **kwargs):
"""
Creates a test User if `create_user` is True.
Returns the password for the test User.
Args:
create_user - specifies whether or not to create a test User. Default is True.
"""
super(ModuleStoreTestCase, self).setUp() super(ModuleStoreTestCase, self).setUp()
self.store = modulestore() self.store = modulestore()
...@@ -151,20 +158,21 @@ class ModuleStoreTestCase(TestCase): ...@@ -151,20 +158,21 @@ class ModuleStoreTestCase(TestCase):
return password return password
def create_non_staff_authed_user_client(self): def create_non_staff_user(self):
""" """
Create a non-staff user, log them in (if authenticate=True), and return the client, user to use for testing. Creates a non-staff test user.
Returns the non-staff test user and its password.
""" """
uname = 'teststudent' uname = 'teststudent'
password = 'foo' password = 'foo'
nonstaff = User.objects.create_user(uname, 'test+student@edx.org', password) nonstaff_user = User.objects.create_user(uname, 'test+student@edx.org', password)
# Note that we do not actually need to do anything # Note that we do not actually need to do anything
# for registration if we directly mark them active. # for registration if we directly mark them active.
nonstaff.is_active = True nonstaff_user.is_active = True
nonstaff.is_staff = False nonstaff_user.is_staff = False
nonstaff.save() nonstaff_user.save()
return nonstaff, password return nonstaff_user, password
def update_course(self, course, user_id): def update_course(self, course, user_id):
""" """
......
...@@ -56,18 +56,19 @@ class CourseFactory(XModuleFactory): ...@@ -56,18 +56,19 @@ class CourseFactory(XModuleFactory):
location = Location(org, number, run, 'course', name) location = Location(org, number, run, 'course', name)
# Write the data to the mongo datastore with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred):
new_course = store.create_xmodule(location, metadata=kwargs.get('metadata', None)) # Write the data to the mongo datastore
new_course = store.create_xmodule(location, metadata=kwargs.get('metadata', None))
# The rest of kwargs become attributes on the course: # The rest of kwargs become attributes on the course:
for k, v in kwargs.iteritems(): for k, v in kwargs.iteritems():
setattr(new_course, k, v) setattr(new_course, k, v)
# Save the attributes we just set # Save the attributes we just set
new_course.save() new_course.save()
# Update the data in the mongo datastore # Update the data in the mongo datastore
store.update_item(new_course, user_id) store.update_item(new_course, user_id)
return new_course return new_course
class ItemFactory(XModuleFactory): class ItemFactory(XModuleFactory):
...@@ -129,6 +130,8 @@ class ItemFactory(XModuleFactory): ...@@ -129,6 +130,8 @@ class ItemFactory(XModuleFactory):
:boilerplate: (optional) the boilerplate for overriding field values :boilerplate: (optional) the boilerplate for overriding field values
:publish_item: (optional) whether or not to publish the item (default is True)
:target_class: is ignored :target_class: is ignored
""" """
...@@ -145,6 +148,7 @@ class ItemFactory(XModuleFactory): ...@@ -145,6 +148,7 @@ class ItemFactory(XModuleFactory):
metadata = kwargs.pop('metadata', {}) metadata = kwargs.pop('metadata', {})
location = kwargs.pop('location') location = kwargs.pop('location')
user_id = kwargs.pop('user_id', ModuleStoreEnum.UserID.test) user_id = kwargs.pop('user_id', ModuleStoreEnum.UserID.test)
publish_item = kwargs.pop('publish_item', True)
assert isinstance(location, Location) assert isinstance(location, Location)
assert location != parent_location assert location != parent_location
...@@ -154,47 +158,55 @@ class ItemFactory(XModuleFactory): ...@@ -154,47 +158,55 @@ class ItemFactory(XModuleFactory):
# This code was based off that in cms/djangoapps/contentstore/views.py # This code was based off that in cms/djangoapps/contentstore/views.py
parent = kwargs.pop('parent', None) or store.get_item(parent_location) parent = kwargs.pop('parent', None) or store.get_item(parent_location)
if 'boilerplate' in kwargs: with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred):
template_id = kwargs.pop('boilerplate')
clz = XBlock.load_class(category, select=prefer_xmodules) if 'boilerplate' in kwargs:
template = clz.get_template(template_id) template_id = kwargs.pop('boilerplate')
assert template is not None clz = XBlock.load_class(category, select=prefer_xmodules)
metadata.update(template.get('metadata', {})) template = clz.get_template(template_id)
if not isinstance(data, basestring): assert template is not None
data.update(template.get('data')) metadata.update(template.get('metadata', {}))
if not isinstance(data, basestring):
# replace the display name with an optional parameter passed in from the caller data.update(template.get('data'))
if display_name is not None:
metadata['display_name'] = display_name # replace the display name with an optional parameter passed in from the caller
runtime = parent.runtime if parent else None if display_name is not None:
store.create_and_save_xmodule(location, user_id, metadata=metadata, definition_data=data, runtime=runtime) metadata['display_name'] = display_name
runtime = parent.runtime if parent else None
module = store.get_item(location) store.create_and_save_xmodule(location, user_id, metadata=metadata, definition_data=data, runtime=runtime)
for attr, val in kwargs.items(): module = store.get_item(location)
setattr(module, attr, val)
# Save the attributes we just set for attr, val in kwargs.items():
module.save() setattr(module, attr, val)
# Save the attributes we just set
store.update_item(module, user_id) module.save()
if 'detached' not in module._class_tags: store.update_item(module, user_id)
parent.children.append(location)
store.update_item(parent, user_id) # VS[compat] cdodge: This is a hack because static_tabs also have references from the course module, so
# if we add one then we need to also add it to the policy information (i.e. metadata)
# VS[compat] cdodge: This is a hack because static_tabs also have references from the course module, so # we should remove this once we can break this reference from the course to static tabs
# if we add one then we need to also add it to the policy information (i.e. metadata) if category == 'static_tab':
# we should remove this once we can break this reference from the course to static tabs course = store.get_course(location.course_key)
if category == 'static_tab': course.tabs.append(
course = store.get_course(location.course_key) StaticTab(
course.tabs.append( name=display_name,
StaticTab( url_slug=location.name,
name=display_name, )
url_slug=location.name,
) )
) store.update_item(course, user_id)
store.update_item(course, user_id)
# parent and publish the item, so it can be accessed
if 'detached' not in module._class_tags:
parent.children.append(location)
store.update_item(parent, user_id)
if publish_item:
store.publish(parent.location, user_id)
elif publish_item:
store.publish(location, user_id)
# return the published item
return store.get_item(location) return store.get_item(location)
......
...@@ -30,10 +30,11 @@ class AnonymousIndexPageTest(ModuleStoreTestCase): ...@@ -30,10 +30,11 @@ class AnonymousIndexPageTest(ModuleStoreTestCase):
def setUp(self): def setUp(self):
super(AnonymousIndexPageTest, self).setUp() super(AnonymousIndexPageTest, self).setUp()
self.factory = RequestFactory() self.factory = RequestFactory()
self.course = CourseFactory.create() self.course = CourseFactory.create(
self.course.days_early_for_beta = 5 days_early_for_beta=5,
self.course.enrollment_start = datetime.datetime.now(UTC) + datetime.timedelta(days=3) enrollment_start=datetime.datetime.now(UTC)+datetime.timedelta(days=3),
self.store.update_item(self.course, self.user.id) user_id=self.user.id,
)
@override_settings(FEATURES=FEATURES_WITH_STARTDATE) @override_settings(FEATURES=FEATURES_WITH_STARTDATE)
def test_none_user_index_access_with_startdate_fails(self): def test_none_user_index_access_with_startdate_fails(self):
......
...@@ -3,7 +3,7 @@ import textwrap ...@@ -3,7 +3,7 @@ import textwrap
from lettuce import world, steps from lettuce import world, steps
from nose.tools import assert_in, assert_equals, assert_true from nose.tools import assert_in, assert_equals, assert_true
from common import i_am_registered_for_the_course, visit_scenario_item, publish from common import i_am_registered_for_the_course, visit_scenario_item
DATA_TEMPLATE = textwrap.dedent("""\ DATA_TEMPLATE = textwrap.dedent("""\
<annotatable> <annotatable>
...@@ -78,9 +78,6 @@ class AnnotatableSteps(object): ...@@ -78,9 +78,6 @@ class AnnotatableSteps(object):
display_name="Test Annotation Module", display_name="Test Annotation Module",
data=DATA_TEMPLATE.format("\n".join(ANNOTATION_TEMPLATE.format(i) for i in xrange(count))) data=DATA_TEMPLATE.format("\n".join(ANNOTATION_TEMPLATE.format(i) for i in xrange(count)))
) )
publish(world.scenario_dict['ANNOTATION_VERTICAL'].location)
self.annotations_count = count self.annotations_count = count
def view_component(self, step): def view_component(self, step):
...@@ -125,7 +122,6 @@ class AnnotatableSteps(object): ...@@ -125,7 +122,6 @@ class AnnotatableSteps(object):
) )
) )
) )
publish(world.scenario_dict['ANNOTATION_VERTICAL'].location)
def click_reply(self, step, problem): def click_reply(self, step, problem):
r"""I click "Reply to annotation" on passage (?P<problem>\d+)$""" r"""I click "Reply to annotation" on passage (?P<problem>\d+)$"""
......
...@@ -134,10 +134,6 @@ def section_location(course_num): ...@@ -134,10 +134,6 @@ def section_location(course_num):
return world.scenario_dict['SECTION'].location.replace(course=course_num) return world.scenario_dict['SECTION'].location.replace(course=course_num)
def publish(location):
modulestore().publish(location, '**replace_user**')
def visit_scenario_item(item_key): def visit_scenario_item(item_key):
""" """
Go to the courseware page containing the item stored in `world.scenario_dict` Go to the courseware page containing the item stored in `world.scenario_dict`
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
from lettuce import world, steps from lettuce import world, steps
from nose.tools import assert_in, assert_true # pylint: disable=no-name-in-module from nose.tools import assert_in, assert_true # pylint: disable=no-name-in-module
from common import i_am_registered_for_the_course, visit_scenario_item, publish from common import i_am_registered_for_the_course, visit_scenario_item
from problems_setup import add_problem_to_course, answer_problem from problems_setup import add_problem_to_course, answer_problem
@steps @steps
...@@ -67,9 +67,6 @@ class ConditionalSteps(object): ...@@ -67,9 +67,6 @@ class ConditionalSteps(object):
data='<html><div class="hidden-contents">Hidden Contents</p></html>' data='<html><div class="hidden-contents">Hidden Contents</p></html>'
) )
publish(world.scenario_dict['VERTICAL'].location)
def setup_problem_attempts(self, step, not_attempted=None): def setup_problem_attempts(self, step, not_attempted=None):
r'that the conditioned problem has (?P<not_attempted>not )?been attempted$' r'that the conditioned problem has (?P<not_attempted>not )?been attempted$'
visit_scenario_item('CONDITION_SOURCE') visit_scenario_item('CONDITION_SOURCE')
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
from lettuce import world, steps from lettuce import world, steps
from nose.tools import assert_in, assert_equals, assert_true from nose.tools import assert_in, assert_equals, assert_true
from common import i_am_registered_for_the_course, visit_scenario_item, publish from common import i_am_registered_for_the_course, visit_scenario_item
from problems_setup import add_problem_to_course, answer_problem from problems_setup import add_problem_to_course, answer_problem
......
...@@ -10,7 +10,8 @@ from django.test.utils import override_settings ...@@ -10,7 +10,8 @@ from django.test.utils import override_settings
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from django.conf import settings from django.conf import settings
from xmodule.modulestore.mongo.base import MongoRevisionKey from xmodule.modulestore import ModuleStoreEnum
from xmodule.modulestore.django import modulestore
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
from xmodule.x_module import STUDENT_VIEW from xmodule.x_module import STUDENT_VIEW
...@@ -160,7 +161,8 @@ class TestLTIModuleListing(ModuleStoreTestCase): ...@@ -160,7 +161,8 @@ class TestLTIModuleListing(ModuleStoreTestCase):
parent_location=self.section2.location, parent_location=self.section2.location,
display_name="lti draft", display_name="lti draft",
category="lti", category="lti",
location=self.course.id.make_usage_key('lti', 'lti_published').replace(revision=MongoRevisionKey.draft), location=self.course.id.make_usage_key('lti', 'lti_published'),
publish_item=False,
) )
def expected_handler_url(self, handler): def expected_handler_url(self, handler):
......
...@@ -12,6 +12,7 @@ from webob import Request ...@@ -12,6 +12,7 @@ from webob import Request
from xmodule.contentstore.content import StaticContent from xmodule.contentstore.content import StaticContent
from xmodule.contentstore.django import contentstore from xmodule.contentstore.django import contentstore
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
from xmodule.modulestore import ModuleStoreEnum
from xmodule.x_module import STUDENT_VIEW from xmodule.x_module import STUDENT_VIEW
from . import BaseTestXmodule from . import BaseTestXmodule
from .test_video_xml import SOURCE_XML from .test_video_xml import SOURCE_XML
...@@ -411,7 +412,8 @@ class TestTranscriptTranslationGetDispatch(TestVideo): ...@@ -411,7 +412,8 @@ class TestTranscriptTranslationGetDispatch(TestVideo):
self.course.static_asset_path = 'dummy/static' self.course.static_asset_path = 'dummy/static'
self.course.save() self.course.save()
store = modulestore() store = modulestore()
store.update_item(self.course, self.user.id) with store.branch_setting(ModuleStoreEnum.Branch.draft_preferred, self.course.id):
store.update_item(self.course, self.user.id)
# Test youtube style en # Test youtube style en
request = Request.blank('/translation/en?videoId=12345') request = Request.blank('/translation/en?videoId=12345')
......
...@@ -13,6 +13,7 @@ from django.contrib.auth.models import User ...@@ -13,6 +13,7 @@ from django.contrib.auth.models import User
from django.test.utils import override_settings from django.test.utils import override_settings
from capa.tests.response_xml_factory import OptionResponseXMLFactory from capa.tests.response_xml_factory import OptionResponseXMLFactory
from xmodule.modulestore import ModuleStoreEnum
from xmodule.modulestore.django import modulestore from xmodule.modulestore.django import modulestore
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
...@@ -207,8 +208,10 @@ class InstructorTaskModuleTestCase(InstructorTaskCourseTestCase): ...@@ -207,8 +208,10 @@ class InstructorTaskModuleTestCase(InstructorTaskCourseTestCase):
problem_xml = factory.build_xml(**factory_args) problem_xml = factory.build_xml(**factory_args)
location = InstructorTaskTestCase.problem_location(problem_url_name) location = InstructorTaskTestCase.problem_location(problem_url_name)
item = self.module_store.get_item(location) item = self.module_store.get_item(location)
item.data = problem_xml with self.module_store.branch_setting(ModuleStoreEnum.Branch.draft_preferred, location.course_key):
self.module_store.update_item(item, self.user.id) item.data = problem_xml
self.module_store.update_item(item, self.user.id)
self.module_store.publish(location, self.user.id)
def get_student_module(self, username, descriptor): def get_student_module(self, username, descriptor):
"""Get StudentModule object for test course, given the `username` and the problem's `descriptor`.""" """Get StudentModule object for test course, given the `username` and the problem's `descriptor`."""
......
...@@ -17,6 +17,7 @@ from django.core.urlresolvers import reverse ...@@ -17,6 +17,7 @@ from django.core.urlresolvers import reverse
from capa.tests.response_xml_factory import (CodeResponseXMLFactory, from capa.tests.response_xml_factory import (CodeResponseXMLFactory,
CustomResponseXMLFactory) CustomResponseXMLFactory)
from xmodule.modulestore.tests.factories import ItemFactory from xmodule.modulestore.tests.factories import ItemFactory
from xmodule.modulestore import ModuleStoreEnum
from courseware.model_data import StudentModule from courseware.model_data import StudentModule
...@@ -297,7 +298,9 @@ class TestRescoringTask(TestIntegrationTask): ...@@ -297,7 +298,9 @@ class TestRescoringTask(TestIntegrationTask):
InstructorTaskModuleTestCase.problem_location(problem_url_name) InstructorTaskModuleTestCase.problem_location(problem_url_name)
) )
descriptor.data = problem_xml descriptor.data = problem_xml
self.module_store.update_item(descriptor, self.user.id) with self.module_store.branch_setting(ModuleStoreEnum.Branch.draft_preferred, descriptor.location.course_key):
self.module_store.update_item(descriptor, self.user.id)
self.module_store.publish(descriptor.location, self.user.id)
else: else:
# Use "per-student" rerandomization so that check-problem can be called more than once. # Use "per-student" rerandomization so that check-problem can be called more than once.
# Using "always" means we cannot check a problem twice, but we want to call once to get the # Using "always" means we cannot check a problem twice, but we want to call once to get the
......
...@@ -109,7 +109,6 @@ STATICFILES_DIRS += [ ...@@ -109,7 +109,6 @@ STATICFILES_DIRS += [
if os.path.isdir(COMMON_TEST_DATA_ROOT / course_dir) if os.path.isdir(COMMON_TEST_DATA_ROOT / course_dir)
] ]
MODULESTORE_BRANCH = 'draft-preferred'
update_module_store_settings( update_module_store_settings(
MODULESTORE, MODULESTORE,
module_store_options={ module_store_options={
......
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