65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
"""Tests for the Sonos config flow."""
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant import config_entries, core, data_entry_flow
|
|
from homeassistant.components import sonos, zeroconf
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
async def test_creating_entry_sets_up_media_player(
|
|
hass: core.HomeAssistant, zeroconf_payload: zeroconf.ZeroconfServiceInfo
|
|
):
|
|
"""Test setting up Sonos loads the media player."""
|
|
|
|
# Initiate a discovery to allow a user config flow
|
|
await hass.config_entries.flow.async_init(
|
|
sonos.DOMAIN,
|
|
context={"source": config_entries.SOURCE_ZEROCONF},
|
|
data=zeroconf_payload,
|
|
)
|
|
|
|
with patch(
|
|
"homeassistant.components.sonos.media_player.async_setup_entry",
|
|
) as mock_setup:
|
|
result = await hass.config_entries.flow.async_init(
|
|
sonos.DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
# Confirmation form
|
|
assert result["type"] == data_entry_flow.FlowResultType.FORM
|
|
|
|
result = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
assert result["type"] == data_entry_flow.FlowResultType.CREATE_ENTRY
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
|
|
async def test_configuring_sonos_creates_entry(hass: core.HomeAssistant):
|
|
"""Test that specifying config will create an entry."""
|
|
with patch(
|
|
"homeassistant.components.sonos.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup:
|
|
await async_setup_component(
|
|
hass,
|
|
sonos.DOMAIN,
|
|
{"sonos": {"media_player": {"interface_addr": "127.0.0.1"}}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
|
|
async def test_not_configuring_sonos_not_creates_entry(hass: core.HomeAssistant):
|
|
"""Test that no config will not create an entry."""
|
|
with patch(
|
|
"homeassistant.components.sonos.async_setup_entry",
|
|
return_value=True,
|
|
) as mock_setup:
|
|
await async_setup_component(hass, sonos.DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 0
|