mirror of
https://github.com/home-assistant/core.git
synced 2026-02-25 20:35:09 +00:00
121 lines
3.7 KiB
Python
121 lines
3.7 KiB
Python
"""Test the HTML5 config flow."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant import config_entries, data_entry_flow
|
|
from homeassistant.components.html5.const import (
|
|
ATTR_VAPID_EMAIL,
|
|
ATTR_VAPID_PRV_KEY,
|
|
ATTR_VAPID_PUB_KEY,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.const import CONF_NAME
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .conftest import MOCK_CONF, MOCK_CONF_PUB_KEY
|
|
|
|
|
|
async def test_step_user_success(hass: HomeAssistant) -> None:
|
|
"""Test a successful user config flow."""
|
|
|
|
with patch(
|
|
"homeassistant.components.html5.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data=MOCK_CONF.copy(),
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert result["data"] == {
|
|
ATTR_VAPID_PRV_KEY: MOCK_CONF[ATTR_VAPID_PRV_KEY],
|
|
ATTR_VAPID_PUB_KEY: MOCK_CONF_PUB_KEY,
|
|
ATTR_VAPID_EMAIL: MOCK_CONF[ATTR_VAPID_EMAIL],
|
|
CONF_NAME: DOMAIN,
|
|
}
|
|
|
|
assert mock_setup_entry.call_count == 1
|
|
|
|
|
|
async def test_step_user_success_generate(hass: HomeAssistant) -> None:
|
|
"""Test a successful user config flow, generating a key pair."""
|
|
|
|
with patch(
|
|
"homeassistant.components.html5.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
conf = {ATTR_VAPID_EMAIL: MOCK_CONF[ATTR_VAPID_EMAIL]}
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}, data=conf
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert result["data"][ATTR_VAPID_EMAIL] == MOCK_CONF[ATTR_VAPID_EMAIL]
|
|
|
|
assert mock_setup_entry.call_count == 1
|
|
|
|
|
|
async def test_step_user_new_form(hass: HomeAssistant) -> None:
|
|
"""Test new user input."""
|
|
|
|
with patch(
|
|
"homeassistant.components.html5.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}, data=None
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] is data_entry_flow.FlowResultType.FORM
|
|
assert mock_setup_entry.call_count == 0
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], MOCK_CONF
|
|
)
|
|
assert result["type"] is data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert mock_setup_entry.call_count == 1
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("key", "value"),
|
|
[
|
|
(ATTR_VAPID_PRV_KEY, "invalid"),
|
|
],
|
|
)
|
|
async def test_step_user_form_invalid_key(
|
|
hass: HomeAssistant, key: str, value: str
|
|
) -> None:
|
|
"""Test invalid user input."""
|
|
|
|
with patch(
|
|
"homeassistant.components.html5.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
bad_conf = MOCK_CONF.copy()
|
|
bad_conf[key] = value
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}, data=bad_conf
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
|
assert mock_setup_entry.call_count == 0
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], MOCK_CONF
|
|
)
|
|
assert result["type"] is data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert mock_setup_entry.call_count == 1
|