mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 03:33:35 +00:00
58f6517445
* Add effect support for KL430 * KL400 supports effects * Add KL400 fixture * Comments from review * actually commit the remove
37 lines
1018 B
Python
37 lines
1018 B
Python
import pytest
|
|
|
|
from kasa import DeviceType, SmartLightStrip
|
|
from kasa.exceptions import SmartDeviceException
|
|
|
|
from .conftest import lightstrip, pytestmark
|
|
|
|
|
|
@lightstrip
|
|
async def test_lightstrip_length(dev: SmartLightStrip):
|
|
assert dev.is_light_strip
|
|
assert dev.device_type == DeviceType.LightStrip
|
|
assert dev.length == dev.sys_info["length"]
|
|
|
|
|
|
@lightstrip
|
|
async def test_lightstrip_effect(dev: SmartLightStrip):
|
|
assert isinstance(dev.effect, dict)
|
|
for k in ["brightness", "custom", "enable", "id", "name"]:
|
|
assert k in dev.effect
|
|
|
|
|
|
@lightstrip
|
|
async def test_effects_lightstrip_set_effect(dev: SmartLightStrip):
|
|
with pytest.raises(SmartDeviceException):
|
|
await dev.set_effect("Not real")
|
|
|
|
await dev.set_effect("Candy Cane")
|
|
assert dev.effect["name"] == "Candy Cane"
|
|
assert dev.state_information["Effect"] == "Candy Cane"
|
|
|
|
|
|
@lightstrip
|
|
async def test_effects_lightstrip_has_effects(dev: SmartLightStrip):
|
|
assert dev.has_effects is True
|
|
assert dev.effect_list
|