146 lines
4.8 KiB
Python
146 lines
4.8 KiB
Python
|
"""Test the Discovergy config flow."""
|
||
|
from unittest.mock import patch
|
||
|
|
||
|
from pydiscovergy.error import HTTPError, InvalidLogin
|
||
|
|
||
|
from homeassistant import data_entry_flow, setup
|
||
|
from homeassistant.components.discovergy.const import DOMAIN
|
||
|
from homeassistant.config_entries import SOURCE_REAUTH, SOURCE_USER
|
||
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
|
||
|
from tests.components.discovergy import init_integration
|
||
|
|
||
|
|
||
|
async def test_form(hass: HomeAssistant, mock_meters) -> None:
|
||
|
"""Test we get the form."""
|
||
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
||
|
result = await hass.config_entries.flow.async_init(
|
||
|
DOMAIN, context={"source": SOURCE_USER}
|
||
|
)
|
||
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert result["errors"] is None
|
||
|
|
||
|
with patch(
|
||
|
"homeassistant.components.discovergy.async_setup_entry",
|
||
|
return_value=True,
|
||
|
) as mock_setup_entry:
|
||
|
result2 = await hass.config_entries.flow.async_configure(
|
||
|
result["flow_id"],
|
||
|
{
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
},
|
||
|
)
|
||
|
await hass.async_block_till_done()
|
||
|
|
||
|
assert result2["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY
|
||
|
assert result2["title"] == "test@example.com"
|
||
|
assert result2["data"] == {
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
}
|
||
|
assert len(mock_setup_entry.mock_calls) == 1
|
||
|
|
||
|
|
||
|
async def test_reauth(hass: HomeAssistant, mock_meters) -> None:
|
||
|
"""Test reauth flow."""
|
||
|
entry = await init_integration(hass)
|
||
|
|
||
|
init_result = await hass.config_entries.flow.async_init(
|
||
|
DOMAIN,
|
||
|
context={"source": SOURCE_REAUTH, "unique_id": entry.unique_id},
|
||
|
data=None,
|
||
|
)
|
||
|
|
||
|
assert init_result["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert init_result["step_id"] == "reauth"
|
||
|
|
||
|
configure_result = await hass.config_entries.flow.async_configure(
|
||
|
init_result["flow_id"],
|
||
|
{
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
},
|
||
|
)
|
||
|
|
||
|
assert configure_result["type"] == data_entry_flow.FlowResultType.ABORT
|
||
|
assert configure_result["reason"] == "reauth_successful"
|
||
|
|
||
|
|
||
|
async def test_form_invalid_auth(hass: HomeAssistant) -> None:
|
||
|
"""Test we handle invalid auth."""
|
||
|
result = await hass.config_entries.flow.async_init(
|
||
|
DOMAIN, context={"source": SOURCE_USER}
|
||
|
)
|
||
|
|
||
|
with patch(
|
||
|
"pydiscovergy.Discovergy.get_meters",
|
||
|
side_effect=InvalidLogin,
|
||
|
):
|
||
|
result2 = await hass.config_entries.flow.async_configure(
|
||
|
result["flow_id"],
|
||
|
{
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
},
|
||
|
)
|
||
|
|
||
|
assert result2["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert result2["errors"] == {"base": "invalid_auth"}
|
||
|
|
||
|
|
||
|
async def test_form_cannot_connect(hass: HomeAssistant) -> None:
|
||
|
"""Test we handle cannot connect error."""
|
||
|
result = await hass.config_entries.flow.async_init(
|
||
|
DOMAIN, context={"source": SOURCE_USER}
|
||
|
)
|
||
|
|
||
|
with patch("pydiscovergy.Discovergy.get_meters", side_effect=HTTPError):
|
||
|
result2 = await hass.config_entries.flow.async_configure(
|
||
|
result["flow_id"],
|
||
|
{
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
},
|
||
|
)
|
||
|
|
||
|
assert result2["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert result2["errors"] == {"base": "cannot_connect"}
|
||
|
|
||
|
|
||
|
async def test_form_unknown_exception(hass: HomeAssistant) -> None:
|
||
|
"""Test we handle cannot connect error."""
|
||
|
result = await hass.config_entries.flow.async_init(
|
||
|
DOMAIN, context={"source": SOURCE_USER}
|
||
|
)
|
||
|
|
||
|
with patch("pydiscovergy.Discovergy.get_meters", side_effect=Exception):
|
||
|
result2 = await hass.config_entries.flow.async_configure(
|
||
|
result["flow_id"],
|
||
|
{
|
||
|
CONF_EMAIL: "test@example.com",
|
||
|
CONF_PASSWORD: "test-password",
|
||
|
},
|
||
|
)
|
||
|
|
||
|
assert result2["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert result2["errors"] == {"base": "unknown"}
|
||
|
|
||
|
|
||
|
async def test_options_flow_init(hass: HomeAssistant) -> None:
|
||
|
"""Test the options flow."""
|
||
|
entry = await init_integration(hass)
|
||
|
|
||
|
result = await hass.config_entries.options.async_init(entry.entry_id)
|
||
|
|
||
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
||
|
assert result["step_id"] == "init"
|
||
|
|
||
|
create_result = await hass.config_entries.options.async_configure(
|
||
|
result["flow_id"], {"time_between_update": 2}
|
||
|
)
|
||
|
|
||
|
assert create_result["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY
|
||
|
assert create_result["data"] == {"time_between_update": 2}
|