68 lines
1.9 KiB
Python
68 lines
1.9 KiB
Python
"""Define test fixtures for Tile."""
|
|
import json
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
import pytest
|
|
from pytile.tile import Tile
|
|
|
|
from homeassistant.components.tile.const import DOMAIN
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import MockConfigEntry, load_fixture
|
|
|
|
|
|
@pytest.fixture(name="api")
|
|
def api_fixture(hass, data_tile_details):
|
|
"""Define a pytile API object."""
|
|
tile = Tile(None, data_tile_details)
|
|
tile.async_update = AsyncMock()
|
|
|
|
return Mock(
|
|
async_get_tiles=AsyncMock(
|
|
return_value={data_tile_details["result"]["tile_uuid"]: tile}
|
|
)
|
|
)
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def config_entry_fixture(hass, config, unique_id):
|
|
"""Define a config entry fixture."""
|
|
entry = MockConfigEntry(domain=DOMAIN, unique_id=unique_id, data=config)
|
|
entry.add_to_hass(hass)
|
|
return entry
|
|
|
|
|
|
@pytest.fixture(name="config")
|
|
def config_fixture(hass):
|
|
"""Define a config entry data fixture."""
|
|
return {
|
|
CONF_USERNAME: "user@host.com",
|
|
CONF_PASSWORD: "123abc",
|
|
}
|
|
|
|
|
|
@pytest.fixture(name="data_tile_details", scope="session")
|
|
def data_tile_details_fixture():
|
|
"""Define a Tile details data payload."""
|
|
return json.loads(load_fixture("tile_details_data.json", "tile"))
|
|
|
|
|
|
@pytest.fixture(name="setup_tile")
|
|
async def setup_tile_fixture(hass, api, config):
|
|
"""Define a fixture to set up Tile."""
|
|
with patch(
|
|
"homeassistant.components.tile.config_flow.async_login", return_value=api
|
|
), patch("homeassistant.components.tile.async_login", return_value=api), patch(
|
|
"homeassistant.components.tile.PLATFORMS", []
|
|
):
|
|
assert await async_setup_component(hass, DOMAIN, config)
|
|
await hass.async_block_till_done()
|
|
yield
|
|
|
|
|
|
@pytest.fixture(name="unique_id")
|
|
def unique_id_fixture(hass):
|
|
"""Define a config entry unique ID fixture."""
|
|
return "user@host.com"
|