本文整理汇总了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
示例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()