Esempio n. 1
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,
        )
Esempio n. 2
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"
Esempio n. 3
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,
    )
Esempio n. 4
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)
Esempio n. 5
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))
Esempio n. 6
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"]
Esempio n. 7
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"
Esempio n. 8
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,
        )
Esempio n. 9
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)),
        )
Esempio n. 10
0
def test_sessions_client_client_options_from_dict():
    with mock.patch(
            "google.cloud.dialogflow_v2.services.sessions.transports.SessionsGrpcTransport.__init__"
    ) as grpc_transport:
        grpc_transport.return_value = None
        client = SessionsClient(
            client_options={"api_endpoint": "squid.clam.whelk"})
        grpc_transport.assert_called_once_with(
            credentials=None,
            credentials_file=None,
            host="squid.clam.whelk",
            scopes=None,
            ssl_channel_credentials=None,
            quota_project_id=None,
            client_info=transports.base.DEFAULT_CLIENT_INFO,
        )
Esempio n. 11
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()
Esempio n. 12
0
 def __init__(
         self,
         google_credentials: Union[str,
                                   google.auth.credentials.Credentials],
         agent_cls: type(Agent),
         default_session: str = None,
         default_language: Union[LanguageCode, str] = None,
         rich_platforms: Iterable[str] = ("telegram", ),
         webhook_configuration: WebhookConfiguration = None):
     super().__init__(agent_cls,
                      default_session=default_session,
                      default_language=default_language)
     self._credentials = resolve_credentials(google_credentials)
     assert all([p in RICH_RESPONSE_PLATFORMS for p in rich_platforms])
     self._session_client = SessionsClient(credentials=self._credentials)
     self.rich_platforms = rich_platforms
     self.webhook_configuration = webhook_configuration
     self._need_context_set = _build_need_context_set(agent_cls)
     self._intents_by_context = _build_intents_by_context(agent_cls)
Esempio n. 13
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)
Esempio n. 14
0
def test_transport_instance():
    # A client may be instantiated with a custom transport instance.
    transport = transports.SessionsGrpcTransport(
        credentials=credentials.AnonymousCredentials(), )
    client = SessionsClient(transport=transport)
    assert client.transport is transport