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
|
"""Unit test for Scene objects."""
from unittest.mock import Mock
from xknx import XKNX
from xknx.devices import Scene
from xknx.dpt import DPTArray
from xknx.telegram import GroupAddress, Telegram
from xknx.telegram.apci import GroupValueWrite
class TestScene:
"""Test class for Scene objects."""
#
# SYNC
#
async def test_sync(self) -> None:
"""Test sync function / sending group reads to KNX bus."""
xknx = XKNX()
scene = Scene(xknx, "TestScene", group_address="1/2/1", scene_number=23)
await scene.sync()
assert xknx.telegrams.qsize() == 0
#
# TEST RUN SCENE
#
async def test_run(self) -> None:
"""Test running scene."""
xknx = XKNX()
scene = Scene(xknx, "TestScene", group_address="1/2/1", scene_number=23)
await scene.run()
assert xknx.telegrams.qsize() == 1
telegram = xknx.telegrams.get_nowait()
assert telegram == Telegram(
destination_address=GroupAddress("1/2/1"),
payload=GroupValueWrite(DPTArray(0x16)),
)
#
# TEST has_group_address
#
def test_has_group_address(self) -> None:
"""Test has_group_address."""
xknx = XKNX()
scene = Scene(xknx, "TestScene", group_address="1/2/1", scene_number=23)
assert scene.has_group_address(GroupAddress("1/2/1"))
assert not scene.has_group_address(GroupAddress("2/2/2"))
async def test_process_callback(self) -> None:
"""Test process / reading telegrams from telegram queue. Test if callback is called."""
xknx = XKNX()
after_update_callback = Mock()
scene = Scene(
xknx,
"TestScene",
group_address="1/2/3",
scene_number=1,
device_updated_cb=after_update_callback,
)
scene.process(
Telegram(
destination_address=GroupAddress("1/2/3"),
payload=GroupValueWrite(DPTArray((0x00,))),
)
)
after_update_callback.assert_called_with(scene)
after_update_callback.reset_mock()
scene.process(
Telegram(
destination_address=GroupAddress("1/2/3"),
payload=GroupValueWrite(DPTArray((0x01,))), # different scene number
)
)
after_update_callback.assert_not_called()
|