mirror of https://github.com/home-assistant/core
137 lines
4.2 KiB
Python
137 lines
4.2 KiB
Python
"""Test the OpenGarage config flow."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import aiohttp
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.opengarage.const import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_form(hass: HomeAssistant) -> None:
|
|
"""Test we get the form."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] is None
|
|
|
|
with (
|
|
patch(
|
|
"opengarage.OpenGarage.update_state",
|
|
return_value={"name": "Name of the device", "mac": "unique"},
|
|
),
|
|
patch(
|
|
"homeassistant.components.opengarage.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry,
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{"host": "http://1.1.1.1", "device_key": "AfsasdnfkjDD"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result2["title"] == "Name of the device"
|
|
assert result2["data"] == {
|
|
"host": "http://1.1.1.1",
|
|
"device_key": "AfsasdnfkjDD",
|
|
"port": 80,
|
|
"verify_ssl": False,
|
|
}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
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": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"opengarage.OpenGarage.update_state",
|
|
return_value=None,
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{"host": "http://1.1.1.1", "device_key": "AfsasdnfkjDD"},
|
|
)
|
|
|
|
assert result2["type"] is 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": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"opengarage.OpenGarage.update_state",
|
|
side_effect=aiohttp.ClientError,
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{"host": "http://1.1.1.1", "device_key": "AfsasdnfkjDD"},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
async def test_form_unknown_error(hass: HomeAssistant) -> None:
|
|
"""Test we handle unknown error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
with patch(
|
|
"opengarage.OpenGarage.update_state",
|
|
side_effect=Exception,
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{"host": "http://1.1.1.1", "device_key": "AfsasdnfkjDD"},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "unknown"}
|
|
|
|
|
|
async def test_flow_entry_already_exists(hass: HomeAssistant) -> None:
|
|
"""Test user input for config_entry that already exists."""
|
|
first_entry = MockConfigEntry(
|
|
domain="opengarage",
|
|
data={
|
|
"host": "http://1.1.1.1",
|
|
"device_key": "AfsasdnfkjDD",
|
|
},
|
|
unique_id="unique",
|
|
)
|
|
first_entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"opengarage.OpenGarage.update_state",
|
|
return_value={"name": "Name of the device", "mac": "unique"},
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
"host": "http://1.1.1.1",
|
|
"device_key": "AfsasdnfkjDD",
|
|
"port": 80,
|
|
"verify_ssl": False,
|
|
},
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.ABORT
|
|
assert result["reason"] == "already_configured"
|