167 lines
5.0 KiB
Python
167 lines
5.0 KiB
Python
"""Test the Flipr config flow."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from requests.exceptions import HTTPError, Timeout
|
|
|
|
from homeassistant import config_entries, data_entry_flow
|
|
from homeassistant.components.flipr.const import CONF_FLIPR_ID, DOMAIN
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
|
|
|
|
|
@pytest.fixture(name="mock_setup")
|
|
def mock_setups():
|
|
"""Prevent setup."""
|
|
with patch(
|
|
"homeassistant.components.flipr.async_setup_entry",
|
|
return_value=True,
|
|
):
|
|
yield
|
|
|
|
|
|
async def test_show_form(hass):
|
|
"""Test we get the form."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
|
assert result["step_id"] == config_entries.SOURCE_USER
|
|
|
|
|
|
async def test_invalid_credential(hass, mock_setup):
|
|
"""Test invalid credential."""
|
|
with patch(
|
|
"flipr_api.FliprAPIRestClient.search_flipr_ids", side_effect=HTTPError()
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "bad_login",
|
|
CONF_PASSWORD: "bad_pass",
|
|
CONF_FLIPR_ID: "",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "invalid_auth"}
|
|
|
|
|
|
async def test_nominal_case(hass, mock_setup):
|
|
"""Test valid login form."""
|
|
with patch(
|
|
"flipr_api.FliprAPIRestClient.search_flipr_ids",
|
|
return_value=["flipid"],
|
|
) as mock_flipr_client:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "dummylogin",
|
|
CONF_PASSWORD: "dummypass",
|
|
CONF_FLIPR_ID: "flipid",
|
|
},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_flipr_client.mock_calls) == 1
|
|
|
|
assert result["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "flipid"
|
|
assert result["data"] == {
|
|
CONF_EMAIL: "dummylogin",
|
|
CONF_PASSWORD: "dummypass",
|
|
CONF_FLIPR_ID: "flipid",
|
|
}
|
|
|
|
|
|
async def test_multiple_flip_id(hass, mock_setup):
|
|
"""Test multiple flipr id adding a config step."""
|
|
with patch(
|
|
"flipr_api.FliprAPIRestClient.search_flipr_ids",
|
|
return_value=["FLIP1", "FLIP2"],
|
|
) as mock_flipr_client:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "dummylogin",
|
|
CONF_PASSWORD: "dummypass",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
|
assert result["step_id"] == "flipr_id"
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"],
|
|
user_input={CONF_FLIPR_ID: "FLIP2"},
|
|
)
|
|
|
|
assert len(mock_flipr_client.mock_calls) == 1
|
|
|
|
assert result["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
assert result["title"] == "FLIP2"
|
|
assert result["data"] == {
|
|
CONF_EMAIL: "dummylogin",
|
|
CONF_PASSWORD: "dummypass",
|
|
CONF_FLIPR_ID: "FLIP2",
|
|
}
|
|
|
|
|
|
async def test_no_flip_id(hass, mock_setup):
|
|
"""Test no flipr id found."""
|
|
with patch(
|
|
"flipr_api.FliprAPIRestClient.search_flipr_ids",
|
|
return_value=[],
|
|
) as mock_flipr_client:
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "dummylogin",
|
|
CONF_PASSWORD: "dummypass",
|
|
},
|
|
)
|
|
|
|
assert result["step_id"] == "user"
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "no_flipr_id_found"}
|
|
|
|
assert len(mock_flipr_client.mock_calls) == 1
|
|
|
|
|
|
async def test_http_errors(hass, mock_setup):
|
|
"""Test HTTP Errors."""
|
|
with patch("flipr_api.FliprAPIRestClient.search_flipr_ids", side_effect=Timeout()):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "nada",
|
|
CONF_PASSWORD: "nada",
|
|
CONF_FLIPR_ID: "",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "cannot_connect"}
|
|
|
|
with patch(
|
|
"flipr_api.FliprAPIRestClient.search_flipr_ids",
|
|
side_effect=Exception("Bad request Boy :) --"),
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_USER},
|
|
data={
|
|
CONF_EMAIL: "nada",
|
|
CONF_PASSWORD: "nada",
|
|
CONF_FLIPR_ID: "",
|
|
},
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
assert result["errors"] == {"base": "unknown"}
|