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


Python XModuleDescriptor.load_from_json方法代码示例

本文整理汇总了Python中xmodule.x_module.XModuleDescriptor.load_from_json方法的典型用法代码示例。如果您正苦于以下问题:Python XModuleDescriptor.load_from_json方法的具体用法?Python XModuleDescriptor.load_from_json怎么用?Python XModuleDescriptor.load_from_json使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在xmodule.x_module.XModuleDescriptor的用法示例。


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

示例1: test_persist_dag

# 需要导入模块: from xmodule.x_module import XModuleDescriptor [as 别名]
# 或者: from xmodule.x_module.XModuleDescriptor import load_from_json [as 别名]
 def test_persist_dag(self):
     """
     try saving temporary xblocks
     """
     test_course = persistent_factories.PersistentCourseFactory.create(org='testx', prettyid='tempcourse',
         display_name='fun test course', user_id='testbot')
     test_chapter = XModuleDescriptor.load_from_json({'category': 'chapter',
         'metadata': {'display_name': 'chapter n'}},
         test_course.system, parent_xblock=test_course)
     test_def_content = '<problem>boo</problem>'
     test_problem = XModuleDescriptor.load_from_json({'category': 'problem',
         'definition': {'data': test_def_content}},
         test_course.system, parent_xblock=test_chapter)
     # better to pass in persisted parent over the subdag so
     # subdag gets the parent pointer (otherwise 2 ops, persist dag, update parent children,
     # persist parent
     persisted_course = modulestore('split').persist_xblock_dag(test_course, 'testbot')
     self.assertEqual(len(persisted_course.children), 1)
     persisted_chapter = persisted_course.get_children()[0]
     self.assertEqual(persisted_chapter.category, 'chapter')
     self.assertEqual(persisted_chapter.display_name, 'chapter n')
     self.assertEqual(len(persisted_chapter.children), 1)
     persisted_problem = persisted_chapter.get_children()[0]
     self.assertEqual(persisted_problem.category, 'problem')
     self.assertEqual(persisted_problem.data, test_def_content)
开发者ID:Negotiare,项目名称:edx-platform,代码行数:27,代码来源:test_crud.py

示例2: test_temporary_xblocks

# 需要导入模块: from xmodule.x_module import XModuleDescriptor [as 别名]
# 或者: from xmodule.x_module.XModuleDescriptor import load_from_json [as 别名]
    def test_temporary_xblocks(self):
        """
        Test using load_from_json to create non persisted xblocks
        """
        test_course = persistent_factories.PersistentCourseFactory.create(org='testx', prettyid='tempcourse',
            display_name='fun test course', user_id='testbot')

        test_chapter = XModuleDescriptor.load_from_json({'category': 'chapter',
            'metadata': {'display_name': 'chapter n'}},
            test_course.system, parent_xblock=test_course)
        self.assertIsInstance(test_chapter, SequenceDescriptor)
        self.assertEqual(test_chapter.display_name, 'chapter n')
        self.assertIn(test_chapter, test_course.get_children())

        # test w/ a definition (e.g., a problem)
        test_def_content = '<problem>boo</problem>'
        test_problem = XModuleDescriptor.load_from_json({'category': 'problem',
            'definition': {'data': test_def_content}},
            test_course.system, parent_xblock=test_chapter)
        self.assertIsInstance(test_problem, CapaDescriptor)
        self.assertEqual(test_problem.data, test_def_content)
        self.assertIn(test_problem, test_chapter.get_children())
        test_problem.display_name = 'test problem'
        self.assertEqual(test_problem.display_name, 'test problem')
开发者ID:Negotiare,项目名称:edx-platform,代码行数:26,代码来源:test_crud.py


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