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


Python AllocationRequest.restructure_allocations_tree方法代码示例

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


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

示例1: allocation_tree

# 需要导入模块: from nectar_allocations.models.allocation import AllocationRequest [as 别名]
# 或者: from nectar_allocations.models.allocation.AllocationRequest import restructure_allocations_tree [as 别名]
def allocation_tree(request):
    allocation_dict = AllocationRequest.restructure_allocations_tree()
    json_string = dumps(allocation_dict)
    return HttpResponse(json_string, "application/json")
开发者ID:,项目名称:,代码行数:6,代码来源:

示例2: test_restructure_allocations_tree

# 需要导入模块: from nectar_allocations.models.allocation import AllocationRequest [as 别名]
# 或者: from nectar_allocations.models.allocation.AllocationRequest import restructure_allocations_tree [as 别名]
    def test_restructure_allocations_tree(self):
        name_children_tree = AllocationRequest.restructure_allocations_tree()
        self.assertEquals('allocations', name_children_tree['name'])
        children_2 = name_children_tree['children']
        self.assertEquals(3, len(children_2))

        children_2.sort(key=itemgetter('name'))

        child_2 = children_2[0]
        self.assertEquals('07', child_2['name'])
        self.assertEquals(1, len(child_2['children']))

        children_4 = child_2['children']
        child_4 = children_4[0]
        self.assertEquals('0701', child_4['name'])
        self.assertEquals(1, len(child_4['children']))

        children_6 = child_4['children']
        child_6 = children_6[0]
        self.assertEquals('070104', child_6['name'])
        self.assertEquals(1, len(child_6['children']))

        project_items = child_6['children'][0]
        self.assertEquals(
            'USQ eResearch Services Sandbox',
            project_items['name'])

        child_2 = children_2[1]
        self.assertEquals('08', child_2['name'])
        self.assertEquals(1, len(child_2['children']))

        children_4 = child_2['children']
        child_4 = children_4[0]
        self.assertEquals('0801', child_4['name'])
        self.assertEquals(1, len(child_4['children']))

        children_6 = child_4['children']
        child_6 = children_6[0]
        self.assertEquals('080109', child_6['name'])
        self.assertEquals(1, len(child_6['children']))

        project_items = child_6['children'][0]
        self.assertEquals(
            'UoM_Trajectory_Inference_Attacks',
            project_items['name'])

        child_2 = children_2[2]
        self.assertEquals('09', child_2['name'])
        self.assertEquals(1, len(child_2['children']))

        children_4 = child_2['children']
        child_4 = children_4[0]
        self.assertEquals('0999', child_4['name'])
        self.assertEquals(1, len(child_4['children']))

        children_6 = child_4['children']
        child_6 = children_6[0]
        self.assertEquals('099901', child_6['name'])
        self.assertEquals(1, len(child_6['children']))

        project_items = child_6['children'][0]
        self.assertEquals(
            'USQ eResearch Services Sandbox',
            project_items['name'])
开发者ID:rrothwell,项目名称:langstroth,代码行数:66,代码来源:test_db_allocation.py


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