mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 21:54:27 +01:00
5472a537ed
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
79 lines
2.6 KiB
Python
79 lines
2.6 KiB
Python
"""Test AfterShip config flow."""
|
|
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from pyaftership import AfterShipException
|
|
import pytest
|
|
|
|
from homeassistant.components.aftership.const import DOMAIN
|
|
from homeassistant.config_entries import SOURCE_USER
|
|
from homeassistant.const import CONF_API_KEY
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_setup_entry")
|
|
async def test_full_user_flow(hass: HomeAssistant) -> None:
|
|
"""Test the full user configuration flow."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.aftership.config_flow.AfterShip",
|
|
return_value=AsyncMock(),
|
|
) as mock_aftership:
|
|
mock_aftership.return_value.trackings.return_value.list.return_value = {}
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_API_KEY: "mock-api-key",
|
|
},
|
|
)
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "AfterShip"
|
|
assert result["data"] == {
|
|
CONF_API_KEY: "mock-api-key",
|
|
}
|
|
|
|
|
|
@pytest.mark.usefixtures("mock_setup_entry")
|
|
async def test_flow_cannot_connect(hass: HomeAssistant) -> None:
|
|
"""Test handling invalid connection."""
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_USER},
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.aftership.config_flow.AfterShip",
|
|
return_value=AsyncMock(),
|
|
) as mock_aftership:
|
|
mock_aftership.side_effect = AfterShipException
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_API_KEY: "mock-api-key",
|
|
},
|
|
)
|
|
assert result["type"] is FlowResultType.FORM
|
|
assert result["step_id"] == "user"
|
|
|
|
with patch(
|
|
"homeassistant.components.aftership.config_flow.AfterShip",
|
|
return_value=AsyncMock(),
|
|
) as mock_aftership:
|
|
mock_aftership.return_value.trackings.return_value.list.return_value = {}
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={
|
|
CONF_API_KEY: "mock-api-key",
|
|
},
|
|
)
|
|
assert result["type"] is FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "AfterShip"
|
|
assert result["data"] == {
|
|
CONF_API_KEY: "mock-api-key",
|
|
}
|