Implement Hue available property (#12939)
parent
3dfc49d311
commit
d42b5a93dd
|
@ -261,10 +261,13 @@ class HueLight(Light):
|
|||
"""Return true if device is on."""
|
||||
if self.is_group:
|
||||
return self.info['state']['any_on']
|
||||
elif self.allow_unreachable:
|
||||
return self.info['state']['on']
|
||||
return self.info['state']['reachable'] and \
|
||||
self.info['state']['on']
|
||||
return self.info['state']['on']
|
||||
|
||||
@property
|
||||
def available(self):
|
||||
"""Return if light is available."""
|
||||
return (self.is_group or self.allow_unreachable or
|
||||
self.info['state']['reachable'])
|
||||
|
||||
@property
|
||||
def supported_features(self):
|
||||
|
|
|
@ -501,3 +501,45 @@ class TestHueLight(unittest.TestCase):
|
|||
|
||||
light = self.buildLight(info={}, is_group=True)
|
||||
self.assertIsNone(light.unique_id)
|
||||
|
||||
|
||||
def test_available():
|
||||
"""Test available property."""
|
||||
light = hue_light.HueLight(
|
||||
info={'state': {'reachable': False}},
|
||||
allow_unreachable=False,
|
||||
is_group=False,
|
||||
|
||||
light_id=None,
|
||||
bridge=mock.Mock(),
|
||||
update_lights_cb=None,
|
||||
allow_in_emulated_hue=False,
|
||||
)
|
||||
|
||||
assert light.available is False
|
||||
|
||||
light = hue_light.HueLight(
|
||||
info={'state': {'reachable': False}},
|
||||
allow_unreachable=True,
|
||||
is_group=False,
|
||||
|
||||
light_id=None,
|
||||
bridge=mock.Mock(),
|
||||
update_lights_cb=None,
|
||||
allow_in_emulated_hue=False,
|
||||
)
|
||||
|
||||
assert light.available is True
|
||||
|
||||
light = hue_light.HueLight(
|
||||
info={'state': {'reachable': False}},
|
||||
allow_unreachable=False,
|
||||
is_group=True,
|
||||
|
||||
light_id=None,
|
||||
bridge=mock.Mock(),
|
||||
update_lights_cb=None,
|
||||
allow_in_emulated_hue=False,
|
||||
)
|
||||
|
||||
assert light.available is True
|
||||
|
|
Loading…
Reference in New Issue