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
|
"""Tests for DIRECTV."""
import asyncio
import pytest
from aiohttp import ClientSession
from directv import DIRECTV
from directv.exceptions import (
DIRECTVAccessRestricted,
DIRECTVConnectionError,
DIRECTVError,
)
from . import load_fixture
HOST = "1.2.3.4"
PORT = 8080
MATCH_HOST = f"{HOST}:{PORT}"
NON_STANDARD_PORT = 3333
@pytest.mark.asyncio
async def test_json_request(aresponses):
"""Test DIRECTV response is handled correctly."""
aresponses.add(
MATCH_HOST,
"/info/getVersion",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "application/json"},
text='{"status": {"code": 200, "commandResult": 0}}',
),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
response = await dtv._request("/info/getVersion")
assert response["status"]["code"] == 200
assert response["status"]["commandResult"] == 0
@pytest.mark.asyncio
async def test_authenticated_request(aresponses):
"""Test authenticated JSON response is handled correctly."""
aresponses.add(
MATCH_HOST,
"/",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "application/json"},
text='{"status": "ok"}',
),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, username="you", password="socool", session=session,)
response = await dtv._request("/")
assert response["status"] == "ok"
@pytest.mark.asyncio
async def test_text_request(aresponses):
"""Test non JSON response is handled correctly."""
aresponses.add(
MATCH_HOST, "/", "GET", aresponses.Response(status=200, text="OK"),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
response = await dtv._request("/")
assert response == "OK"
@pytest.mark.asyncio
async def test_internal_session(aresponses):
"""Test DIRECTV response is handled correctly."""
aresponses.add(
MATCH_HOST,
"/info/getVersion",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "application/json"},
text='{"status": {"code": 200, "commandResult": 0}}',
),
)
async with DIRECTV(HOST) as dtv:
response = await dtv._request("/info/getVersion")
assert response["status"]["code"] == 200
assert response["status"]["commandResult"] == 0
@pytest.mark.asyncio
async def test_request_port(aresponses):
"""Test the DIRECTV server running on non-standard port."""
aresponses.add(
f"{HOST}:{NON_STANDARD_PORT}",
"/info/getVersion",
"GET",
aresponses.Response(
status=200,
headers={"Content-Type": "application/json"},
text='{"status": {"code": 200, "commandResult": 0}}',
),
)
async with ClientSession() as session:
dtv = DIRECTV(host=HOST, port=NON_STANDARD_PORT, session=session,)
response = await dtv._request("/info/getVersion")
assert response["status"]["code"] == 200
assert response["status"]["commandResult"] == 0
@pytest.mark.asyncio
async def test_timeout(aresponses):
"""Test request timeout from the DIRECTV server."""
# Faking a timeout by sleeping
async def response_handler(_):
await asyncio.sleep(2)
return aresponses.Response(body="Timeout!")
aresponses.add(
MATCH_HOST, "/info/getVersion", "GET", response_handler,
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session, request_timeout=1)
with pytest.raises(DIRECTVConnectionError):
assert await dtv._request("/info/getVersion")
@pytest.mark.asyncio
async def test_client_error():
"""Test http client error."""
async with ClientSession() as session:
dtv = DIRECTV("localhost", session=session)
with pytest.raises(DIRECTVConnectionError):
assert await dtv._request("/info/getVersion")
@pytest.mark.asyncio
async def test_http_error403(aresponses):
"""Test HTTP 403 response handling."""
aresponses.add(
MATCH_HOST,
"/tv/getTuned",
"GET",
aresponses.Response(text="Forbidden", status=403),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
with pytest.raises(DIRECTVAccessRestricted):
assert await dtv._request("/tv/getTuned")
@pytest.mark.asyncio
async def test_http_error404(aresponses):
"""Test HTTP 404 response handling."""
aresponses.add(
MATCH_HOST,
"/info/getVersion",
"GET",
aresponses.Response(text="Not Found!", status=404),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
with pytest.raises(DIRECTVError):
assert await dtv._request("/info/getVersion")
@pytest.mark.asyncio
async def test_http_error500(aresponses):
"""Test HTTP 500 response handling."""
aresponses.add(
MATCH_HOST,
"/info/getVersion",
"GET",
aresponses.Response(text="Internal Server Error", status=500),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
with pytest.raises(DIRECTVError):
assert await dtv._request("/info/getVersion")
@pytest.mark.asyncio
async def test_http_error500_json(aresponses):
"""Test HTTP 500 json response handling."""
aresponses.add(
MATCH_HOST,
"/info/getVersion",
"GET",
aresponses.Response(
status=500,
headers={"Content-Type": "application/json"},
body=load_fixture("info-get-version-error.json"),
),
)
async with ClientSession() as session:
dtv = DIRECTV(HOST, session=session)
with pytest.raises(DIRECTVError):
response = await dtv._request("/info/getVersion")
assert response
assert response["status"]
assert response["status"]["code"] == 500
assert response["status"]["commandResult"] == 1
|