當前位置: 首頁>>代碼示例>>Python>>正文


Python TreeherderJobCollection.get_job方法代碼示例

本文整理匯總了Python中treeherder.client.TreeherderJobCollection.get_job方法的典型用法代碼示例。如果您正苦於以下問題:Python TreeherderJobCollection.get_job方法的具體用法?Python TreeherderJobCollection.get_job怎麽用?Python TreeherderJobCollection.get_job使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在treeherder.client.TreeherderJobCollection的用法示例。


在下文中一共展示了TreeherderJobCollection.get_job方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_treeheder_auth

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
    def test_treeheder_auth(self, mock_time, mock_generate_nonce):

        """Tests that oauth data is sent to server"""
        mock_time.return_value = 1342229050
        mock_generate_nonce.return_value = "46810593"

        tjc = TreeherderJobCollection()
        tjc.add(tjc.get_job(self.job_data[0]))

        auth = TreeherderAuth("key", "secret", "project")
        req = requests.Request(
            url="http://host/api/project/project/jobs/", json=tjc.get_collection_data(), auth=auth, method="POST"
        )
        prepped_request = req.prepare()
        self.assertEqual(
            prepped_request.url,
            (
                "http://host/api/project/project/jobs/?"
                "oauth_body_hash=IKbDoi5GvTRaqjRTCDyKIN5wWiY%3D&"
                "oauth_nonce=46810593&"
                "oauth_timestamp=1342229050&"
                "oauth_consumer_key=key&"
                "oauth_signature_method=HMAC-SHA1&"
                "oauth_version=1.0&"
                "oauth_token=&"
                "user=project&"
                "oauth_signature=DJe%2F%2FJtw7s2XUrciG%2Bl1tfJJen8%3D"
            ),
        )
開發者ID:EdgarChen,項目名稱:treeherder,代碼行數:31,代碼來源:test_treeherder_client.py

示例2: test_post_job_collection

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
    def test_post_job_collection(self, mock_post):
        """Can add a treeherder collections to a TreeherderRequest."""
        mock_post.return_value = self._expected_response_return_object()

        tjc = TreeherderJobCollection()

        for job in self.job_data:
            tjc.add(tjc.get_job(job))

        client = TreeherderClient(
            protocol='http',
            host='host',
            client_id='client-abc',
            secret='secret123',
            )

        client.post_collection('project', tjc)

        path, resp = mock_post.call_args

        self.assertEqual(mock_post.call_count, 1)
        self.assertEqual(
            tjc.get_collection_data(),
            resp['json']
            )
開發者ID:EricRahm,項目名稱:treeherder,代碼行數:27,代碼來源:test_treeherder_client.py

示例3: test_objectstore_create

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def test_objectstore_create(job_sample, jm):
    """
    test posting data to the objectstore via webtest.
    extected result are:
    - return code 200
    - return message successful
    - 1 job stored in the objectstore
    """

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(job_sample)
    tjc.add(tj)

    resp = test_utils.post_collection(jm.project, tjc)

    assert resp.status_int == 200
    assert resp.json['message'] == 'well-formed JSON stored'

    stored_objs = jm.get_os_dhub().execute(
        proc="objectstore_test.selects.row_by_guid",
        placeholders=[job_sample["job"]["job_guid"]]
    )

    assert len(stored_objs) == 1

    assert stored_objs[0]['job_guid'] == job_sample["job"]["job_guid"]

    jm.disconnect()
開發者ID:TheTeraByte,項目名稱:treeherder,代碼行數:30,代碼來源:test_objectstore_api.py

示例4: test_send_with_oauth

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
    def test_send_with_oauth(self, mock_post, mock_time,
                             mock_generate_nonce):

        """Tests that oauth data is sent to server"""
        mock_time.return_value = 1342229050
        mock_generate_nonce.return_value = "46810593"
        mock_post.return_value = self._expected_response_return_object()

        client = TreeherderClient(
            protocol='http',
            host='host',
            )

        tjc = TreeherderJobCollection()

        for job in self.job_data:

            tjc.add(tjc.get_job(job))
            break

        client.post_collection('project', 'key', 'secret', tjc)

        self.assertEqual(mock_post.call_count, 1)

        path, resp = mock_post.call_args
        self.assertEqual(path[0], "http://host/api/project/project/objectstore/?oauth_body_hash=C4jFXK8TBoFeh9wHOu1IkU7tERw%3D&oauth_nonce=46810593&oauth_timestamp=1342229050&oauth_consumer_key=key&oauth_signature_method=HMAC-SHA1&oauth_version=1.0&oauth_token=&user=project&oauth_signature=hNqHsAd7sdGyDLfWf7n9Bb%2B2rzM%3D")
開發者ID:whimboo,項目名稱:treeherder,代碼行數:28,代碼來源:test_treeherder_client.py

示例5: completed_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def completed_jobs_stored(
        jm, completed_jobs, result_set_stored, mock_post_json):
    """
    stores a list of buildapi completed jobs
    """
    completed_jobs['revision_hash'] = result_set_stored[0]['revision_hash']

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(completed_jobs)
    tjc.add(tj)

    test_utils.post_collection(jm.project, tjc)
開發者ID:mjzffr,項目名稱:treeherder,代碼行數:14,代碼來源:conftest.py

示例6: running_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def running_jobs_stored(
        jm, running_jobs, result_set_stored):
    """
    stores a list of buildapi running jobs into the objectstore
    """
    running_jobs.update(result_set_stored[0])

    tjc = TreeherderJobCollection(job_type='update')
    tj = tjc.get_job(running_jobs)
    tjc.add(tj)

    test_utils.post_collection(jm.project, tjc)
開發者ID:TheTeraByte,項目名稱:treeherder,代碼行數:14,代碼來源:conftest.py

示例7: running_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def running_jobs_stored(
        jm, running_jobs, result_set_stored, mock_post_json):
    """
    stores a list of buildapi running jobs
    """
    running_jobs.update(result_set_stored[0])
    running_jobs.update({'project': jm.project})

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(running_jobs)
    tjc.add(tj)

    test_utils.post_collection(jm.project, tjc)
開發者ID:anurag619,項目名稱:treeherder,代碼行數:15,代碼來源:conftest.py

示例8: pending_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def pending_jobs_stored(
        jm, pending_jobs, result_set_stored):
    """
    stores a list of buildapi pending jobs into the jobs store
    using BuildApiTreeHerderAdapter
    """

    pending_jobs.update(result_set_stored[0])

    tjc = TreeherderJobCollection(job_type='update')
    tj = tjc.get_job(pending_jobs)
    tjc.add(tj)

    test_utils.post_collection(jm.project, tjc)
開發者ID:TheTeraByte,項目名稱:treeherder,代碼行數:16,代碼來源:conftest.py

示例9: completed_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def completed_jobs_stored(
        test_repository, failure_classifications, completed_jobs,
        result_set_stored, mock_post_json):
    """
    stores a list of buildapi completed jobs
    """
    completed_jobs['revision'] = result_set_stored[0]['revision']
    completed_jobs.update({'project': test_repository.name})

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(completed_jobs)
    tjc.add(tj)

    test_utils.post_collection(test_repository.name, tjc)
開發者ID:SebastinSanty,項目名稱:treeherder,代碼行數:16,代碼來源:conftest.py

示例10: running_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def running_jobs_stored(
        test_repository, failure_classifications, running_jobs,
        result_set_stored, mock_post_json):
    """
    stores a list of buildapi running jobs
    """
    running_jobs.update(result_set_stored[0])
    running_jobs.update({'project': test_repository.name})

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(running_jobs)
    tjc.add(tj)

    test_utils.post_collection(test_repository.name, tjc)
開發者ID:SebastinSanty,項目名稱:treeherder,代碼行數:16,代碼來源:conftest.py

示例11: pending_jobs_stored

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def pending_jobs_stored(
        test_repository, failure_classifications, pending_jobs,
        result_set_stored, mock_post_json):
    """
    stores a list of buildapi pending jobs into the jobs store
    using BuildApiTreeHerderAdapter
    """

    pending_jobs.update(result_set_stored[0])
    pending_jobs.update({'project': test_repository.name})

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(pending_jobs)
    tjc.add(tj)

    test_utils.post_collection(test_repository.name, tjc)
開發者ID:SebastinSanty,項目名稱:treeherder,代碼行數:18,代碼來源:conftest.py

示例12: test_post_job_collection

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
    def test_post_job_collection(self, mock_post):
        """Can add a treeherder collections to a TreeherderRequest."""
        mock_post.return_value = self._expected_response_return_object()

        tjc = TreeherderJobCollection()

        for job in self.job_data:

            tjc.add(tjc.get_job(job))

        client = TreeherderClient(protocol="http", host="host")

        auth = TreeherderAuth("key", "secret", "project")
        client.post_collection("project", tjc, auth=auth)

        path, resp = mock_post.call_args

        self.assertEqual(mock_post.call_count, 1)
        self.assertEqual(tjc.get_collection_data(), resp["json"])
開發者ID:EdgarChen,項目名稱:treeherder,代碼行數:21,代碼來源:test_treeherder_client.py

示例13: test_objectstore_with_bad_secret

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def test_objectstore_with_bad_secret(job_sample, jm):
    """
    test calling with the wrong project secret.
    extected result are:
    - return code 403
    - return message authentication failed
    """

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(job_sample)
    tjc.add(tj)

    resp = test_utils.post_collection(
        jm.project, tjc, status=403, consumer_secret='not-so-secret'
    )

    assert resp.status_int == 403
    assert resp.json['detail'] == "Client authentication failed for project, {0}".format(jm.project)
    assert resp.json['response'] == "invalid_client"
開發者ID:TheTeraByte,項目名稱:treeherder,代碼行數:21,代碼來源:test_objectstore_api.py

示例14: test_objectstore_with_bad_key

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
def test_objectstore_with_bad_key(job_sample, jm):
    """
    test calling with the wrong project key.
    extected result are:
    - return code 403
    - return message failed
    """

    tjc = TreeherderJobCollection()
    tj = tjc.get_job(job_sample)
    tjc.add(tj)

    resp = test_utils.post_collection(
        jm.project, tjc, status=403, consumer_key='wrong-key'
    )

    assert resp.status_int == 403
    assert resp.json['response'] == "access_denied"
    assert resp.json['detail'] == "oauth_consumer_key does not match project, {0}, credentials".format(jm.project)
開發者ID:TheTeraByte,項目名稱:treeherder,代碼行數:21,代碼來源:test_objectstore_api.py

示例15: test_send_without_oauth

# 需要導入模塊: from treeherder.client import TreeherderJobCollection [as 別名]
# 或者: from treeherder.client.TreeherderJobCollection import get_job [as 別名]
    def test_send_without_oauth(self, mock_post, mock_time,
                                mock_generate_nonce):

        """Can send data to the server."""
        mock_time.return_value = 1342229050
        mock_generate_nonce.return_value = "46810593"

        host = 'host'

        req = TreeherderRequest(
            protocol='http',
            host=host,
            project='project',
            oauth_key=None,
            oauth_secret=None,
            )

        mock_response = mock_post.return_value

        tjc = TreeherderJobCollection()

        for job in self.job_data:

            tjc.add(tjc.get_job(job))
            break

        response = req.post(tjc)

        self.assertEqual(mock_response, response)
        self.assertEqual(mock_post.call_count, 1)

        path, resp = mock_post.call_args

        deserialized_data = json.loads(resp['data'])
        self.assertEqual(
            deserialized_data,
            tjc.get_collection_data()
            )
        self.assertEqual(
            resp['headers']['Content-Type'],
            'application/json',
            )
開發者ID:djmitche,項目名稱:treeherder,代碼行數:44,代碼來源:test_treeherder_client.py


注:本文中的treeherder.client.TreeherderJobCollection.get_job方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。