2019-04-22 19:49:15 +00:00
|
|
|
"""The tests for the Legacy Mqtt vacuum platform."""
|
|
|
|
from copy import deepcopy
|
2019-01-06 18:23:33 +00:00
|
|
|
import json
|
2017-09-15 13:39:20 +00:00
|
|
|
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.components import mqtt, vacuum
|
2019-04-22 19:49:15 +00:00
|
|
|
from homeassistant.components.mqtt import CONF_COMMAND_TOPIC
|
2019-01-06 16:05:04 +00:00
|
|
|
from homeassistant.components.mqtt.discovery import async_start
|
2019-04-22 19:49:15 +00:00
|
|
|
from homeassistant.components.mqtt.vacuum import (
|
|
|
|
schema_legacy as mqttvacuum, services_to_strings)
|
|
|
|
from homeassistant.components.mqtt.vacuum.schema_legacy import (
|
|
|
|
ALL_SERVICES, SERVICE_TO_STRING)
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.components.vacuum import (
|
|
|
|
ATTR_BATTERY_ICON, ATTR_BATTERY_LEVEL, ATTR_FAN_SPEED, ATTR_STATUS)
|
|
|
|
from homeassistant.const import (
|
|
|
|
CONF_NAME, CONF_PLATFORM, STATE_OFF, STATE_ON, STATE_UNAVAILABLE)
|
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
2017-09-15 13:39:20 +00:00
|
|
|
from tests.common import (
|
2019-01-27 17:54:52 +00:00
|
|
|
MockConfigEntry, async_fire_mqtt_message, async_mock_mqtt_component)
|
2018-09-26 16:02:05 +00:00
|
|
|
from tests.components.vacuum import common
|
2017-09-15 13:39:20 +00:00
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
DEFAULT_CONFIG = {
|
2019-01-06 16:05:04 +00:00
|
|
|
CONF_PLATFORM: 'mqtt',
|
|
|
|
CONF_NAME: 'mqtttest',
|
|
|
|
CONF_COMMAND_TOPIC: 'vacuum/command',
|
|
|
|
mqttvacuum.CONF_SEND_COMMAND_TOPIC: 'vacuum/send_command',
|
|
|
|
mqttvacuum.CONF_BATTERY_LEVEL_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_BATTERY_LEVEL_TEMPLATE:
|
|
|
|
'{{ value_json.battery_level }}',
|
|
|
|
mqttvacuum.CONF_CHARGING_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_CHARGING_TEMPLATE: '{{ value_json.charging }}',
|
|
|
|
mqttvacuum.CONF_CLEANING_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_CLEANING_TEMPLATE: '{{ value_json.cleaning }}',
|
|
|
|
mqttvacuum.CONF_DOCKED_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_DOCKED_TEMPLATE: '{{ value_json.docked }}',
|
2019-04-14 03:29:01 +00:00
|
|
|
mqttvacuum.CONF_ERROR_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_ERROR_TEMPLATE: '{{ value_json.error }}',
|
2019-01-06 16:05:04 +00:00
|
|
|
mqttvacuum.CONF_FAN_SPEED_TOPIC: 'vacuum/state',
|
|
|
|
mqttvacuum.CONF_FAN_SPEED_TEMPLATE: '{{ value_json.fan_speed }}',
|
|
|
|
mqttvacuum.CONF_SET_FAN_SPEED_TOPIC: 'vacuum/set_fan_speed',
|
|
|
|
mqttvacuum.CONF_FAN_SPEED_LIST: ['min', 'medium', 'high', 'max'],
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_default_supported_features(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test that the correct supported features."""
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: DEFAULT_CONFIG,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
entity = hass.states.get('vacuum.mqtttest')
|
|
|
|
entity_features = \
|
|
|
|
entity.attributes.get(mqttvacuum.CONF_SUPPORTED_FEATURES, 0)
|
2019-04-22 19:49:15 +00:00
|
|
|
assert sorted(services_to_strings(entity_features, SERVICE_TO_STRING)) == \
|
2019-01-06 16:05:04 +00:00
|
|
|
sorted(['turn_on', 'turn_off', 'stop',
|
|
|
|
'return_home', 'battery', 'status',
|
|
|
|
'clean_spot'])
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_all_commands(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test simple commands to the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_turn_on(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'turn_on', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_turn_off(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'turn_off', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_stop(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'stop', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_clean_spot(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'clean_spot', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_locate(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'locate', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_start_pause(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'start_pause', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_return_to_base(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/command', 'return_to_base', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_set_fan_speed(hass, 'high', 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/set_fan_speed', 'high', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_send_command(hass, '44 FE 93',
|
|
|
|
entity_id='vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_called_once_with(
|
2019-01-06 16:05:04 +00:00
|
|
|
'vacuum/send_command', '44 FE 93', 0, False)
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.reset_mock()
|
2019-04-14 18:09:46 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_send_command(hass, '44 FE 93', {"key": "value"},
|
|
|
|
entity_id='vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert json.loads(mqtt_mock.async_publish.mock_calls[-1][1][1]) == {
|
2019-04-15 02:07:05 +00:00
|
|
|
"command": "44 FE 93",
|
|
|
|
"key": "value"
|
|
|
|
}
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_send_command(hass, '44 FE 93', {"key": "value"},
|
|
|
|
entity_id='vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert json.loads(mqtt_mock.async_publish.mock_calls[-1][1][1]) == {
|
|
|
|
"command": "44 FE 93",
|
|
|
|
"key": "value"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async def test_commands_without_supported_features(hass, mqtt_mock):
|
|
|
|
"""Test commands which are not supported by the vacuum."""
|
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
services = mqttvacuum.STRING_TO_SERVICE["status"]
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
services_to_strings(
|
|
|
|
services, SERVICE_TO_STRING)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_turn_on(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_turn_off(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_stop(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_clean_spot(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_locate(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_start_pause(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_return_to_base(hass, 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_set_fan_speed(hass, 'high', 'vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
2019-04-25 08:14:16 +00:00
|
|
|
await common.async_send_command(hass, '44 FE 93',
|
|
|
|
entity_id='vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
mqtt_mock.async_publish.assert_not_called()
|
|
|
|
mqtt_mock.async_publish.reset_mock()
|
|
|
|
|
|
|
|
|
|
|
|
async def test_attributes_without_supported_features(hass, mqtt_mock):
|
|
|
|
"""Test attributes which are not supported by the vacuum."""
|
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
services = mqttvacuum.STRING_TO_SERVICE["turn_on"]
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
services_to_strings(
|
|
|
|
services, SERVICE_TO_STRING)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state == STATE_OFF
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_BATTERY_LEVEL) is None
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) is None
|
|
|
|
|
2019-01-06 16:05:04 +00:00
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"battery_level": 54,
|
|
|
|
"cleaning": true,
|
|
|
|
"docked": false,
|
|
|
|
"charging": false,
|
|
|
|
"fan_speed": "max"
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.state == STATE_ON
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) == 'mdi:battery-50'
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_LEVEL) == 54
|
|
|
|
assert state.attributes.get(ATTR_FAN_SPEED) == 'max'
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
message = """{
|
|
|
|
"battery_level": 61,
|
|
|
|
"docked": true,
|
|
|
|
"cleaning": false,
|
|
|
|
"charging": true,
|
|
|
|
"fan_speed": "min"
|
|
|
|
}"""
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.state == STATE_OFF
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) == 'mdi:battery-charging-60'
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_LEVEL) == 61
|
|
|
|
assert state.attributes.get(ATTR_FAN_SPEED) == 'min'
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_battery(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"battery_level": 54
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) == 'mdi:battery-50'
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_cleaning(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"cleaning": true
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.state == STATE_ON
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_docked(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"docked": true
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.state == STATE_OFF
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_charging(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"charging": true
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) == 'mdi:battery-outline'
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_fan_speed(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"fan_speed": "max"
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_FAN_SPEED) == 'max'
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_error(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test status updates from the vacuum."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-04-14 03:29:01 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-04-14 03:29:01 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
message = """{
|
|
|
|
"error": "Error1"
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_STATUS) == 'Error: Error1'
|
2019-04-14 03:29:01 +00:00
|
|
|
|
2019-04-19 04:01:19 +00:00
|
|
|
message = """{
|
|
|
|
"error": ""
|
|
|
|
}"""
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', message)
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_STATUS) == 'Stopped'
|
2019-04-19 04:01:19 +00:00
|
|
|
|
2019-04-14 03:29:01 +00:00
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_battery_template(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test that you can use non-default templates for battery_level."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config.update({
|
2019-01-06 16:05:04 +00:00
|
|
|
mqttvacuum.CONF_SUPPORTED_FEATURES:
|
2019-04-22 19:49:15 +00:00
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING),
|
2019-01-06 16:05:04 +00:00
|
|
|
mqttvacuum.CONF_BATTERY_LEVEL_TOPIC: "retroroomba/battery_level",
|
|
|
|
mqttvacuum.CONF_BATTERY_LEVEL_TEMPLATE: "{{ value }}"
|
|
|
|
})
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'retroroomba/battery_level', '54')
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get(ATTR_BATTERY_LEVEL) == 54
|
|
|
|
assert state.attributes.get(ATTR_BATTERY_ICON) == 'mdi:battery-50'
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_status_invalid_json(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test to make sure nothing breaks if the vacuum sends bad JSON."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config[mqttvacuum.CONF_SUPPORTED_FEATURES] = \
|
|
|
|
mqttvacuum.services_to_strings(ALL_SERVICES, SERVICE_TO_STRING)
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'vacuum/state', '{"asdfasas false}')
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.state == STATE_OFF
|
|
|
|
assert state.attributes.get(ATTR_STATUS) == "Stopped"
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_battery_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_BATTERY_LEVEL_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_charging_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_CHARGING_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_cleaning_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_CLEANING_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_docked_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_DOCKED_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_error_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_ERROR_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_missing_fan_speed_template(hass, mqtt_mock):
|
2019-04-14 03:29:01 +00:00
|
|
|
"""Test to make sure missing template is not allowed."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
2019-04-14 03:29:01 +00:00
|
|
|
config.pop(mqttvacuum.CONF_FAN_SPEED_TEMPLATE)
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: config,
|
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_default_availability_payload(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test availability by default payload with defined topic."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config.update({
|
2019-01-06 16:05:04 +00:00
|
|
|
'availability_topic': 'availability-topic'
|
|
|
|
})
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state == STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'availability-topic', 'online')
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state != STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'availability-topic', 'offline')
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state == STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_custom_availability_payload(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test availability by custom payload with defined topic."""
|
2019-04-22 19:49:15 +00:00
|
|
|
config = deepcopy(DEFAULT_CONFIG)
|
|
|
|
config.update({
|
2019-01-06 16:05:04 +00:00
|
|
|
'availability_topic': 'availability-topic',
|
|
|
|
'payload_available': 'good',
|
|
|
|
'payload_not_available': 'nogood'
|
|
|
|
})
|
|
|
|
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
2019-04-22 19:49:15 +00:00
|
|
|
vacuum.DOMAIN: config,
|
2019-01-06 16:05:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state == STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'availability-topic', 'good')
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state != STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'availability-topic', 'nogood')
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.mqtttest')
|
2019-04-25 08:14:16 +00:00
|
|
|
assert state.state == STATE_UNAVAILABLE
|
2019-01-06 16:05:04 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_discovery_removal_vacuum(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test removal of discovered vacuum."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
|
|
|
|
data = (
|
|
|
|
'{ "name": "Beer",'
|
|
|
|
' "command_topic": "test_topic" }'
|
|
|
|
)
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is not None
|
|
|
|
assert state.name == 'Beer'
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config', '')
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-01-28 23:56:47 +00:00
|
|
|
async def test_discovery_broken(hass, mqtt_mock, caplog):
|
|
|
|
"""Test handling of bad discovery message."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
|
|
|
|
data1 = (
|
|
|
|
'{ "name": "Beer",'
|
|
|
|
' "command_topic": "test_topic#" }'
|
|
|
|
)
|
|
|
|
data2 = (
|
|
|
|
'{ "name": "Milk",'
|
|
|
|
' "command_topic": "test_topic" }'
|
|
|
|
)
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data1)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data2)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.milk')
|
|
|
|
assert state is not None
|
|
|
|
assert state.name == 'Milk'
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is None
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_discovery_update_vacuum(hass, mqtt_mock):
|
2019-01-06 16:05:04 +00:00
|
|
|
"""Test update of discovered vacuum."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
|
|
|
|
data1 = (
|
|
|
|
'{ "name": "Beer",'
|
|
|
|
' "command_topic": "test_topic" }'
|
|
|
|
)
|
|
|
|
data2 = (
|
|
|
|
'{ "name": "Milk",'
|
|
|
|
' "command_topic": "test_topic" }'
|
|
|
|
)
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data1)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is not None
|
|
|
|
assert state.name == 'Beer'
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data2)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.beer')
|
|
|
|
assert state is not None
|
|
|
|
assert state.name == 'Milk'
|
|
|
|
state = hass.states.get('vacuum.milk')
|
|
|
|
assert state is None
|
2019-01-06 18:23:33 +00:00
|
|
|
|
|
|
|
|
2019-01-19 10:58:21 +00:00
|
|
|
async def test_setting_attribute_via_mqtt_json_message(hass, mqtt_mock):
|
|
|
|
"""Test the setting of attribute via MQTT with JSON payload."""
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: {
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'test',
|
|
|
|
'json_attributes_topic': 'attr-topic'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic', '{ "val": "100" }')
|
|
|
|
state = hass.states.get('vacuum.test')
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get('val') == '100'
|
2019-01-19 10:58:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_update_with_json_attrs_not_dict(hass, mqtt_mock, caplog):
|
|
|
|
"""Test attributes get extracted from a JSON result."""
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: {
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'test',
|
|
|
|
'json_attributes_topic': 'attr-topic'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic', '[ "list", "of", "things"]')
|
|
|
|
state = hass.states.get('vacuum.test')
|
|
|
|
|
|
|
|
assert state.attributes.get('val') is None
|
|
|
|
assert 'JSON result was not a dictionary' in caplog.text
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_update_with_json_attrs_bad_json(hass, mqtt_mock, caplog):
|
2019-01-19 10:58:21 +00:00
|
|
|
"""Test attributes get extracted from a JSON result."""
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: {
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'test',
|
|
|
|
'json_attributes_topic': 'attr-topic'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic', 'This is not JSON')
|
|
|
|
|
|
|
|
state = hass.states.get('vacuum.test')
|
|
|
|
assert state.attributes.get('val') is None
|
|
|
|
assert 'Erroneous JSON: This is not JSON' in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
async def test_discovery_update_attr(hass, mqtt_mock, caplog):
|
|
|
|
"""Test update of discovered MQTTAttributes."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
data1 = (
|
|
|
|
'{ "name": "Beer",'
|
|
|
|
' "command_topic": "test_topic",'
|
|
|
|
' "json_attributes_topic": "attr-topic1" }'
|
|
|
|
)
|
|
|
|
data2 = (
|
|
|
|
'{ "name": "Beer",'
|
|
|
|
' "command_topic": "test_topic",'
|
|
|
|
' "json_attributes_topic": "attr-topic2" }'
|
|
|
|
)
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data1)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic1', '{ "val": "100" }')
|
|
|
|
state = hass.states.get('vacuum.beer')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get('val') == '100'
|
2019-01-19 10:58:21 +00:00
|
|
|
|
|
|
|
# Change json_attributes_topic
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data2)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
# Verify we are no longer subscribing to the old topic
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic1', '{ "val": "50" }')
|
|
|
|
state = hass.states.get('vacuum.beer')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get('val') == '100'
|
2019-01-19 10:58:21 +00:00
|
|
|
|
|
|
|
# Verify we are subscribing to the new topic
|
|
|
|
async_fire_mqtt_message(hass, 'attr-topic2', '{ "val": "75" }')
|
|
|
|
state = hass.states.get('vacuum.beer')
|
2019-04-22 19:49:15 +00:00
|
|
|
assert state.attributes.get('val') == '75'
|
2019-01-19 10:58:21 +00:00
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_unique_id(hass, mqtt_mock):
|
2019-01-06 18:23:33 +00:00
|
|
|
"""Test unique id option only creates one vacuum per unique_id."""
|
|
|
|
await async_mock_mqtt_component(hass)
|
|
|
|
assert await async_setup_component(hass, vacuum.DOMAIN, {
|
|
|
|
vacuum.DOMAIN: [{
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'Test 1',
|
|
|
|
'command_topic': 'command-topic',
|
|
|
|
'unique_id': 'TOTALLY_UNIQUE'
|
|
|
|
}, {
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'Test 2',
|
|
|
|
'command_topic': 'command-topic',
|
|
|
|
'unique_id': 'TOTALLY_UNIQUE'
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
|
|
|
|
async_fire_mqtt_message(hass, 'test-topic', 'payload')
|
|
|
|
|
|
|
|
assert len(hass.states.async_entity_ids()) == 2
|
|
|
|
# all vacuums group is 1, unique id created is 1
|
|
|
|
|
|
|
|
|
2019-04-22 19:49:15 +00:00
|
|
|
async def test_entity_device_info_with_identifier(hass, mqtt_mock):
|
2019-01-06 18:23:33 +00:00
|
|
|
"""Test MQTT vacuum device registry integration."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
registry = await hass.helpers.device_registry.async_get_registry()
|
|
|
|
|
|
|
|
data = json.dumps({
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'Test 1',
|
|
|
|
'command_topic': 'test-command-topic',
|
|
|
|
'device': {
|
|
|
|
'identifiers': ['helloworld'],
|
|
|
|
'connections': [
|
|
|
|
["mac", "02:5b:26:a8:dc:12"],
|
|
|
|
],
|
|
|
|
'manufacturer': 'Whatever',
|
|
|
|
'name': 'Beer',
|
|
|
|
'model': 'Glass',
|
|
|
|
'sw_version': '0.1-beta',
|
|
|
|
},
|
|
|
|
'unique_id': 'veryunique'
|
|
|
|
})
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
device = registry.async_get_device({('mqtt', 'helloworld')}, set())
|
|
|
|
assert device is not None
|
|
|
|
assert device.identifiers == {('mqtt', 'helloworld')}
|
|
|
|
assert device.connections == {('mac', "02:5b:26:a8:dc:12")}
|
|
|
|
assert device.manufacturer == 'Whatever'
|
|
|
|
assert device.name == 'Beer'
|
|
|
|
assert device.model == 'Glass'
|
|
|
|
assert device.sw_version == '0.1-beta'
|
2019-01-27 16:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_entity_device_info_update(hass, mqtt_mock):
|
|
|
|
"""Test device registry update."""
|
|
|
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
|
|
|
entry.add_to_hass(hass)
|
|
|
|
await async_start(hass, 'homeassistant', {}, entry)
|
|
|
|
registry = await hass.helpers.device_registry.async_get_registry()
|
|
|
|
|
|
|
|
config = {
|
|
|
|
'platform': 'mqtt',
|
|
|
|
'name': 'Test 1',
|
|
|
|
'command_topic': 'test-command-topic',
|
|
|
|
'device': {
|
|
|
|
'identifiers': ['helloworld'],
|
|
|
|
'connections': [
|
|
|
|
["mac", "02:5b:26:a8:dc:12"],
|
|
|
|
],
|
|
|
|
'manufacturer': 'Whatever',
|
|
|
|
'name': 'Beer',
|
|
|
|
'model': 'Glass',
|
|
|
|
'sw_version': '0.1-beta',
|
|
|
|
},
|
|
|
|
'unique_id': 'veryunique'
|
|
|
|
}
|
|
|
|
|
|
|
|
data = json.dumps(config)
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
device = registry.async_get_device({('mqtt', 'helloworld')}, set())
|
|
|
|
assert device is not None
|
|
|
|
assert device.name == 'Beer'
|
|
|
|
|
|
|
|
config['device']['name'] = 'Milk'
|
|
|
|
data = json.dumps(config)
|
|
|
|
async_fire_mqtt_message(hass, 'homeassistant/vacuum/bla/config',
|
|
|
|
data)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
|
|
|
|
device = registry.async_get_device({('mqtt', 'helloworld')}, set())
|
|
|
|
assert device is not None
|
|
|
|
assert device.name == 'Milk'
|