File: test_groups.py

package info (click to toggle)
python-bond-async 0.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: python: 1,537; makefile: 4
file content (490 lines) | stat: -rw-r--r-- 15,392 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
"""Unit tests for Bond API wrapper."""

import pytest
from aiohttp import ClientSession, ClientTimeout
from aioresponses import CallbackResult, aioresponses

from bond_async import Action, Bond, Direction


@pytest.fixture(name="bond")
def bond_fixture():
    """Creates Bond fixture."""
    return Bond("test-host", "test-token")


@pytest.mark.asyncio
async def test_groups_supported(bond: Bond):
    """Tests checking if Bond supports groups."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/",
            payload={
                "_": "b7e976b1",
                "__": "00000000",
                "devices": {"_": "0b64ba79"},
                "signal": {"_": "00000000"},
                "groups": {"_": "71ce683b"},
                "sys": {"_": "89858d62"},
                "api": {"_": "d00c7b8f"},
                "bridge": {"_": "df239de9"},
                "token": {"_": "aa72441a"},
            },
        )
        actual = await bond.supports_groups()
        assert actual == True


@pytest.mark.asyncio
async def test_groups_unsupported(bond: Bond):
    """Tests checking if Bond supports groups."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/",
            payload={
                "_": "b7e976b1",
                "__": "00000000",
                "devices": {"_": "0b64ba79"},
                "signal": {"_": "00000000"},
                "sys": {"_": "89858d62"},
                "api": {"_": "d00c7b8f"},
                "bridge": {"_": "df239de9"},
                "token": {"_": "aa72441a"},
            },
        )
        actual = await bond.supports_groups()
        assert actual == False


@pytest.mark.asyncio
async def test_groups(bond: Bond):
    """Tests API to get a list of group IDs."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/groups",
            payload={
                "_": "some-hash",
                "__": "some-other-hash",
                "group-1": {"_": "some-hash"},
                "group-2": {"_": "some-hash"},
            },
        )
        actual = await bond.groups()
        assert actual == ["group-1", "group-2"]


@pytest.mark.asyncio
async def test_group(bond: Bond):
    """Tests API to get group details."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/groups/group-1", payload={"some": "group details"}
        )
        actual = await bond.group("group-1")
        assert actual == {"some": "group details"}


@pytest.mark.asyncio
async def test_group_properties(bond: Bond):
    """Tests API to get group properties."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/groups/group-1/properties",
            payload={"some": "group properties"},
        )
        actual = await bond.group_properties("group-1")
        assert actual == {"some": "group properties"}


@pytest.mark.asyncio
async def test_group_state(bond: Bond):
    """Tests API to get group state."""
    with aioresponses() as response:
        response.get(
            "http://test-host/v2/groups/group-1/state",
            payload={"some": "group state"},
        )
        actual = await bond.group_state("group-1")
        assert actual == {"some": "group state"}


@pytest.mark.asyncio
async def test_turn_on(bond: Bond):
    """Tests turn_on action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TurnOn",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.turn_on())


@pytest.mark.asyncio
async def test_turn_off(bond: Bond):
    """Tests turn_off action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TurnOff",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.turn_off())


@pytest.mark.asyncio
async def test_open(bond: Bond):
    """Tests open action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/Open", callback=callback
        )
        await bond.group_action("test-group-id", Action.open())


@pytest.mark.asyncio
async def test_tilt_open(bond: Bond):
    """Tests tilt open action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TiltOpen",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.tilt_open())


@pytest.mark.asyncio
async def test_close(bond: Bond):
    """Tests close action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/Close",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.close())


@pytest.mark.asyncio
async def test_tilt_close(bond: Bond):
    """Tests tilt close action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TiltClose",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.tilt_close())


@pytest.mark.asyncio
async def test_hold(bond: Bond):
    """Tests hold action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/Hold", callback=callback
        )
        await bond.group_action("test-group-id", Action.hold())


@pytest.mark.asyncio
async def test_set_speed(bond: Bond):
    """Tests set_speed action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 2}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetSpeed",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.set_speed(2))


@pytest.mark.asyncio
async def test_set_speed_belief(bond: Bond):
    """Tests set_speed_belief action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"speed": 2}
            return CallbackResult()

        response.patch(
            "http://test-host/v2/groups/test-group-id/state", callback=callback
        )
        await bond.group_action("test-group-id", Action.set_speed_belief(2))


@pytest.mark.asyncio
async def test_set_brightness_belief(bond: Bond):
    """Tests set_brightness_belief action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"brightness": 2}
            return CallbackResult()

        response.patch(
            "http://test-host/v2/groups/test-group-id/state", callback=callback
        )
        await bond.group_action("test-group-id", Action.set_brightness_belief(2))


@pytest.mark.asyncio
async def test_set_power_state_belief(bond: Bond):
    """Tests set_power_state_belief action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"power": 1}
            return CallbackResult()

        response.patch(
            "http://test-host/v2/groups/test-group-id/state", callback=callback
        )
        await bond.group_action("test-group-id", Action.set_power_state_belief(True))


@pytest.mark.asyncio
async def test_set_light_state_belief(bond: Bond):
    """Tests set_light_state_belief action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"light": 0}
            return CallbackResult()

        response.patch(
            "http://test-host/v2/groups/test-group-id/state", callback=callback
        )
        await bond.group_action("test-group-id", Action.set_light_state_belief(False))


@pytest.mark.asyncio
async def test_turn_light_on(bond: Bond):
    """Tests turn_light_on action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TurnLightOn",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.turn_light_on())


@pytest.mark.asyncio
async def test_turn_light_off(bond: Bond):
    """Tests turn_light_off action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/TurnLightOff",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.turn_light_off())


@pytest.mark.asyncio
async def test_set_brightness(bond: Bond):
    """Tests set_brightness action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 50}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetBrightness",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.set_brightness(50))


@pytest.mark.asyncio
async def test_set_color_temperature(bond: Bond):
    """Tests set_color_temperature action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 3000}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetColorTemp",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.set_color_temperature(3000))


@pytest.mark.asyncio
async def test_increase_color_temperature(bond: Bond):
    """Tests increase_color_temperature action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 100}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/IncreaseColorTemp",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.increase_color_temperature(100))


@pytest.mark.asyncio
async def test_decrease_color_temperature(bond: Bond):
    """Tests decrease_color_temperature action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 100}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/DecreaseColorTemp",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.decrease_color_temperature(100))


@pytest.mark.asyncio
async def test_set_direction_forward(bond: Bond):
    """Tests set_direction action delegates to API with correct value for forward."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 1}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetDirection",
            callback=callback,
        )
        await bond.group_action(
            "test-group-id", Action.set_direction(Direction.FORWARD)
        )


@pytest.mark.asyncio
async def test_set_direction_reverse(bond: Bond):
    """Tests set_direction action delegates to API with correct value for reverse."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": -1}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetDirection",
            callback=callback,
        )
        await bond.group_action(
            "test-group-id", Action.set_direction(Direction.REVERSE)
        )


@pytest.mark.asyncio
async def test_set_flame(bond: Bond):
    """Tests set_flame action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 50}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetFlame",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.set_flame(50))


@pytest.mark.asyncio
async def test_set_position(bond: Bond):
    """Tests set_position action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 50}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/SetPosition",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.set_position(50))


@pytest.mark.asyncio
async def test_increase_position(bond: Bond):
    """Tests increase_position action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 50}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/IncreasePosition",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.increase_position(50))


@pytest.mark.asyncio
async def test_decrease_position(bond: Bond):
    """Tests decrease_position action delegates to API."""
    with aioresponses() as response:

        def callback(_url, **kwargs):
            assert kwargs.get("json") == {"argument": 50}
            return CallbackResult()

        response.put(
            "http://test-host/v2/groups/test-group-id/actions/DecreasePosition",
            callback=callback,
        )
        await bond.group_action("test-group-id", Action.decrease_position(50))