mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-22 12:05:12 +01:00
Add coverage for legacy color mode compat (#752)
This commit is contained in:
parent
c53aeff924
commit
91b0f1abba
@ -62,6 +62,7 @@ from aioesphomeapi.model import (
|
|||||||
FanState,
|
FanState,
|
||||||
HomeassistantServiceCall,
|
HomeassistantServiceCall,
|
||||||
LegacyCoverState,
|
LegacyCoverState,
|
||||||
|
LightColorCapability,
|
||||||
LightInfo,
|
LightInfo,
|
||||||
LightState,
|
LightState,
|
||||||
LockEntityState,
|
LockEntityState,
|
||||||
@ -400,3 +401,99 @@ def test_bluetooth_backcompat_for_device_info(
|
|||||||
)
|
)
|
||||||
info.bluetooth_proxy_feature_flags_compat(APIVersion(1, 8)) is flags
|
info.bluetooth_proxy_feature_flags_compat(APIVersion(1, 8)) is flags
|
||||||
info.bluetooth_proxy_feature_flags_compat(APIVersion(1, 9)) == 42
|
info.bluetooth_proxy_feature_flags_compat(APIVersion(1, 9)) == 42
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
(
|
||||||
|
"legacy_supports_brightness",
|
||||||
|
"legacy_supports_rgb",
|
||||||
|
"legacy_supports_white_value",
|
||||||
|
"legacy_supports_color_temperature",
|
||||||
|
"capability",
|
||||||
|
),
|
||||||
|
[
|
||||||
|
(False, False, False, False, [LightColorCapability.ON_OFF]),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
[LightColorCapability.ON_OFF | LightColorCapability.BRIGHTNESS],
|
||||||
|
),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
True,
|
||||||
|
[
|
||||||
|
LightColorCapability.ON_OFF
|
||||||
|
| LightColorCapability.BRIGHTNESS
|
||||||
|
| LightColorCapability.COLOR_TEMPERATURE
|
||||||
|
],
|
||||||
|
),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
[
|
||||||
|
LightColorCapability.ON_OFF
|
||||||
|
| LightColorCapability.BRIGHTNESS
|
||||||
|
| LightColorCapability.RGB
|
||||||
|
],
|
||||||
|
),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
[
|
||||||
|
LightColorCapability.ON_OFF
|
||||||
|
| LightColorCapability.BRIGHTNESS
|
||||||
|
| LightColorCapability.RGB
|
||||||
|
| LightColorCapability.WHITE
|
||||||
|
],
|
||||||
|
),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
True,
|
||||||
|
[
|
||||||
|
LightColorCapability.ON_OFF
|
||||||
|
| LightColorCapability.BRIGHTNESS
|
||||||
|
| LightColorCapability.RGB
|
||||||
|
| LightColorCapability.COLOR_TEMPERATURE
|
||||||
|
],
|
||||||
|
),
|
||||||
|
(
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
True,
|
||||||
|
[
|
||||||
|
LightColorCapability.ON_OFF
|
||||||
|
| LightColorCapability.BRIGHTNESS
|
||||||
|
| LightColorCapability.RGB
|
||||||
|
| LightColorCapability.WHITE
|
||||||
|
| LightColorCapability.COLOR_TEMPERATURE
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_supported_color_modes_compat(
|
||||||
|
legacy_supports_brightness: bool,
|
||||||
|
legacy_supports_rgb: bool,
|
||||||
|
legacy_supports_white_value: bool,
|
||||||
|
legacy_supports_color_temperature: bool,
|
||||||
|
capability: LightColorCapability,
|
||||||
|
) -> None:
|
||||||
|
info = LightInfo(
|
||||||
|
legacy_supports_brightness=legacy_supports_brightness,
|
||||||
|
legacy_supports_rgb=legacy_supports_rgb,
|
||||||
|
legacy_supports_white_value=legacy_supports_white_value,
|
||||||
|
legacy_supports_color_temperature=legacy_supports_color_temperature,
|
||||||
|
supported_color_modes=[42],
|
||||||
|
)
|
||||||
|
info.supported_color_modes_compat(APIVersion(1, 6)) is capability
|
||||||
|
info.supported_color_modes_compat(APIVersion(1, 9)) == [42]
|
||||||
|
Loading…
Reference in New Issue
Block a user