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-03-06 16:45:08 +00:00
|
|
|
from kasa.tests.conftest import dimmable, 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-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
|
|
|
|
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)
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
@dimmable
|
|
|
|
async def test_brightness_dimmable(dev: SmartDevice):
|
|
|
|
"""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)
|
|
|
|
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)
|