Set Fahrenheit reporting precision to tenths for Homekit Controller climate entities (#50415)

This commit is contained in:
jjlawren 2021-05-25 12:32:59 -05:00 committed by GitHub
parent 3d41a66673
commit fe75a1bb9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

View file

@ -1,4 +1,6 @@
"""Basic checks for HomeKitclimate."""
from unittest.mock import patch
from aiohomekit.model.characteristics import (
ActivationStateValues,
CharacteristicsTypes,
@ -19,6 +21,7 @@ from homeassistant.components.climate.const import (
SERVICE_SET_SWING_MODE,
SERVICE_SET_TEMPERATURE,
)
from homeassistant.const import TEMP_FAHRENHEIT
from tests.components.homekit_controller.common import setup_test_component
@ -445,6 +448,11 @@ async def test_climate_read_thermostat_state(hass, utcnow):
state = await helper.poll_and_get_state()
assert state.state == HVAC_MODE_HEAT_COOL
# Ensure converted Fahrenheit precision is reported in tenths
with patch.object(hass.config.units, "temperature_unit", TEMP_FAHRENHEIT):
state = await helper.poll_and_get_state()
assert state.attributes["current_temperature"] == 69.8
async def test_hvac_mode_vs_hvac_action(hass, utcnow):
"""Check that we haven't conflated hvac_mode and hvac_action."""