本文整理汇总了Python中nectar_allocations.models.allocation.AllocationRequest.get_all_for_project方法的典型用法代码示例。如果您正苦于以下问题:Python AllocationRequest.get_all_for_project方法的具体用法?Python AllocationRequest.get_all_for_project怎么用?Python AllocationRequest.get_all_for_project使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nectar_allocations.models.allocation.AllocationRequest
的用法示例。
在下文中一共展示了AllocationRequest.get_all_for_project方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_all_for_project_with_privacy
# 需要导入模块: from nectar_allocations.models.allocation import AllocationRequest [as 别名]
# 或者: from nectar_allocations.models.allocation.AllocationRequest import get_all_for_project [as 别名]
def test_get_all_for_project_with_privacy(self):
AllocationRequest.show_private_fields = False
request_id = 1654
project_allocations = AllocationRequest.get_all_for_project(request_id)
self.assertEquals(1, len(project_allocations))
self.assertEquals('UoM_Trajectory_Inference_Attacks',
project_allocations[0]['project_name'])
self.assertEquals('2014-01-06', project_allocations[0]['start_date'])
self.assertEquals('2014-01-31', project_allocations[0]['end_date'])
self.assertFalse('use_case' in project_allocations[0])
self.assertFalse('usage_patterns' in project_allocations[0])
示例2: test_get_all_for_project
# 需要导入模块: from nectar_allocations.models.allocation import AllocationRequest [as 别名]
# 或者: from nectar_allocations.models.allocation.AllocationRequest import get_all_for_project [as 别名]
def test_get_all_for_project(self):
AllocationRequest.show_private_fields = True
request_id = 1654
project_allocations = AllocationRequest.get_all_for_project(request_id)
self.assertEquals(1, len(project_allocations))
self.assertEquals('UoM_Trajectory_Inference_Attacks',
project_allocations[0]['project_name'])
self.assertEquals('2014-01-06', project_allocations[0]['start_date'])
self.assertEquals('2014-01-31', project_allocations[0]['end_date'])
expected_usecase = "In this project, an algorithm has been " \
"developed to infer a persons road trajectory " \
"using POI information sent to a LBS such as " \
"Google Maps.\r\n\r\n Please contact [XXXX]."
self.assertEquals(expected_usecase, project_allocations[0]['use_case'])
self.assertEquals('Data is stored on a remote server so no storage '
'is needed. Please contact [XXXX].',
project_allocations[0]['usage_patterns'])