mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-08-06 18:54:08 +00:00
Add support for KH100 hub (#847)
Add SMART.KASAHUB to the map of supported devices. This also adds fixture files for KH100, KE100, and T310, and adapts affected modules and their tests accordingly. --------- Co-authored-by: Steven B <51370195+sdb9696@users.noreply.github.com>
This commit is contained in:
@@ -7,13 +7,18 @@ temperature = parametrize(
|
||||
"has temperature", component_filter="temperature", protocol_filter={"SMART.CHILD"}
|
||||
)
|
||||
|
||||
temperature_warning = parametrize(
|
||||
"has temperature warning",
|
||||
component_filter="comfort_temperature",
|
||||
protocol_filter={"SMART.CHILD"},
|
||||
)
|
||||
|
||||
|
||||
@temperature
|
||||
@pytest.mark.parametrize(
|
||||
"feature, type",
|
||||
[
|
||||
("temperature", float),
|
||||
("temperature_warning", bool),
|
||||
("temperature_unit", str),
|
||||
],
|
||||
)
|
||||
@@ -27,3 +32,16 @@ async def test_temperature_features(dev, feature, type):
|
||||
feat = temp_module._module_features[feature]
|
||||
assert feat.value == prop
|
||||
assert isinstance(feat.value, type)
|
||||
|
||||
|
||||
@temperature_warning
|
||||
async def test_temperature_warning(dev):
|
||||
"""Test that features are registered and work as expected."""
|
||||
temp_module: TemperatureSensor = dev.modules["TemperatureSensor"]
|
||||
|
||||
assert hasattr(temp_module, "temperature_warning")
|
||||
assert isinstance(temp_module.temperature_warning, bool)
|
||||
|
||||
feat = temp_module._module_features["temperature_warning"]
|
||||
assert feat.value == temp_module.temperature_warning
|
||||
assert isinstance(feat.value, bool)
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import pytest
|
||||
|
||||
from kasa.smart.modules import TemperatureSensor
|
||||
from kasa.tests.device_fixtures import parametrize
|
||||
from kasa.tests.device_fixtures import parametrize, thermostats_smart
|
||||
|
||||
temperature = parametrize(
|
||||
"has temperature control",
|
||||
@@ -10,11 +10,11 @@ temperature = parametrize(
|
||||
)
|
||||
|
||||
|
||||
@temperature
|
||||
@thermostats_smart
|
||||
@pytest.mark.parametrize(
|
||||
"feature, type",
|
||||
[
|
||||
("target_temperature", int),
|
||||
("target_temperature", float),
|
||||
("temperature_offset", int),
|
||||
],
|
||||
)
|
||||
|
Reference in New Issue
Block a user