* Add full test coverage * Remove unreachable exception * Remove comment line. Conflicting with codecov * Use auto fixture and syrupy
68 lines
2.2 KiB
Python
68 lines
2.2 KiB
Python
"""Tests for the Jellyfin integration."""
|
|
from unittest.mock import MagicMock
|
|
|
|
from homeassistant.components.jellyfin.const import DOMAIN
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import async_load_json_fixture
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_config_entry_not_ready(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_jellyfin: MagicMock,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test the Jellyfin configuration entry not ready."""
|
|
mock_client.auth.connect_to_address.return_value = await async_load_json_fixture(
|
|
hass,
|
|
"auth-connect-address-failure.json",
|
|
)
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
|
|
|
|
|
async def test_invalid_auth(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_jellyfin: MagicMock,
|
|
mock_client: MagicMock,
|
|
) -> None:
|
|
"""Test the Jellyfin integration handling invalid credentials."""
|
|
mock_client.auth.connect_to_address.return_value = await async_load_json_fixture(
|
|
hass,
|
|
"auth-connect-address.json",
|
|
)
|
|
mock_client.auth.login.return_value = await async_load_json_fixture(
|
|
hass,
|
|
"auth-login-failure.json",
|
|
)
|
|
|
|
mock_config_entry.add_to_hass(hass)
|
|
assert not await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
|
|
|
|
async def test_load_unload_config_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_jellyfin: MagicMock,
|
|
) -> None:
|
|
"""Test the Jellyfin configuration entry loading/unloading."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.entry_id in hass.data[DOMAIN]
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert mock_config_entry.entry_id not in hass.data[DOMAIN]
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|