mirror of
https://github.com/jdejaegh/irm-kmi-ha.git
synced 2025-06-27 03:35:56 +02:00
Add test
This commit is contained in:
parent
7ceb719d8b
commit
c5ac0228ef
3 changed files with 1668 additions and 6 deletions
|
@ -55,12 +55,23 @@ def mock_irm_kmi_api(request: pytest.FixtureRequest) -> Generator[None, MagicMoc
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def mock_exception_irm_kmi_api(request: pytest.FixtureRequest) -> Generator[None, MagicMock, None]:
|
def mock_irm_kmi_api_out_benelux(request: pytest.FixtureRequest) -> Generator[None, MagicMock, None]:
|
||||||
"""Return a mocked IrmKmi api client."""
|
"""Return a mocked IrmKmi api client."""
|
||||||
fixture: str = "forecast.json"
|
fixture: str = "forecast_out_of_benelux.json"
|
||||||
|
|
||||||
forecast = json.loads(load_fixture(fixture))
|
forecast = json.loads(load_fixture(fixture))
|
||||||
print(type(forecast))
|
print(type(forecast))
|
||||||
|
with patch(
|
||||||
|
"custom_components.irm_kmi.coordinator.IrmKmiApiClient", autospec=True
|
||||||
|
) as irm_kmi_api_mock:
|
||||||
|
irm_kmi = irm_kmi_api_mock.return_value
|
||||||
|
irm_kmi.get_forecasts_coord.return_value = forecast
|
||||||
|
yield irm_kmi
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture()
|
||||||
|
def mock_exception_irm_kmi_api(request: pytest.FixtureRequest) -> Generator[None, MagicMock, None]:
|
||||||
|
"""Return a mocked IrmKmi api client."""
|
||||||
with patch(
|
with patch(
|
||||||
"custom_components.irm_kmi.coordinator.IrmKmiApiClient", autospec=True
|
"custom_components.irm_kmi.coordinator.IrmKmiApiClient", autospec=True
|
||||||
) as irm_kmi_api_mock:
|
) as irm_kmi_api_mock:
|
||||||
|
|
1625
tests/fixtures/forecast_out_of_benelux.json
vendored
Normal file
1625
tests/fixtures/forecast_out_of_benelux.json
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -16,7 +16,7 @@ async def test_load_unload_config_entry(
|
||||||
mock_config_entry: MockConfigEntry,
|
mock_config_entry: MockConfigEntry,
|
||||||
mock_irm_kmi_api: AsyncMock,
|
mock_irm_kmi_api: AsyncMock,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test the Open-Meteo configuration entry loading/unloading."""
|
"""Test the IRM KMI configuration entry loading/unloading."""
|
||||||
hass.states.async_set(
|
hass.states.async_set(
|
||||||
"zone.home",
|
"zone.home",
|
||||||
0,
|
0,
|
||||||
|
@ -42,10 +42,10 @@ async def test_config_entry_not_ready(
|
||||||
mock_config_entry: MockConfigEntry,
|
mock_config_entry: MockConfigEntry,
|
||||||
mock_exception_irm_kmi_api: AsyncMock
|
mock_exception_irm_kmi_api: AsyncMock
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test the Open-Meteo configuration entry not ready."""
|
"""Test the IRM KMI configuration entry not ready."""
|
||||||
hass.states.async_set(
|
hass.states.async_set(
|
||||||
"zone.home",
|
"zone.home",
|
||||||
"zoning",
|
0,
|
||||||
{"latitude": 50.738681639, "longitude": 4.054077148},
|
{"latitude": 50.738681639, "longitude": 4.054077148},
|
||||||
)
|
)
|
||||||
mock_config_entry.add_to_hass(hass)
|
mock_config_entry.add_to_hass(hass)
|
||||||
|
@ -60,7 +60,7 @@ async def test_config_entry_zone_removed(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
caplog: pytest.LogCaptureFixture,
|
caplog: pytest.LogCaptureFixture,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test the Open-Meteo configuration entry not ready."""
|
"""Test the IRM KMI configuration entry not ready."""
|
||||||
mock_config_entry = MockConfigEntry(
|
mock_config_entry = MockConfigEntry(
|
||||||
title="My Castle",
|
title="My Castle",
|
||||||
domain=DOMAIN,
|
domain=DOMAIN,
|
||||||
|
@ -73,3 +73,29 @@ async def test_config_entry_zone_removed(
|
||||||
|
|
||||||
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY
|
||||||
assert "Zone 'zone.castle' not found" in caplog.text
|
assert "Zone 'zone.castle' not found" in caplog.text
|
||||||
|
|
||||||
|
|
||||||
|
async def test_zone_out_of_benelux(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
caplog: pytest.LogCaptureFixture,
|
||||||
|
mock_irm_kmi_api_out_benelux: AsyncMock
|
||||||
|
) -> None:
|
||||||
|
"""Test the IRM KMI when configuration zone is out of Benelux"""
|
||||||
|
mock_config_entry = MockConfigEntry(
|
||||||
|
title="London",
|
||||||
|
domain=DOMAIN,
|
||||||
|
data={CONF_ZONE: "zone.london"},
|
||||||
|
unique_id="zone.london",
|
||||||
|
)
|
||||||
|
hass.states.async_set(
|
||||||
|
"zone.london",
|
||||||
|
0,
|
||||||
|
{"latitude": 51.5072, "longitude": 0.1276},
|
||||||
|
)
|
||||||
|
|
||||||
|
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
|
||||||
|
assert "Zone 'zone.london' is out of Benelux" in caplog.text
|
||||||
|
|
Loading…
Add table
Reference in a new issue