Example #1
0
    def test_list_transfer_runs(self):
        # Setup Expected Response
        next_page_token = ''
        transfer_runs_element = {}
        transfer_runs = [transfer_runs_element]
        expected_response = {
            'next_page_token': next_page_token,
            'transfer_runs': transfer_runs
        }
        expected_response = datatransfer_pb2.ListTransferRunsResponse(
            **expected_response)

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

        # Setup Request
        parent = client.project_transfer_config_path('[PROJECT]',
                                                     '[TRANSFER_CONFIG]')

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

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

        assert len(channel.requests) == 1
        expected_request = datatransfer_pb2.ListTransferRunsRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_list_transfer_runs(self):
        # Setup Expected Response
        next_page_token = ""
        transfer_runs_element = {}
        transfer_runs = [transfer_runs_element]
        expected_response = {
            "next_page_token": next_page_token,
            "transfer_runs": transfer_runs,
        }
        expected_response = datatransfer_pb2.ListTransferRunsResponse(
            **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 = bigquery_datatransfer_v1.DataTransferServiceClient()

        # Setup Request
        parent = client.project_transfer_config_path("[PROJECT]", "[TRANSFER_CONFIG]")

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

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

        assert len(channel.requests) == 1
        expected_request = datatransfer_pb2.ListTransferRunsRequest(parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request