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


Python TreeherderArtifactCollection.get_collection_data方法代码示例

本文整理汇总了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']
            )
开发者ID:EricRahm,项目名称:treeherder,代码行数:27,代码来源:test_treeherder_client.py

示例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"])
开发者ID:EdgarChen,项目名称:treeherder,代码行数:21,代码来源:test_treeherder_client.py

示例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()
开发者ID:EricRahm,项目名称:treeherder,代码行数:24,代码来源:test_treeherder_client.py


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