2020-08-12 13:09:47 +00:00
|
|
|
"""Test the roon config flow."""
|
2021-01-01 21:31:56 +00:00
|
|
|
from unittest.mock import patch
|
|
|
|
|
2020-08-12 13:09:47 +00:00
|
|
|
from homeassistant import config_entries, setup
|
|
|
|
from homeassistant.components.roon.const import DOMAIN
|
|
|
|
from homeassistant.const import CONF_HOST
|
|
|
|
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
|
|
|
|
|
|
class RoonApiMock:
|
|
|
|
"""Mock to handle returning tokens for testing the RoonApi."""
|
|
|
|
|
|
|
|
def __init__(self, token):
|
|
|
|
"""Initialize."""
|
|
|
|
self._token = token
|
|
|
|
|
|
|
|
@property
|
|
|
|
def token(self):
|
|
|
|
"""Return the auth token from the api."""
|
|
|
|
return self._token
|
|
|
|
|
|
|
|
def stop(self): # pylint: disable=no-self-use
|
|
|
|
"""Close down the api."""
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_and_auth(hass):
|
|
|
|
"""Test we get the form."""
|
|
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
|
|
assert result["errors"] == {}
|
|
|
|
|
|
|
|
with patch("homeassistant.components.roon.config_flow.TIMEOUT", 0,), patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.const.AUTHENTICATE_TIMEOUT",
|
|
|
|
0,
|
2020-08-12 13:09:47 +00:00
|
|
|
), patch(
|
|
|
|
"homeassistant.components.roon.config_flow.RoonApi",
|
|
|
|
return_value=RoonApiMock("good_token"),
|
|
|
|
), patch(
|
|
|
|
"homeassistant.components.roon.async_setup", return_value=True
|
|
|
|
) as mock_setup, patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.async_setup_entry",
|
|
|
|
return_value=True,
|
2020-08-12 13:09:47 +00:00
|
|
|
) as mock_setup_entry:
|
|
|
|
await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], {"host": "1.1.1.1"}
|
|
|
|
)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], user_input={}
|
|
|
|
)
|
2020-10-24 14:20:56 +00:00
|
|
|
await hass.async_block_till_done()
|
2020-08-12 13:09:47 +00:00
|
|
|
|
|
|
|
assert result2["type"] == "create_entry"
|
|
|
|
assert result2["title"] == "Roon Labs Music Player"
|
|
|
|
assert result2["data"] == {"host": "1.1.1.1", "api_key": "good_token"}
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 1
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_no_token(hass):
|
|
|
|
"""Test we handle no token being returned (timeout or not authorized)."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
with patch("homeassistant.components.roon.config_flow.TIMEOUT", 0,), patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.const.AUTHENTICATE_TIMEOUT",
|
|
|
|
0,
|
2020-08-12 13:09:47 +00:00
|
|
|
), patch(
|
|
|
|
"homeassistant.components.roon.config_flow.RoonApi",
|
|
|
|
return_value=RoonApiMock(None),
|
|
|
|
):
|
|
|
|
await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], {"host": "1.1.1.1"}
|
|
|
|
)
|
|
|
|
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], user_input={}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "invalid_auth"}
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_unknown_exception(hass):
|
|
|
|
"""Test we handle cannot connect error."""
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
|
|
|
|
with patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.config_flow.RoonApi",
|
|
|
|
side_effect=Exception,
|
2020-08-12 13:09:47 +00:00
|
|
|
):
|
|
|
|
await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], {"host": "1.1.1.1"}
|
|
|
|
)
|
|
|
|
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], user_input={}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "unknown"}
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_host_already_exists(hass):
|
|
|
|
"""Test we add the host if the config exists and it isn't a duplicate."""
|
|
|
|
|
|
|
|
MockConfigEntry(domain=DOMAIN, data={CONF_HOST: "existing_host"}).add_to_hass(hass)
|
|
|
|
|
|
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
|
|
assert result["errors"] == {}
|
|
|
|
|
|
|
|
with patch("homeassistant.components.roon.config_flow.TIMEOUT", 0,), patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.const.AUTHENTICATE_TIMEOUT",
|
|
|
|
0,
|
2020-08-12 13:09:47 +00:00
|
|
|
), patch(
|
|
|
|
"homeassistant.components.roon.config_flow.RoonApi",
|
|
|
|
return_value=RoonApiMock("good_token"),
|
|
|
|
), patch(
|
|
|
|
"homeassistant.components.roon.async_setup", return_value=True
|
|
|
|
) as mock_setup, patch(
|
2020-08-27 11:56:20 +00:00
|
|
|
"homeassistant.components.roon.async_setup_entry",
|
|
|
|
return_value=True,
|
2020-08-12 13:09:47 +00:00
|
|
|
) as mock_setup_entry:
|
|
|
|
await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], {"host": "1.1.1.1"}
|
|
|
|
)
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], user_input={}
|
|
|
|
)
|
2020-10-24 14:20:56 +00:00
|
|
|
await hass.async_block_till_done()
|
2020-08-12 13:09:47 +00:00
|
|
|
|
|
|
|
assert result2["type"] == "create_entry"
|
|
|
|
assert result2["title"] == "Roon Labs Music Player"
|
|
|
|
assert result2["data"] == {"host": "1.1.1.1", "api_key": "good_token"}
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
assert len(mock_setup_entry.mock_calls) == 2
|
|
|
|
|
|
|
|
|
|
|
|
async def test_form_duplicate_host(hass):
|
|
|
|
"""Test we don't add the host if it's a duplicate."""
|
|
|
|
|
|
|
|
MockConfigEntry(domain=DOMAIN, data={CONF_HOST: "existing_host"}).add_to_hass(hass)
|
|
|
|
|
|
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
|
|
)
|
|
|
|
assert result["type"] == "form"
|
|
|
|
assert result["errors"] == {}
|
|
|
|
|
|
|
|
result2 = await hass.config_entries.flow.async_configure(
|
|
|
|
result["flow_id"], {"host": "existing_host"}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert result2["type"] == "form"
|
|
|
|
assert result2["errors"] == {"base": "duplicate_entry"}
|