2024-03-05 14:41:40 +00:00
|
|
|
import pytest
|
|
|
|
|
2024-03-06 16:45:08 +00:00
|
|
|
from kasa.iot import IotDevice
|
2024-02-27 17:39:04 +00:00
|
|
|
from kasa.smart import SmartDevice
|
2024-11-11 10:11:31 +00:00
|
|
|
|
|
|
|
from ...conftest import dimmable_iot, get_parent_and_child_modules, parametrize
|
2024-02-27 17:39:04 +00:00
|
|
|
|
2024-03-05 14:41:40 +00:00
|
|
|
brightness = parametrize("brightness smart", component_filter="brightness")
|
2024-02-27 17:39:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
@brightness
|
|
|
|
async def test_brightness_component(dev: SmartDevice):
|
2024-03-05 14:41:40 +00:00
|
|
|
"""Test brightness feature."""
|
2024-06-10 04:59:37 +00:00
|
|
|
brightness = next(get_parent_and_child_modules(dev, "Brightness"))
|
2024-04-24 18:17:49 +00:00
|
|
|
assert brightness
|
2024-02-27 17:39:04 +00:00
|
|
|
assert isinstance(dev, SmartDevice)
|
|
|
|
assert "brightness" in dev._components
|
2024-03-05 14:41:40 +00:00
|
|
|
|
|
|
|
# Test getting the value
|
2024-06-10 04:59:37 +00:00
|
|
|
feature = brightness._device.features["brightness"]
|
2024-03-05 14:41:40 +00:00
|
|
|
assert isinstance(feature.value, int)
|
2024-08-30 15:30:07 +00:00
|
|
|
assert feature.value > 1
|
|
|
|
assert feature.value <= 100
|
2024-03-05 14:41:40 +00:00
|
|
|
|
|
|
|
# Test setting the value
|
|
|
|
await feature.set_value(10)
|
2024-04-24 11:25:16 +00:00
|
|
|
await dev.update()
|
2024-03-05 14:41:40 +00:00
|
|
|
assert feature.value == 10
|
|
|
|
|
2024-08-30 15:30:07 +00:00
|
|
|
with pytest.raises(ValueError, match="out of range"):
|
2024-03-05 14:41:40 +00:00
|
|
|
await feature.set_value(feature.minimum_value - 10)
|
|
|
|
|
2024-08-30 15:30:07 +00:00
|
|
|
with pytest.raises(ValueError, match="out of range"):
|
2024-03-05 14:41:40 +00:00
|
|
|
await feature.set_value(feature.maximum_value + 10)
|
2024-03-06 16:45:08 +00:00
|
|
|
|
|
|
|
|
2024-05-13 16:34:44 +00:00
|
|
|
@dimmable_iot
|
2024-05-03 15:01:21 +00:00
|
|
|
async def test_brightness_dimmable(dev: IotDevice):
|
2024-03-06 16:45:08 +00:00
|
|
|
"""Test brightness feature."""
|
|
|
|
assert isinstance(dev, IotDevice)
|
|
|
|
assert "brightness" in dev.sys_info or bool(dev.sys_info["is_dimmable"])
|
|
|
|
|
|
|
|
# Test getting the value
|
|
|
|
feature = dev.features["brightness"]
|
|
|
|
assert isinstance(feature.value, int)
|
2024-08-30 15:30:07 +00:00
|
|
|
assert feature.value > 0
|
|
|
|
assert feature.value <= 100
|
2024-03-06 16:45:08 +00:00
|
|
|
|
|
|
|
# Test setting the value
|
|
|
|
await feature.set_value(10)
|
2024-04-24 11:25:16 +00:00
|
|
|
await dev.update()
|
2024-03-06 16:45:08 +00:00
|
|
|
assert feature.value == 10
|
|
|
|
|
2024-08-30 15:30:07 +00:00
|
|
|
with pytest.raises(ValueError, match="out of range"):
|
2024-03-06 16:45:08 +00:00
|
|
|
await feature.set_value(feature.minimum_value - 10)
|
|
|
|
|
2024-08-30 15:30:07 +00:00
|
|
|
with pytest.raises(ValueError, match="out of range"):
|
2024-03-06 16:45:08 +00:00
|
|
|
await feature.set_value(feature.maximum_value + 10)
|