55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
"""Test the Z-Wave over MQTT config flow."""
|
|
from homeassistant import config_entries, setup
|
|
from homeassistant.components.ozw.config_flow import TITLE
|
|
from homeassistant.components.ozw.const import DOMAIN
|
|
|
|
from tests.async_mock import patch
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_user_create_entry(hass):
|
|
"""Test the user step creates an entry."""
|
|
hass.config.components.add("mqtt")
|
|
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"] is None
|
|
|
|
with patch(
|
|
"homeassistant.components.ozw.async_setup", return_value=True
|
|
) as mock_setup, patch(
|
|
"homeassistant.components.ozw.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result2 = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
|
|
assert result2["type"] == "create_entry"
|
|
assert result2["title"] == TITLE
|
|
assert result2["data"] == {}
|
|
await hass.async_block_till_done()
|
|
assert len(mock_setup.mock_calls) == 1
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
async def test_mqtt_not_setup(hass):
|
|
"""Test that mqtt is required."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] == "abort"
|
|
assert result["reason"] == "mqtt_required"
|
|
|
|
|
|
async def test_one_instance_allowed(hass):
|
|
"""Test that only one instance is allowed."""
|
|
entry = MockConfigEntry(domain=DOMAIN, data={}, title=TITLE)
|
|
entry.add_to_hass(hass)
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] == "abort"
|
|
assert result["reason"] == "single_instance_allowed"
|