2020-05-27 14:55:18 +00:00
|
|
|
from kasa import DeviceType
|
|
|
|
|
2020-06-30 00:29:52 +00:00
|
|
|
from .conftest import plug, pytestmark
|
2020-05-27 14:55:18 +00:00
|
|
|
from .newfakes import PLUG_SCHEMA
|
|
|
|
|
|
|
|
|
|
|
|
@plug
|
|
|
|
async def test_plug_sysinfo(dev):
|
|
|
|
assert dev.sys_info is not None
|
|
|
|
PLUG_SCHEMA(dev.sys_info)
|
|
|
|
|
|
|
|
assert dev.model is not None
|
|
|
|
|
|
|
|
assert dev.device_type == DeviceType.Plug or dev.device_type == DeviceType.Strip
|
|
|
|
assert dev.is_plug or dev.is_strip
|
|
|
|
|
|
|
|
|
|
|
|
@plug
|
|
|
|
async def test_led(dev):
|
|
|
|
original = dev.led
|
|
|
|
|
|
|
|
await dev.set_led(False)
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
assert not dev.led
|
|
|
|
|
|
|
|
await dev.set_led(True)
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.led
|
|
|
|
|
|
|
|
await dev.set_led(original)
|