mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00

* Add APsystems local API integration * Fix session usage in config_flow in apsystems local api * Remove skip check option for apsystems_loca api * Update APsystems API dependency and increased test coverage to 100% * Utilize EntityDescriptions for APsystems Local integration * Ensure coverage entries are sorted (#114424) * Ensure coverage entries are sorted * Use autofix * Adjust * Add comment to coverage file * test CI * revert CI test --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Use patch instead of Http Mocks for APsystems API tests * Fix linter waring for apsystemsapi * Fix apsystemsapi test * Fix CODEOWNERS for apsystemsapi * Address small PR review changes for apsystems_local * Remove wrong lines in coveragerc * Add serial number for apsystems_local * Remove option of custom refresh interval fro apsystems_local * Remove function override and fix stale comments * Use native device id and name storage instead of custom one for apsystems_local * Use runtime_data for apsystems_local * Don't store entry data in runtime data * Move from apsystems_local to apsystems domain --------- Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
98 lines
3.6 KiB
Python
98 lines
3.6 KiB
Python
"""Test the APsystems Local API config flow."""
|
|
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.apsystems.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_IP_ADDRESS
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
|
|
async def test_form_cannot_connect_and_recover(
|
|
hass: HomeAssistant, mock_setup_entry
|
|
) -> None:
|
|
"""Test we handle cannot connect error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
with patch(
|
|
"homeassistant.components.apsystems.config_flow.APsystemsEZ1M",
|
|
return_value=AsyncMock(),
|
|
) as mock_api:
|
|
mock_api.side_effect = TimeoutError
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_IP_ADDRESS: "127.0.0.2",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == FlowResultType.FORM
|
|
assert result["errors"] == {"base": "connection_refused"}
|
|
|
|
# Make sure the config flow tests finish with either an
|
|
# FlowResultType.CREATE_ENTRY or FlowResultType.ABORT so
|
|
# we can show the config flow is able to recover from an error.
|
|
with patch(
|
|
"homeassistant.components.apsystems.config_flow.APsystemsEZ1M",
|
|
return_value=AsyncMock(),
|
|
) as mock_api:
|
|
ret_data = MagicMock()
|
|
ret_data.deviceId = "MY_SERIAL_NUMBER"
|
|
mock_api.return_value.get_device_info = AsyncMock(return_value=ret_data)
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_IP_ADDRESS: "127.0.0.1",
|
|
},
|
|
)
|
|
assert result2["result"].unique_id == "MY_SERIAL_NUMBER"
|
|
assert result2.get("type") == FlowResultType.CREATE_ENTRY
|
|
assert result2["data"].get(CONF_IP_ADDRESS) == "127.0.0.1"
|
|
|
|
|
|
async def test_form_cannot_connect(hass: HomeAssistant, mock_setup_entry) -> None:
|
|
"""Test we handle cannot connect error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
with patch(
|
|
"homeassistant.components.apsystems.config_flow.APsystemsEZ1M",
|
|
return_value=AsyncMock(),
|
|
) as mock_api:
|
|
mock_api.side_effect = TimeoutError
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_IP_ADDRESS: "127.0.0.2",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == FlowResultType.FORM
|
|
assert result["errors"] == {"base": "connection_refused"}
|
|
|
|
|
|
async def test_form_create_success(hass: HomeAssistant, mock_setup_entry) -> None:
|
|
"""Test we handle creatinw with success."""
|
|
with patch(
|
|
"homeassistant.components.apsystems.config_flow.APsystemsEZ1M",
|
|
return_value=AsyncMock(),
|
|
) as mock_api:
|
|
ret_data = MagicMock()
|
|
ret_data.deviceId = "MY_SERIAL_NUMBER"
|
|
mock_api.return_value.get_device_info = AsyncMock(return_value=ret_data)
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
data={
|
|
CONF_IP_ADDRESS: "127.0.0.1",
|
|
},
|
|
)
|
|
assert result["result"].unique_id == "MY_SERIAL_NUMBER"
|
|
assert result.get("type") == FlowResultType.CREATE_ENTRY
|
|
assert result["data"].get(CONF_IP_ADDRESS) == "127.0.0.1"
|