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
|
"""Tests for the RoomMapping related functionality."""
from typing import Any
from unittest.mock import AsyncMock
import pytest
from roborock.devices.device import RoborockDevice
from roborock.devices.traits.v1.rooms import RoomsTrait
from roborock.devices.traits.v1.status import StatusTrait
from roborock.roborock_typing import RoborockCommand
@pytest.fixture
def status_trait(device: RoborockDevice) -> StatusTrait:
"""Create a StatusTrait instance with mocked dependencies."""
assert device.v1_properties
return device.v1_properties.status
@pytest.fixture
def rooms_trait(device: RoborockDevice) -> RoomsTrait:
"""Create a RoomsTrait instance with mocked dependencies."""
assert device.v1_properties
return device.v1_properties.rooms
# Rooms from mock_data.HOME_DATA
# {"id": 2362048, "name": "Example room 1"},
# {"id": 2362044, "name": "Example room 2"},
# {"id": 2362041, "name": "Example room 3"},
@pytest.mark.parametrize(
("room_mapping_data"),
[
([[16, "2362048"], [17, "2362044"], [18, "2362041"]]),
([[16, "2362048", 6], [17, "2362044", 14], [18, "2362041", 13]]),
],
)
async def test_refresh_rooms_trait(
rooms_trait: RoomsTrait,
mock_rpc_channel: AsyncMock,
room_mapping_data: list[Any],
) -> None:
"""Test successfully getting room mapping."""
# Setup mock to return the sample room mapping
mock_rpc_channel.send_command.side_effect = [room_mapping_data]
# Before refresh, rooms should be empty
assert not rooms_trait.rooms
# Load the room mapping information
await rooms_trait.refresh()
# Verify the room mappings are now populated
assert rooms_trait.rooms
rooms = rooms_trait.rooms
assert len(rooms) == 3
assert rooms[0].segment_id == 16
assert rooms[0].name == "Example room 1"
assert rooms[0].iot_id == "2362048"
assert rooms[1].segment_id == 17
assert rooms[1].name == "Example room 2"
assert rooms[1].iot_id == "2362044"
assert rooms[2].segment_id == 18
assert rooms[2].name == "Example room 3"
assert rooms[2].iot_id == "2362041"
# Verify the RPC call was made correctly
assert mock_rpc_channel.send_command.call_count == 1
mock_rpc_channel.send_command.assert_any_call(RoborockCommand.GET_ROOM_MAPPING)
|