2017-11-11 06:22:37 +00:00
|
|
|
"""The test for the NuHeat thermostat module."""
|
|
|
|
import unittest
|
2017-12-07 04:34:13 +00:00
|
|
|
from unittest.mock import Mock, patch
|
2017-11-11 06:22:37 +00:00
|
|
|
|
2017-12-07 04:24:54 +00:00
|
|
|
from homeassistant.components.climate import (
|
|
|
|
SUPPORT_HOLD_MODE,
|
|
|
|
SUPPORT_OPERATION_MODE,
|
|
|
|
SUPPORT_TARGET_TEMPERATURE,
|
|
|
|
STATE_HEAT,
|
|
|
|
STATE_IDLE)
|
2017-11-11 06:22:37 +00:00
|
|
|
import homeassistant.components.climate.nuheat as nuheat
|
2017-11-13 18:31:15 +00:00
|
|
|
from homeassistant.const import TEMP_CELSIUS, TEMP_FAHRENHEIT
|
2017-11-11 06:22:37 +00:00
|
|
|
|
|
|
|
SCHEDULE_HOLD = 3
|
|
|
|
SCHEDULE_RUN = 1
|
|
|
|
SCHEDULE_TEMPORARY_HOLD = 2
|
|
|
|
|
|
|
|
|
|
|
|
class TestNuHeat(unittest.TestCase):
|
|
|
|
"""Tests for NuHeat climate."""
|
2017-11-14 05:13:04 +00:00
|
|
|
|
2017-11-11 16:18:32 +00:00
|
|
|
# pylint: disable=protected-access, no-self-use
|
2017-11-11 06:22:37 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
2017-11-14 05:13:04 +00:00
|
|
|
"""Set up test variables."""
|
2017-11-11 06:22:37 +00:00
|
|
|
serial_number = "12345"
|
|
|
|
temperature_unit = "F"
|
|
|
|
|
|
|
|
thermostat = Mock(
|
|
|
|
serial_number=serial_number,
|
|
|
|
room="Master bathroom",
|
|
|
|
online=True,
|
|
|
|
heating=True,
|
|
|
|
temperature=2222,
|
|
|
|
celsius=22,
|
|
|
|
fahrenheit=72,
|
|
|
|
max_celsius=69,
|
|
|
|
max_fahrenheit=157,
|
|
|
|
min_celsius=5,
|
|
|
|
min_fahrenheit=41,
|
|
|
|
schedule_mode=SCHEDULE_RUN,
|
|
|
|
target_celsius=22,
|
|
|
|
target_fahrenheit=72)
|
|
|
|
|
2017-11-11 22:21:14 +00:00
|
|
|
thermostat.resume_schedule = Mock()
|
|
|
|
|
2017-11-11 06:22:37 +00:00
|
|
|
api = Mock()
|
|
|
|
api.get_thermostat.return_value = thermostat
|
|
|
|
|
|
|
|
self.thermostat = nuheat.NuHeatThermostat(
|
2017-12-07 04:34:13 +00:00
|
|
|
api, serial_number, temperature_unit)
|
2017-11-11 06:22:37 +00:00
|
|
|
|
2017-11-11 16:18:32 +00:00
|
|
|
@patch("homeassistant.components.climate.nuheat.NuHeatThermostat")
|
|
|
|
def test_setup_platform(self, mocked_thermostat):
|
|
|
|
"""Test setup_platform."""
|
|
|
|
api = Mock()
|
2017-12-07 04:34:13 +00:00
|
|
|
data = {"nuheat": (api, ["12345"])}
|
2017-11-11 16:18:32 +00:00
|
|
|
|
|
|
|
hass = Mock()
|
|
|
|
hass.config.units.temperature_unit.return_value = "F"
|
|
|
|
hass.data = Mock()
|
|
|
|
hass.data.__getitem__ = Mock(side_effect=data.__getitem__)
|
|
|
|
|
|
|
|
config = {}
|
|
|
|
add_devices = Mock()
|
|
|
|
discovery_info = {}
|
|
|
|
|
|
|
|
nuheat.setup_platform(hass, config, add_devices, discovery_info)
|
2017-12-07 04:34:13 +00:00
|
|
|
thermostats = [mocked_thermostat(api, "12345", "F")]
|
2017-11-11 16:18:32 +00:00
|
|
|
add_devices.assert_called_once_with(thermostats, True)
|
|
|
|
|
2017-11-11 06:22:37 +00:00
|
|
|
def test_name(self):
|
|
|
|
"""Test name property."""
|
|
|
|
self.assertEqual(self.thermostat.name, "Master bathroom")
|
|
|
|
|
2017-11-14 05:13:04 +00:00
|
|
|
def test_icon(self):
|
|
|
|
"""Test name property."""
|
|
|
|
self.assertEqual(self.thermostat.icon, "mdi:thermometer")
|
|
|
|
|
2017-12-07 04:24:54 +00:00
|
|
|
def test_supported_features(self):
|
|
|
|
"""Test name property."""
|
|
|
|
features = (SUPPORT_TARGET_TEMPERATURE | SUPPORT_HOLD_MODE |
|
2017-12-07 04:34:13 +00:00
|
|
|
SUPPORT_OPERATION_MODE)
|
2017-12-07 04:24:54 +00:00
|
|
|
self.assertEqual(self.thermostat.supported_features, features)
|
|
|
|
|
2017-11-11 06:22:37 +00:00
|
|
|
def test_temperature_unit(self):
|
|
|
|
"""Test temperature unit."""
|
|
|
|
self.assertEqual(self.thermostat.temperature_unit, TEMP_FAHRENHEIT)
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.assertEqual(self.thermostat.temperature_unit, TEMP_CELSIUS)
|
|
|
|
|
|
|
|
def test_current_temperature(self):
|
|
|
|
"""Test current temperature."""
|
|
|
|
self.assertEqual(self.thermostat.current_temperature, 72)
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.assertEqual(self.thermostat.current_temperature, 22)
|
|
|
|
|
|
|
|
def test_current_operation(self):
|
|
|
|
"""Test current operation."""
|
|
|
|
self.assertEqual(self.thermostat.current_operation, STATE_HEAT)
|
|
|
|
self.thermostat._thermostat.heating = False
|
|
|
|
self.assertEqual(self.thermostat.current_operation, STATE_IDLE)
|
|
|
|
|
|
|
|
def test_min_temp(self):
|
|
|
|
"""Test min temp."""
|
|
|
|
self.assertEqual(self.thermostat.min_temp, 41)
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.assertEqual(self.thermostat.min_temp, 5)
|
|
|
|
|
|
|
|
def test_max_temp(self):
|
|
|
|
"""Test max temp."""
|
|
|
|
self.assertEqual(self.thermostat.max_temp, 157)
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.assertEqual(self.thermostat.max_temp, 69)
|
|
|
|
|
|
|
|
def test_target_temperature(self):
|
|
|
|
"""Test target temperature."""
|
|
|
|
self.assertEqual(self.thermostat.target_temperature, 72)
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.assertEqual(self.thermostat.target_temperature, 22)
|
|
|
|
|
2017-12-07 04:34:13 +00:00
|
|
|
def test_current_hold_mode(self):
|
2017-11-11 06:22:37 +00:00
|
|
|
"""Test current hold mode."""
|
|
|
|
self.thermostat._thermostat.schedule_mode = SCHEDULE_RUN
|
|
|
|
self.assertEqual(self.thermostat.current_hold_mode, nuheat.MODE_AUTO)
|
|
|
|
|
|
|
|
self.thermostat._thermostat.schedule_mode = SCHEDULE_HOLD
|
|
|
|
self.assertEqual(
|
|
|
|
self.thermostat.current_hold_mode, nuheat.MODE_HOLD_TEMPERATURE)
|
|
|
|
|
|
|
|
self.thermostat._thermostat.schedule_mode = SCHEDULE_TEMPORARY_HOLD
|
|
|
|
self.assertEqual(
|
|
|
|
self.thermostat.current_hold_mode, nuheat.MODE_TEMPORARY_HOLD)
|
|
|
|
|
2017-11-11 22:21:14 +00:00
|
|
|
def test_resume_program(self):
|
|
|
|
"""Test resume schedule."""
|
|
|
|
self.thermostat.resume_program()
|
2017-11-14 05:20:16 +00:00
|
|
|
self.thermostat._thermostat.resume_schedule.assert_called_once_with()
|
2017-11-11 22:21:14 +00:00
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
2017-12-24 17:09:27 +00:00
|
|
|
def test_set_hold_mode(self):
|
|
|
|
"""Test set hold mode."""
|
|
|
|
self.thermostat.set_hold_mode("temperature")
|
|
|
|
self.assertEqual(self.thermostat._thermostat.schedule_mode, SCHEDULE_HOLD)
|
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
|
|
|
self.thermostat.set_hold_mode("temporary_temperature")
|
|
|
|
self.assertEqual(self.thermostat._thermostat.schedule_mode, SCHEDULE_TEMPORARY_HOLD)
|
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
|
|
|
self.thermostat.set_hold_mode("auto")
|
|
|
|
self.assertEqual(self.thermostat._thermostat.schedule_mode, SCHEDULE_RUN)
|
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
2017-11-11 06:22:37 +00:00
|
|
|
def test_set_temperature(self):
|
|
|
|
"""Test set temperature."""
|
|
|
|
self.thermostat.set_temperature(temperature=85)
|
|
|
|
self.assertEqual(self.thermostat._thermostat.target_fahrenheit, 85)
|
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
|
|
|
self.thermostat._temperature_unit = "C"
|
|
|
|
self.thermostat.set_temperature(temperature=23)
|
|
|
|
self.assertEqual(self.thermostat._thermostat.target_celsius, 23)
|
|
|
|
self.assertTrue(self.thermostat._force_update)
|
|
|
|
|
|
|
|
@patch.object(nuheat.NuHeatThermostat, "_throttled_update")
|
|
|
|
def test_forced_update(self, throttled_update):
|
|
|
|
"""Test update without throttle."""
|
|
|
|
self.thermostat._force_update = True
|
|
|
|
self.thermostat.update()
|
|
|
|
throttled_update.assert_called_once_with(no_throttle=True)
|
|
|
|
self.assertFalse(self.thermostat._force_update)
|
|
|
|
|
|
|
|
@patch.object(nuheat.NuHeatThermostat, "_throttled_update")
|
|
|
|
def test_throttled_update(self, throttled_update):
|
|
|
|
"""Test update with throttle."""
|
|
|
|
self.thermostat._force_update = False
|
|
|
|
self.thermostat.update()
|
|
|
|
throttled_update.assert_called_once_with()
|
|
|
|
self.assertFalse(self.thermostat._force_update)
|