| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- from homeassistant.components.fan import FanEntityFeature
- from homeassistant.components.sensor import SensorDeviceClass
- from homeassistant.const import CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, UnitOfTime
- from ..const import POIEMA_ONE_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"
- PM25_DPS = "2"
- MODE_DPS = "3"
- SPEED_DPS = "4"
- LOCK_DPS = "7"
- RESET_DPS = "11"
- TIMER_DPS = "18"
- COUNTDOWN_DPS = "19"
- class TestPoeimaOnePurifier(
- BasicButtonTests,
- BasicLockTests,
- BasicSelectTests,
- MultiSensorTests,
- SwitchableTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("poiema_one_purifier.yaml", POIEMA_ONE_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",
- "3h": "3h",
- "4h": "4h",
- "5h": "5h",
- },
- )
- self.setUpMultiSensors(
- [
- {
- "dps": PM25_DPS,
- "name": "sensor_pm25",
- "device_class": SensorDeviceClass.PM25,
- "state_class": "measurement",
- "unit": CONCENTRATION_MICROGRAMS_PER_CUBIC_METER,
- },
- {
- "dps": COUNTDOWN_DPS,
- "name": "sensor_time_remaining",
- "unit": UnitOfTime.MINUTES,
- "device_class": SensorDeviceClass.DURATION,
- },
- ]
- )
- self.mark_secondary(
- [
- "button_filter_reset",
- "lock_child_lock",
- "select_timer",
- "sensor_time_remaining",
- ]
- )
- def test_supported_features(self):
- self.assertEqual(
- self.subject.supported_features,
- FanEntityFeature.PRESET_MODE
- | FanEntityFeature.SET_SPEED
- | FanEntityFeature.TURN_OFF
- | FanEntityFeature.TURN_ON,
- )
- def test_speed(self):
- self.dps[SPEED_DPS] = "low"
- self.assertEqual(self.subject.percentage, 25)
- def test_speed_step(self):
- self.assertEqual(self.subject.percentage_step, 25)
- async def test_set_speed(self):
- async with assert_device_properties_set(
- self.subject._device, {SPEED_DPS: "mid"}
- ):
- await self.subject.async_set_percentage(50)
- async def test_set_speed_snaps(self):
- async with assert_device_properties_set(
- self.subject._device, {SPEED_DPS: "high"}
- ):
- await self.subject.async_set_percentage(70)
- def test_preset_modes(self):
- self.assertCountEqual(
- self.subject.preset_modes,
- ["normal", "smart", "sleep"],
- )
- def test_preset_mode(self):
- self.dps[MODE_DPS] = "manual"
- self.assertEqual(self.subject.preset_mode, "normal")
- self.dps[MODE_DPS] = "auto"
- self.assertEqual(self.subject.preset_mode, "smart")
- self.dps[MODE_DPS] = "sleep"
- self.assertEqual(self.subject.preset_mode, "sleep")
- async def test_set_preset_to_manual(self):
- async with assert_device_properties_set(
- self.subject._device,
- {MODE_DPS: "manual"},
- ):
- await self.subject.async_set_preset_mode("normal")
- async def test_set_preset_to_auto(self):
- async with assert_device_properties_set(
- self.subject._device,
- {MODE_DPS: "auto"},
- ):
- await self.subject.async_set_preset_mode("smart")
- async def test_set_preset_to_sleep(self):
- async with assert_device_properties_set(
- self.subject._device,
- {MODE_DPS: "sleep"},
- ):
- await self.subject.async_set_preset_mode("sleep")
|