mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-26 13:03:34 +00:00
29 lines
698 B
Python
29 lines
698 B
Python
import pytest
|
|
|
|
from kasa import Module, SmartDevice
|
|
from kasa.tests.device_fixtures import parametrize
|
|
|
|
contact = parametrize(
|
|
"is contact sensor", model_filter="T110", protocol_filter={"SMART.CHILD"}
|
|
)
|
|
|
|
|
|
@contact
|
|
@pytest.mark.parametrize(
|
|
"feature, type",
|
|
[
|
|
("is_open", bool),
|
|
],
|
|
)
|
|
async def test_contact_features(dev: SmartDevice, feature, type):
|
|
"""Test that features are registered and work as expected."""
|
|
contact = dev.modules.get(Module.ContactSensor)
|
|
assert contact is not None
|
|
|
|
prop = getattr(contact, feature)
|
|
assert isinstance(prop, type)
|
|
|
|
feat = dev.features[feature]
|
|
assert feat.value == prop
|
|
assert isinstance(feat.value, type)
|