* Copy Paste Find Replace * Small progress * wip * more wip * Add SSE listen and close * More rework * Fix coordinator * Get working * Bump to 0.1.3 * Push to 0.1.4 * Lots of fixes * Remove stream * Add wakeup * Improve set temp * Be consistent with self * Increase polling until streaming * Work in progress * Move to single climate * bump to 0.2.0 * Update entity * Data handling * fixes * WIP tests * Tests * Delete other tests * Update comment * Fix init * Update homeassistant/components/teslemetry/entity.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Add Codeowner * Update coverage * requirements * Add failure for subscription required * Add VIN to model * Add wake * Add context manager * Rename to wake_up_if_asleep * Remove context from coverage * change lock to context Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Improving Logger * Add url to subscription error * Errors cannot markdown * Fix logger Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * rename logger * Fix error logging * Apply suggestions from code review --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
"""Test the Teslemetry config flow."""
|
|
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from aiohttp import ClientConnectionError
|
|
import pytest
|
|
from tesla_fleet_api.exceptions import InvalidToken, PaymentRequired, TeslaFleetError
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.teslemetry.const import DOMAIN
|
|
from homeassistant.const import CONF_ACCESS_TOKEN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.data_entry_flow import FlowResultType
|
|
|
|
from .const import CONFIG
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def teslemetry_config_entry_mock():
|
|
"""Mock Teslemetry api class."""
|
|
with patch(
|
|
"homeassistant.components.teslemetry.config_flow.Teslemetry",
|
|
) as teslemetry_config_entry_mock:
|
|
teslemetry_config_entry_mock.return_value.test = AsyncMock()
|
|
yield teslemetry_config_entry_mock
|
|
|
|
|
|
async def test_form(
|
|
hass: HomeAssistant,
|
|
) -> None:
|
|
"""Test we get the form."""
|
|
|
|
result1 = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result1["type"] == FlowResultType.FORM
|
|
assert not result1["errors"]
|
|
|
|
with patch(
|
|
"homeassistant.components.teslemetry.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup_entry:
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result1["flow_id"],
|
|
CONFIG,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
assert result2["type"] == FlowResultType.CREATE_ENTRY
|
|
assert result2["data"] == CONFIG
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("side_effect", "error"),
|
|
[
|
|
(InvalidToken, {CONF_ACCESS_TOKEN: "invalid_access_token"}),
|
|
(PaymentRequired, {"base": "subscription_required"}),
|
|
(ClientConnectionError, {"base": "cannot_connect"}),
|
|
(TeslaFleetError, {"base": "unknown"}),
|
|
],
|
|
)
|
|
async def test_form_errors(
|
|
hass: HomeAssistant, side_effect, error, teslemetry_config_entry_mock
|
|
) -> None:
|
|
"""Test errors are handled."""
|
|
|
|
result1 = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
teslemetry_config_entry_mock.return_value.test.side_effect = side_effect
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
result1["flow_id"],
|
|
CONFIG,
|
|
)
|
|
|
|
assert result2["type"] == FlowResultType.FORM
|
|
assert result2["errors"] == error
|
|
|
|
# Complete the flow
|
|
teslemetry_config_entry_mock.return_value.test.side_effect = None
|
|
result3 = await hass.config_entries.flow.async_configure(
|
|
result2["flow_id"],
|
|
CONFIG,
|
|
)
|
|
assert result3["type"] == FlowResultType.CREATE_ENTRY
|