本文整理汇总了Python中treeherder.client.TreeherderArtifactCollection.get_collection_data方法的典型用法代码示例。如果您正苦于以下问题:Python TreeherderArtifactCollection.get_collection_data方法的具体用法?Python TreeherderArtifactCollection.get_collection_data怎么用?Python TreeherderArtifactCollection.get_collection_data使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类treeherder.client.TreeherderArtifactCollection
的用法示例。
在下文中一共展示了TreeherderArtifactCollection.get_collection_data方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_send_artifact_collection
# 需要导入模块: from treeherder.client import TreeherderArtifactCollection [as 别名]
# 或者: from treeherder.client.TreeherderArtifactCollection import get_collection_data [as 别名]
def test_send_artifact_collection(self, mock_post):
"""Can add a artifact collections to a TreeherderRequest."""
mock_post.return_value = self._expected_response_return_object()
tac = TreeherderArtifactCollection()
for artifact in self.artifact_data:
tac.add(tac.get_artifact(artifact))
client = TreeherderClient(
protocol='http',
host='host',
client_id='client-abc',
secret='secret123',
)
client.post_collection('project', tac)
path, resp = mock_post.call_args
self.assertEqual(mock_post.call_count, 1)
self.assertEqual(
tac.get_collection_data(),
resp['json']
)
示例2: test_send_artifact_collection
# 需要导入模块: from treeherder.client import TreeherderArtifactCollection [as 别名]
# 或者: from treeherder.client.TreeherderArtifactCollection import get_collection_data [as 别名]
def test_send_artifact_collection(self, mock_post):
"""Can add a artifact collections to a TreeherderRequest."""
mock_post.return_value = self._expected_response_return_object()
tac = TreeherderArtifactCollection()
for artifact in self.artifact_data:
tac.add(tac.get_artifact(artifact))
client = TreeherderClient(protocol="http", host="host")
auth = TreeherderAuth("key", "secret", "project")
client.post_collection("project", tac, auth=auth)
path, resp = mock_post.call_args
self.assertEqual(mock_post.call_count, 1)
self.assertEqual(tac.get_collection_data(), resp["json"])
示例3: test_collection_chunking
# 需要导入模块: from treeherder.client import TreeherderArtifactCollection [as 别名]
# 或者: from treeherder.client.TreeherderArtifactCollection import get_collection_data [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()