| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- from homeassistant.components.fan import FanEntityFeature
- from homeassistant.components.humidifier import HumidifierEntityFeature
- from homeassistant.components.humidifier.const import MODE_AUTO, MODE_NORMAL, MODE_SLEEP
- from homeassistant.components.sensor import SensorDeviceClass
- from ..const import EANONS_HUMIDIFIER_PAYLOAD
- from ..helpers import assert_device_properties_set
- from ..mixins.binary_sensor import MultiBinarySensorTests
- from ..mixins.select import BasicSelectTests
- from ..mixins.sensor import BasicSensorTests
- from ..mixins.switch import BasicSwitchTests, SwitchableTests
- from .base_device_tests import TuyaDeviceTestCase
- FANMODE_DPS = "2"
- TIMERHR_DPS = "3"
- TIMER_DPS = "4"
- ERROR_DPS = "9"
- HVACMODE_DPS = "10"
- PRESET_DPS = "12"
- HUMIDITY_DPS = "15"
- CURRENTHUMID_DPS = "16"
- SWITCH_DPS = "22"
- class TestEanonsHumidifier(
- BasicSelectTests,
- BasicSensorTests,
- BasicSwitchTests,
- MultiBinarySensorTests,
- SwitchableTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("eanons_humidifier.yaml", EANONS_HUMIDIFIER_PAYLOAD)
- self.subject = self.entities.get("humidifier_humidifier")
- self.setUpSwitchable(HVACMODE_DPS, self.subject)
- self.fan = self.entities.get("fan_intensity")
- self.setUpBasicSwitch(SWITCH_DPS, self.entities.get("switch_uv_sterilization"))
- self.setUpBasicSelect(
- TIMERHR_DPS,
- self.entities.get("select_timer"),
- {
- "cancel": "cancel",
- "1": "1h",
- "2": "2h",
- "3": "3h",
- "4": "4h",
- "5": "5h",
- "6": "6h",
- "7": "7h",
- "8": "8h",
- "9": "9h",
- "10": "10h",
- "11": "11h",
- "12": "12h",
- },
- )
- self.setUpBasicSensor(
- TIMER_DPS,
- self.entities.get("sensor_time_remaining"),
- unit="min",
- device_class=SensorDeviceClass.DURATION,
- )
- self.setUpMultiBinarySensors(
- [
- {
- "name": "binary_sensor_tank_empty",
- "dps": ERROR_DPS,
- "testdata": (1, 0),
- },
- {
- "name": "binary_sensor_problem",
- "dps": ERROR_DPS,
- "device_class": "problem",
- "testdata": (2, 0),
- },
- ],
- )
- self.mark_secondary(
- [
- "select_timer",
- "sensor_time_remaining",
- "binary_sensor_problem",
- "binary_sensor_tank_empty",
- ]
- )
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- HumidifierEntityFeature.MODES,
- )
- self.assertEqual(
- self.fan.supported_features,
- FanEntityFeature.SET_SPEED
- | FanEntityFeature.TURN_OFF
- | FanEntityFeature.TURN_ON,
- )
- def test_current_humidity(self):
- self.dps[CURRENTHUMID_DPS] = 75
- self.assertEqual(self.subject.current_humidity, 75)
- def test_min_target_humidity(self):
- self.assertEqual(self.subject.min_humidity, 40)
- def test_max_target_humidity(self):
- self.assertEqual(self.subject.max_humidity, 90)
- def test_target_humidity(self):
- self.dps[HUMIDITY_DPS] = 55
- self.assertEqual(self.subject.target_humidity, 55)
- async def test_fan_turn_on(self):
- async with assert_device_properties_set(
- self.subject._device, {HVACMODE_DPS: True}
- ):
- await self.fan.async_turn_on()
- async def test_fan_turn_off(self):
- async with assert_device_properties_set(
- self.subject._device, {HVACMODE_DPS: False}
- ):
- await self.fan.async_turn_off()
- def test_preset_mode(self):
- self.dps[PRESET_DPS] = "sleep"
- self.assertEqual(self.subject.mode, MODE_SLEEP)
- self.dps[PRESET_DPS] = "humidity"
- self.assertEqual(self.subject.mode, MODE_AUTO)
- self.dps[PRESET_DPS] = "work"
- self.assertEqual(self.subject.mode, MODE_NORMAL)
- self.dps[PRESET_DPS] = None
- self.assertEqual(self.subject.mode, None)
- def test_preset_modes(self):
- self.assertCountEqual(
- self.subject.available_modes,
- [MODE_NORMAL, MODE_SLEEP, MODE_AUTO],
- )
- async def test_set_mode_to_auto(self):
- async with assert_device_properties_set(
- self.subject._device,
- {
- PRESET_DPS: "humidity",
- },
- ):
- await self.subject.async_set_mode(MODE_AUTO)
- self.subject._device.anticipate_property_value.assert_not_called()
- async def test_set_mode_to_sleep(self):
- async with assert_device_properties_set(
- self.subject._device,
- {
- PRESET_DPS: "sleep",
- },
- ):
- await self.subject.async_set_mode(MODE_SLEEP)
- self.subject._device.anticipate_property_value.assert_not_called()
- async def test_set_mode_to_normal(self):
- async with assert_device_properties_set(
- self.subject._device,
- {
- PRESET_DPS: "work",
- },
- ):
- await self.subject.async_set_mode(MODE_NORMAL)
- self.subject._device.anticipate_property_value.assert_not_called()
- def test_extra_state_attributes(self):
- self.dps[TIMERHR_DPS] = "cancel"
- self.dps[TIMER_DPS] = 0
- self.dps[FANMODE_DPS] = "middle"
- self.assertDictEqual(
- self.subject.extra_state_attributes,
- {
- "timer_hr": "cancel",
- "timer_min": 0,
- },
- )
- def test_fan_speed(self):
- self.dps[FANMODE_DPS] = "small"
- self.assertEqual(self.fan.percentage, 33)
- self.dps[FANMODE_DPS] = "middle"
- self.assertEqual(self.fan.percentage, 67)
- self.dps[FANMODE_DPS] = "large"
- self.assertEqual(self.fan.percentage, 100)
- def test_fan_speed_count(self):
- self.assertEqual(self.fan.speed_count, 3)
- def test_fan_percentage_step(self):
- self.assertAlmostEqual(self.fan.percentage_step, 33, 0)
- async def test_fan_set_speed(self):
- async with assert_device_properties_set(
- self.fan._device,
- {FANMODE_DPS: "small"},
- ):
- await self.fan.async_set_percentage(33)
- async def test_fan_set_speed_snaps(self):
- async with assert_device_properties_set(
- self.fan._device,
- {FANMODE_DPS: "middle"},
- ):
- await self.fan.async_set_percentage(60)
- def test_multi_bsensor_extra_state_attributes(self):
- self.dps[ERROR_DPS] = 2
- self.assertEqual(
- self.multiBSensor["binary_sensor_tank_empty"].extra_state_attributes, {}
- )
- self.assertEqual(
- self.multiBSensor["binary_sensor_problem"].extra_state_attributes,
- {"fault_code": 2},
- )
|