File: test_cloud.py

package info (click to toggle)
python-demetriek 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 544 kB
  • sloc: python: 1,400; makefile: 3
file content (297 lines) | stat: -rw-r--r-- 9,295 bytes parent folder | download
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
"""Asynchronous Python client for LaMetric TIME devices."""

# pylint: disable=protected-access
import asyncio
from datetime import datetime, timezone
from ipaddress import IPv4Address

import aiohttp
import pytest
from aresponses import Response, ResponsesMockServer

from demetriek import LaMetricCloud, LaMetricConnectionError, LaMetricError
from demetriek.const import DeviceState

from . import load_fixture


async def test_json_request(aresponses: ResponsesMockServer) -> None:
    """Test JSON response is handled correctly."""
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text='{"status": "ok"}',
        ),
    )
    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        response = await demetriek._request("/")
        assert response["status"] == "ok"


async def test_internal_session(aresponses: ResponsesMockServer) -> None:
    """Test JSON response is handled correctly."""
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text='{"status": "ok"}',
        ),
    )
    async with LaMetricCloud(token="abc") as demetriek:  # noqa: S106
        response = await demetriek._request("/")
        assert response["status"] == "ok"


async def test_backoff(aresponses: ResponsesMockServer) -> None:
    """Test requests are handled with retries."""

    async def response_handler(_: aiohttp.ClientResponse) -> Response:
        await asyncio.sleep(0.2)
        return aresponses.Response(body="Goodmorning!")

    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        response_handler,
        repeat=2,
    )
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text='{"status": "ok"}',
        ),
    )

    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(
            token="abc",  # noqa: S106
            session=session,
            request_timeout=0.1,
        )
        response = await demetriek._request("/")
        assert response["status"] == "ok"


async def test_timeout(aresponses: ResponsesMockServer) -> None:
    """Test request timeouts."""

    # Faking a timeout by sleeping
    async def response_handler(_: aiohttp.ClientResponse) -> Response:
        await asyncio.sleep(0.2)
        return aresponses.Response(body="Goodmorning!")

    # Backoff will try 3 times
    aresponses.add("developer.lametric.com", "/", "GET", response_handler)
    aresponses.add("developer.lametric.com", "/", "GET", response_handler)
    aresponses.add("developer.lametric.com", "/", "GET", response_handler)

    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(
            token="abc",  # noqa: S106
            session=session,
            request_timeout=0.1,
        )
        with pytest.raises(LaMetricConnectionError):
            assert await demetriek._request("/")


async def test_http_error400(aresponses: ResponsesMockServer) -> None:
    """Test HTTP 404 response handling."""
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(text="OMG PUPPIES!", status=404),
    )

    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        with pytest.raises(LaMetricError):
            assert await demetriek._request("/")


async def test_http_error500(aresponses: ResponsesMockServer) -> None:
    """Test HTTP 500 response handling."""
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(
            body=b'{"status":"nok"}',
            status=500,
            headers={"Content-Type": "application/json"},
        ),
    )

    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        with pytest.raises(LaMetricError):
            assert await demetriek._request("/")


async def test_no_json_response(aresponses: ResponsesMockServer) -> None:
    """Test response handling when its not a JSON response."""
    aresponses.add(
        "developer.lametric.com",
        "/",
        "GET",
        aresponses.Response(
            body=b"Oh hi!",
            status=200,
            headers={"Content-Type": "text/html"},
        ),
    )

    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        with pytest.raises(LaMetricError):
            assert await demetriek._request("/")


async def test_get_current_user(aresponses: ResponsesMockServer) -> None:
    """Test getting current logged in user information."""
    aresponses.add(
        "developer.lametric.com",
        "/api/v2/me",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text=load_fixture("me.json"),
        ),
    )
    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        user = await demetriek.current_user()

    assert user
    assert user.apps_count == 1
    assert user.email == "opensource@frenck.dev"
    assert user.name == "Franck Nijhof"
    assert user.private_apps_count == 3
    assert user.private_device_count == 5
    assert user.user_id == 1


async def test_get_devices(aresponses: ResponsesMockServer) -> None:
    """Test getting devices from the logged in account."""
    aresponses.add(
        "developer.lametric.com",
        "/api/v2/users/me/devices",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text=load_fixture("cloud_devices.json"),
        ),
    )
    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        devices = await demetriek.devices()

    assert devices
    assert len(devices) == 2
    assert devices[0].device_id == 21
    assert devices[0].name == "Blackjack"
    assert devices[0].state == DeviceState.CONFIGURED
    assert devices[0].serial_number == "SA140100002200W00B21"
    assert (
        devices[0].api_key
        == "8adaa0c98278dbb1ecb218d1c3e11f9312317ba474ab3361f80c0bd4f13a6721"
    )
    assert devices[0].ip == IPv4Address("192.168.1.21")
    assert devices[0].mac == "AA:BB:CC:DD:EE:21"
    assert devices[0].ssid == "AllYourBaseAreBelongToUs"
    assert devices[0].created_at == datetime(
        2015,
        3,
        6,
        15,
        15,
        55,
        tzinfo=timezone.utc,
    )
    assert devices[0].updated_at == datetime(
        2016,
        6,
        14,
        18,
        27,
        13,
        tzinfo=timezone.utc,
    )

    assert devices[1].device_id == 42
    assert devices[1].name == "The Answer"
    assert devices[1].state == DeviceState.CONFIGURED
    assert devices[1].serial_number == "SA140100002200W00B42"
    assert (
        devices[1].api_key
        == "8adaa0c98278dbb1ecb218d1c3e11f9312317ba474ab3361f80c0bd4f13a6742"
    )
    assert devices[1].ip == IPv4Address("192.168.1.42")
    assert devices[1].mac == "AA:BB:CC:DD:EE:42"
    assert devices[1].ssid == "AllYourBaseAreBelongToUs"
    assert devices[1].created_at == datetime(
        2015,
        3,
        6,
        15,
        15,
        55,
        tzinfo=timezone.utc,
    )
    assert devices[1].updated_at == datetime(
        2016,
        6,
        14,
        18,
        27,
        13,
        tzinfo=timezone.utc,
    )


async def test_get_device(aresponses: ResponsesMockServer) -> None:
    """Test getting a specific device from the logged in account."""
    aresponses.add(
        "developer.lametric.com",
        "/api/v2/users/me/devices/42",
        "GET",
        aresponses.Response(
            status=200,
            headers={"Content-Type": "application/json"},
            text=load_fixture("cloud_device.json"),
        ),
    )
    async with aiohttp.ClientSession() as session:
        demetriek = LaMetricCloud(token="abc", session=session)  # noqa: S106
        device = await demetriek.device(device_id=42)

    assert device
    assert device.device_id == 42
    assert device.name == "The Answer"
    assert device.state == DeviceState.CONFIGURED
    assert device.serial_number == "SA140100002200W00B42"
    assert (
        device.api_key
        == "8adaa0c98278dbb1ecb218d1c3e11f9312317ba474ab3361f80c0bd4f13a6742"
    )
    assert device.ip == IPv4Address("192.168.1.42")
    assert device.mac == "AA:BB:CC:DD:EE:42"
    assert device.ssid == "AllYourBaseAreBelongToUs"
    assert device.created_at == datetime(2015, 3, 6, 15, 15, 55, tzinfo=timezone.utc)
    assert device.updated_at == datetime(2016, 6, 14, 18, 27, 13, tzinfo=timezone.utc)