1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 09:38:58 +01:00
Files
core/tests/components/ollama/conftest.py
T
Cyril MARIN a963eed3a7 Add bearer token as optional setting to Ollama (#165325)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joostlek <joostlek@outlook.com>
2026-03-16 22:14:33 +01:00

123 lines
3.3 KiB
Python

"""Tests Ollama integration."""
from copy import deepcopy
from typing import Any
from unittest.mock import patch
import pytest
from homeassistant.components import ollama
from homeassistant.const import CONF_API_KEY, CONF_LLM_HASS_API
from homeassistant.core import HomeAssistant
from homeassistant.helpers import llm
from homeassistant.setup import async_setup_component
from . import TEST_AI_TASK_OPTIONS, TEST_OPTIONS, TEST_USER_DATA
from tests.common import MockConfigEntry
@pytest.fixture
def mock_config_entry_options() -> dict[str, Any]:
"""Fixture for configuration entry options."""
return TEST_OPTIONS
@pytest.fixture
def has_token() -> bool:
"""Fixture to indicate if the config entry has a token."""
return False
@pytest.fixture
def mock_config_entry_data(has_token: bool) -> dict[str, Any]:
"""Fixture for configuration entry data."""
res = deepcopy(TEST_USER_DATA)
if has_token:
res[CONF_API_KEY] = "test_token"
return res
@pytest.fixture
def mock_config_entry(
hass: HomeAssistant,
mock_config_entry_options: dict[str, Any],
mock_config_entry_data: dict[str, Any],
) -> MockConfigEntry:
"""Mock a config entry."""
entry = MockConfigEntry(
domain=ollama.DOMAIN,
data=mock_config_entry_data,
version=3,
minor_version=2,
subentries_data=[
{
"data": {**TEST_OPTIONS, **mock_config_entry_options},
"subentry_type": "conversation",
"title": "Ollama Conversation",
"unique_id": None,
},
{
"data": TEST_AI_TASK_OPTIONS,
"subentry_type": "ai_task_data",
"title": "Ollama AI Task",
"unique_id": None,
},
],
)
entry.add_to_hass(hass)
return entry
@pytest.fixture
def mock_config_entry_with_assist(
hass: HomeAssistant, mock_config_entry: MockConfigEntry
) -> MockConfigEntry:
"""Mock a config entry with assist."""
subentry = next(iter(mock_config_entry.subentries.values()))
hass.config_entries.async_update_subentry(
mock_config_entry,
subentry,
data={
**subentry.data,
CONF_LLM_HASS_API: llm.LLM_API_ASSIST,
},
)
return mock_config_entry
@pytest.fixture
def mock_config_entry_with_assist_invalid_api(
hass: HomeAssistant, mock_config_entry: MockConfigEntry
) -> MockConfigEntry:
"""Mock a config entry with assist."""
subentry = next(iter(mock_config_entry.subentries.values()))
hass.config_entries.async_update_subentry(
mock_config_entry,
subentry,
data={
**subentry.data,
CONF_LLM_HASS_API: [llm.LLM_API_ASSIST, "invalid_api"],
},
)
return mock_config_entry
@pytest.fixture
async def mock_init_component(hass: HomeAssistant, mock_config_entry: MockConfigEntry):
"""Initialize integration."""
assert await async_setup_component(hass, "homeassistant", {})
with patch(
"ollama.AsyncClient.list",
):
assert await async_setup_component(hass, ollama.DOMAIN, {})
await hass.async_block_till_done()
yield
@pytest.fixture(autouse=True)
async def setup_ha(hass: HomeAssistant) -> None:
"""Set up Home Assistant."""
assert await async_setup_component(hass, "homeassistant", {})