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


Python TreeherderArtifactCollection.get_chunks方法代码示例

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


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

示例1: test_chunk_endpoint_base

# 需要导入模块: from treeherder.client import TreeherderArtifactCollection [as 别名]
# 或者: from treeherder.client.TreeherderArtifactCollection import get_chunks [as 别名]
    def test_chunk_endpoint_base(self):
        """Confirm the endpoint_base of the chunks is the same as the original"""
        tac = TreeherderArtifactCollection()

        for artifact in self.artifact_data:
            ta = TreeherderArtifact(artifact)
            tac.add(ta)

        for chunk in tac.get_chunks(3):
            assert tac.endpoint_base == chunk.endpoint_base
开发者ID:EricRahm,项目名称:treeherder,代码行数:12,代码来源:test_treeherder_client.py

示例2: test_collection_chunking

# 需要导入模块: from treeherder.client import TreeherderArtifactCollection [as 别名]
# 或者: from treeherder.client.TreeherderArtifactCollection import get_chunks [as 别名]
    def test_collection_chunking(self):
        tac = TreeherderArtifactCollection()

        for artifact in self.artifact_data:
            ta = TreeherderArtifact(artifact)
            tac.add(ta)

        # reconstruct the chunks and make sure we have the same data
        rebuilt_data = []
        chunk_num = 0
        for chunk in tac.get_chunks(3):
            chunk_data = chunk.get_collection_data()
            rebuilt_data.extend(chunk_data)

            chunk_num += 1
            # the last one should be the "remainder" in an uneven size
            if chunk_num == 4:
                assert len(chunk_data) == 1
            else:
                assert len(chunk_data) == 3

        assert rebuilt_data == tac.get_collection_data()
开发者ID:EricRahm,项目名称:treeherder,代码行数:24,代码来源:test_treeherder_client.py


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