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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
"""Tests for the YouTube client."""
import asyncio
import aiohttp
import pytest
from aiohttp.web_request import BaseRequest
from aresponses import Response, ResponsesMockServer
from youtubeaio.types import (
ForbiddenError,
UnauthorizedError,
YouTubeAPIError,
YouTubeBackendError,
YouTubeResourceNotFoundError,
)
from youtubeaio.youtube import YouTube
from . import load_fixture
from .const import YOUTUBE_URL
async def test_new_session(
aresponses: ResponsesMockServer,
) -> None:
"""Test retrieving a video."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "application/json"},
text=load_fixture("video_response_snippet.json"),
),
)
async with YouTube() as youtube:
assert not youtube.session
await youtube.get_video(video_id="Ks-_Mh1QhMc")
assert youtube.session
async def test_timeout(aresponses: ResponsesMockServer) -> None:
"""Test request timeout."""
# Faking a timeout by sleeping
async def response_handler(_: BaseRequest) -> Response:
"""Response handler for this test."""
await asyncio.sleep(2)
return aresponses.Response(body="Goodmorning!")
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
response_handler,
)
youtube = YouTube(session_timeout=1)
with pytest.raises(YouTubeBackendError):
assert await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_fetch_video_not_found(
aresponses: ResponsesMockServer,
) -> None:
"""Test retrieving a non-existent video."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=404,
headers={"Content-Type": "application/json"},
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(YouTubeResourceNotFoundError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_general_error_handling(
aresponses: ResponsesMockServer,
) -> None:
"""Test throwing unexpected error."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=418,
headers={"Content-Type": "application/json"},
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(YouTubeAPIError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_unexpected_server_response(
aresponses: ResponsesMockServer,
) -> None:
"""Test handling a server error."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "plain/text"},
text="Yes",
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(YouTubeAPIError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_internal_server_error(
aresponses: ResponsesMockServer,
) -> None:
"""Test handling an internal server error."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=500,
headers={"Content-Type": "plain/text"},
text="Yes",
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(YouTubeBackendError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_bad_request(
aresponses: ResponsesMockServer,
) -> None:
"""Test handling a bad request."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=400,
headers={"Content-Type": "application/json"},
text='{"message":"Something went wrong"}',
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(YouTubeAPIError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_unauthorized(
aresponses: ResponsesMockServer,
) -> None:
"""Test handling being unauthorized."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=401,
headers={"Content-Type": "application/json"},
text='{"message":"Something went wrong"}',
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(UnauthorizedError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
async def test_not_activated(
aresponses: ResponsesMockServer,
) -> None:
"""Test handling YouTube api not activated."""
aresponses.add(
YOUTUBE_URL,
"/youtube/v3/videos",
"GET",
aresponses.Response(
status=403,
headers={"Content-Type": "application/json"},
text=load_fixture("youtube_not_activated.json"),
),
)
async with aiohttp.ClientSession() as session:
youtube = YouTube(session=session)
with pytest.raises(ForbiddenError):
await youtube.get_video(video_id="Ks-_Mh1QhMc")
await youtube.close()
|