# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from unittest import mock

from ..._gaos import google_genai as gaos_google_genai
import pytest

from ... import client as client_lib


pytest_plugins = ("pytest_asyncio",)



def test_client_timeout():
  with mock.patch.object(
      gaos_google_genai, "GenAI", spec_set=True
  ) as mock_genai:
    mock_client = mock.Mock()
    mock_genai.return_value = mock_client

    client = client_lib.Client(
        api_key="placeholder",
        http_options={"api_version": "v1alpha", "timeout": 5000},
    )

    # Trigger client build
    _ = client.interactions.with_raw_response

    mock_genai.assert_called_once_with(
        security=mock.ANY,
        api_version=mock.ANY,
        user_project=mock.ANY,
        server_url=mock.ANY,
        client=mock.ANY,
        timeout_ms=5000,
        retry_config=mock.ANY,
    )


@pytest.mark.asyncio
async def test_async_client_timeout():
  with mock.patch.object(
      gaos_google_genai, "AsyncGenAI", spec_set=True
  ) as mock_async_genai:
    mock_client = mock.Mock()
    mock_async_genai.return_value = mock_client

    client = client_lib.Client(
        api_key="placeholder",
        http_options={"api_version": "v1alpha", "timeout": 5000},
    )

    # Trigger client build
    _ = client.aio.interactions.with_raw_response

    mock_async_genai.assert_called_once_with(
        security=mock.ANY,
        api_version=mock.ANY,
        user_project=mock.ANY,
        server_url=mock.ANY,
        async_client=mock.ANY,
        timeout_ms=5000,
        retry_config=mock.ANY,
    )


@pytest.mark.filterwarnings("error")
def test_unrecognized_model_serialization():
  from ..._gaos.types.interactions.createmodelinteraction import CreateModelInteraction
  # This shouldn't raise a Pydantic serialization error due to UnrecognizedStr
  obj = CreateModelInteraction(model="gemini-3.5-flash", input="hello")
  dumped = obj.model_dump()
  assert dumped["model"] == "gemini-3.5-flash"


@pytest.mark.filterwarnings("error")
def test_unrecognized_model_request_serialization():
  from ..._gaos.models.createinteraction import CreateInteractionRequest
  from ..._gaos.types.interactions.createmodelinteraction import CreateModelInteraction
  body = CreateModelInteraction(model="gemini-3.5-flash", input="hello")
  req = CreateInteractionRequest(body=body)
  dumped = req.model_dump()
  assert dumped["body"]["model"] == "gemini-3.5-flash"



