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
|
"""Define tests for the REST API."""
import datetime
import logging
from unittest.mock import Mock
import aiohttp
import pytest
from aresponses import ResponsesMockServer
from aioambient import API
from aioambient.errors import RequestError
from .common import TEST_API_KEY, TEST_APP_KEY, TEST_MAC, load_fixture
@pytest.mark.asyncio
async def test_api_error(aresponses: ResponsesMockServer) -> None:
"""Test the REST API raising an exception upon HTTP error.
Args:
aresponses: An aresponses server.
"""
aresponses.add(
"rt.ambientweather.net",
"/v1/devices",
"get",
aresponses.Response(text="", status=500),
)
async with aiohttp.ClientSession() as session:
api = API(TEST_API_KEY, TEST_APP_KEY, session=session)
with pytest.raises(RequestError):
await api.get_devices()
@pytest.mark.asyncio
async def test_custom_logger(aresponses: ResponsesMockServer, caplog: Mock) -> None:
"""Test that a custom logger is used when provided to the client.
Args:
aresponses: An aresponses server.
caplog: A mocked logging facility.
"""
caplog.set_level(logging.DEBUG)
custom_logger = logging.getLogger("custom")
aresponses.add(
"rt.ambientweather.net",
f"/v1/devices/{TEST_MAC}",
"get",
aresponses.Response(
text=load_fixture("device_details_response.json"),
status=200,
headers={"Content-Type": "application/json; charset=utf-8"},
),
)
async with aiohttp.ClientSession() as session:
api = API(TEST_API_KEY, TEST_APP_KEY, session=session, logger=custom_logger)
await api.get_device_details(TEST_MAC, end_date=datetime.date(2019, 1, 6))
assert any(
record.name == "custom" and "Received data" in record.message
for record in caplog.records
)
@pytest.mark.asyncio
async def test_get_device_details(aresponses: ResponsesMockServer) -> None:
"""Test retrieving device details from the REST API.
Args:
aresponses: An aresponses server.
"""
aresponses.add(
"rt.ambientweather.net",
f"/v1/devices/{TEST_MAC}",
"get",
aresponses.Response(
text=load_fixture("device_details_response.json"),
status=200,
headers={"Content-Type": "application/json; charset=utf-8"},
),
)
async with aiohttp.ClientSession() as session:
api = API(TEST_API_KEY, TEST_APP_KEY, session=session)
device_details = await api.get_device_details(
TEST_MAC, end_date=datetime.date(2019, 1, 6)
)
assert len(device_details) == 2
@pytest.mark.asyncio
async def test_get_devices(aresponses: ResponsesMockServer) -> None:
"""Test retrieving devices from the REST API.
Args:
aresponses: An aresponses server.
"""
aresponses.add(
"rt.ambientweather.net",
"/v1/devices",
"get",
aresponses.Response(
text=load_fixture("devices_response.json"),
status=200,
headers={"Content-Type": "application/json; charset=utf-8"},
),
)
async with aiohttp.ClientSession() as session:
api = API(TEST_API_KEY, TEST_APP_KEY, session=session)
devices = await api.get_devices()
assert len(devices) == 2
@pytest.mark.asyncio
async def test_session_from_scratch(aresponses: ResponsesMockServer) -> None:
"""Test that an aiohttp ClientSession is created on the fly if needed.
Args:
aresponses: An aresponses server.
"""
aresponses.add(
"rt.ambientweather.net",
"/v1/devices",
"get",
aresponses.Response(
text=load_fixture("devices_response.json"),
status=200,
headers={"Content-Type": "application/json; charset=utf-8"},
),
)
api = API(TEST_API_KEY, TEST_APP_KEY)
devices = await api.get_devices()
assert len(devices) == 2
|