* Update entity registry handling * Add and use fixtures to test setup via config entry * Remove legacy redundant tests * Remove unnecessary mock_coro * Remove unnecessary namespace change * Move zeroconf payload to fixture * Begin adding Sonos to codecov * Mock proper return value * Revert return value for platform
54 lines
1.9 KiB
Python
54 lines
1.9 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
|
|
|
|
|
|
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",
|
|
) as mock_setup, patch("soco.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=True,
|
|
) as mock_setup, patch("soco.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=True,
|
|
) as mock_setup, patch("soco.discover", return_value=True):
|
|
await async_setup_component(hass, sonos.DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 0
|