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
|
import unittest
from PyViCare.PyViCareGazBoiler import GazBoiler
from PyViCare.PyViCareUtils import PyViCareNotSupportedFeatureError
from tests.ViCareServiceMock import ViCareServiceMock
class Vitodens333F(unittest.TestCase):
def setUp(self):
self.service = ViCareServiceMock('response/Vitodens333F.json')
self.device = GazBoiler(self.service)
# currently missing an up-to-date test response
def test_getActive(self):
self.assertRaises(PyViCareNotSupportedFeatureError, self.device.burners[0].getActive)
def test_getBurnerStarts(self):
self.assertEqual(self.device.burners[0].getStarts(), 13987)
def test_getBurnerHours(self):
self.assertEqual(self.device.burners[0].getHours(), 14071.8)
def test_getBurnerModulation(self):
self.assertEqual(self.device.burners[0].getModulation(), 0)
def test_getPrograms(self):
expected_programs = ['comfort', 'eco', 'external', 'holiday', 'normal', 'reduced', 'standby']
self.assertListEqual(
self.device.circuits[0].getPrograms(), expected_programs)
def test_getModes(self):
expected_modes = ['standby', 'dhw', 'dhwAndHeating',
'forcedReduced', 'forcedNormal']
self.assertListEqual(
self.device.circuits[0].getModes(), expected_modes)
# the api has changed, and the current response file is missing the new property, so for now we expect a not supported error
def test_getPowerConsumptionDays(self):
self.assertRaises(PyViCareNotSupportedFeatureError, self.device.getPowerConsumptionDays)
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(), 29.8)
def test_getDomesticHotWaterCirculationScheduleModes(self):
self.assertEqual(
self.device.getDomesticHotWaterCirculationScheduleModes(), ['on'])
def test_getOutsideTemperature(self):
self.assertEqual(
self.device.getOutsideTemperature(), 26.2)
def test_getBoilerTemperature(self):
self.assertEqual(
self.device.getBoilerTemperature(), 35)
|