This commit adds all of cms. These keys are now objects with a limited interface, and the particular internal representation is managed by the data storage layer (the modulestore). For the LMS, there should be no outward-facing changes to the system. The keys are, for now, a change to internal representation only. For Studio, the new serialized form of the keys is used in urls, to allow for further migration in the future. Co-Author: Andy Armstrong <andya@edx.org> Co-Author: Christina Roberts <christina@edx.org> Co-Author: David Baumgold <db@edx.org> Co-Author: Diana Huang <dkh@edx.org> Co-Author: Don Mitchell <dmitchell@edx.org> Co-Author: Julia Hansbrough <julia@edx.org> Co-Author: Nimisha Asthagiri <nasthagiri@edx.org> Co-Author: Sarina Canelake <sarina@edx.org> [LMS-2370]
46 lines
1.9 KiB
Python
46 lines
1.9 KiB
Python
"""
|
|
Unit tests for helpers.py.
|
|
"""
|
|
|
|
from contentstore.tests.utils import CourseTestCase
|
|
from contentstore.views.helpers import xblock_studio_url
|
|
from xmodule.modulestore.tests.factories import ItemFactory
|
|
|
|
|
|
class HelpersTestCase(CourseTestCase):
|
|
"""
|
|
Unit tests for helpers.py.
|
|
"""
|
|
def test_xblock_studio_url(self):
|
|
|
|
# Verify course URL
|
|
self.assertEqual(xblock_studio_url(self.course),
|
|
u'/course/slashes:MITx+999+Robot_Super_Course')
|
|
|
|
# Verify chapter URL
|
|
chapter = ItemFactory.create(parent_location=self.course.location, category='chapter',
|
|
display_name="Week 1")
|
|
self.assertIsNone(xblock_studio_url(chapter))
|
|
|
|
# Verify lesson URL
|
|
sequential = ItemFactory.create(parent_location=chapter.location, category='sequential',
|
|
display_name="Lesson 1")
|
|
self.assertIsNone(xblock_studio_url(sequential))
|
|
|
|
# Verify vertical URL
|
|
vertical = ItemFactory.create(parent_location=sequential.location, category='vertical',
|
|
display_name='Unit')
|
|
self.assertEqual(xblock_studio_url(vertical),
|
|
u'/unit/location:MITx+999+Robot_Super_Course+vertical+Unit')
|
|
|
|
# Verify child vertical URL
|
|
child_vertical = ItemFactory.create(parent_location=vertical.location, category='vertical',
|
|
display_name='Child Vertical')
|
|
self.assertEqual(xblock_studio_url(child_vertical),
|
|
u'/container/location:MITx+999+Robot_Super_Course+vertical+Child_Vertical')
|
|
|
|
# Verify video URL
|
|
video = ItemFactory.create(parent_location=child_vertical.location, category="video",
|
|
display_name="My Video")
|
|
self.assertIsNone(xblock_studio_url(video))
|