2020-05-27 14:55:18 +00:00
|
|
|
import pytest
|
2024-01-29 19:26:39 +00:00
|
|
|
from voluptuous import (
|
|
|
|
All,
|
|
|
|
Boolean,
|
|
|
|
Optional,
|
|
|
|
Range,
|
|
|
|
Schema,
|
|
|
|
)
|
2020-05-27 14:55:18 +00:00
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
from kasa import Bulb, BulbPreset, DeviceType, KasaException
|
2024-02-04 15:20:08 +00:00
|
|
|
from kasa.iot import IotBulb
|
2024-04-20 15:18:35 +00:00
|
|
|
from kasa.smart import SmartBulb
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
from .conftest import (
|
|
|
|
bulb,
|
2023-12-05 19:07:10 +00:00
|
|
|
bulb_iot,
|
2020-05-27 14:55:18 +00:00
|
|
|
color_bulb,
|
2023-12-05 19:07:10 +00:00
|
|
|
color_bulb_iot,
|
2020-05-27 14:55:18 +00:00
|
|
|
dimmable,
|
|
|
|
handle_turn_on,
|
|
|
|
non_color_bulb,
|
|
|
|
non_dimmable,
|
|
|
|
non_variable_temp,
|
|
|
|
turn_on,
|
|
|
|
variable_temp,
|
2023-12-05 19:07:10 +00:00
|
|
|
variable_temp_iot,
|
2024-04-20 15:18:35 +00:00
|
|
|
variable_temp_smart,
|
2020-05-27 14:55:18 +00:00
|
|
|
)
|
2024-03-15 15:55:48 +00:00
|
|
|
from .test_iotdevice import SYSINFO_SCHEMA
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@bulb
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_bulb_sysinfo(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.sys_info is not None
|
2024-01-29 19:26:39 +00:00
|
|
|
SYSINFO_SCHEMA_BULB(dev.sys_info)
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
assert dev.model is not None
|
|
|
|
|
2020-07-19 20:32:17 +00:00
|
|
|
# TODO: remove special handling for lightstrip
|
|
|
|
if not dev.is_light_strip:
|
|
|
|
assert dev.device_type == DeviceType.Bulb
|
|
|
|
assert dev.is_bulb
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@bulb
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_state_attributes(dev: Bulb):
|
2024-03-26 18:28:39 +00:00
|
|
|
assert "Cloud connection" in dev.state_information
|
|
|
|
assert isinstance(dev.state_information["Cloud connection"], bool)
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_light_state_without_update(dev: IotBulb, monkeypatch):
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
monkeypatch.setitem(
|
|
|
|
dev._last_update["system"]["get_sysinfo"], "light_state", None
|
|
|
|
)
|
|
|
|
print(dev.light_state)
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_get_light_state(dev: IotBulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
LIGHT_STATE_SCHEMA(await dev.get_light_state())
|
|
|
|
|
|
|
|
|
|
|
|
@color_bulb
|
|
|
|
@turn_on
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_hsv(dev: Bulb, turn_on):
|
2020-05-27 14:55:18 +00:00
|
|
|
await handle_turn_on(dev, turn_on)
|
|
|
|
assert dev.is_color
|
|
|
|
|
|
|
|
hue, saturation, brightness = dev.hsv
|
2021-09-24 21:25:43 +00:00
|
|
|
assert 0 <= hue <= 360
|
2020-05-27 14:55:18 +00:00
|
|
|
assert 0 <= saturation <= 100
|
|
|
|
assert 0 <= brightness <= 100
|
|
|
|
|
|
|
|
await dev.set_hsv(hue=1, saturation=1, value=1)
|
|
|
|
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
hue, saturation, brightness = dev.hsv
|
|
|
|
assert hue == 1
|
|
|
|
assert saturation == 1
|
|
|
|
assert brightness == 1
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@color_bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_set_hsv_transition(dev: IotBulb, mocker):
|
|
|
|
set_light_state = mocker.patch("kasa.iot.IotBulb.set_light_state")
|
2020-06-14 18:21:55 +00:00
|
|
|
await dev.set_hsv(10, 10, 100, transition=1000)
|
|
|
|
|
|
|
|
set_light_state.assert_called_with(
|
|
|
|
{"hue": 10, "saturation": 10, "brightness": 100, "color_temp": 0},
|
|
|
|
transition=1000,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-27 14:55:18 +00:00
|
|
|
@color_bulb
|
|
|
|
@turn_on
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_invalid_hsv(dev: Bulb, turn_on):
|
2020-05-27 14:55:18 +00:00
|
|
|
await handle_turn_on(dev, turn_on)
|
|
|
|
assert dev.is_color
|
|
|
|
|
|
|
|
for invalid_hue in [-1, 361, 0.5]:
|
|
|
|
with pytest.raises(ValueError):
|
2024-02-04 15:20:08 +00:00
|
|
|
await dev.set_hsv(invalid_hue, 0, 0) # type: ignore[arg-type]
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
for invalid_saturation in [-1, 101, 0.5]:
|
|
|
|
with pytest.raises(ValueError):
|
2024-02-04 15:20:08 +00:00
|
|
|
await dev.set_hsv(0, invalid_saturation, 0) # type: ignore[arg-type]
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
for invalid_brightness in [-1, 101, 0.5]:
|
|
|
|
with pytest.raises(ValueError):
|
2024-02-04 15:20:08 +00:00
|
|
|
await dev.set_hsv(0, 0, invalid_brightness) # type: ignore[arg-type]
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@color_bulb
|
2024-03-26 18:28:39 +00:00
|
|
|
@pytest.mark.skip("requires color feature")
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_color_state_information(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert "HSV" in dev.state_information
|
|
|
|
assert dev.state_information["HSV"] == dev.hsv
|
|
|
|
|
|
|
|
|
|
|
|
@non_color_bulb
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_hsv_on_non_color(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert not dev.is_color
|
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
await dev.set_hsv(0, 0, 0)
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
print(dev.hsv)
|
|
|
|
|
|
|
|
|
|
|
|
@variable_temp
|
2024-03-26 18:28:39 +00:00
|
|
|
@pytest.mark.skip("requires colortemp module")
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_variable_temp_state_information(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert "Color temperature" in dev.state_information
|
|
|
|
assert dev.state_information["Color temperature"] == dev.color_temp
|
|
|
|
|
|
|
|
|
|
|
|
@variable_temp
|
|
|
|
@turn_on
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_try_set_colortemp(dev: Bulb, turn_on):
|
2020-05-27 14:55:18 +00:00
|
|
|
await handle_turn_on(dev, turn_on)
|
|
|
|
await dev.set_color_temp(2700)
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.color_temp == 2700
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@variable_temp_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_set_color_temp_transition(dev: IotBulb, mocker):
|
|
|
|
set_light_state = mocker.patch("kasa.iot.IotBulb.set_light_state")
|
2020-06-14 18:21:55 +00:00
|
|
|
await dev.set_color_temp(2700, transition=100)
|
|
|
|
|
|
|
|
set_light_state.assert_called_with({"color_temp": 2700}, transition=100)
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@variable_temp_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_unknown_temp_range(dev: IotBulb, monkeypatch, caplog):
|
2021-09-21 11:23:56 +00:00
|
|
|
monkeypatch.setitem(dev._sys_info, "model", "unknown bulb")
|
|
|
|
|
|
|
|
assert dev.valid_temperature_range == (2700, 5000)
|
|
|
|
assert "Unknown color temperature range, fallback to 2700-5000" in caplog.text
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
2024-04-20 15:18:35 +00:00
|
|
|
@variable_temp_smart
|
|
|
|
async def test_smart_temp_range(dev: SmartBulb):
|
|
|
|
assert dev.valid_temperature_range
|
|
|
|
|
|
|
|
|
2020-05-27 14:55:18 +00:00
|
|
|
@variable_temp
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_out_of_range_temperature(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await dev.set_color_temp(1000)
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await dev.set_color_temp(10000)
|
|
|
|
|
|
|
|
|
|
|
|
@non_variable_temp
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_non_variable_temp(dev: Bulb):
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
await dev.set_color_temp(2700)
|
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2024-01-03 18:31:42 +00:00
|
|
|
print(dev.valid_temperature_range)
|
2020-05-27 14:55:18 +00:00
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
print(dev.color_temp)
|
|
|
|
|
|
|
|
|
|
|
|
@dimmable
|
|
|
|
@turn_on
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_dimmable_brightness(dev: Bulb, turn_on):
|
2020-05-27 14:55:18 +00:00
|
|
|
await handle_turn_on(dev, turn_on)
|
|
|
|
assert dev.is_dimmable
|
|
|
|
|
|
|
|
await dev.set_brightness(50)
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.brightness == 50
|
|
|
|
|
|
|
|
await dev.set_brightness(10)
|
2021-09-19 21:45:48 +00:00
|
|
|
await dev.update()
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.brightness == 10
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
2024-02-04 15:20:08 +00:00
|
|
|
await dev.set_brightness("foo") # type: ignore[arg-type]
|
2020-05-27 14:55:18 +00:00
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_turn_on_transition(dev: IotBulb, mocker):
|
|
|
|
set_light_state = mocker.patch("kasa.iot.IotBulb.set_light_state")
|
2020-06-14 18:21:55 +00:00
|
|
|
await dev.turn_on(transition=1000)
|
|
|
|
|
|
|
|
set_light_state.assert_called_with({"on_off": 1}, transition=1000)
|
|
|
|
|
|
|
|
await dev.turn_off(transition=100)
|
|
|
|
|
|
|
|
set_light_state.assert_called_with({"on_off": 0}, transition=100)
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_dimmable_brightness_transition(dev: IotBulb, mocker):
|
|
|
|
set_light_state = mocker.patch("kasa.iot.IotBulb.set_light_state")
|
2020-06-14 18:21:55 +00:00
|
|
|
await dev.set_brightness(10, transition=1000)
|
|
|
|
|
|
|
|
set_light_state.assert_called_with({"brightness": 10}, transition=1000)
|
|
|
|
|
|
|
|
|
2020-05-27 14:55:18 +00:00
|
|
|
@dimmable
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_invalid_brightness(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.is_dimmable
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await dev.set_brightness(110)
|
|
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await dev.set_brightness(-100)
|
|
|
|
|
|
|
|
|
|
|
|
@non_dimmable
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_non_dimmable(dev: Bulb):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert not dev.is_dimmable
|
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
assert dev.brightness == 0
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2020-05-27 14:55:18 +00:00
|
|
|
await dev.set_brightness(100)
|
2022-04-05 16:51:36 +00:00
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2022-10-22 22:15:47 +00:00
|
|
|
async def test_ignore_default_not_set_without_color_mode_change_turn_on(
|
2024-02-04 15:20:08 +00:00
|
|
|
dev: IotBulb, mocker
|
2022-10-22 22:15:47 +00:00
|
|
|
):
|
2024-02-04 15:20:08 +00:00
|
|
|
query_helper = mocker.patch("kasa.iot.IotBulb._query_helper")
|
2022-04-05 16:51:36 +00:00
|
|
|
# When turning back without settings, ignore default to restore the state
|
|
|
|
await dev.turn_on()
|
|
|
|
args, kwargs = query_helper.call_args_list[0]
|
|
|
|
assert args[2] == {"on_off": 1, "ignore_default": 0}
|
|
|
|
|
|
|
|
await dev.turn_off()
|
|
|
|
args, kwargs = query_helper.call_args_list[1]
|
|
|
|
assert args[2] == {"on_off": 0, "ignore_default": 1}
|
2022-10-22 22:15:47 +00:00
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_list_presets(dev: IotBulb):
|
2022-10-22 22:15:47 +00:00
|
|
|
presets = dev.presets
|
|
|
|
assert len(presets) == len(dev.sys_info["preferred_state"])
|
|
|
|
|
|
|
|
for preset, raw in zip(presets, dev.sys_info["preferred_state"]):
|
|
|
|
assert preset.index == raw["index"]
|
|
|
|
assert preset.hue == raw["hue"]
|
|
|
|
assert preset.brightness == raw["brightness"]
|
|
|
|
assert preset.saturation == raw["saturation"]
|
|
|
|
assert preset.color_temp == raw["color_temp"]
|
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_modify_preset(dev: IotBulb, mocker):
|
2023-04-01 14:15:58 +00:00
|
|
|
"""Verify that modifying preset calls the and exceptions are raised properly."""
|
2022-10-22 22:15:47 +00:00
|
|
|
if not dev.presets:
|
|
|
|
pytest.skip("Some strips do not support presets")
|
|
|
|
|
|
|
|
data = {
|
|
|
|
"index": 0,
|
|
|
|
"brightness": 10,
|
|
|
|
"hue": 0,
|
|
|
|
"saturation": 0,
|
|
|
|
"color_temp": 0,
|
|
|
|
}
|
2024-02-04 15:20:08 +00:00
|
|
|
preset = BulbPreset(**data)
|
2022-10-22 22:15:47 +00:00
|
|
|
|
|
|
|
assert preset.index == 0
|
|
|
|
assert preset.brightness == 10
|
|
|
|
assert preset.hue == 0
|
|
|
|
assert preset.saturation == 0
|
|
|
|
assert preset.color_temp == 0
|
|
|
|
|
|
|
|
await dev.save_preset(preset)
|
2024-04-24 11:25:16 +00:00
|
|
|
await dev.update()
|
2022-10-22 22:15:47 +00:00
|
|
|
assert dev.presets[0].brightness == 10
|
|
|
|
|
2024-02-21 15:52:55 +00:00
|
|
|
with pytest.raises(KasaException):
|
2022-10-22 22:15:47 +00:00
|
|
|
await dev.save_preset(
|
2024-02-04 15:20:08 +00:00
|
|
|
BulbPreset(index=5, hue=0, brightness=0, saturation=0, color_temp=0)
|
2022-10-22 22:15:47 +00:00
|
|
|
)
|
2023-04-01 14:15:58 +00:00
|
|
|
|
|
|
|
|
2023-12-05 19:07:10 +00:00
|
|
|
@bulb_iot
|
2023-04-01 14:15:58 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
("preset", "payload"),
|
|
|
|
[
|
|
|
|
(
|
2024-02-04 15:20:08 +00:00
|
|
|
BulbPreset(index=0, hue=0, brightness=1, saturation=0),
|
2023-04-01 14:15:58 +00:00
|
|
|
{"index": 0, "hue": 0, "brightness": 1, "saturation": 0},
|
|
|
|
),
|
|
|
|
(
|
2024-02-04 15:20:08 +00:00
|
|
|
BulbPreset(index=0, brightness=1, id="testid", mode=2, custom=0),
|
2023-04-01 14:15:58 +00:00
|
|
|
{"index": 0, "brightness": 1, "id": "testid", "mode": 2, "custom": 0},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
2024-02-04 15:20:08 +00:00
|
|
|
async def test_modify_preset_payloads(dev: IotBulb, preset, payload, mocker):
|
2023-04-01 14:15:58 +00:00
|
|
|
"""Test that modify preset payloads ignore none values."""
|
|
|
|
if not dev.presets:
|
|
|
|
pytest.skip("Some strips do not support presets")
|
|
|
|
|
2024-02-04 15:20:08 +00:00
|
|
|
query_helper = mocker.patch("kasa.iot.IotBulb._query_helper")
|
2023-04-01 14:15:58 +00:00
|
|
|
await dev.save_preset(preset)
|
|
|
|
query_helper.assert_called_with(dev.LIGHT_SERVICE, "set_preferred_state", payload)
|
2024-01-29 19:26:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
LIGHT_STATE_SCHEMA = Schema(
|
|
|
|
{
|
|
|
|
"brightness": All(int, Range(min=0, max=100)),
|
|
|
|
"color_temp": int,
|
|
|
|
"hue": All(int, Range(min=0, max=360)),
|
|
|
|
"mode": str,
|
|
|
|
"on_off": Boolean,
|
|
|
|
"saturation": All(int, Range(min=0, max=100)),
|
|
|
|
"dft_on_state": Optional(
|
|
|
|
{
|
|
|
|
"brightness": All(int, Range(min=0, max=100)),
|
|
|
|
"color_temp": All(int, Range(min=0, max=9000)),
|
|
|
|
"hue": All(int, Range(min=0, max=360)),
|
|
|
|
"mode": str,
|
|
|
|
"saturation": All(int, Range(min=0, max=100)),
|
|
|
|
}
|
|
|
|
),
|
|
|
|
"err_code": int,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
SYSINFO_SCHEMA_BULB = SYSINFO_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
"ctrl_protocols": Optional(dict),
|
|
|
|
"description": Optional(str), # Seen on LBxxx, similar to dev_name
|
|
|
|
"dev_state": str,
|
|
|
|
"disco_ver": str,
|
|
|
|
"heapsize": int,
|
|
|
|
"is_color": Boolean,
|
|
|
|
"is_dimmable": Boolean,
|
|
|
|
"is_factory": Boolean,
|
|
|
|
"is_variable_color_temp": Boolean,
|
|
|
|
"light_state": LIGHT_STATE_SCHEMA,
|
|
|
|
"preferred_state": [
|
|
|
|
{
|
|
|
|
"brightness": All(int, Range(min=0, max=100)),
|
|
|
|
"color_temp": int,
|
|
|
|
"hue": All(int, Range(min=0, max=360)),
|
|
|
|
"index": int,
|
|
|
|
"saturation": All(int, Range(min=0, max=100)),
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|
2024-03-15 15:55:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
@bulb
|
|
|
|
def test_device_type_bulb(dev):
|
|
|
|
if dev.is_light_strip:
|
|
|
|
pytest.skip("bulb has also lightstrips to test the api")
|
|
|
|
assert dev.device_type == DeviceType.Bulb
|