56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
"""Tests for the Sonos config flow."""
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant import config_entries, data_entry_flow
|
|
from homeassistant.components import sonos
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import mock_coro
|
|
|
|
|
|
async def test_creating_entry_sets_up_media_player(hass):
|
|
"""Test setting up Sonos loads the media player."""
|
|
with patch(
|
|
"homeassistant.components.sonos.media_player.async_setup_entry",
|
|
return_value=mock_coro(True),
|
|
) as mock_setup, patch("pysonos.discover", return_value=True):
|
|
result = await hass.config_entries.flow.async_init(
|
|
sonos.DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
# Confirmation form
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
result = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
|
|
async def test_configuring_sonos_creates_entry(hass):
|
|
"""Test that specifying config will create an entry."""
|
|
with patch(
|
|
"homeassistant.components.sonos.async_setup_entry", return_value=mock_coro(True)
|
|
) as mock_setup, patch("pysonos.discover", return_value=True):
|
|
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):
|
|
"""Test that no config will not create an entry."""
|
|
with patch(
|
|
"homeassistant.components.sonos.async_setup_entry", return_value=mock_coro(True)
|
|
) as mock_setup, patch("pysonos.discover", return_value=True):
|
|
await async_setup_component(hass, sonos.DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 0
|