| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- from homeassistant.components.binary_sensor import BinarySensorDeviceClass
- from homeassistant.components.climate.const import ClimateEntityFeature, HVACMode
- from homeassistant.const import UnitOfTemperature
- from ..const import POOLEX_QLINE_HEATPUMP_PAYLOAD
- from ..helpers import assert_device_properties_set
- from ..mixins.binary_sensor import MultiBinarySensorTests
- from ..mixins.climate import TargetTemperatureTests
- from .base_device_tests import TuyaDeviceTestCase
- HVACMODE_DPS = "1"
- MODE_DPS = "2"
- TEMPERATURE_DPS = "4"
- CURRENTTEMP_DPS = "16"
- ERROR_DPS = "15"
- class TestPoolexQlineHeatpump(
- MultiBinarySensorTests,
- TargetTemperatureTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("poolex_qline_heatpump.yaml", POOLEX_QLINE_HEATPUMP_PAYLOAD)
- self.subject = self.entities.get("climate")
- self.setUpTargetTemperature(
- TEMPERATURE_DPS,
- self.subject,
- min=8.0,
- max=40.0,
- )
- self.setUpMultiBinarySensors(
- [
- {
- "dps": ERROR_DPS,
- "name": "binary_sensor_water_flow",
- "device_class": BinarySensorDeviceClass.PROBLEM,
- "testdata": (1, 0),
- },
- {
- "dps": ERROR_DPS,
- "name": "binary_sensor_defrost",
- "testdata": (2, 0),
- },
- ],
- )
- self.mark_secondary(
- [
- "binary_sensor_water_flow",
- "binary_sensor_defrost",
- "binary_sensor_problem",
- ]
- )
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- ClimateEntityFeature.TARGET_TEMPERATURE
- | ClimateEntityFeature.TURN_OFF
- | ClimateEntityFeature.TURN_ON,
- )
- def test_temperature_unit_returns_celsius(self):
- self.assertEqual(self.subject.temperature_unit, UnitOfTemperature.CELSIUS)
- 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.dps[MODE_DPS] = "heating"
- self.assertEqual(self.subject.hvac_mode, HVACMode.HEAT)
- self.dps[MODE_DPS] = "cold"
- self.assertEqual(self.subject.hvac_mode, HVACMode.COOL)
- self.dps[MODE_DPS] = "mute"
- self.assertEqual(self.subject.hvac_mode, HVACMode.HEAT_COOL)
- 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.COOL, HVACMode.HEAT, HVACMode.HEAT_COOL],
- )
- async def test_hvac_mode_heat(self):
- async with assert_device_properties_set(
- self.subject._device, {HVACMODE_DPS: True, MODE_DPS: "heating"}
- ):
- await self.subject.async_set_hvac_mode(HVACMode.HEAT)
- async def test_hvac_mode_cool(self):
- async with assert_device_properties_set(
- self.subject._device, {HVACMODE_DPS: True, MODE_DPS: "cold"}
- ):
- await self.subject.async_set_hvac_mode(HVACMode.COOL)
- async def test_hvac_mode_mute(self):
- async with assert_device_properties_set(
- self.subject._device, {HVACMODE_DPS: True, MODE_DPS: "mute"}
- ):
- await self.subject.async_set_hvac_mode(HVACMode.HEAT_COOL)
- 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)
|