2020-08-22 04:49:09 +00:00
|
|
|
"""Test the Risco config flow."""
|
2020-08-22 17:15:03 +00:00
|
|
|
from homeassistant import config_entries, data_entry_flow
|
2020-08-22 04:49:09 +00:00
|
|
|
from homeassistant.components.risco.config_flow import (
|
|
|
|
CannotConnectError,
|
|
|
|
UnauthorizedError,
|
|
|
|
)
|
|
|
|
from homeassistant.components.risco.const import DOMAIN
|
|
|
|
|
2020-08-22 13:54:12 +00:00
|
|
|
from tests.async_mock import PropertyMock, patch
|
|
|
|
from tests.common import MockConfigEntry
|
2020-08-22 04:49:09 +00:00
|
|
|
|
|
|
|
TEST_SITE_NAME = "test-site-name"
|
|
|
|
TEST_DATA = {
|
|
|
|
"username": "test-username",
|
|
|
|
"password": "test-password",
|
|
|
|
"pin": "1234",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form(hass):
|
|
|
|
"""Test we get the form."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
|
|
assert result["errors"] == {}
|
|
|
|
|
|
|
|
with patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.risco.config_flow.RiscoAPI.login",
|
|
|
|
return_value=True,
|
2020-08-22 04:49:09 +00:00
|
|
|
), patch(
|
|
|
|
"homeassistant.components.risco.config_flow.RiscoAPI.site_name",
|
|
|
|
new_callable=PropertyMock(return_value=TEST_SITE_NAME),
|
|
|
|
), patch(
|
2020-08-22 13:54:12 +00:00
|
|
|
"homeassistant.components.risco.config_flow.RiscoAPI.close"
|
2020-08-22 04:49:09 +00:00
|
|
|
) as mock_close, patch(
|
|
|
|
"homeassistant.components.risco.async_setup", return_value=True
|
|
|
|
) as mock_setup, patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.risco.async_setup_entry",
|
|
|
|
return_value=True,
|
2020-08-22 04:49:09 +00:00
|
|
|
) as mock_setup_entry:
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], TEST_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "create_entry"
|
|
|
|
assert result2["title"] == TEST_SITE_NAME
|
|
|
|
assert result2["data"] == TEST_DATA
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
mock_close.assert_awaited_once()
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_invalid_auth(hass):
|
|
|
|
"""Test we handle invalid auth."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
|
|
|
|
with patch(
|
|
|
|
"homeassistant.components.risco.config_flow.RiscoAPI.login",
|
|
|
|
side_effect=UnauthorizedError,
|
2020-08-22 13:54:12 +00:00
|
|
|
), patch("homeassistant.components.risco.config_flow.RiscoAPI.close") as mock_close:
|
2020-08-22 04:49:09 +00:00
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], TEST_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "invalid_auth"}
|
|
|
|
mock_close.assert_awaited_once()
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_cannot_connect(hass):
|
|
|
|
"""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.risco.config_flow.RiscoAPI.login",
|
|
|
|
side_effect=CannotConnectError,
|
2020-08-22 13:54:12 +00:00
|
|
|
), patch("homeassistant.components.risco.config_flow.RiscoAPI.close") as mock_close:
|
2020-08-22 04:49:09 +00:00
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], TEST_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
|
|
mock_close.assert_awaited_once()
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_exception(hass):
|
|
|
|
"""Test we handle unknown exception."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
|
|
|
|
with patch(
|
|
|
|
"homeassistant.components.risco.config_flow.RiscoAPI.login",
|
|
|
|
side_effect=Exception,
|
2020-08-22 13:54:12 +00:00
|
|
|
), patch("homeassistant.components.risco.config_flow.RiscoAPI.close") as mock_close:
|
2020-08-22 04:49:09 +00:00
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], TEST_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "unknown"}
|
|
|
|
mock_close.assert_awaited_once()
|
2020-08-22 13:54:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_form_already_exists(hass):
|
|
|
|
"""Test that a flow with an existing username aborts."""
|
|
|
|
entry = MockConfigEntry(
|
2020-08-27 11:56:20 +00:00
|
|
|
domain=DOMAIN,
|
|
|
|
unique_id=TEST_DATA["username"],
|
|
|
|
data=TEST_DATA,
|
2020-08-22 13:54:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], TEST_DATA
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "abort"
|
|
|
|
assert result2["reason"] == "already_configured"
|
2020-08-22 17:15:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_options_flow(hass):
|
|
|
|
"""Test options flow."""
|
2020-08-23 17:34:30 +00:00
|
|
|
conf = {
|
|
|
|
"scan_interval": 10,
|
|
|
|
"code_arm_required": True,
|
|
|
|
"code_disarm_required": True,
|
|
|
|
}
|
2020-08-22 17:15:03 +00:00
|
|
|
|
|
|
|
entry = MockConfigEntry(
|
2020-08-27 11:56:20 +00:00
|
|
|
domain=DOMAIN,
|
|
|
|
unique_id=TEST_DATA["username"],
|
|
|
|
data=TEST_DATA,
|
2020-08-22 17:15:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
|
|
|
|
with patch("homeassistant.components.risco.async_setup_entry", return_value=True):
|
|
|
|
result = await hass.config_entries.options.async_init(entry.entry_id)
|
|
|
|
|
|
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
assert result["step_id"] == "init"
|
|
|
|
|
|
|
|
result = await hass.config_entries.options.async_configure(
|
2020-08-27 11:56:20 +00:00
|
|
|
result["flow_id"],
|
|
|
|
user_input=conf,
|
2020-08-22 17:15:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
|
|
|
assert entry.options == conf
|