| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- from homeassistant.components.fan import FanEntityFeature
- from homeassistant.components.sensor import SensorDeviceClass, SensorStateClass
- from homeassistant.const import PERCENTAGE, UnitOfTemperature
- from ..const import HIMOX_H05_PURIFIER_PAYLOAD
- from ..helpers import assert_device_properties_set
- from ..mixins.button import BasicButtonTests
- from ..mixins.lock import BasicLockTests
- from ..mixins.select import BasicSelectTests
- from ..mixins.sensor import MultiSensorTests
- from ..mixins.switch import SwitchableTests
- from .base_device_tests import TuyaDeviceTestCase
- SWITCH_DPS = "1"
- TEMP_DPS = "2"
- PRESET_DPS = "4"
- FILTER_DPS = "5"
- LOCK_DPS = "7"
- RESET_DPS = "11"
- TIMER_DPS = "18"
- AQI_DPS = "21"
- class TestHimoxH05Purifier(
- BasicButtonTests,
- BasicLockTests,
- BasicSelectTests,
- MultiSensorTests,
- SwitchableTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("himox_h05_purifier.yaml", HIMOX_H05_PURIFIER_PAYLOAD)
- self.subject = self.entities["fan"]
- self.setUpSwitchable(SWITCH_DPS, self.subject)
- self.setUpBasicButton(
- RESET_DPS,
- self.entities.get("button_filter_reset"),
- )
- self.setUpBasicLock(LOCK_DPS, self.entities.get("lock_child_lock"))
- self.setUpBasicSelect(
- TIMER_DPS,
- self.entities.get("select_timer"),
- {
- "cancel": "cancel",
- "1h": "1h",
- "2h": "2h",
- "4h": "4h",
- "8h": "8h",
- },
- )
- self.setUpMultiSensors(
- [
- {
- "dps": TEMP_DPS,
- "name": "sensor_temperature",
- "unit": UnitOfTemperature.CELSIUS,
- "device_class": SensorDeviceClass.TEMPERATURE,
- "state_class": SensorStateClass.MEASUREMENT,
- },
- {
- "dps": FILTER_DPS,
- "name": "sensor_active_filter_life",
- "unit": PERCENTAGE,
- },
- {
- "dps": AQI_DPS,
- "name": "sensor_air_quality",
- },
- ]
- )
- self.mark_secondary(
- [
- "button_filter_reset",
- "lock_child_lock",
- "sensor_active_filter_life",
- "select_timer",
- "sensor_temperature",
- ]
- )
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- FanEntityFeature.PRESET_MODE
- | FanEntityFeature.TURN_ON
- | FanEntityFeature.TURN_OFF,
- )
- def test_preset_modes(self):
- self.assertCountEqual(
- self.subject.preset_modes,
- ["smart", "sleep", "fresh", "strong"],
- )
- def test_preset_mode(self):
- self.dps[PRESET_DPS] = "low"
- self.assertEqual(self.subject.preset_mode, "sleep")
- async def test_set_preset_mode(self):
- async with assert_device_properties_set(
- self.subject._device, {PRESET_DPS: "mid"}
- ):
- await self.subject.async_set_preset_mode("fresh")
|