Ejemplo n.º 1
0
async def test_detect_intent_flattened_async():
    client = SessionsAsyncClient(
        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.return_value = grpc_helpers_async.FakeUnaryUnaryCall(
            gcd_session.DetectIntentResponse())
        # Call the method with a truthy value for each flattened field,
        # using the keyword arguments to the method.
        response = await 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)
        _, 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))
Ejemplo n.º 2
0
async def test_detect_intent_field_headers_async():
    client = SessionsAsyncClient(
        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 = grpc_helpers_async.FakeUnaryUnaryCall(
            gcd_session.DetectIntentResponse())

        await client.detect_intent(request)

        # Establish that the underlying gRPC stub method was called.
        assert len(call.mock_calls)
        _, 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"]
Ejemplo n.º 3
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"