110 lines
3.9 KiB
Python
110 lines
3.9 KiB
Python
"""Test the Powerwall config flow."""
|
|
|
|
from tesla_powerwall import APIChangedError, PowerwallUnreachableError
|
|
|
|
from homeassistant import config_entries, setup
|
|
from homeassistant.components.powerwall.const import DOMAIN
|
|
from homeassistant.const import CONF_IP_ADDRESS
|
|
|
|
from .mocks import _mock_powerwall_side_effect, _mock_powerwall_site_name
|
|
|
|
from tests.async_mock import patch
|
|
|
|
|
|
async def test_form_source_user(hass):
|
|
"""Test we get config flow setup form as a user."""
|
|
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"] == {}
|
|
|
|
mock_powerwall = await _mock_powerwall_site_name(hass, "My site")
|
|
|
|
with patch(
|
|
"homeassistant.components.powerwall.config_flow.Powerwall",
|
|
return_value=mock_powerwall,
|
|
), patch(
|
|
"homeassistant.components.powerwall.async_setup", return_value=True
|
|
) as mock_setup, patch(
|
|
"homeassistant.components.powerwall.async_setup_entry", return_value=True,
|
|
) as mock_setup_entry:
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {CONF_IP_ADDRESS: "1.2.3.4"},
|
|
)
|
|
|
|
assert result2["type"] == "create_entry"
|
|
assert result2["title"] == "My site"
|
|
assert result2["data"] == {CONF_IP_ADDRESS: "1.2.3.4"}
|
|
await hass.async_block_till_done()
|
|
assert len(mock_setup.mock_calls) == 1
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_form_source_import(hass):
|
|
"""Test we setup the config entry via import."""
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
mock_powerwall = await _mock_powerwall_site_name(hass, "Imported site")
|
|
with patch(
|
|
"homeassistant.components.powerwall.config_flow.Powerwall",
|
|
return_value=mock_powerwall,
|
|
), patch(
|
|
"homeassistant.components.powerwall.async_setup", return_value=True
|
|
) as mock_setup, patch(
|
|
"homeassistant.components.powerwall.async_setup_entry", return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_IMPORT},
|
|
data={CONF_IP_ADDRESS: "1.2.3.4"},
|
|
)
|
|
|
|
assert result["type"] == "create_entry"
|
|
assert result["title"] == "Imported site"
|
|
assert result["data"] == {CONF_IP_ADDRESS: "1.2.3.4"}
|
|
await hass.async_block_till_done()
|
|
assert len(mock_setup.mock_calls) == 1
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
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}
|
|
)
|
|
|
|
mock_powerwall = _mock_powerwall_side_effect(site_info=PowerwallUnreachableError)
|
|
|
|
with patch(
|
|
"homeassistant.components.powerwall.config_flow.Powerwall",
|
|
return_value=mock_powerwall,
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {CONF_IP_ADDRESS: "1.2.3.4"},
|
|
)
|
|
|
|
assert result2["type"] == "form"
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
async def test_form_wrong_version(hass):
|
|
"""Test we can handle wrong version error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
mock_powerwall = _mock_powerwall_side_effect(site_info=APIChangedError(object, {}))
|
|
|
|
with patch(
|
|
"homeassistant.components.powerwall.config_flow.Powerwall",
|
|
return_value=mock_powerwall,
|
|
):
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {CONF_IP_ADDRESS: "1.2.3.4"},
|
|
)
|
|
|
|
assert result3["type"] == "form"
|
|
assert result3["errors"] == {"base": "wrong_version"}
|