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
|
"""Text exceptions raised by the Forecast.Solar API client."""
import pytest
from aresponses import ResponsesMockServer
from forecast_solar import (
ForecastSolar,
ForecastSolarAuthenticationError,
ForecastSolarConfigError,
ForecastSolarConnectionError,
ForecastSolarRatelimitError,
ForecastSolarRequestError,
)
from . import load_fixtures
async def test_status_400(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 400."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=400,
headers={
"Content-Type": "application/json",
"X-Ratelimit-Limit": "10",
"X-Ratelimit-Period": "1",
},
text=load_fixtures("forecast.json"),
),
)
with pytest.raises(ForecastSolarRequestError):
assert await forecast_client._request("test")
async def test_status_401(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 401 or 403."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=401,
headers={
"Content-Type": "application/json",
"X-Ratelimit-Limit": "10",
"X-Ratelimit-Period": "1",
},
text=load_fixtures("forecast.json"),
),
)
with pytest.raises(ForecastSolarAuthenticationError):
assert await forecast_client._request("test")
async def test_status_422(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 422."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=422,
headers={
"Content-Type": "application/json",
"X-Ratelimit-Limit": "10",
"X-Ratelimit-Period": "1",
},
text=load_fixtures("forecast.json"),
),
)
with pytest.raises(ForecastSolarConfigError):
assert await forecast_client._request("test")
async def test_status_429(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 429."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=429,
headers={
"Content-Type": "application/json",
"X-Ratelimit-Limit": "10",
"X-Ratelimit-Period": "1",
},
text=load_fixtures("ratelimit.json"),
),
)
with pytest.raises(ForecastSolarRatelimitError):
assert await forecast_client._request("test")
async def test_status_502(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 502 or 503."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=502,
headers={
"Content-Type": "application/json",
"X-Ratelimit-Limit": "10",
"X-Ratelimit-Period": "1",
},
text=load_fixtures("forecast.json"),
),
)
with pytest.raises(ForecastSolarConnectionError):
assert await forecast_client._request("test")
async def test_status_404(
aresponses: ResponsesMockServer,
forecast_client: ForecastSolar,
) -> None:
"""Test response status 404."""
aresponses.add(
"api.forecast.solar",
"/test",
"GET",
aresponses.Response(
status=404,
headers={
"Content-Type": "application/json",
},
text='{"message": {"code": 404, "text": "Not Found"}}',
),
)
with pytest.raises(ForecastSolarRequestError):
assert await forecast_client._request("test")
|