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


Python ClusterMaster.get_builds方法代码示例

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


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

示例1: test_builds_with_pagination_request

# 需要导入模块: from app.master.cluster_master import ClusterMaster [as 别名]
# 或者: from app.master.cluster_master.ClusterMaster import get_builds [as 别名]
    def test_builds_with_pagination_request(
            self,
            offset: Optional[int],
            limit: Optional[int],
            expected_first_build_id: int,
            expected_last_build_id: int,
            ):
        master = ClusterMaster()
        # Create 20 mock builds with ids 1 to 20
        for build_id in range(1, self._NUM_BUILDS + 1):
            build_mock = Mock(spec=Build)
            build_mock.build_id = build_id
            BuildStore._all_builds_by_id[build_id] = build_mock

        requested_builds = master.get_builds(offset, limit)

        id_of_first_build = requested_builds[0].build_id if len(requested_builds) else None
        id_of_last_build = requested_builds[-1].build_id if len(requested_builds) else None
        num_builds = len(requested_builds)

        self.assertEqual(id_of_first_build, expected_first_build_id, 'Received the wrong first build from request')
        self.assertEqual(id_of_last_build, expected_last_build_id, 'Received the wrong last build from request')
        if offset is not None and limit is not None:
            self.assertLessEqual(num_builds, self._PAGINATION_MAX_LIMIT, 'Received too many builds from request')
开发者ID:box,项目名称:ClusterRunner,代码行数:26,代码来源:test_cluster_master.py


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