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-05-13 16:34:44 +00:00
|
|
|
from kasa.tests.conftest import dimmable_iot, 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-05-10 18:29:28 +00:00
|
|
|
brightness = dev.modules.get("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-05-13 16:34:44 +00:00
|
|
|
feature = dev.features["brightness"]
|
2024-03-05 14:41:40 +00:00
|
|
|
assert isinstance(feature.value, int)
|
2024-04-17 11:33:10 +00:00
|
|
|
assert feature.value > 1 and 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
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await feature.set_value(feature.minimum_value - 10)
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
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)
|
|
|
|
assert feature.value > 0 and feature.value <= 100
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await feature.set_value(feature.minimum_value - 10)
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await feature.set_value(feature.maximum_value + 10)
|