from homeassistant.components.binary_sensor import BinarySensorDeviceClass from homeassistant.components.climate.const import ( ClimateEntityFeature, HVACMode, ) from homeassistant.const import UnitOfTemperature from ..const import POOLEX_VERTIGO_HEATPUMP_PAYLOAD from ..helpers import assert_device_properties_set from ..mixins.binary_sensor import BasicBinarySensorTests from ..mixins.climate import TargetTemperatureTests from .base_device_tests import TuyaDeviceTestCase HVACMODE_DPS = "1" TEMPERATURE_DPS = "2" CURRENTTEMP_DPS = "3" PRESET_DPS = "4" ERROR_DPS = "9" class TestPoolexVertigoHeatpump( BasicBinarySensorTests, TargetTemperatureTests, TuyaDeviceTestCase, ): __test__ = True def setUp(self): self.setUpForConfig( "poolex_vertigo_heatpump.yaml", POOLEX_VERTIGO_HEATPUMP_PAYLOAD ) self.subject = self.entities.get("climate") self.setUpTargetTemperature( TEMPERATURE_DPS, self.subject, min=8, max=40, ) self.setUpBasicBinarySensor( ERROR_DPS, self.entities.get("binary_sensor_water_flow"), device_class=BinarySensorDeviceClass.PROBLEM, testdata=(4, 0), ) self.mark_secondary(["binary_sensor_water_flow"]) def test_supported_features(self): self.assertEqual( self.subject.supported_features, ( ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.PRESET_MODE ), ) def test_icon(self): self.dps[HVACMODE_DPS] = True self.assertEqual(self.subject.icon, "mdi:hot-tub") self.dps[HVACMODE_DPS] = False self.assertEqual(self.subject.icon, "mdi:hvac-off") def test_temperature_unit_returns_celsius(self): self.assertEqual(self.subject.temperature_unit, UnitOfTemperature.CELSIUS) async def test_legacy_set_temperature_with_preset_mode(self): async with assert_device_properties_set( self.subject._device, {PRESET_DPS: "cool"} ): await self.subject.async_set_temperature(preset_mode="Cool") async def test_legacy_set_temperature_with_both_properties(self): async with assert_device_properties_set( self.subject._device, {TEMPERATURE_DPS: 26, PRESET_DPS: "heat"} ): await self.subject.async_set_temperature(temperature=26, preset_mode="Heat") def test_current_temperature(self): self.dps[CURRENTTEMP_DPS] = 25 self.assertEqual(self.subject.current_temperature, 25) def test_hvac_mode(self): self.dps[HVACMODE_DPS] = True self.assertEqual(self.subject.hvac_mode, HVACMode.HEAT) self.dps[HVACMODE_DPS] = False self.assertEqual(self.subject.hvac_mode, HVACMode.OFF) def test_hvac_modes(self): self.assertCountEqual(self.subject.hvac_modes, [HVACMode.OFF, HVACMode.HEAT]) async def test_turn_on(self): async with assert_device_properties_set( self.subject._device, {HVACMODE_DPS: True} ): await self.subject.async_set_hvac_mode(HVACMode.HEAT) async def test_turn_off(self): async with assert_device_properties_set( self.subject._device, {HVACMODE_DPS: False} ): await self.subject.async_set_hvac_mode(HVACMode.OFF) def test_preset_mode(self): self.dps[PRESET_DPS] = "heat" self.assertEqual(self.subject.preset_mode, "Heat") self.dps[PRESET_DPS] = "cool" self.assertEqual(self.subject.preset_mode, "Cool") self.dps[PRESET_DPS] = "silent" self.assertEqual(self.subject.preset_mode, "Silent") self.dps[PRESET_DPS] = None self.assertIs(self.subject.preset_mode, None) def test_preset_modes(self): self.assertCountEqual( self.subject.preset_modes, [ "Heat", "Cool", "Silent", ], ) async def test_set_preset_mode_to_heat(self): async with assert_device_properties_set( self.subject._device, {PRESET_DPS: "heat"}, ): await self.subject.async_set_preset_mode("Heat") async def test_set_preset_mode_to_cool(self): async with assert_device_properties_set( self.subject._device, {PRESET_DPS: "cool"}, ): await self.subject.async_set_preset_mode("Cool") async def test_set_preset_mode_to_silent(self): async with assert_device_properties_set( self.subject._device, {PRESET_DPS: "silent"}, ): await self.subject.async_set_preset_mode("Silent") def test_error_state(self): self.dps[ERROR_DPS] = 0 self.assertEqual(self.subject.extra_state_attributes, {"error": "OK"}) self.dps[ERROR_DPS] = 4 self.assertEqual( self.subject.extra_state_attributes, {"error": "Water Flow Protection"}, ) self.dps[ERROR_DPS] = 2 self.assertEqual( self.subject.extra_state_attributes, {"error": 2}, )