63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
"""Define test fixtures for Ambient PWS."""
|
|
import json
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.ambient_station.const import CONF_APP_KEY, DOMAIN
|
|
from homeassistant.const import CONF_API_KEY
|
|
|
|
from tests.common import MockConfigEntry, load_fixture
|
|
|
|
|
|
@pytest.fixture(name="api")
|
|
def api_fixture(hass, data_devices):
|
|
"""Define a mock API object."""
|
|
return Mock(get_devices=AsyncMock(return_value=data_devices))
|
|
|
|
|
|
@pytest.fixture(name="config")
|
|
def config_fixture(hass):
|
|
"""Define a config entry data fixture."""
|
|
return {
|
|
CONF_API_KEY: "12345abcde12345abcde",
|
|
CONF_APP_KEY: "67890fghij67890fghij",
|
|
}
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def config_entry_fixture(hass, config):
|
|
"""Define a config entry fixture."""
|
|
entry = MockConfigEntry(domain=DOMAIN, data=config)
|
|
entry.add_to_hass(hass)
|
|
return entry
|
|
|
|
|
|
@pytest.fixture(name="data_devices", scope="package")
|
|
def data_devices_fixture():
|
|
"""Define devices data."""
|
|
return json.loads(load_fixture("devices.json", "ambient_station"))
|
|
|
|
|
|
@pytest.fixture(name="data_station", scope="package")
|
|
def data_station_fixture():
|
|
"""Define station data."""
|
|
return json.loads(load_fixture("station_data.json", "ambient_station"))
|
|
|
|
|
|
@pytest.fixture(name="mock_aioambient")
|
|
async def mock_aioambient_fixture(api):
|
|
"""Define a fixture to patch aioambient."""
|
|
with patch(
|
|
"homeassistant.components.ambient_station.config_flow.API",
|
|
return_value=api,
|
|
), patch("aioambient.websocket.Websocket.connect"):
|
|
yield
|
|
|
|
|
|
@pytest.fixture(name="setup_config_entry")
|
|
async def setup_config_entry_fixture(hass, config_entry, mock_aioambient):
|
|
"""Define a fixture to set up ambient_station."""
|
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|