Implement Hue available property (#12939)

pull/13095/head
Paulus Schoutsen 2018-03-11 09:49:28 -07:00 committed by GitHub
parent 3dfc49d311
commit d42b5a93dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 4 deletions

View File

@ -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']
@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):

View File

@ -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