| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- from homeassistant.components.climate.const import (
- PRESET_AWAY,
- PRESET_COMFORT,
- PRESET_ECO,
- ClimateEntityFeature,
- HVACMode,
- )
- from homeassistant.const import UnitOfTemperature
- from ..const import NEDIS_HTPL20F_PAYLOAD
- from ..helpers import assert_device_properties_set
- from ..mixins.climate import TargetTemperatureTests
- from ..mixins.lock import BasicLockTests
- from .base_device_tests import TuyaDeviceTestCase
- HVACMODE_DPS = "1"
- TEMPERATURE_DPS = "2"
- CURRENTTEMP_DPS = "3"
- PRESET_DPS = "4"
- LOCK_DPS = "7"
- UNKNOWN11_DPS = "11"
- TIMER_DPS = "13"
- UNKNOWN101_DPS = "101"
- class TestNedisHtpl20fHeater(
- BasicLockTests,
- TargetTemperatureTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("nedis_htpl20f_heater.yaml", NEDIS_HTPL20F_PAYLOAD)
- self.subject = self.entities.get("climate")
- self.setUpTargetTemperature(
- TEMPERATURE_DPS,
- self.subject,
- min=15.0,
- max=35.0,
- )
- self.setUpBasicLock(
- LOCK_DPS,
- self.entities.get("lock_child_lock"),
- )
- self.mark_secondary(["lock_child_lock", "time_timer"])
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- (
- ClimateEntityFeature.TARGET_TEMPERATURE
- | ClimateEntityFeature.PRESET_MODE
- | 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.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_modes(self):
- self.assertCountEqual(
- self.subject.preset_modes,
- [PRESET_COMFORT, PRESET_ECO, PRESET_AWAY],
- )
- def test_preset_mode(self):
- self.dps[PRESET_DPS] = "1"
- self.assertEqual(self.subject.preset_mode, PRESET_ECO)
- self.dps[PRESET_DPS] = "2"
- self.assertEqual(self.subject.preset_mode, PRESET_COMFORT)
- self.dps[PRESET_DPS] = "3"
- self.assertEqual(self.subject.preset_mode, PRESET_AWAY)
- async def test_set_preset_more_to_eco(self):
- async with assert_device_properties_set(
- self.subject._device, {PRESET_DPS: "1"}
- ):
- await self.subject.async_set_preset_mode(PRESET_ECO)
- async def test_set_preset_more_to_comfort(self):
- async with assert_device_properties_set(
- self.subject._device, {PRESET_DPS: "2"}
- ):
- await self.subject.async_set_preset_mode(PRESET_COMFORT)
- async def test_set_preset_more_to_away(self):
- async with assert_device_properties_set(
- self.subject._device, {PRESET_DPS: "3"}
- ):
- await self.subject.async_set_preset_mode(PRESET_AWAY)
- def test_extra_state_attributes(self):
- self.dps[UNKNOWN11_DPS] = "11"
- self.dps[UNKNOWN101_DPS] = True
- self.assertCountEqual(
- self.subject.extra_state_attributes,
- {"unknown_11": "11", "unknown_101": True},
- )
|