1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
import unittest
from PyViCare.PyViCareGazBoiler import GazBoiler
from tests.helper import now_is
from tests.ViCareServiceMock import ViCareServiceMock
class Vitodens200W(unittest.TestCase):
def setUp(self):
self.service = ViCareServiceMock('response/Vitodens200W.json')
self.device = GazBoiler(self.service)
def test_isDomesticHotWaterDevice(self):
self.assertEqual(self.device.isDomesticHotWaterDevice(), True)
def test_isSolarThermalDevice(self):
self.assertEqual(self.device.isSolarThermalDevice(), False)
def test_isVentilationDevice(self):
self.assertEqual(self.device.isVentilationDevice(), False)
def test_getSerial(self):
self.assertEqual(self.device.getSerial(), '################')
def test_getBoilerCommonSupplyTemperature(self):
self.assertEqual(self.device.getBoilerCommonSupplyTemperature(), 44.4)
def test_getActive(self):
self.assertEqual(self.device.burners[0].getActive(), False)
def test_getDomesticHotWaterActive(self):
self.assertEqual(self.device.getDomesticHotWaterActive(), True)
def test_getBurnerStarts(self):
self.assertEqual(self.device.burners[0].getStarts(), 8237)
def test_getBurnerHours(self):
self.assertEqual(self.device.burners[0].getHours(), 5644)
def test_getBurnerModulation(self):
self.assertEqual(self.device.burners[0].getModulation(), 0)
def test_getPrograms(self):
expected_programs = ['comfort', 'forcedLastFromSchedule', 'normal', 'reduced', 'standby']
self.assertListEqual(
self.device.circuits[0].getPrograms(), expected_programs)
def test_getModes(self):
expected_modes = ['standby', 'heating', 'dhw', 'dhwAndHeating']
self.assertListEqual(
self.device.circuits[0].getModes(), expected_modes)
def test_getPowerConsumptionDays(self):
expected_days = [0.1, 0.2, 0.2, 0.2, 0.2, 0.4, 0.4, 0.1]
self.assertEqual(self.device.getPowerConsumptionDays(), expected_days)
def test_getDomesticHotWaterMaxTemperature(self):
self.assertEqual(self.device.getDomesticHotWaterMaxTemperature(), 60)
def test_getDomesticHotWaterMinTemperature(self):
self.assertEqual(self.device.getDomesticHotWaterMinTemperature(), 10)
def test_getFrostProtectionActive(self):
self.assertEqual(
self.device.circuits[0].getFrostProtectionActive(), False)
def test_getDomesticHotWaterCirculationPumpActive(self):
self.assertEqual(
self.device.getDomesticHotWaterCirculationPumpActive(), False)
def test_getDomesticHotWaterOutletTemperature(self):
self.assertEqual(
self.device.getDomesticHotWaterOutletTemperature(), 39.1)
def test_getDomesticHotWaterConfiguredTemperature(self):
self.assertEqual(
self.device.getDomesticHotWaterConfiguredTemperature(), 55)
def test_getDomesticHotWaterCirculationScheduleModes(self):
self.assertEqual(
self.device.getDomesticHotWaterCirculationScheduleModes(), ['on'])
def test_getDomesticHotWaterCirculationMode_wed_07_30_time(self):
with now_is('2021-09-08 07:30:00'):
self.assertEqual(
self.device.getDomesticHotWaterCirculationMode(), 'on')
def test_getDomesticHotWaterCirculationMode_wed_10_10_time(self):
with now_is('2021-09-08 10:10:00'):
self.assertEqual(
self.device.getDomesticHotWaterCirculationMode(), 'off')
def test_getGasConsumptionHeatingToday(self):
self.assertEqual(
self.device.getGasConsumptionHeatingToday(), 0)
def test_getGasConsumptionDomesticHotWaterToday(self):
self.assertEqual(
self.device.getGasConsumptionDomesticHotWaterToday(), 1.3)
def test_getPowerConsumptionToday(self):
self.assertEqual(
self.device.getPowerConsumptionToday(), 0.1)
|