def test_list_workflow_templates(self):
        # Setup Expected Response
        next_page_token = ''
        templates_element = {}
        templates = [templates_element]
        expected_response = {
            'next_page_token': next_page_token,
            'templates': templates
        }
        expected_response = workflow_templates_pb2.ListWorkflowTemplatesResponse(
            **expected_response)

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

        # Setup Request
        parent = client.region_path('[PROJECT]', '[REGION]')

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

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

        assert len(channel.requests) == 1
        expected_request = workflow_templates_pb2.ListWorkflowTemplatesRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_list_workflow_templates(self):
        # Setup Expected Response
        next_page_token = ""
        templates_element = {}
        templates = [templates_element]
        expected_response = {
            "next_page_token": next_page_token,
            "templates": templates
        }
        expected_response = workflow_templates_pb2.ListWorkflowTemplatesResponse(
            **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 = dataproc_v1beta2.WorkflowTemplateServiceClient()

        # Setup Request
        parent = client.region_path("[PROJECT]", "[REGION]")

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

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

        assert len(channel.requests) == 1
        expected_request = workflow_templates_pb2.ListWorkflowTemplatesRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request