Пример #1
0
def test_streaming_detect_intent(
        transport: str = "grpc",
        request_type=session.StreamingDetectIntentRequest):
    client = SessionsClient(
        credentials=credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Everything is optional in proto3 as far as the runtime is concerned,
    # and we are mocking out the actual API, so just send an empty request.
    request = request_type()

    requests = [request]

    # Mock the actual call within the gRPC stub, and fake the request.
    with mock.patch.object(type(client.transport.streaming_detect_intent),
                           "__call__") as call:
        # Designate an appropriate return value for the call.
        call.return_value = iter([session.StreamingDetectIntentResponse()])

        response = client.streaming_detect_intent(iter(requests))

        # Establish that the underlying gRPC stub method was called.
        assert len(call.mock_calls) == 1
        _, args, _ = call.mock_calls[0]

        assert next(args[0]) == request

    # Establish that the response is the type that we expect.
    for message in response:
        assert isinstance(message, session.StreamingDetectIntentResponse)
Пример #2
0
def test_detect_intent_field_headers():
    client = SessionsClient(credentials=credentials.AnonymousCredentials(), )

    # Any value that is part of the HTTP/1.1 URI should be sent as
    # a field header. Set these to a non-empty value.
    request = gcd_session.DetectIntentRequest()
    request.session = "session/value"

    # Mock the actual call within the gRPC stub, and fake the request.
    with mock.patch.object(type(client.transport.detect_intent),
                           "__call__") as call:
        call.return_value = gcd_session.DetectIntentResponse()

        client.detect_intent(request)

        # Establish that the underlying gRPC stub method was called.
        assert len(call.mock_calls) == 1
        _, args, _ = call.mock_calls[0]
        assert args[0] == request

    # Establish that the field header was sent.
    _, _, kw = call.mock_calls[0]
    assert (
        "x-goog-request-params",
        "session=session/value",
    ) in kw["metadata"]
Пример #3
0
def test_detect_intent_flattened():
    client = SessionsClient(credentials=credentials.AnonymousCredentials(), )

    # Mock the actual call within the gRPC stub, and fake the request.
    with mock.patch.object(type(client.transport.detect_intent),
                           "__call__") as call:
        # Designate an appropriate return value for the call.
        call.return_value = gcd_session.DetectIntentResponse()

        # Call the method with a truthy value for each flattened field,
        # using the keyword arguments to the method.
        client.detect_intent(
            session="session_value",
            query_input=gcd_session.QueryInput(
                audio_config=audio_config.InputAudioConfig(
                    audio_encoding=audio_config.AudioEncoding.
                    AUDIO_ENCODING_LINEAR_16)),
        )

        # Establish that the underlying call was made with the expected
        # request object values.
        assert len(call.mock_calls) == 1
        _, args, _ = call.mock_calls[0]

        assert args[0].session == "session_value"

        assert args[0].query_input == gcd_session.QueryInput(
            audio_config=audio_config.InputAudioConfig(
                audio_encoding=audio_config.AudioEncoding.
                AUDIO_ENCODING_LINEAR_16))
Пример #4
0
def test_credentials_transport_error():
    # It is an error to provide credentials and a transport instance.
    transport = transports.SessionsGrpcTransport(
        credentials=credentials.AnonymousCredentials(), )
    with pytest.raises(ValueError):
        client = SessionsClient(
            credentials=credentials.AnonymousCredentials(),
            transport=transport,
        )

    # It is an error to provide a credentials file and a transport instance.
    transport = transports.SessionsGrpcTransport(
        credentials=credentials.AnonymousCredentials(), )
    with pytest.raises(ValueError):
        client = SessionsClient(
            client_options={"credentials_file": "credentials.json"},
            transport=transport,
        )

    # It is an error to provide scopes and a transport instance.
    transport = transports.SessionsGrpcTransport(
        credentials=credentials.AnonymousCredentials(), )
    with pytest.raises(ValueError):
        client = SessionsClient(
            client_options={"scopes": ["1", "2"]},
            transport=transport,
        )
Пример #5
0
def test_detect_intent(transport: str = "grpc",
                       request_type=gcd_session.DetectIntentRequest):
    client = SessionsClient(
        credentials=credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Everything is optional in proto3 as far as the runtime is concerned,
    # and we are mocking out the actual API, so just send an empty request.
    request = request_type()

    # Mock the actual call within the gRPC stub, and fake the request.
    with mock.patch.object(type(client.transport.detect_intent),
                           "__call__") as call:
        # Designate an appropriate return value for the call.
        call.return_value = gcd_session.DetectIntentResponse(
            response_id="response_id_value",
            output_audio=b"output_audio_blob",
        )

        response = client.detect_intent(request)

        # Establish that the underlying gRPC stub method was called.
        assert len(call.mock_calls) == 1
        _, args, _ = call.mock_calls[0]

        assert args[0] == gcd_session.DetectIntentRequest()

    # Establish that the response is the type that we expect.

    assert isinstance(response, gcd_session.DetectIntentResponse)

    assert response.response_id == "response_id_value"

    assert response.output_audio == b"output_audio_blob"
Пример #6
0
def test_sessions_client_get_transport_class():
    transport = SessionsClient.get_transport_class()
    available_transports = [
        transports.SessionsGrpcTransport,
    ]
    assert transport in available_transports

    transport = SessionsClient.get_transport_class("grpc")
    assert transport == transports.SessionsGrpcTransport
Пример #7
0
def test_parse_common_project_path():
    expected = {
        "project": "nautilus",
    }
    path = SessionsClient.common_project_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_project_path(path)
    assert expected == actual
Пример #8
0
def test_parse_common_billing_account_path():
    expected = {
        "billing_account": "octopus",
    }
    path = SessionsClient.common_billing_account_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_billing_account_path(path)
    assert expected == actual
Пример #9
0
def test_parse_common_organization_path():
    expected = {
        "organization": "mussel",
    }
    path = SessionsClient.common_organization_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_organization_path(path)
    assert expected == actual
Пример #10
0
def test_parse_common_folder_path():
    expected = {
        "folder": "nudibranch",
    }
    path = SessionsClient.common_folder_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_folder_path(path)
    assert expected == actual
Пример #11
0
def test_parse_session_path():
    expected = {
        "project": "cuttlefish",
        "session": "mussel",
    }
    path = SessionsClient.session_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_session_path(path)
    assert expected == actual
Пример #12
0
def test_parse_common_location_path():
    expected = {
        "project": "squid",
        "location": "clam",
    }
    path = SessionsClient.common_location_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_location_path(path)
    assert expected == actual
Пример #13
0
def test_parse_intent_path():
    expected = {
        "project": "whelk",
        "intent": "octopus",
    }
    path = SessionsClient.intent_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_intent_path(path)
    assert expected == actual
Пример #14
0
def test_parse_session_entity_type_path():
    expected = {
        "project": "abalone",
        "session": "squid",
        "entity_type": "clam",
    }
    path = SessionsClient.session_entity_type_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_session_entity_type_path(path)
    assert expected == actual
Пример #15
0
def test_parse_context_path():
    expected = {
        "project": "octopus",
        "session": "oyster",
        "context": "nudibranch",
    }
    path = SessionsClient.context_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_context_path(path)
    assert expected == actual
Пример #16
0
def test_parse_document_path():
    expected = {
        "project": "nautilus",
        "knowledge_base": "scallop",
        "document": "abalone",
    }
    path = SessionsClient.document_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_document_path(path)
    assert expected == actual
Пример #17
0
def test_detect_intent_flattened_error():
    client = SessionsClient(credentials=credentials.AnonymousCredentials(), )

    # Attempting to call a method with both a request object and flattened
    # fields is an error.
    with pytest.raises(ValueError):
        client.detect_intent(
            gcd_session.DetectIntentRequest(),
            session="session_value",
            query_input=gcd_session.QueryInput(
                audio_config=audio_config.InputAudioConfig(
                    audio_encoding=audio_config.AudioEncoding.
                    AUDIO_ENCODING_LINEAR_16)),
        )
Пример #18
0
def test_detect_intent_empty_call():
    # This test is a coverage failsafe to make sure that totally empty calls,
    # i.e. request == None and no flattened fields passed, work.
    client = SessionsClient(
        credentials=credentials.AnonymousCredentials(),
        transport="grpc",
    )

    # Mock the actual call within the gRPC stub, and fake the request.
    with mock.patch.object(type(client.transport.detect_intent),
                           "__call__") as call:
        client.detect_intent()
        call.assert_called()
        _, args, _ = call.mock_calls[0]

        assert args[0] == gcd_session.DetectIntentRequest()
Пример #19
0
def test_common_billing_account_path():
    billing_account = "whelk"

    expected = "billingAccounts/{billing_account}".format(
        billing_account=billing_account, )
    actual = SessionsClient.common_billing_account_path(billing_account)
    assert expected == actual
Пример #20
0
def test_sessions_host_with_port():
    client = SessionsClient(
        credentials=credentials.AnonymousCredentials(),
        client_options=client_options.ClientOptions(
            api_endpoint="dialogflow.googleapis.com:8000"),
    )
    assert client.transport._host == "dialogflow.googleapis.com:8000"
Пример #21
0
def test_common_organization_path():
    organization = "cuttlefish"

    expected = "organizations/{organization}".format(
        organization=organization, )
    actual = SessionsClient.common_organization_path(organization)
    assert expected == actual
Пример #22
0
def test_transport_grpc_default():
    # A client should use the gRPC transport by default.
    client = SessionsClient(credentials=credentials.AnonymousCredentials(), )
    assert isinstance(
        client.transport,
        transports.SessionsGrpcTransport,
    )
Пример #23
0
def test_intent_path():
    project = "squid"
    intent = "clam"

    expected = "projects/{project}/agent/intents/{intent}".format(
        project=project,
        intent=intent,
    )
    actual = SessionsClient.intent_path(project, intent)
    assert expected == actual
Пример #24
0
def test_session_path():
    project = "oyster"
    session = "nudibranch"

    expected = "projects/{project}/agent/sessions/{session}".format(
        project=project,
        session=session,
    )
    actual = SessionsClient.session_path(project, session)
    assert expected == actual
Пример #25
0
def test_common_location_path():
    project = "scallop"
    location = "abalone"

    expected = "projects/{project}/locations/{location}".format(
        project=project,
        location=location,
    )
    actual = SessionsClient.common_location_path(project, location)
    assert expected == actual
Пример #26
0
def test_client_withDEFAULT_CLIENT_INFO():
    client_info = gapic_v1.client_info.ClientInfo()

    with mock.patch.object(transports.SessionsTransport,
                           "_prep_wrapped_messages") as prep:
        client = SessionsClient(
            credentials=credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)

    with mock.patch.object(transports.SessionsTransport,
                           "_prep_wrapped_messages") as prep:
        transport_class = SessionsClient.get_transport_class()
        transport = transport_class(
            credentials=credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)
Пример #27
0
def test_sessions_auth_adc():
    # If no credentials are provided, we should use ADC credentials.
    with mock.patch.object(auth, "default") as adc:
        adc.return_value = (credentials.AnonymousCredentials(), None)
        SessionsClient()
        adc.assert_called_once_with(
            scopes=(
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/dialogflow",
            ),
            quota_project_id=None,
        )
Пример #28
0
def test_context_path():
    project = "squid"
    session = "clam"
    context = "whelk"

    expected = "projects/{project}/agent/sessions/{session}/contexts/{context}".format(
        project=project,
        session=session,
        context=context,
    )
    actual = SessionsClient.context_path(project, session, context)
    assert expected == actual
Пример #29
0
def test_document_path():
    project = "cuttlefish"
    knowledge_base = "mussel"
    document = "winkle"

    expected = "projects/{project}/knowledgeBases/{knowledge_base}/documents/{document}".format(
        project=project,
        knowledge_base=knowledge_base,
        document=document,
    )
    actual = SessionsClient.document_path(project, knowledge_base, document)
    assert expected == actual
Пример #30
0
def test_session_entity_type_path():
    project = "winkle"
    session = "nautilus"
    entity_type = "scallop"

    expected = "projects/{project}/agent/sessions/{session}/entityTypes/{entity_type}".format(
        project=project,
        session=session,
        entity_type=entity_type,
    )
    actual = SessionsClient.session_entity_type_path(project, session,
                                                     entity_type)
    assert expected == actual