mirror of https://github.com/home-assistant/core
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
"""Tests for the Spotify initialization."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from spotifyaio import SpotifyConnectionError
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.usefixtures("setup_credentials")
|
|
async def test_setup(
|
|
hass: HomeAssistant,
|
|
mock_spotify: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test the Spotify setup."""
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
@pytest.mark.usefixtures("setup_credentials")
|
|
@pytest.mark.parametrize(
|
|
"method",
|
|
[
|
|
"get_current_user",
|
|
"get_devices",
|
|
],
|
|
)
|
|
async def test_setup_with_required_calls_failing(
|
|
hass: HomeAssistant,
|
|
mock_spotify: MagicMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
method: str,
|
|
) -> None:
|
|
"""Test the Spotify setup with required calls failing."""
|
|
getattr(mock_spotify.return_value, method).side_effect = SpotifyConnectionError
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
assert not await hass.config_entries.async_setup(mock_config_entry.entry_id)
|