コード例 #1
0
    def test_list_tasks(self):
        # Setup Expected Response
        next_page_token = ''
        tasks_element = {}
        tasks = [tasks_element]
        expected_response = {
            'next_page_token': next_page_token,
            'tasks': tasks
        }
        expected_response = cloudtasks_pb2.ListTasksResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = tasks_v2beta2.CloudTasksClient(channel=channel)

        # Setup Request
        parent = client.queue_path('[PROJECT]', '[LOCATION]', '[QUEUE]')

        paged_list_response = client.list_tasks(parent)
        resources = list(paged_list_response)
        assert len(resources) == 1

        assert expected_response.tasks[0] == resources[0]

        assert len(channel.requests) == 1
        expected_request = cloudtasks_pb2.ListTasksRequest(parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
コード例 #2
0
    def test_list_tasks(self):
        # Setup Expected Response
        next_page_token = ""
        tasks_element = {}
        tasks = [tasks_element]
        expected_response = {
            "next_page_token": next_page_token,
            "tasks": tasks
        }
        expected_response = cloudtasks_pb2.ListTasksResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = tasks_v2beta2.CloudTasksClient()

        # Setup Request
        parent = client.queue_path("[PROJECT]", "[LOCATION]", "[QUEUE]")

        paged_list_response = client.list_tasks(parent)
        resources = list(paged_list_response)
        assert len(resources) == 1

        assert expected_response.tasks[0] == resources[0]

        assert len(channel.requests) == 1
        expected_request = cloudtasks_pb2.ListTasksRequest(parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request