mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Black
This commit is contained in:
@@ -9,19 +9,41 @@ from pysmartthings.device import Status
|
||||
import pytest
|
||||
|
||||
from homeassistant.components.climate.const import (
|
||||
ATTR_CURRENT_HUMIDITY, ATTR_CURRENT_TEMPERATURE, ATTR_FAN_MODE,
|
||||
ATTR_FAN_MODES, ATTR_HVAC_ACTIONS, ATTR_HVAC_MODE, ATTR_HVAC_MODES,
|
||||
ATTR_TARGET_TEMP_HIGH, ATTR_TARGET_TEMP_LOW, CURRENT_HVAC_IDLE,
|
||||
DOMAIN as CLIMATE_DOMAIN, HVAC_MODE_AUTO, HVAC_MODE_COOL, HVAC_MODE_DRY,
|
||||
HVAC_MODE_FAN_ONLY, HVAC_MODE_HEAT, HVAC_MODE_HEAT_COOL, HVAC_MODE_OFF,
|
||||
SERVICE_SET_FAN_MODE, SERVICE_SET_HVAC_MODE, SERVICE_SET_TEMPERATURE,
|
||||
SUPPORT_FAN_MODE, SUPPORT_TARGET_TEMPERATURE,
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE)
|
||||
ATTR_CURRENT_HUMIDITY,
|
||||
ATTR_CURRENT_TEMPERATURE,
|
||||
ATTR_FAN_MODE,
|
||||
ATTR_FAN_MODES,
|
||||
ATTR_HVAC_ACTIONS,
|
||||
ATTR_HVAC_MODE,
|
||||
ATTR_HVAC_MODES,
|
||||
ATTR_TARGET_TEMP_HIGH,
|
||||
ATTR_TARGET_TEMP_LOW,
|
||||
CURRENT_HVAC_IDLE,
|
||||
DOMAIN as CLIMATE_DOMAIN,
|
||||
HVAC_MODE_AUTO,
|
||||
HVAC_MODE_COOL,
|
||||
HVAC_MODE_DRY,
|
||||
HVAC_MODE_FAN_ONLY,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_OFF,
|
||||
SERVICE_SET_FAN_MODE,
|
||||
SERVICE_SET_HVAC_MODE,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
SUPPORT_FAN_MODE,
|
||||
SUPPORT_TARGET_TEMPERATURE,
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE,
|
||||
)
|
||||
from homeassistant.components.smartthings import climate
|
||||
from homeassistant.components.smartthings.const import DOMAIN
|
||||
from homeassistant.const import (
|
||||
ATTR_ENTITY_ID, ATTR_SUPPORTED_FEATURES, ATTR_TEMPERATURE,
|
||||
SERVICE_TURN_OFF, SERVICE_TURN_ON, STATE_UNKNOWN)
|
||||
ATTR_ENTITY_ID,
|
||||
ATTR_SUPPORTED_FEATURES,
|
||||
ATTR_TEMPERATURE,
|
||||
SERVICE_TURN_OFF,
|
||||
SERVICE_TURN_ON,
|
||||
STATE_UNKNOWN,
|
||||
)
|
||||
|
||||
from .conftest import setup_platform
|
||||
|
||||
@@ -35,14 +57,14 @@ def legacy_thermostat_fixture(device_factory):
|
||||
status={
|
||||
Attribute.cooling_setpoint: 74,
|
||||
Attribute.heating_setpoint: 68,
|
||||
Attribute.thermostat_fan_mode: 'auto',
|
||||
Attribute.supported_thermostat_fan_modes: ['auto', 'on'],
|
||||
Attribute.thermostat_mode: 'auto',
|
||||
Attribute.thermostat_fan_mode: "auto",
|
||||
Attribute.supported_thermostat_fan_modes: ["auto", "on"],
|
||||
Attribute.thermostat_mode: "auto",
|
||||
Attribute.supported_thermostat_modes: climate.MODE_TO_STATE.keys(),
|
||||
Attribute.thermostat_operating_state: 'idle'
|
||||
}
|
||||
Attribute.thermostat_operating_state: "idle",
|
||||
},
|
||||
)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, 'F', None)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, "F", None)
|
||||
return device
|
||||
|
||||
|
||||
@@ -55,16 +77,16 @@ def basic_thermostat_fixture(device_factory):
|
||||
Capability.temperature_measurement,
|
||||
Capability.thermostat_cooling_setpoint,
|
||||
Capability.thermostat_heating_setpoint,
|
||||
Capability.thermostat_mode],
|
||||
Capability.thermostat_mode,
|
||||
],
|
||||
status={
|
||||
Attribute.cooling_setpoint: 74,
|
||||
Attribute.heating_setpoint: 68,
|
||||
Attribute.thermostat_mode: 'off',
|
||||
Attribute.supported_thermostat_modes:
|
||||
['off', 'auto', 'heat', 'cool']
|
||||
}
|
||||
Attribute.thermostat_mode: "off",
|
||||
Attribute.supported_thermostat_modes: ["off", "auto", "heat", "cool"],
|
||||
},
|
||||
)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, 'F', None)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, "F", None)
|
||||
return device
|
||||
|
||||
|
||||
@@ -80,20 +102,26 @@ def thermostat_fixture(device_factory):
|
||||
Capability.thermostat_heating_setpoint,
|
||||
Capability.thermostat_mode,
|
||||
Capability.thermostat_operating_state,
|
||||
Capability.thermostat_fan_mode],
|
||||
Capability.thermostat_fan_mode,
|
||||
],
|
||||
status={
|
||||
Attribute.cooling_setpoint: 74,
|
||||
Attribute.heating_setpoint: 68,
|
||||
Attribute.thermostat_fan_mode: 'on',
|
||||
Attribute.supported_thermostat_fan_modes: ['auto', 'on'],
|
||||
Attribute.thermostat_mode: 'heat',
|
||||
Attribute.supported_thermostat_modes:
|
||||
['auto', 'heat', 'cool', 'off', 'eco'],
|
||||
Attribute.thermostat_operating_state: 'idle',
|
||||
Attribute.humidity: 34
|
||||
}
|
||||
Attribute.thermostat_fan_mode: "on",
|
||||
Attribute.supported_thermostat_fan_modes: ["auto", "on"],
|
||||
Attribute.thermostat_mode: "heat",
|
||||
Attribute.supported_thermostat_modes: [
|
||||
"auto",
|
||||
"heat",
|
||||
"cool",
|
||||
"off",
|
||||
"eco",
|
||||
],
|
||||
Attribute.thermostat_operating_state: "idle",
|
||||
Attribute.humidity: 34,
|
||||
},
|
||||
)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, 'F', None)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, "F", None)
|
||||
return device
|
||||
|
||||
|
||||
@@ -106,13 +134,15 @@ def buggy_thermostat_fixture(device_factory):
|
||||
Capability.temperature_measurement,
|
||||
Capability.thermostat_cooling_setpoint,
|
||||
Capability.thermostat_heating_setpoint,
|
||||
Capability.thermostat_mode],
|
||||
Capability.thermostat_mode,
|
||||
],
|
||||
status={
|
||||
Attribute.thermostat_mode: 'heating',
|
||||
Attribute.thermostat_mode: "heating",
|
||||
Attribute.cooling_setpoint: 74,
|
||||
Attribute.heating_setpoint: 68}
|
||||
Attribute.heating_setpoint: 68,
|
||||
},
|
||||
)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, 'F', None)
|
||||
device.status.attributes[Attribute.temperature] = Status(70, "F", None)
|
||||
return device
|
||||
|
||||
|
||||
@@ -128,30 +158,43 @@ def air_conditioner_fixture(device_factory):
|
||||
Capability.power_consumption_report,
|
||||
Capability.switch,
|
||||
Capability.temperature_measurement,
|
||||
Capability.thermostat_cooling_setpoint],
|
||||
Capability.thermostat_cooling_setpoint,
|
||||
],
|
||||
status={
|
||||
Attribute.air_conditioner_mode: 'auto',
|
||||
Attribute.supported_ac_modes:
|
||||
["cool", "dry", "wind", "auto", "heat", "fanOnly"],
|
||||
Attribute.air_conditioner_mode: "auto",
|
||||
Attribute.supported_ac_modes: [
|
||||
"cool",
|
||||
"dry",
|
||||
"wind",
|
||||
"auto",
|
||||
"heat",
|
||||
"fanOnly",
|
||||
],
|
||||
Attribute.drlc_status: {
|
||||
"duration": 0,
|
||||
"drlcLevel": -1,
|
||||
"start": "1970-01-01T00:00:00Z",
|
||||
"override": False
|
||||
},
|
||||
Attribute.fan_mode: 'medium',
|
||||
Attribute.supported_ac_fan_modes:
|
||||
["auto", "low", "medium", "high", "turbo"],
|
||||
"override": False,
|
||||
},
|
||||
Attribute.fan_mode: "medium",
|
||||
Attribute.supported_ac_fan_modes: [
|
||||
"auto",
|
||||
"low",
|
||||
"medium",
|
||||
"high",
|
||||
"turbo",
|
||||
],
|
||||
Attribute.power_consumption: {
|
||||
"start": "2019-02-24T21:03:04Z",
|
||||
"power": 0,
|
||||
"energy": 500,
|
||||
"end": "2019-02-26T02:05:55Z"
|
||||
},
|
||||
Attribute.switch: 'on',
|
||||
Attribute.cooling_setpoint: 23}
|
||||
"end": "2019-02-26T02:05:55Z",
|
||||
},
|
||||
Attribute.switch: "on",
|
||||
Attribute.cooling_setpoint: 23,
|
||||
},
|
||||
)
|
||||
device.status.attributes[Attribute.temperature] = Status(24, 'C', None)
|
||||
device.status.attributes[Attribute.temperature] = Status(24, "C", None)
|
||||
return device
|
||||
|
||||
|
||||
@@ -163,18 +206,24 @@ async def test_async_setup_platform():
|
||||
async def test_legacy_thermostat_entity_state(hass, legacy_thermostat):
|
||||
"""Tests the state attributes properly match the thermostat type."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[legacy_thermostat])
|
||||
state = hass.states.get('climate.legacy_thermostat')
|
||||
state = hass.states.get("climate.legacy_thermostat")
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
||||
SUPPORT_FAN_MODE | \
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE | \
|
||||
SUPPORT_TARGET_TEMPERATURE
|
||||
assert state.attributes[ATTR_HVAC_ACTIONS] == 'idle'
|
||||
assert (
|
||||
state.attributes[ATTR_SUPPORTED_FEATURES]
|
||||
== SUPPORT_FAN_MODE
|
||||
| SUPPORT_TARGET_TEMPERATURE_RANGE
|
||||
| SUPPORT_TARGET_TEMPERATURE
|
||||
)
|
||||
assert state.attributes[ATTR_HVAC_ACTIONS] == "idle"
|
||||
assert state.attributes[ATTR_HVAC_MODES] == {
|
||||
HVAC_MODE_AUTO, HVAC_MODE_COOL, HVAC_MODE_HEAT_COOL, HVAC_MODE_HEAT,
|
||||
HVAC_MODE_OFF}
|
||||
assert state.attributes[ATTR_FAN_MODE] == 'auto'
|
||||
assert state.attributes[ATTR_FAN_MODES] == ['auto', 'on']
|
||||
HVAC_MODE_AUTO,
|
||||
HVAC_MODE_COOL,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_OFF,
|
||||
}
|
||||
assert state.attributes[ATTR_FAN_MODE] == "auto"
|
||||
assert state.attributes[ATTR_FAN_MODES] == ["auto", "on"]
|
||||
assert state.attributes[ATTR_TARGET_TEMP_LOW] == 20 # celsius
|
||||
assert state.attributes[ATTR_TARGET_TEMP_HIGH] == 23.3 # celsius
|
||||
assert state.attributes[ATTR_CURRENT_TEMPERATURE] == 21.1 # celsius
|
||||
@@ -183,31 +232,43 @@ async def test_legacy_thermostat_entity_state(hass, legacy_thermostat):
|
||||
async def test_basic_thermostat_entity_state(hass, basic_thermostat):
|
||||
"""Tests the state attributes properly match the thermostat type."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[basic_thermostat])
|
||||
state = hass.states.get('climate.basic_thermostat')
|
||||
state = hass.states.get("climate.basic_thermostat")
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE | SUPPORT_TARGET_TEMPERATURE
|
||||
assert (
|
||||
state.attributes[ATTR_SUPPORTED_FEATURES]
|
||||
== SUPPORT_TARGET_TEMPERATURE_RANGE | SUPPORT_TARGET_TEMPERATURE
|
||||
)
|
||||
assert ATTR_HVAC_ACTIONS not in state.attributes
|
||||
assert state.attributes[ATTR_HVAC_MODES] == {
|
||||
HVAC_MODE_OFF, HVAC_MODE_HEAT_COOL, HVAC_MODE_HEAT, HVAC_MODE_COOL}
|
||||
HVAC_MODE_OFF,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_COOL,
|
||||
}
|
||||
assert state.attributes[ATTR_CURRENT_TEMPERATURE] == 21.1 # celsius
|
||||
|
||||
|
||||
async def test_thermostat_entity_state(hass, thermostat):
|
||||
"""Tests the state attributes properly match the thermostat type."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat])
|
||||
state = hass.states.get('climate.thermostat')
|
||||
state = hass.states.get("climate.thermostat")
|
||||
assert state.state == HVAC_MODE_HEAT
|
||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
||||
SUPPORT_FAN_MODE | \
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE | \
|
||||
SUPPORT_TARGET_TEMPERATURE
|
||||
assert (
|
||||
state.attributes[ATTR_SUPPORTED_FEATURES]
|
||||
== SUPPORT_FAN_MODE
|
||||
| SUPPORT_TARGET_TEMPERATURE_RANGE
|
||||
| SUPPORT_TARGET_TEMPERATURE
|
||||
)
|
||||
assert state.attributes[ATTR_HVAC_ACTIONS] == CURRENT_HVAC_IDLE
|
||||
assert state.attributes[ATTR_HVAC_MODES] == {
|
||||
HVAC_MODE_AUTO, HVAC_MODE_COOL, HVAC_MODE_HEAT, HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_OFF}
|
||||
assert state.attributes[ATTR_FAN_MODE] == 'on'
|
||||
assert state.attributes[ATTR_FAN_MODES] == ['auto', 'on']
|
||||
HVAC_MODE_AUTO,
|
||||
HVAC_MODE_COOL,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_OFF,
|
||||
}
|
||||
assert state.attributes[ATTR_FAN_MODE] == "on"
|
||||
assert state.attributes[ATTR_FAN_MODES] == ["auto", "on"]
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 20 # celsius
|
||||
assert state.attributes[ATTR_CURRENT_TEMPERATURE] == 21.1 # celsius
|
||||
assert state.attributes[ATTR_CURRENT_HUMIDITY] == 34
|
||||
@@ -216,10 +277,12 @@ async def test_thermostat_entity_state(hass, thermostat):
|
||||
async def test_buggy_thermostat_entity_state(hass, buggy_thermostat):
|
||||
"""Tests the state attributes properly match the thermostat type."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[buggy_thermostat])
|
||||
state = hass.states.get('climate.buggy_thermostat')
|
||||
state = hass.states.get("climate.buggy_thermostat")
|
||||
assert state.state == STATE_UNKNOWN
|
||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
||||
SUPPORT_TARGET_TEMPERATURE_RANGE | SUPPORT_TARGET_TEMPERATURE
|
||||
assert (
|
||||
state.attributes[ATTR_SUPPORTED_FEATURES]
|
||||
== SUPPORT_TARGET_TEMPERATURE_RANGE | SUPPORT_TARGET_TEMPERATURE
|
||||
)
|
||||
assert state.state is STATE_UNKNOWN
|
||||
assert state.attributes[ATTR_TEMPERATURE] is None
|
||||
assert state.attributes[ATTR_CURRENT_TEMPERATURE] == 21.1 # celsius
|
||||
@@ -228,65 +291,75 @@ async def test_buggy_thermostat_entity_state(hass, buggy_thermostat):
|
||||
async def test_buggy_thermostat_invalid_mode(hass, buggy_thermostat):
|
||||
"""Tests when an invalid operation mode is included."""
|
||||
buggy_thermostat.status.update_attribute_value(
|
||||
Attribute.supported_thermostat_modes,
|
||||
['heat', 'emergency heat', 'other'])
|
||||
Attribute.supported_thermostat_modes, ["heat", "emergency heat", "other"]
|
||||
)
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[buggy_thermostat])
|
||||
state = hass.states.get('climate.buggy_thermostat')
|
||||
assert state.attributes[ATTR_HVAC_MODES] == {'heat'}
|
||||
state = hass.states.get("climate.buggy_thermostat")
|
||||
assert state.attributes[ATTR_HVAC_MODES] == {"heat"}
|
||||
|
||||
|
||||
async def test_air_conditioner_entity_state(hass, air_conditioner):
|
||||
"""Tests when an invalid operation mode is included."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
assert state.attributes[ATTR_SUPPORTED_FEATURES] == \
|
||||
SUPPORT_FAN_MODE | \
|
||||
SUPPORT_TARGET_TEMPERATURE
|
||||
assert (
|
||||
state.attributes[ATTR_SUPPORTED_FEATURES]
|
||||
== SUPPORT_FAN_MODE | SUPPORT_TARGET_TEMPERATURE
|
||||
)
|
||||
assert sorted(state.attributes[ATTR_HVAC_MODES]) == [
|
||||
HVAC_MODE_COOL, HVAC_MODE_DRY, HVAC_MODE_FAN_ONLY, HVAC_MODE_HEAT,
|
||||
HVAC_MODE_HEAT_COOL, HVAC_MODE_OFF]
|
||||
assert state.attributes[ATTR_FAN_MODE] == 'medium'
|
||||
assert sorted(state.attributes[ATTR_FAN_MODES]) == \
|
||||
['auto', 'high', 'low', 'medium', 'turbo']
|
||||
HVAC_MODE_COOL,
|
||||
HVAC_MODE_DRY,
|
||||
HVAC_MODE_FAN_ONLY,
|
||||
HVAC_MODE_HEAT,
|
||||
HVAC_MODE_HEAT_COOL,
|
||||
HVAC_MODE_OFF,
|
||||
]
|
||||
assert state.attributes[ATTR_FAN_MODE] == "medium"
|
||||
assert sorted(state.attributes[ATTR_FAN_MODES]) == [
|
||||
"auto",
|
||||
"high",
|
||||
"low",
|
||||
"medium",
|
||||
"turbo",
|
||||
]
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 23
|
||||
assert state.attributes[ATTR_CURRENT_TEMPERATURE] == 24
|
||||
assert state.attributes['drlc_status_duration'] == 0
|
||||
assert state.attributes['drlc_status_level'] == -1
|
||||
assert state.attributes['drlc_status_start'] == '1970-01-01T00:00:00Z'
|
||||
assert state.attributes['drlc_status_override'] is False
|
||||
assert state.attributes['power_consumption_start'] == \
|
||||
'2019-02-24T21:03:04Z'
|
||||
assert state.attributes['power_consumption_power'] == 0
|
||||
assert state.attributes['power_consumption_energy'] == 500
|
||||
assert state.attributes['power_consumption_end'] == '2019-02-26T02:05:55Z'
|
||||
assert state.attributes["drlc_status_duration"] == 0
|
||||
assert state.attributes["drlc_status_level"] == -1
|
||||
assert state.attributes["drlc_status_start"] == "1970-01-01T00:00:00Z"
|
||||
assert state.attributes["drlc_status_override"] is False
|
||||
assert state.attributes["power_consumption_start"] == "2019-02-24T21:03:04Z"
|
||||
assert state.attributes["power_consumption_power"] == 0
|
||||
assert state.attributes["power_consumption_energy"] == 500
|
||||
assert state.attributes["power_consumption_end"] == "2019-02-26T02:05:55Z"
|
||||
|
||||
|
||||
async def test_set_fan_mode(hass, thermostat, air_conditioner):
|
||||
"""Test the fan mode is set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN,
|
||||
devices=[thermostat, air_conditioner])
|
||||
entity_ids = ['climate.thermostat', 'climate.air_conditioner']
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat, air_conditioner])
|
||||
entity_ids = ["climate.thermostat", "climate.air_conditioner"]
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_FAN_MODE, {
|
||||
ATTR_ENTITY_ID: entity_ids,
|
||||
ATTR_FAN_MODE: 'auto'},
|
||||
blocking=True)
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_FAN_MODE,
|
||||
{ATTR_ENTITY_ID: entity_ids, ATTR_FAN_MODE: "auto"},
|
||||
blocking=True,
|
||||
)
|
||||
for entity_id in entity_ids:
|
||||
state = hass.states.get(entity_id)
|
||||
assert state.attributes[ATTR_FAN_MODE] == 'auto', entity_id
|
||||
assert state.attributes[ATTR_FAN_MODE] == "auto", entity_id
|
||||
|
||||
|
||||
async def test_set_hvac_mode(hass, thermostat, air_conditioner):
|
||||
"""Test the hvac mode is set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN,
|
||||
devices=[thermostat, air_conditioner])
|
||||
entity_ids = ['climate.thermostat', 'climate.air_conditioner']
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat, air_conditioner])
|
||||
entity_ids = ["climate.thermostat", "climate.air_conditioner"]
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_HVAC_MODE, {
|
||||
ATTR_ENTITY_ID: entity_ids,
|
||||
ATTR_HVAC_MODE: HVAC_MODE_COOL},
|
||||
blocking=True)
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_HVAC_MODE,
|
||||
{ATTR_ENTITY_ID: entity_ids, ATTR_HVAC_MODE: HVAC_MODE_COOL},
|
||||
blocking=True,
|
||||
)
|
||||
|
||||
for entity_id in entity_ids:
|
||||
state = hass.states.get(entity_id)
|
||||
@@ -296,44 +369,51 @@ async def test_set_hvac_mode(hass, thermostat, air_conditioner):
|
||||
async def test_ac_set_hvac_mode_from_off(hass, air_conditioner):
|
||||
"""Test setting HVAC mode when the unit is off."""
|
||||
air_conditioner.status.update_attribute_value(
|
||||
Attribute.air_conditioner_mode, 'heat')
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, 'off')
|
||||
Attribute.air_conditioner_mode, "heat"
|
||||
)
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, "off")
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_HVAC_MODE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
ATTR_HVAC_MODE: HVAC_MODE_HEAT_COOL},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_HVAC_MODE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.air_conditioner",
|
||||
ATTR_HVAC_MODE: HVAC_MODE_HEAT_COOL,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
|
||||
|
||||
async def test_ac_set_hvac_mode_off(hass, air_conditioner):
|
||||
"""Test the AC HVAC mode can be turned off set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state != HVAC_MODE_OFF
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_HVAC_MODE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
ATTR_HVAC_MODE: HVAC_MODE_OFF},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_HVAC_MODE,
|
||||
{ATTR_ENTITY_ID: "climate.air_conditioner", ATTR_HVAC_MODE: HVAC_MODE_OFF},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
|
||||
|
||||
async def test_set_temperature_heat_mode(hass, thermostat):
|
||||
"""Test the temperature is set successfully when in heat mode."""
|
||||
thermostat.status.thermostat_mode = 'heat'
|
||||
thermostat.status.thermostat_mode = "heat"
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.thermostat',
|
||||
ATTR_TEMPERATURE: 21},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.thermostat')
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{ATTR_ENTITY_ID: "climate.thermostat", ATTR_TEMPERATURE: 21},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.thermostat")
|
||||
assert state.state == HVAC_MODE_HEAT
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 21
|
||||
assert thermostat.status.heating_setpoint == 69.8
|
||||
@@ -341,28 +421,33 @@ async def test_set_temperature_heat_mode(hass, thermostat):
|
||||
|
||||
async def test_set_temperature_cool_mode(hass, thermostat):
|
||||
"""Test the temperature is set successfully when in cool mode."""
|
||||
thermostat.status.thermostat_mode = 'cool'
|
||||
thermostat.status.thermostat_mode = "cool"
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.thermostat',
|
||||
ATTR_TEMPERATURE: 21},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.thermostat')
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{ATTR_ENTITY_ID: "climate.thermostat", ATTR_TEMPERATURE: 21},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.thermostat")
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 21
|
||||
|
||||
|
||||
async def test_set_temperature(hass, thermostat):
|
||||
"""Test the temperature is set successfully."""
|
||||
thermostat.status.thermostat_mode = 'auto'
|
||||
thermostat.status.thermostat_mode = "auto"
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.thermostat',
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.thermostat",
|
||||
ATTR_TARGET_TEMP_HIGH: 25.5,
|
||||
ATTR_TARGET_TEMP_LOW: 22.2},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.thermostat')
|
||||
ATTR_TARGET_TEMP_LOW: 22.2,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.thermostat")
|
||||
assert state.attributes[ATTR_TARGET_TEMP_HIGH] == 25.5
|
||||
assert state.attributes[ATTR_TARGET_TEMP_LOW] == 22.2
|
||||
|
||||
@@ -371,11 +456,12 @@ async def test_set_temperature_ac(hass, air_conditioner):
|
||||
"""Test the temperature is set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
ATTR_TEMPERATURE: 27},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{ATTR_ENTITY_ID: "climate.air_conditioner", ATTR_TEMPERATURE: 27},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 27
|
||||
|
||||
|
||||
@@ -383,12 +469,16 @@ async def test_set_temperature_ac_with_mode(hass, air_conditioner):
|
||||
"""Test the temperature is set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.air_conditioner",
|
||||
ATTR_TEMPERATURE: 27,
|
||||
ATTR_HVAC_MODE: HVAC_MODE_COOL},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
ATTR_HVAC_MODE: HVAC_MODE_COOL,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 27
|
||||
assert state.state == HVAC_MODE_COOL
|
||||
|
||||
@@ -396,17 +486,22 @@ async def test_set_temperature_ac_with_mode(hass, air_conditioner):
|
||||
async def test_set_temperature_ac_with_mode_from_off(hass, air_conditioner):
|
||||
"""Test the temp and mode is set successfully when the unit is off."""
|
||||
air_conditioner.status.update_attribute_value(
|
||||
Attribute.air_conditioner_mode, 'heat')
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, 'off')
|
||||
Attribute.air_conditioner_mode, "heat"
|
||||
)
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, "off")
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
assert hass.states.get('climate.air_conditioner').state == HVAC_MODE_OFF
|
||||
assert hass.states.get("climate.air_conditioner").state == HVAC_MODE_OFF
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.air_conditioner",
|
||||
ATTR_TEMPERATURE: 27,
|
||||
ATTR_HVAC_MODE: HVAC_MODE_COOL},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
ATTR_HVAC_MODE: HVAC_MODE_COOL,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 27
|
||||
assert state.state == HVAC_MODE_COOL
|
||||
|
||||
@@ -414,14 +509,18 @@ async def test_set_temperature_ac_with_mode_from_off(hass, air_conditioner):
|
||||
async def test_set_temperature_ac_with_mode_to_off(hass, air_conditioner):
|
||||
"""Test the temp and mode is set successfully to turn off the unit."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
assert hass.states.get('climate.air_conditioner').state != HVAC_MODE_OFF
|
||||
assert hass.states.get("climate.air_conditioner").state != HVAC_MODE_OFF
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.air_conditioner',
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.air_conditioner",
|
||||
ATTR_TEMPERATURE: 27,
|
||||
ATTR_HVAC_MODE: HVAC_MODE_OFF},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
ATTR_HVAC_MODE: HVAC_MODE_OFF,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.attributes[ATTR_TEMPERATURE] == 27
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
|
||||
@@ -430,13 +529,17 @@ async def test_set_temperature_with_mode(hass, thermostat):
|
||||
"""Test the temperature and mode is set successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[thermostat])
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_SET_TEMPERATURE, {
|
||||
ATTR_ENTITY_ID: 'climate.thermostat',
|
||||
CLIMATE_DOMAIN,
|
||||
SERVICE_SET_TEMPERATURE,
|
||||
{
|
||||
ATTR_ENTITY_ID: "climate.thermostat",
|
||||
ATTR_TARGET_TEMP_HIGH: 25.5,
|
||||
ATTR_TARGET_TEMP_LOW: 22.2,
|
||||
ATTR_HVAC_MODE: HVAC_MODE_HEAT_COOL},
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.thermostat')
|
||||
ATTR_HVAC_MODE: HVAC_MODE_HEAT_COOL,
|
||||
},
|
||||
blocking=True,
|
||||
)
|
||||
state = hass.states.get("climate.thermostat")
|
||||
assert state.attributes[ATTR_TARGET_TEMP_HIGH] == 25.5
|
||||
assert state.attributes[ATTR_TARGET_TEMP_LOW] == 22.2
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
@@ -445,25 +548,21 @@ async def test_set_temperature_with_mode(hass, thermostat):
|
||||
async def test_set_turn_off(hass, air_conditioner):
|
||||
"""Test the a/c is turned off successfully."""
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_TURN_OFF,
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
await hass.services.async_call(CLIMATE_DOMAIN, SERVICE_TURN_OFF, blocking=True)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
|
||||
|
||||
async def test_set_turn_on(hass, air_conditioner):
|
||||
"""Test the a/c is turned on successfully."""
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, 'off')
|
||||
air_conditioner.status.update_attribute_value(Attribute.switch, "off")
|
||||
await setup_platform(hass, CLIMATE_DOMAIN, devices=[air_conditioner])
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_OFF
|
||||
await hass.services.async_call(
|
||||
CLIMATE_DOMAIN, SERVICE_TURN_ON,
|
||||
blocking=True)
|
||||
state = hass.states.get('climate.air_conditioner')
|
||||
await hass.services.async_call(CLIMATE_DOMAIN, SERVICE_TURN_ON, blocking=True)
|
||||
state = hass.states.get("climate.air_conditioner")
|
||||
assert state.state == HVAC_MODE_HEAT_COOL
|
||||
|
||||
|
||||
@@ -477,9 +576,8 @@ async def test_entity_and_device_attributes(hass, thermostat):
|
||||
assert entry
|
||||
assert entry.unique_id == thermostat.device_id
|
||||
|
||||
entry = device_registry.async_get_device(
|
||||
{(DOMAIN, thermostat.device_id)}, [])
|
||||
entry = device_registry.async_get_device({(DOMAIN, thermostat.device_id)}, [])
|
||||
assert entry
|
||||
assert entry.name == thermostat.label
|
||||
assert entry.model == thermostat.device_type_name
|
||||
assert entry.manufacturer == 'Unavailable'
|
||||
assert entry.manufacturer == "Unavailable"
|
||||
|
||||
Reference in New Issue
Block a user