mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-25 04:33:33 +00:00
6a86ffbbba
This will catch common issues with pytest code. * Use `match` when using `pytest.raises()` for base exception types like `TypeError` or `ValueError` * Use tuples for `parametrize()` * Enforces `pytest.raises()` to contain simple statements, using `noqa` to skip this on some cases for now. * Fixes incorrect exception type (valueerror instead of typeerror) for iotdimmer. * Adds check valid types for `iotbulb.set_hsv` and `color` smart module. * Consolidate exception messages for common interface modules.
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
import pytest
|
|
|
|
from kasa.smart.modules import TemperatureSensor
|
|
from kasa.tests.device_fixtures import parametrize
|
|
|
|
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_unit", str),
|
|
],
|
|
)
|
|
async def test_temperature_features(dev, feature, type):
|
|
"""Test that features are registered and work as expected."""
|
|
temp_module: TemperatureSensor = dev.modules["TemperatureSensor"]
|
|
|
|
prop = getattr(temp_module, feature)
|
|
assert isinstance(prop, type)
|
|
|
|
feat = dev.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 = dev.features["temperature_warning"]
|
|
assert feat.value == temp_module.temperature_warning
|
|
assert isinstance(feat.value, bool)
|