1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
"""Asynchronous Python client for Spotify."""
from collections.abc import AsyncGenerator, Generator
import aiohttp
from aioresponses import aioresponses
import pytest
from spotifyaio import SpotifyClient
from syrupy import SnapshotAssertion
from .syrupy import SpotifySnapshotExtension
@pytest.fixture(name="snapshot")
def snapshot_assertion(snapshot: SnapshotAssertion) -> SnapshotAssertion:
"""Return snapshot assertion fixture with the Spotify extension."""
return snapshot.use_extension(SpotifySnapshotExtension)
@pytest.fixture(name="spotify_client")
async def client() -> AsyncGenerator[SpotifyClient, None]:
"""Return a Spotify client."""
async with (
aiohttp.ClientSession() as session,
SpotifyClient(
session=session,
) as spotify_client,
):
yield spotify_client
@pytest.fixture(name="authenticated_client")
async def authenticated_client(
spotify_client: SpotifyClient,
) -> SpotifyClient:
"""Return an authenticated Spotify client."""
spotify_client.authenticate("test")
return spotify_client
@pytest.fixture(name="responses")
def aioresponses_fixture() -> Generator[aioresponses, None, None]:
"""Return aioresponses fixture."""
with aioresponses() as mocked_responses:
yield mocked_responses
|