144 lines
4.6 KiB
Python
144 lines
4.6 KiB
Python
"""Test the UPB Control config flow."""
|
|
|
|
from unittest.mock import MagicMock, PropertyMock, patch
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.upb.const import DOMAIN
|
|
|
|
|
|
def mocked_upb(sync_complete=True, config_ok=True):
|
|
"""Mock UPB lib."""
|
|
|
|
def _upb_lib_connect(callback):
|
|
callback()
|
|
|
|
upb_mock = MagicMock()
|
|
type(upb_mock).network_id = PropertyMock(return_value="42")
|
|
type(upb_mock).config_ok = PropertyMock(return_value=config_ok)
|
|
if sync_complete:
|
|
upb_mock.connect.side_effect = _upb_lib_connect
|
|
return patch(
|
|
"homeassistant.components.upb.config_flow.upb_lib.UpbPim", return_value=upb_mock
|
|
)
|
|
|
|
|
|
async def valid_tcp_flow(hass, sync_complete=True, config_ok=True):
|
|
"""Get result dict that are standard for most tests."""
|
|
|
|
with mocked_upb(sync_complete, config_ok), patch(
|
|
"homeassistant.components.upb.async_setup_entry", return_value=True
|
|
):
|
|
flow = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
result = await hass.config_entries.flow.async_configure(
|
|
flow["flow_id"],
|
|
{"protocol": "TCP", "address": "1.2.3.4", "file_path": "upb.upe"},
|
|
)
|
|
return result
|
|
|
|
|
|
async def test_full_upb_flow_with_serial_port(hass):
|
|
"""Test a full UPB config flow with serial port."""
|
|
|
|
with mocked_upb(), patch(
|
|
"homeassistant.components.upb.async_setup_entry", return_value=True
|
|
) as mock_setup_entry:
|
|
flow = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
flow["flow_id"],
|
|
{
|
|
"protocol": "Serial port",
|
|
"address": "/dev/ttyS0:115200",
|
|
"file_path": "upb.upe",
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert flow["type"] == "form"
|
|
assert flow["errors"] == {}
|
|
assert result["type"] == "create_entry"
|
|
assert result["title"] == "UPB"
|
|
assert result["data"] == {
|
|
"host": "serial:///dev/ttyS0:115200",
|
|
"file_path": "upb.upe",
|
|
}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_form_user_with_tcp_upb(hass):
|
|
"""Test we can setup a serial upb."""
|
|
result = await valid_tcp_flow(hass)
|
|
assert result["type"] == "create_entry"
|
|
assert result["data"] == {"host": "tcp://1.2.3.4", "file_path": "upb.upe"}
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
async def test_form_cannot_connect(hass):
|
|
"""Test we handle cannot connect error."""
|
|
from asyncio import TimeoutError
|
|
|
|
with patch(
|
|
"homeassistant.components.upb.config_flow.async_timeout.timeout",
|
|
side_effect=TimeoutError,
|
|
):
|
|
result = await valid_tcp_flow(hass, sync_complete=False)
|
|
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
async def test_form_missing_upb_file(hass):
|
|
"""Test we handle cannot connect error."""
|
|
result = await valid_tcp_flow(hass, config_ok=False)
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "invalid_upb_file"}
|
|
|
|
|
|
async def test_form_user_with_already_configured(hass):
|
|
"""Test we can setup a TCP upb."""
|
|
_ = await valid_tcp_flow(hass)
|
|
result2 = await valid_tcp_flow(hass)
|
|
assert result2["type"] == "abort"
|
|
assert result2["reason"] == "already_configured"
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
async def test_form_import(hass):
|
|
"""Test we get the form with import source."""
|
|
|
|
with mocked_upb(), patch(
|
|
"homeassistant.components.upb.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={"host": "tcp://42.4.2.42", "file_path": "upb.upe"},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == "create_entry"
|
|
assert result["title"] == "UPB"
|
|
|
|
assert result["data"] == {"host": "tcp://42.4.2.42", "file_path": "upb.upe"}
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_form_junk_input(hass):
|
|
"""Test we get the form with import source."""
|
|
|
|
with mocked_upb():
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_IMPORT},
|
|
data={"foo": "goo", "goo": "foo"},
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "unknown"}
|
|
|
|
await hass.async_block_till_done()
|