mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
196 lines
6.3 KiB
Python
196 lines
6.3 KiB
Python
"""Test the Wallbox config flow."""
|
|
|
|
from unittest.mock import Mock, patch
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.wallbox.const import (
|
|
CHARGER_ADDED_ENERGY_KEY,
|
|
CHARGER_ADDED_RANGE_KEY,
|
|
CHARGER_CHARGING_POWER_KEY,
|
|
CHARGER_CHARGING_SPEED_KEY,
|
|
CHARGER_DATA_KEY,
|
|
CHARGER_JWT_REFRESH_TOKEN,
|
|
CHARGER_JWT_TOKEN,
|
|
CHARGER_MAX_AVAILABLE_POWER_KEY,
|
|
CHARGER_MAX_CHARGING_CURRENT_KEY,
|
|
CONF_STATION,
|
|
DOMAIN,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from .conftest import http_403_error, http_404_error, setup_integration
|
|
from .const import WALLBOX_AUTHORISATION_RESPONSE_UNAUTHORISED
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
test_response = {
|
|
CHARGER_CHARGING_POWER_KEY: 0,
|
|
CHARGER_MAX_AVAILABLE_POWER_KEY: "xx",
|
|
CHARGER_CHARGING_SPEED_KEY: 0,
|
|
CHARGER_ADDED_RANGE_KEY: "xx",
|
|
CHARGER_ADDED_ENERGY_KEY: "44.697",
|
|
CHARGER_DATA_KEY: {CHARGER_MAX_CHARGING_CURRENT_KEY: 24},
|
|
}
|
|
|
|
|
|
async def test_show_set_form(hass: HomeAssistant, mock_wallbox) -> None:
|
|
"""Test that the setup form is served."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
|
|
async def test_form_cannot_authenticate(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(
|
|
"homeassistant.components.wallbox.Wallbox.authenticate",
|
|
new=Mock(side_effect=http_403_error),
|
|
),
|
|
patch(
|
|
"homeassistant.components.wallbox.Wallbox.pauseChargingSession",
|
|
new=Mock(side_effect=http_403_error),
|
|
),
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_STATION: "12345",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
)
|
|
|
|
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(
|
|
"homeassistant.components.wallbox.Wallbox.authenticate",
|
|
new=Mock(side_effect=http_404_error),
|
|
),
|
|
patch(
|
|
"homeassistant.components.wallbox.Wallbox.pauseChargingSession",
|
|
new=Mock(side_effect=http_404_error),
|
|
),
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_STATION: "12345",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "cannot_connect"}
|
|
|
|
|
|
async def test_form_validate_input(
|
|
hass: HomeAssistant, entry: MockConfigEntry, mock_wallbox
|
|
) -> None:
|
|
"""Test we can validate input."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
with (
|
|
patch(
|
|
"homeassistant.components.wallbox.config_flow.Wallbox",
|
|
return_value=mock_wallbox,
|
|
),
|
|
):
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_STATION: "12345",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
)
|
|
|
|
assert result2["title"] == "Wallbox Portal"
|
|
assert result2["data"][CONF_STATION] == "12345"
|
|
assert result2["data"][CONF_USERNAME] == "test-username"
|
|
assert result2["data"][CHARGER_JWT_TOKEN] == "test_token"
|
|
assert result2["data"][CHARGER_JWT_REFRESH_TOKEN] == "test_refresh_token"
|
|
|
|
|
|
async def test_form_reauth(
|
|
hass: HomeAssistant, entry: MockConfigEntry, mock_wallbox
|
|
) -> None:
|
|
"""Test we handle reauth flow."""
|
|
await setup_integration(hass, entry)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
with (
|
|
patch.object(
|
|
mock_wallbox,
|
|
"authenticate",
|
|
return_value=WALLBOX_AUTHORISATION_RESPONSE_UNAUTHORISED,
|
|
),
|
|
patch.object(mock_wallbox, "getChargerStatus", return_value=test_response),
|
|
):
|
|
result = await entry.start_reauth_flow(hass)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_STATION: "12345",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.ABORT
|
|
assert result2["reason"] == "reauth_successful"
|
|
|
|
await hass.async_block_till_done()
|
|
await hass.config_entries.async_unload(entry.entry_id)
|
|
|
|
|
|
async def test_form_reauth_invalid(
|
|
hass: HomeAssistant, entry: MockConfigEntry, mock_wallbox
|
|
) -> None:
|
|
"""Test we handle reauth invalid flow."""
|
|
await setup_integration(hass, entry)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
with (
|
|
patch.object(
|
|
mock_wallbox,
|
|
"authenticate",
|
|
return_value=WALLBOX_AUTHORISATION_RESPONSE_UNAUTHORISED,
|
|
),
|
|
patch.object(mock_wallbox, "getChargerStatus", return_value=test_response),
|
|
):
|
|
result = await entry.start_reauth_flow(hass)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
{
|
|
CONF_STATION: "12345678",
|
|
CONF_USERNAME: "test-username",
|
|
CONF_PASSWORD: "test-password",
|
|
},
|
|
)
|
|
|
|
assert result2["type"] is FlowResultType.FORM
|
|
assert result2["errors"] == {"base": "reauth_invalid"}
|
|
|
|
await hass.config_entries.async_unload(entry.entry_id)
|