| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- from homeassistant.components.climate.const import (
- ClimateEntityFeature,
- HVACMode,
- SWING_OFF,
- SWING_VERTICAL,
- )
- from homeassistant.components.light import ColorMode
- from ..const import PURLINE_M100_HEATER_PAYLOAD
- from ..helpers import (
- assert_device_properties_set,
- assert_device_properties_set_optional,
- )
- from ..mixins.climate import TargetTemperatureTests
- from ..mixins.switch import BasicSwitchTests
- from .base_device_tests import TuyaDeviceTestCase
- HVACMODE_DPS = "1"
- TEMPERATURE_DPS = "2"
- CURRENTTEMP_DPS = "3"
- PRESET_DPS = "5"
- LIGHTOFF_DPS = "10"
- TIMERHR_DPS = "11"
- TIMER_DPS = "12"
- SWITCH_DPS = "101"
- SWING_DPS = "102"
- class TestPulineM100Heater(
- BasicSwitchTests,
- TargetTemperatureTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("purline_m100_heater.yaml", PURLINE_M100_HEATER_PAYLOAD)
- self.subject = self.entities.get("climate")
- self.setUpTargetTemperature(
- TEMPERATURE_DPS,
- self.subject,
- min=15,
- max=35,
- )
- # BasicLightTests mixin not used due to inverted switch
- self.light = self.entities.get("light_display")
- self.setUpBasicSwitch(
- SWITCH_DPS, self.entities.get("switch_open_window_detector")
- )
- self.mark_secondary(["light_display", "switch_open_window_detector"])
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- (
- ClimateEntityFeature.TARGET_TEMPERATURE
- | ClimateEntityFeature.PRESET_MODE
- | ClimateEntityFeature.SWING_MODE
- ),
- )
- def test_icon(self):
- self.dps[HVACMODE_DPS] = True
- self.dps[PRESET_DPS] = "auto"
- self.assertEqual(self.subject.icon, "mdi:radiator")
- self.dps[HVACMODE_DPS] = False
- self.assertEqual(self.subject.icon, "mdi:radiator-disabled")
- self.dps[HVACMODE_DPS] = True
- self.dps[PRESET_DPS] = "off"
- self.assertEqual(self.subject.icon, "mdi:fan")
- def test_temperature_unit_returns_device_temperature_unit(self):
- self.assertEqual(
- self.subject.temperature_unit, self.subject._device.temperature_unit
- )
- 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[PRESET_DPS] = "auto"
- self.assertEqual(self.subject.hvac_mode, HVACMode.HEAT)
- self.dps[PRESET_DPS] = "off"
- self.assertEqual(self.subject.hvac_mode, HVACMode.FAN_ONLY)
- 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, HVACMode.FAN_ONLY],
- )
- async def test_turn_on(self):
- async with assert_device_properties_set_optional(
- self.subject._device,
- {HVACMODE_DPS: True},
- {PRESET_DPS: "auto"},
- ):
- 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)
- async def test_turn_on_fan(self):
- async with assert_device_properties_set_optional(
- self.subject._device,
- {HVACMODE_DPS: True},
- {PRESET_DPS: "off"},
- ):
- await self.subject.async_set_hvac_mode(HVACMode.FAN_ONLY)
- def test_preset_mode(self):
- self.dps[PRESET_DPS] = "auto"
- self.assertEqual(self.subject.preset_mode, "Auto")
- self.dps[PRESET_DPS] = "off"
- self.assertEqual(self.subject.preset_mode, "Fan")
- self.dps[PRESET_DPS] = "4"
- self.assertEqual(self.subject.preset_mode, "4")
- self.dps[PRESET_DPS] = None
- self.assertIs(self.subject.preset_mode, None)
- def test_preset_modes(self):
- self.assertCountEqual(
- self.subject.preset_modes,
- ["Fan", "1", "2", "3", "4", "5", "Auto"],
- )
- async def test_set_preset_mode_numeric(self):
- async with assert_device_properties_set(
- self.subject._device,
- {PRESET_DPS: "3"},
- ):
- await self.subject.async_set_preset_mode("3")
- def test_swing_mode(self):
- self.dps[SWING_DPS] = True
- self.assertEqual(self.subject.swing_mode, SWING_VERTICAL)
- self.dps[SWING_DPS] = False
- self.assertEqual(self.subject.swing_mode, SWING_OFF)
- def test_swing_modes(self):
- self.assertCountEqual(
- self.subject.swing_modes,
- [SWING_OFF, SWING_VERTICAL],
- )
- async def test_set_swing_mode_on(self):
- async with assert_device_properties_set(
- self.subject._device, {SWING_DPS: True}
- ):
- await self.subject.async_set_swing_mode(SWING_VERTICAL)
- async def test_set_swing_mode_off(self):
- async with assert_device_properties_set(
- self.subject._device, {SWING_DPS: False}
- ):
- await self.subject.async_set_swing_mode(SWING_OFF)
- def test_light_supported_color_modes(self):
- self.assertCountEqual(
- self.light.supported_color_modes,
- [ColorMode.ONOFF],
- )
- def test_light_color_mode(self):
- self.assertEqual(self.light.color_mode, ColorMode.ONOFF)
- def test_light_icon(self):
- self.dps[LIGHTOFF_DPS] = False
- self.assertEqual(self.light.icon, "mdi:led-on")
- self.dps[LIGHTOFF_DPS] = True
- self.assertEqual(self.light.icon, "mdi:led-off")
- def test_light_is_on(self):
- self.dps[LIGHTOFF_DPS] = False
- self.assertTrue(self.light.is_on)
- self.dps[LIGHTOFF_DPS] = True
- self.assertFalse(self.light.is_on)
- def test_light_state_attributes(self):
- self.assertEqual(self.light.extra_state_attributes, {})
- async def test_light_turn_on(self):
- async with assert_device_properties_set(
- self.light._device, {LIGHTOFF_DPS: False}
- ):
- await self.light.async_turn_on()
- async def test_light_turn_off(self):
- async with assert_device_properties_set(
- self.light._device, {LIGHTOFF_DPS: True}
- ):
- await self.light.async_turn_off()
- async def test_toggle_turns_the_light_on_when_it_was_off(self):
- self.dps[LIGHTOFF_DPS] = True
- async with assert_device_properties_set(
- self.light._device, {LIGHTOFF_DPS: False}
- ):
- await self.light.async_toggle()
- async def test_toggle_turns_the_light_off_when_it_was_on(self):
- self.dps[LIGHTOFF_DPS] = False
- async with assert_device_properties_set(
- self.light._device, {LIGHTOFF_DPS: True}
- ):
- await self.light.async_toggle()
|