368 lines
12 KiB
Python
368 lines
12 KiB
Python
"""Test the La Marzocco config flow."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from lmcloud.exceptions import AuthFail, RequestNotSuccessful
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.lamarzocco.const import (
|
|
CONF_MACHINE,
|
|
CONF_USE_BLUETOOTH,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.config_entries import SOURCE_REAUTH, ConfigEntryState
|
|
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_NAME, CONF_PASSWORD
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResult, FlowResultType
|
|
|
|
from . import USER_INPUT, async_init_integration, get_bluetooth_service_info
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def __do_successful_user_step(
|
|
hass: HomeAssistant, result: FlowResult
|
|
) -> FlowResult:
|
|
"""Successfully configure the user step."""
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["step_id"] == "machine_selection"
|
|
return result2
|
|
|
|
|
|
async def __do_sucessful_machine_selection_step(
|
|
hass: HomeAssistant, result2: FlowResult, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Successfully configure the machine selection step."""
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
{
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
assert result3["title"] == mock_lamarzocco.serial_number
|
|
assert result3["data"] == {
|
|
**USER_INPUT,
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
}
|
|
|
|
|
|
async def test_form(hass: HomeAssistant, mock_lamarzocco: MagicMock) -> 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"] == {}
|
|
assert result["step_id"] == "user"
|
|
|
|
result2 = await __do_successful_user_step(hass, result)
|
|
await __do_sucessful_machine_selection_step(hass, result2, mock_lamarzocco)
|
|
|
|
assert len(mock_lamarzocco.check_local_connection.mock_calls) == 1
|
|
|
|
|
|
async def test_form_abort_already_configured(
|
|
hass: HomeAssistant,
|
|
mock_lamarzocco: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test we abort if already configured."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["step_id"] == "machine_selection"
|
|
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
{
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3["type"] is FlowResultType.ABORT
|
|
assert result3["reason"] == "already_configured"
|
|
|
|
|
|
async def test_form_invalid_auth(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Test invalid auth error."""
|
|
|
|
mock_lamarzocco.get_all_machines.side_effect = AuthFail("")
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "invalid_auth"}
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
|
|
# test recovery from failure
|
|
mock_lamarzocco.get_all_machines.side_effect = None
|
|
result2 = await __do_successful_user_step(hass, result)
|
|
await __do_sucessful_machine_selection_step(hass, result2, mock_lamarzocco)
|
|
|
|
|
|
async def test_form_invalid_host(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Test invalid auth error."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["errors"] == {}
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
mock_lamarzocco.check_local_connection.return_value = False
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["step_id"] == "machine_selection"
|
|
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
{
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3["type"] is FlowResultType.FORM
|
|
assert result3["errors"] == {"host": "cannot_connect"}
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
|
|
# test recovery from failure
|
|
mock_lamarzocco.check_local_connection.return_value = True
|
|
await __do_sucessful_machine_selection_step(hass, result2, mock_lamarzocco)
|
|
|
|
|
|
async def test_form_cannot_connect(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Test cannot connect error."""
|
|
|
|
mock_lamarzocco.get_all_machines.return_value = []
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "no_machines"}
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
|
|
mock_lamarzocco.get_all_machines.side_effect = RequestNotSuccessful("")
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 2
|
|
|
|
# test recovery from failure
|
|
mock_lamarzocco.get_all_machines.side_effect = None
|
|
mock_lamarzocco.get_all_machines.return_value = [
|
|
(mock_lamarzocco.serial_number, mock_lamarzocco.model_name)
|
|
]
|
|
result2 = await __do_successful_user_step(hass, result)
|
|
await __do_sucessful_machine_selection_step(hass, result2, mock_lamarzocco)
|
|
|
|
|
|
async def test_reauth_flow(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock, mock_config_entry: MockConfigEntry
|
|
) -> None:
|
|
"""Test that the reauth flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={
|
|
"source": SOURCE_REAUTH,
|
|
"unique_id": mock_config_entry.unique_id,
|
|
"entry_id": mock_config_entry.entry_id,
|
|
},
|
|
data=mock_config_entry.data,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "reauth_confirm"
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{CONF_PASSWORD: "new_password"},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.ABORT
|
|
await hass.async_block_till_done()
|
|
assert result2["reason"] == "reauth_successful"
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
assert mock_config_entry.data[CONF_PASSWORD] == "new_password"
|
|
|
|
|
|
async def test_bluetooth_discovery(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Test bluetooth discovery."""
|
|
service_info = get_bluetooth_service_info(
|
|
mock_lamarzocco.model_name, mock_lamarzocco.serial_number
|
|
)
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_BLUETOOTH}, data=service_info
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["step_id"] == "machine_selection"
|
|
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
{
|
|
CONF_HOST: "192.168.1.1",
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
assert result3["title"] == mock_lamarzocco.serial_number
|
|
assert result3["data"] == {
|
|
**USER_INPUT,
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
CONF_NAME: service_info.name,
|
|
CONF_MAC: "aa:bb:cc:dd:ee:ff",
|
|
}
|
|
|
|
assert len(mock_lamarzocco.check_local_connection.mock_calls) == 1
|
|
|
|
|
|
async def test_bluetooth_discovery_errors(
|
|
hass: HomeAssistant, mock_lamarzocco: MagicMock
|
|
) -> None:
|
|
"""Test bluetooth discovery errors."""
|
|
service_info = get_bluetooth_service_info(
|
|
mock_lamarzocco.model_name, mock_lamarzocco.serial_number
|
|
)
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_BLUETOOTH},
|
|
data=service_info,
|
|
)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
mock_lamarzocco.get_all_machines.return_value = [("GS98765", "GS3 MP")]
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "machine_not_found"}
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 1
|
|
|
|
mock_lamarzocco.get_all_machines.return_value = [
|
|
(mock_lamarzocco.serial_number, mock_lamarzocco.model_name)
|
|
]
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
USER_INPUT,
|
|
)
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["step_id"] == "machine_selection"
|
|
assert len(mock_lamarzocco.get_all_machines.mock_calls) == 2
|
|
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
{
|
|
CONF_HOST: "192.168.1.1",
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result3["type"] is FlowResultType.CREATE_ENTRY
|
|
|
|
assert result3["title"] == mock_lamarzocco.serial_number
|
|
assert result3["data"] == {
|
|
**USER_INPUT,
|
|
CONF_HOST: "192.168.1.1",
|
|
CONF_MACHINE: mock_lamarzocco.serial_number,
|
|
CONF_NAME: service_info.name,
|
|
CONF_MAC: "aa:bb:cc:dd:ee:ff",
|
|
}
|
|
|
|
|
|
async def test_options_flow(
|
|
hass: HomeAssistant,
|
|
mock_lamarzocco: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test options flow."""
|
|
await async_init_integration(hass, mock_config_entry)
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
result = await hass.config_entries.options.async_init(mock_config_entry.entry_id)
|
|
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "init"
|
|
|
|
result2 = await hass.config_entries.options.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_USE_BLUETOOTH: False,
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert result2["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result2["data"] == {
|
|
CONF_USE_BLUETOOTH: False,
|
|
}
|