| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- from homeassistant.components.binary_sensor import BinarySensorDeviceClass
- from homeassistant.components.fan import FanEntityFeature
- from homeassistant.components.sensor import SensorDeviceClass
- from homeassistant.const import PERCENTAGE, UnitOfTime
- from ..const import VORK_VK6067_PURIFIER_PAYLOAD
- from ..helpers import assert_device_properties_set
- from ..mixins.binary_sensor import BasicBinarySensorTests
- from ..mixins.button import BasicButtonTests
- from ..mixins.light import BasicLightTests
- from ..mixins.select import BasicSelectTests
- from ..mixins.sensor import MultiSensorTests
- from ..mixins.switch import SwitchableTests
- from .base_device_tests import TuyaDeviceTestCase
- SWITCH_DPS = "1"
- MODE_DPS = "4"
- FILTER_DPS = "5"
- LIGHT_DPS = "8"
- RESET_DPS = "11"
- TIMER_DPS = "18"
- COUNTDOWN_DPS = "19"
- AQI_DPS = "21"
- ERROR_DPS = "22"
- class TestVorkVK6267AWPurifier(
- BasicBinarySensorTests,
- BasicButtonTests,
- BasicLightTests,
- BasicSelectTests,
- MultiSensorTests,
- SwitchableTests,
- TuyaDeviceTestCase,
- ):
- __test__ = True
- def setUp(self):
- self.setUpForConfig("vork_vk6067aw_purifier.yaml", VORK_VK6067_PURIFIER_PAYLOAD)
- self.subject = self.entities["fan"]
- self.setUpSwitchable(SWITCH_DPS, self.subject)
- self.setUpBasicBinarySensor(
- ERROR_DPS,
- self.entities.get("binary_sensor_problem"),
- device_class=BinarySensorDeviceClass.PROBLEM,
- testdata=(1, 0),
- )
- self.setUpBasicLight(LIGHT_DPS, self.entities.get("light"))
- self.setUpBasicSelect(
- TIMER_DPS,
- self.entities.get("select_timer"),
- {
- "cancel": "cancel",
- "1h": "1h",
- "2h": "2h",
- },
- )
- self.setUpBasicButton(
- RESET_DPS,
- self.entities.get("button_filter_reset"),
- )
- self.setUpMultiSensors(
- [
- {
- "dps": AQI_DPS,
- "name": "sensor_air_quality",
- "device_class": SensorDeviceClass.ENUM,
- "testdata": ("great", "excellent"),
- "options": ["excellent", "good", "severe", "poor"],
- },
- {
- "dps": COUNTDOWN_DPS,
- "name": "sensor_time_remaining",
- "unit": UnitOfTime.MINUTES,
- "device_class": SensorDeviceClass.DURATION,
- },
- {
- "dps": FILTER_DPS,
- "name": "sensor_filter_life",
- "unit": PERCENTAGE,
- },
- ]
- )
- self.mark_secondary(
- [
- "binary_sensor_problem",
- "button_filter_reset",
- "light",
- "select_timer",
- "sensor_air_quality",
- "sensor_filter_life",
- "sensor_time_remaining",
- ]
- )
- 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,
- ["nature", "fresh", "strong", "smart", "sleep"],
- )
- def test_preset_mode(self):
- self.dps[MODE_DPS] = "low"
- self.assertEqual(self.subject.preset_mode, "nature")
- self.dps[MODE_DPS] = "mid"
- self.assertEqual(self.subject.preset_mode, "fresh")
- self.dps[MODE_DPS] = "high"
- self.assertEqual(self.subject.preset_mode, "strong")
- 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_low(self):
- async with assert_device_properties_set(
- self.subject._device,
- {MODE_DPS: "low"},
- ):
- await self.subject.async_set_preset_mode("nature")
- 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")
- def test_basic_bsensor_extra_state_attributes(self):
- self.dps[ERROR_DPS] = 2
- self.assertDictEqual(
- self.basicBSensor.extra_state_attributes,
- {"fault_code": 2},
- )
|