当前位置: 首页>>代码示例>>Python>>正文


Python locator.CourseLocator类代码示例

本文整理汇总了Python中xmodule.modulestore.locator.CourseLocator的典型用法代码示例。如果您正苦于以下问题:Python CourseLocator类的具体用法?Python CourseLocator怎么用?Python CourseLocator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了CourseLocator类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_course_constructor_course_id_no_revision

 def test_course_constructor_course_id_no_revision(self):
     testurn = 'edu.mit.eecs.6002x'
     testobj = CourseLocator(course_id=testurn)
     self.check_course_locn_fields(testobj, 'course_id', course_id=testurn)
     self.assertEqual(testobj.course_id, testurn)
     self.assertEqual(str(testobj), testurn)
     self.assertEqual(testobj.url(), 'edx://' + testurn)
开发者ID:NakarinTalikan,项目名称:edx-platform,代码行数:7,代码来源:test_locators.py

示例2: test_course_constructor_package_id_no_branch

 def test_course_constructor_package_id_no_branch(self):
     org = 'mit.eecs'
     offering = '6002x'
     testurn = '{}+{}'.format(org, offering)
     testobj = CourseLocator(org=org, offering=offering)
     self.check_course_locn_fields(testobj, org=org, offering=offering)
     self.assertEqual(testobj._to_string(), testurn)
开发者ID:aemilcar,项目名称:edx-platform,代码行数:7,代码来源:test_locators.py

示例3: test_course_constructor_package_id_no_branch

 def test_course_constructor_package_id_no_branch(self):
     testurn = 'mit.eecs.6002x'
     testobj = CourseLocator(package_id=testurn)
     self.check_course_locn_fields(testobj, 'package_id', package_id=testurn)
     self.assertEqual(testobj.package_id, testurn)
     self.assertEqual(str(testobj), testurn)
     self.assertEqual(testobj.url(), 'edx://' + testurn)
开发者ID:Caesar73,项目名称:edx-platform,代码行数:7,代码来源:test_locators.py

示例4: test_course_constructor_course_id_no_branch

 def test_course_constructor_course_id_no_branch(self):
     testurn = "mit.eecs.6002x"
     testobj = CourseLocator(course_id=testurn)
     self.check_course_locn_fields(testobj, "course_id", course_id=testurn)
     self.assertEqual(testobj.course_id, testurn)
     self.assertEqual(str(testobj), testurn)
     self.assertEqual(testobj.url(), "edx://" + testurn)
开发者ID:rjsheperd,项目名称:edx-platform,代码行数:7,代码来源:test_locators.py

示例5: test_course_constructor_course_id_separate_branch

 def test_course_constructor_course_id_separate_branch(self):
     test_id = "mit.eecs.6002x"
     test_branch = "published"
     expected_urn = "mit.eecs.6002x" + BRANCH_PREFIX + "published"
     testobj = CourseLocator(course_id=test_id, branch=test_branch)
     self.check_course_locn_fields(testobj, "course_id with separate branch", course_id=test_id, branch=test_branch)
     self.assertEqual(testobj.course_id, test_id)
     self.assertEqual(testobj.branch, test_branch)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), "edx://" + expected_urn)
开发者ID:rjsheperd,项目名称:edx-platform,代码行数:10,代码来源:test_locators.py

示例6: test_course_constructor_course_id_separate_revision

 def test_course_constructor_course_id_separate_revision(self):
     test_id = 'edu.mit.eecs.6002x'
     test_revision = 'published'
     expected_urn = 'edu.mit.eecs.6002x;published'
     testobj = CourseLocator(course_id=test_id, revision=test_revision)
     self.check_course_locn_fields(testobj, 'course_id with separate revision',
                                   course_id=test_id,
                                   revision=test_revision,
                                   )
     self.assertEqual(testobj.course_id, test_id)
     self.assertEqual(testobj.revision, test_revision)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), 'edx://' + expected_urn)
开发者ID:NakarinTalikan,项目名称:edx-platform,代码行数:13,代码来源:test_locators.py

示例7: test_course_constructor_course_id_with_branch

 def test_course_constructor_course_id_with_branch(self):
     testurn = 'mit.eecs.6002x/' + BRANCH_PREFIX + 'published'
     expected_id = 'mit.eecs.6002x'
     expected_branch = 'published'
     testobj = CourseLocator(course_id=testurn)
     self.check_course_locn_fields(testobj, 'course_id with branch',
                                   course_id=expected_id,
                                   branch=expected_branch,
                                   )
     self.assertEqual(testobj.course_id, expected_id)
     self.assertEqual(testobj.branch, expected_branch)
     self.assertEqual(str(testobj), testurn)
     self.assertEqual(testobj.url(), 'edx://' + testurn)
开发者ID:DavidGrahamFL,项目名称:edx-platform,代码行数:13,代码来源:test_locators.py

示例8: test_course_constructor_package_id_separate_branch

 def test_course_constructor_package_id_separate_branch(self):
     test_id = 'mit.eecs.6002x'
     test_branch = 'published'
     expected_urn = 'mit.eecs.6002x/' + BRANCH_PREFIX + 'published'
     testobj = CourseLocator(package_id=test_id, branch=test_branch)
     self.check_course_locn_fields(testobj, 'package_id with separate branch',
                                   package_id=test_id,
                                   branch=test_branch,
                                   )
     self.assertEqual(testobj.package_id, test_id)
     self.assertEqual(testobj.branch, test_branch)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), 'edx://' + expected_urn)
开发者ID:Caesar73,项目名称:edx-platform,代码行数:13,代码来源:test_locators.py

示例9: test_course_constructor_package_id_separate_branch

 def test_course_constructor_package_id_separate_branch(self):
     org = 'mit.eecs'
     offering = '6002x'
     test_branch = 'published'
     expected_urn = '{}+{}+{}+{}'.format(org, offering, CourseLocator.BRANCH_PREFIX, test_branch)
     testobj = CourseLocator(org=org, offering=offering, branch=test_branch)
     self.check_course_locn_fields(
         testobj,
         org=org,
         offering=offering,
         branch=test_branch,
     )
     self.assertEqual(testobj.branch, test_branch)
     self.assertEqual(testobj._to_string(), expected_urn)
开发者ID:aemilcar,项目名称:edx-platform,代码行数:14,代码来源:test_locators.py

示例10: test_get_parents

 def test_get_parents(self):
     '''
     get_parent_locations(locator, [usage_id], [branch]): [BlockUsageLocator]
     '''
     locator = CourseLocator(course_id="GreekHero", branch='draft')
     parents = modulestore().get_parent_locations(locator, usage_id='chapter1')
     self.assertEqual(len(parents), 1)
     self.assertEqual(parents[0].usage_id, 'head12345')
     self.assertEqual(parents[0].course_id, "GreekHero")
     locator.usage_id = 'chapter2'
     parents = modulestore().get_parent_locations(locator)
     self.assertEqual(len(parents), 1)
     self.assertEqual(parents[0].usage_id, 'head12345')
     parents = modulestore().get_parent_locations(locator, usage_id='nosuchblock')
     self.assertEqual(len(parents), 0)
开发者ID:burngeek8,项目名称:edx-platform,代码行数:15,代码来源:test_split_modulestore.py

示例11: test_course_constructor_course_id_repeated_branch

 def test_course_constructor_course_id_repeated_branch(self):
     """
     The same branch appears in the course_id and the branch field.
     """
     test_id = "mit.eecs.6002x" + BRANCH_PREFIX + "published"
     test_branch = "published"
     expected_id = "mit.eecs.6002x"
     expected_urn = test_id
     testobj = CourseLocator(course_id=test_id, branch=test_branch)
     self.check_course_locn_fields(
         testobj, "course_id with repeated branch", course_id=expected_id, branch=test_branch
     )
     self.assertEqual(testobj.course_id, expected_id)
     self.assertEqual(testobj.branch, test_branch)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), "edx://" + expected_urn)
开发者ID:rjsheperd,项目名称:edx-platform,代码行数:16,代码来源:test_locators.py

示例12: test_course_constructor_version_guid

    def test_course_constructor_version_guid(self):
        # generate a random location
        test_id_1 = ObjectId()
        test_id_1_loc = str(test_id_1)
        testobj_1 = CourseLocator(version_guid=test_id_1)
        self.check_course_locn_fields(testobj_1, version_guid=test_id_1)
        self.assertEqual(str(testobj_1.version_guid), test_id_1_loc)
        self.assertEqual(testobj_1._to_string(), u'+'.join((testobj_1.VERSION_PREFIX, test_id_1_loc)))

        # Test using a given string
        test_id_2_loc = '519665f6223ebd6980884f2b'
        test_id_2 = ObjectId(test_id_2_loc)
        testobj_2 = CourseLocator(version_guid=test_id_2)
        self.check_course_locn_fields(testobj_2, version_guid=test_id_2)
        self.assertEqual(str(testobj_2.version_guid), test_id_2_loc)
        self.assertEqual(testobj_2._to_string(), u'+'.join((testobj_2.VERSION_PREFIX, test_id_2_loc)))
开发者ID:aemilcar,项目名称:edx-platform,代码行数:16,代码来源:test_locators.py

示例13: test_course_constructor_course_id_repeated_revision

 def test_course_constructor_course_id_repeated_revision(self):
     """
     The same revision appears in the course_id and the revision field.
     """
     test_id = 'edu.mit.eecs.6002x;published'
     test_revision = 'published'
     expected_id = 'edu.mit.eecs.6002x'
     expected_urn = 'edu.mit.eecs.6002x;published'
     testobj = CourseLocator(course_id=test_id, revision=test_revision)
     self.check_course_locn_fields(testobj, 'course_id with repeated revision',
                                   course_id=expected_id,
                                   revision=test_revision,
                                   )
     self.assertEqual(testobj.course_id, expected_id)
     self.assertEqual(testobj.revision, test_revision)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), 'edx://' + expected_urn)
开发者ID:NakarinTalikan,项目名称:edx-platform,代码行数:17,代码来源:test_locators.py

示例14: test_course_constructor_package_id_repeated_branch

 def test_course_constructor_package_id_repeated_branch(self):
     """
     The same branch appears in the package_id and the branch field.
     """
     test_id = 'mit.eecs.6002x/' + BRANCH_PREFIX + 'published'
     test_branch = 'published'
     expected_id = 'mit.eecs.6002x'
     expected_urn = test_id
     testobj = CourseLocator(package_id=test_id, branch=test_branch)
     self.check_course_locn_fields(testobj, 'package_id with repeated branch',
                                   package_id=expected_id,
                                   branch=test_branch,
                                   )
     self.assertEqual(testobj.package_id, expected_id)
     self.assertEqual(testobj.branch, test_branch)
     self.assertEqual(str(testobj), expected_urn)
     self.assertEqual(testobj.url(), 'edx://' + expected_urn)
开发者ID:Caesar73,项目名称:edx-platform,代码行数:17,代码来源:test_locators.py

示例15: test_course_constructor_version_guid

    def test_course_constructor_version_guid(self):
        # generate a random location
        test_id_1 = ObjectId()
        test_id_1_loc = str(test_id_1)
        testobj_1 = CourseLocator(version_guid=test_id_1)
        self.check_course_locn_fields(testobj_1, 'version_guid', version_guid=test_id_1)
        self.assertEqual(str(testobj_1.version_guid), test_id_1_loc)
        self.assertEqual(str(testobj_1), VERSION_PREFIX + test_id_1_loc)
        self.assertEqual(testobj_1.url(), 'edx://' + VERSION_PREFIX + test_id_1_loc)

        # Test using a given string
        test_id_2_loc = '519665f6223ebd6980884f2b'
        test_id_2 = ObjectId(test_id_2_loc)
        testobj_2 = CourseLocator(version_guid=test_id_2)
        self.check_course_locn_fields(testobj_2, 'version_guid', version_guid=test_id_2)
        self.assertEqual(str(testobj_2.version_guid), test_id_2_loc)
        self.assertEqual(str(testobj_2), VERSION_PREFIX + test_id_2_loc)
        self.assertEqual(testobj_2.url(), 'edx://' + VERSION_PREFIX + test_id_2_loc)
开发者ID:Caesar73,项目名称:edx-platform,代码行数:18,代码来源:test_locators.py


注:本文中的xmodule.modulestore.locator.CourseLocator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。