2020-02-25 23:37:41 +00:00
|
|
|
"""Test the Sense config flow."""
|
|
|
|
from sense_energy import SenseAPITimeoutException, SenseAuthenticationException
|
|
|
|
|
|
|
|
from homeassistant import config_entries, setup
|
|
|
|
from homeassistant.components.sense.const import DOMAIN
|
|
|
|
|
2020-04-30 20:29:50 +00:00
|
|
|
from tests.async_mock import patch
|
|
|
|
|
2020-02-25 23:37:41 +00:00
|
|
|
|
|
|
|
async def test_form(hass):
|
|
|
|
"""Test we get the form."""
|
|
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
|
|
assert result["errors"] == {}
|
|
|
|
|
|
|
|
with patch("sense_energy.ASyncSenseable.authenticate", return_value=True,), patch(
|
|
|
|
"homeassistant.components.sense.async_setup", return_value=True
|
|
|
|
) as mock_setup, patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.sense.async_setup_entry",
|
|
|
|
return_value=True,
|
2020-02-25 23:37:41 +00:00
|
|
|
) as mock_setup_entry:
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"],
|
|
|
|
{"timeout": "6", "email": "test-email", "password": "test-password"},
|
|
|
|
)
|
2020-10-24 14:20:56 +00:00
|
|
|
await hass.async_block_till_done()
|
2020-02-25 23:37:41 +00:00
|
|
|
|
|
|
|
assert result2["type"] == "create_entry"
|
|
|
|
assert result2["title"] == "test-email"
|
|
|
|
assert result2["data"] == {
|
|
|
|
"timeout": 6,
|
|
|
|
"email": "test-email",
|
|
|
|
"password": "test-password",
|
|
|
|
}
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
|
|
|
|
|
|
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(
|
|
|
|
"sense_energy.ASyncSenseable.authenticate",
|
|
|
|
side_effect=SenseAuthenticationException,
|
|
|
|
):
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"],
|
|
|
|
{"timeout": "6", "email": "test-email", "password": "test-password"},
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "invalid_auth"}
|
|
|
|
|
|
|
|
|
|
|
|
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(
|
|
|
|
"sense_energy.ASyncSenseable.authenticate",
|
|
|
|
side_effect=SenseAPITimeoutException,
|
|
|
|
):
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"],
|
|
|
|
{"timeout": "6", "email": "test-email", "password": "test-password"},
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|