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
|
"""Tests for the helper module."""
from __future__ import annotations
from datetime import timedelta
from typing import TYPE_CHECKING, Any
import pytest
from youtubeaio.helper import build_scope, build_url, chunk, first, get_duration, limit
from youtubeaio.types import AuthScope
if TYPE_CHECKING:
from collections.abc import AsyncGenerator
async def _generator(amount: int) -> AsyncGenerator[int, None]:
for i in range(amount):
yield i
async def test_first() -> None:
"""Test if the first method works."""
first_variable = await first(_generator(1))
assert first_variable == 0
async def test_first_unavailable() -> None:
"""Test if the first method works."""
second_variable = await first(_generator(0))
assert second_variable is None
def test_chunk() -> None:
"""Test if the chunk method works."""
source = list(range(10))
result = list(chunk(source, 3))
assert result == [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]
async def test_limit() -> None:
"""Test if the limit method works."""
async for i in limit(_generator(10), 3):
assert i < 3
async for i in limit(_generator(2), 3):
assert i < 3
async def test_limit_invalid_value() -> None:
"""Test if the limit method works."""
with pytest.raises(ValueError):
await limit(_generator(10), 0).__anext__()
async def test_build_scope() -> None:
"""Test build scope."""
assert (
build_scope([AuthScope.READ_ONLY, AuthScope.MANAGE])
== "https://www.googleapis.com/auth/youtube.readonly https://www.googleapis.com/auth/youtube"
)
@pytest.mark.parametrize(
("params", "remove_none", "split_lists", "enum_value", "result"),
[
(
{
"hello": None,
},
True,
True,
True,
"asd.com",
),
(
{
"hello": None,
},
False,
True,
True,
"asd.com?hello",
),
(
{
"hello": [
"yes",
"no",
],
},
False,
True,
True,
"asd.com?hello=yes&hello=no",
),
(
{
"hello": [
"yes",
"no",
],
},
False,
False,
True,
"asd.com?hello=%5B%27yes%27%2C%20%27no%27%5D",
),
(
{
"hello": AuthScope.MANAGE,
},
False,
True,
True,
"asd.com?hello=https%3A//www.googleapis.com/auth/youtube",
),
(
{
"hello": AuthScope.MANAGE,
},
False,
False,
False,
"asd.com?hello=AuthScope.MANAGE",
),
],
ids=[
"None value removed",
"None value",
"Split list",
"Non split list",
"Enum value",
"Non enum value",
],
)
async def test_build_url(
params: dict[str, Any],
remove_none: bool,
split_lists: bool,
enum_value: bool,
result: str,
) -> None:
"""Test build url."""
assert build_url("asd.com", params, remove_none, split_lists, enum_value) == result
@pytest.mark.parametrize(
("duration", "result"),
[
(
"PT5S",
timedelta(seconds=5),
),
(
"PT10M5S",
timedelta(minutes=10, seconds=5),
),
(
"PT2H10M5S",
timedelta(hours=2, minutes=10, seconds=5),
),
(
"P4DT2H10M5S",
timedelta(days=4, hours=2, minutes=10, seconds=5),
),
],
)
def test_duration(
duration: str,
result: timedelta,
) -> None:
"""Test duration,."""
assert get_duration(duration) == result
|