80 lines
2.3 KiB
Python
80 lines
2.3 KiB
Python
"""Define test fixtures for AirVisual."""
|
|
import json
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.airvisual.const import (
|
|
CONF_INTEGRATION_TYPE,
|
|
DOMAIN,
|
|
INTEGRATION_TYPE_GEOGRAPHY_COORDS,
|
|
)
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_SHOW_ON_MAP,
|
|
)
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import MockConfigEntry, load_fixture
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def config_entry_fixture(hass, config, config_entry_version, unique_id):
|
|
"""Define a config entry fixture."""
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id=unique_id,
|
|
data={CONF_INTEGRATION_TYPE: INTEGRATION_TYPE_GEOGRAPHY_COORDS, **config},
|
|
options={CONF_SHOW_ON_MAP: True},
|
|
version=config_entry_version,
|
|
)
|
|
entry.add_to_hass(hass)
|
|
return entry
|
|
|
|
|
|
@pytest.fixture(name="config_entry_version")
|
|
def config_entry_version_fixture():
|
|
"""Define a config entry version fixture."""
|
|
return 2
|
|
|
|
|
|
@pytest.fixture(name="config")
|
|
def config_fixture(hass):
|
|
"""Define a config entry data fixture."""
|
|
return {
|
|
CONF_API_KEY: "abcde12345",
|
|
CONF_LATITUDE: 51.528308,
|
|
CONF_LONGITUDE: -0.3817765,
|
|
}
|
|
|
|
|
|
@pytest.fixture(name="data", scope="session")
|
|
def data_fixture():
|
|
"""Define an update coordinator data example."""
|
|
return json.loads(load_fixture("data.json", "airvisual"))
|
|
|
|
|
|
@pytest.fixture(name="setup_airvisual")
|
|
async def setup_airvisual_fixture(hass, config, data):
|
|
"""Define a fixture to set up AirVisual."""
|
|
with patch("pyairvisual.air_quality.AirQuality.city"), patch(
|
|
"pyairvisual.air_quality.AirQuality.nearest_city", return_value=data
|
|
), patch("pyairvisual.node.NodeSamba.async_connect"), patch(
|
|
"pyairvisual.node.NodeSamba.async_get_latest_measurements"
|
|
), patch(
|
|
"pyairvisual.node.NodeSamba.async_disconnect"
|
|
), patch(
|
|
"homeassistant.components.airvisual.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 "51.528308, -0.3817765"
|