@pietrolubini/homebridge-ecoflow 1.7.0-alpha.0 → 1.7.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc.json +1 -1
- package/README.md +60 -0
- package/config.schema.json +4 -22
- package/dist/accessories/batteries/delta2/delta2AccessoryBase.js +5 -15
- package/dist/accessories/batteries/delta2/delta2AccessoryBase.js.map +1 -1
- package/dist/accessories/batteries/delta2/services/outletAcService.js +2 -1
- package/dist/accessories/batteries/delta2/services/outletAcService.js.map +1 -1
- package/dist/accessories/batteries/delta2/services/outletCarService.js +1 -1
- package/dist/accessories/batteries/delta2/services/outletCarService.js.map +1 -1
- package/dist/accessories/batteries/delta2/services/outletUsbService.js +1 -1
- package/dist/accessories/batteries/delta2/services/outletUsbService.js.map +1 -1
- package/dist/accessories/batteries/deltapro/deltaProAccessory.js +6 -21
- package/dist/accessories/batteries/deltapro/deltaProAccessory.js.map +1 -1
- package/dist/accessories/batteries/deltapro/services/outletAcService.js +2 -1
- package/dist/accessories/batteries/deltapro/services/outletAcService.js.map +1 -1
- package/dist/accessories/batteries/deltapro/services/outletCarService.js +1 -1
- package/dist/accessories/batteries/deltapro/services/outletCarService.js.map +1 -1
- package/dist/accessories/batteries/deltapro3/deltaPro3Accessory.d.ts +1 -0
- package/dist/accessories/batteries/deltapro3/deltaPro3Accessory.js +7 -5
- package/dist/accessories/batteries/deltapro3/deltaPro3Accessory.js.map +1 -1
- package/dist/accessories/batteries/deltapro3/services/outletAcHvService.js +2 -1
- package/dist/accessories/batteries/deltapro3/services/outletAcHvService.js.map +1 -1
- package/dist/accessories/batteries/deltapro3/services/outletAcLvService.js +2 -1
- package/dist/accessories/batteries/deltapro3/services/outletAcLvService.js.map +1 -1
- package/dist/accessories/batteries/deltapro3/services/outletDc12vService.js +2 -1
- package/dist/accessories/batteries/deltapro3/services/outletDc12vService.js.map +1 -1
- package/dist/accessories/batteries/deltaproultra/deltaProUltraAccessory.js +4 -6
- package/dist/accessories/batteries/deltaproultra/deltaProUltraAccessory.js.map +1 -1
- package/dist/accessories/batteries/deltaproultra/services/outletUsbService.js +2 -1
- package/dist/accessories/batteries/deltaproultra/services/outletUsbService.js.map +1 -1
- package/dist/accessories/ecoFlowAccessoryBase.d.ts +1 -0
- package/dist/accessories/ecoFlowAccessoryBase.js +7 -3
- package/dist/accessories/ecoFlowAccessoryBase.js.map +1 -1
- package/dist/accessories/glacier/glacierAccessory.js +7 -12
- package/dist/accessories/glacier/glacierAccessory.js.map +1 -1
- package/dist/accessories/glacier/services/glacierThermostatFridgeServiceBase.d.ts +0 -1
- package/dist/accessories/glacier/services/glacierThermostatFridgeServiceBase.js +1 -4
- package/dist/accessories/glacier/services/glacierThermostatFridgeServiceBase.js.map +1 -1
- package/dist/accessories/powerocean/powerOceanAccessory.js +3 -0
- package/dist/accessories/powerocean/powerOceanAccessory.js.map +1 -1
- package/dist/accessories/powerstream/powerStreamAccessory.js +2 -4
- package/dist/accessories/powerstream/powerStreamAccessory.js.map +1 -1
- package/dist/accessories/powerstream/services/powerDemandService.js +2 -2
- package/dist/accessories/powerstream/services/powerDemandService.js.map +1 -1
- package/dist/accessories/smartplug/smartPlugAccessory.js +2 -4
- package/dist/accessories/smartplug/smartPlugAccessory.js.map +1 -1
- package/dist/accessories/wave/interfaces/waveHttpApiContracts.d.ts +73 -0
- package/dist/accessories/wave/interfaces/waveHttpApiContracts.js +51 -0
- package/dist/accessories/wave/interfaces/waveHttpApiContracts.js.map +1 -0
- package/dist/accessories/wave/interfaces/waveMqttApiContracts.d.ts +69 -0
- package/dist/accessories/wave/interfaces/waveMqttApiContracts.js +26 -0
- package/dist/accessories/wave/interfaces/waveMqttApiContracts.js.map +1 -0
- package/dist/accessories/wave/services/fanModeService.d.ts +8 -0
- package/dist/accessories/wave/services/fanModeService.js +53 -0
- package/dist/accessories/wave/services/fanModeService.js.map +1 -0
- package/dist/accessories/wave/services/thermostatAirConditionerService.d.ts +13 -0
- package/dist/accessories/wave/services/thermostatAirConditionerService.js +48 -0
- package/dist/accessories/wave/services/thermostatAirConditionerService.js.map +1 -0
- package/dist/accessories/wave/simulations/waveSimulator.d.ts +6 -0
- package/dist/accessories/wave/simulations/waveSimulator.js +72 -0
- package/dist/accessories/wave/simulations/waveSimulator.js.map +1 -0
- package/dist/accessories/wave/waveAccessory.d.ts +31 -0
- package/dist/accessories/wave/waveAccessory.js +192 -0
- package/dist/accessories/wave/waveAccessory.js.map +1 -0
- package/dist/apis/ecoFlowHttpApiManager.js +17 -7
- package/dist/apis/ecoFlowHttpApiManager.js.map +1 -1
- package/dist/apis/interfaces/generalContacts.d.ts +1 -0
- package/dist/apis/interfaces/generalContacts.js +3 -0
- package/dist/apis/interfaces/generalContacts.js.map +1 -0
- package/dist/characteristics/characteristicContracts.d.ts +4 -0
- package/dist/characteristics/characteristicContracts.js +6 -1
- package/dist/characteristics/characteristicContracts.js.map +1 -1
- package/dist/characteristics/characteristicExtensions.d.ts +8 -0
- package/dist/characteristics/characteristicExtensions.js +22 -0
- package/dist/characteristics/characteristicExtensions.js.map +1 -0
- package/dist/characteristics/characteristicExtensions.spec.d.ts +1 -0
- package/dist/characteristics/customCharacteristic.d.ts +1 -0
- package/dist/characteristics/customCharacteristic.js +8 -1
- package/dist/characteristics/customCharacteristic.js.map +1 -1
- package/dist/config.d.ts +2 -1
- package/dist/config.js +1 -0
- package/dist/config.js.map +1 -1
- package/dist/helpers/converter.d.ts +3 -0
- package/dist/helpers/converter.js +13 -0
- package/dist/helpers/converter.js.map +1 -0
- package/dist/helpers/converter.spec.d.ts +1 -0
- package/dist/homebridge-ui/public/index.html +1 -1
- package/dist/homebridge-ui/public/index.js +1 -1
- package/dist/platform.d.ts +2 -2
- package/dist/platform.js +11 -6
- package/dist/platform.js.map +1 -1
- package/dist/services/fanPositionedService.d.ts +14 -0
- package/dist/services/fanPositionedService.js +35 -0
- package/dist/services/fanPositionedService.js.map +1 -0
- package/dist/services/fanPositionedService.spec.d.ts +6 -0
- package/dist/services/fanServiceBase.d.ts +2 -2
- package/dist/services/fanServiceBase.js +27 -9
- package/dist/services/fanServiceBase.js.map +1 -1
- package/dist/services/lightBulbServiceBase.d.ts +2 -2
- package/dist/services/lightBulbServiceBase.js +27 -9
- package/dist/services/lightBulbServiceBase.js.map +1 -1
- package/dist/services/outletBatteryServiceBase.d.ts +2 -1
- package/dist/services/outletBatteryServiceBase.js +2 -2
- package/dist/services/outletBatteryServiceBase.js.map +1 -1
- package/dist/services/outletReadOnlyService.d.ts +0 -1
- package/dist/services/outletReadOnlyService.js +2 -4
- package/dist/services/outletReadOnlyService.js.map +1 -1
- package/dist/services/outletServiceBase.d.ts +4 -2
- package/dist/services/outletServiceBase.js +18 -5
- package/dist/services/outletServiceBase.js.map +1 -1
- package/dist/services/serviceBase.d.ts +2 -1
- package/dist/services/serviceBase.js +11 -4
- package/dist/services/serviceBase.js.map +1 -1
- package/dist/services/switchServiceBase.d.ts +1 -1
- package/dist/services/switchServiceBase.js +13 -4
- package/dist/services/switchServiceBase.js.map +1 -1
- package/dist/services/thermostatAirConditionerServiceBase.d.ts +29 -0
- package/dist/services/thermostatAirConditionerServiceBase.js +142 -0
- package/dist/services/thermostatAirConditionerServiceBase.js.map +1 -0
- package/dist/services/thermostatAirConditionerServiceBase.spec.d.ts +1 -0
- package/dist/services/thermostatFridgeServiceBase.d.ts +6 -5
- package/dist/services/thermostatFridgeServiceBase.js +47 -21
- package/dist/services/thermostatFridgeServiceBase.js.map +1 -1
- package/junit.xml +1105 -859
- package/package.json +4 -3
- package/dist/accessories/batteries/deltapro/services/outletUsbService.d.ts +0 -7
- package/dist/accessories/batteries/deltapro/services/outletUsbService.js +0 -14
- package/dist/accessories/batteries/deltapro/services/outletUsbService.js.map +0 -1
- package/dist/accessories/batteries/deltaproultra/services/outletAcService.d.ts +0 -8
- package/dist/accessories/batteries/deltaproultra/services/outletAcService.js +0 -14
- package/dist/accessories/batteries/deltaproultra/services/outletAcService.js.map +0 -1
- package/dist/accessories/glacier/services/outletBatteryService.d.ts +0 -8
- package/dist/accessories/glacier/services/outletBatteryService.js +0 -14
- package/dist/accessories/glacier/services/outletBatteryService.js.map +0 -1
- /package/dist/accessories/{batteries/deltapro/services/outletUsbService.spec.d.ts → wave/services/fanModeService.spec.d.ts} +0 -0
- /package/dist/accessories/{batteries/deltaproultra/services/outletAcService.spec.d.ts → wave/services/thermostatAirConditionerService.spec.d.ts} +0 -0
- /package/dist/accessories/{glacier/services/outletBatteryService.spec.d.ts → wave/waveAccessory.spec.d.ts} +0 -0
package/junit.xml
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<testsuites name="jest tests" tests="
|
|
3
|
-
<testsuite name="Delta2AccessoryBase" errors="0" failures="0" skipped="0" timestamp="
|
|
4
|
-
<testcase classname="Delta2AccessoryBase initialize should add required services when initializing accessory" name="Delta2AccessoryBase initialize should add required services when initializing accessory" time="0.
|
|
2
|
+
<testsuites name="jest tests" tests="1005" failures="0" errors="0" time="30.243">
|
|
3
|
+
<testsuite name="Delta2AccessoryBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:06" time="6.461" tests="47">
|
|
4
|
+
<testcase classname="Delta2AccessoryBase initialize should add required services when initializing accessory" name="Delta2AccessoryBase initialize should add required services when initializing accessory" time="0.02">
|
|
5
5
|
</testcase>
|
|
6
|
-
<testcase classname="Delta2AccessoryBase initialize should create OutletAcService with MPPT setModuleType when initializing accessory MPPT setModuleType" name="Delta2AccessoryBase initialize should create OutletAcService with MPPT setModuleType when initializing accessory MPPT setModuleType" time="0.
|
|
6
|
+
<testcase classname="Delta2AccessoryBase initialize should create OutletAcService with MPPT setModuleType when initializing accessory MPPT setModuleType" name="Delta2AccessoryBase initialize should create OutletAcService with MPPT setModuleType when initializing accessory MPPT setModuleType" time="0.023">
|
|
7
7
|
</testcase>
|
|
8
|
-
<testcase classname="Delta2AccessoryBase initialize should create SwitchXboostService with INV setModuleType when initializing accessory INV setModuleType" name="Delta2AccessoryBase initialize should create SwitchXboostService with INV setModuleType when initializing accessory INV setModuleType" time="0.
|
|
8
|
+
<testcase classname="Delta2AccessoryBase initialize should create SwitchXboostService with INV setModuleType when initializing accessory INV setModuleType" name="Delta2AccessoryBase initialize should create SwitchXboostService with INV setModuleType when initializing accessory INV setModuleType" time="0.008">
|
|
9
9
|
</testcase>
|
|
10
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update ems status in quota when EmsStatus message is received" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update ems status in quota when EmsStatus message is received" time="0.
|
|
10
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update ems status in quota when EmsStatus message is received" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update ems status in quota when EmsStatus message is received" time="0.014">
|
|
11
11
|
</testcase>
|
|
12
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when EmsStatus message is received with f32ShowSoc" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when EmsStatus message is received with f32ShowSoc" time="0.
|
|
12
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when EmsStatus message is received with f32ShowSoc" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when EmsStatus message is received with f32ShowSoc" time="0.009">
|
|
13
13
|
</testcase>
|
|
14
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when EmsStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when EmsStatus message is received with undefined status" time="0.
|
|
14
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when EmsStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when EmsStatus message is received with undefined status" time="0.012">
|
|
15
15
|
</testcase>
|
|
16
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" name="Delta2AccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" time="0.
|
|
16
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" name="Delta2AccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" time="0.017">
|
|
17
17
|
</testcase>
|
|
18
18
|
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
|
|
19
19
|
when InvStatus message is received with non zero inputWatts and without outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
|
|
20
|
-
when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.
|
|
20
|
+
when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.014">
|
|
21
21
|
</testcase>
|
|
22
22
|
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
|
|
23
23
|
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
|
|
24
|
-
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.
|
|
24
|
+
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.009">
|
|
25
25
|
</testcase>
|
|
26
26
|
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
|
|
27
27
|
when InvStatus message is received with zero inputWatts and non equal to it outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
|
|
@@ -29,111 +29,111 @@
|
|
|
29
29
|
</testcase>
|
|
30
30
|
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
|
|
31
31
|
when InvStatus message is received with zero inputWatts and outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
|
|
32
|
-
when InvStatus message is received with zero inputWatts and outputWatts" time="0.
|
|
32
|
+
when InvStatus message is received with zero inputWatts and outputWatts" time="0.027">
|
|
33
33
|
</testcase>
|
|
34
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" time="0.
|
|
34
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" time="0.007">
|
|
35
35
|
</testcase>
|
|
36
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" time="0.
|
|
36
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" time="0.006">
|
|
37
37
|
</testcase>
|
|
38
38
|
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" name="Delta2AccessoryBase processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" time="0.006">
|
|
39
39
|
</testcase>
|
|
40
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" time="0.
|
|
40
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" time="0.01">
|
|
41
41
|
</testcase>
|
|
42
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" time="0.
|
|
42
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" time="0.02">
|
|
43
43
|
</testcase>
|
|
44
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="Delta2AccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.
|
|
44
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="Delta2AccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.006">
|
|
45
45
|
</testcase>
|
|
46
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" name="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" time="0.
|
|
46
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" name="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" time="0.006">
|
|
47
47
|
</testcase>
|
|
48
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" time="0.
|
|
48
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" time="0.006">
|
|
49
49
|
</testcase>
|
|
50
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" time="0.
|
|
50
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" time="0.018">
|
|
51
51
|
</testcase>
|
|
52
52
|
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" time="0.005">
|
|
53
53
|
</testcase>
|
|
54
54
|
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" time="0.005">
|
|
55
55
|
</testcase>
|
|
56
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" time="0.
|
|
56
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" time="0.005">
|
|
57
57
|
</testcase>
|
|
58
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" time="0.
|
|
58
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" time="0.005">
|
|
59
59
|
</testcase>
|
|
60
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" time="0.
|
|
60
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" time="0.013">
|
|
61
61
|
</testcase>
|
|
62
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" time="0.
|
|
62
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" time="0.006">
|
|
63
63
|
</testcase>
|
|
64
64
|
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" time="0.005">
|
|
65
65
|
</testcase>
|
|
66
66
|
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" time="0.005">
|
|
67
67
|
</testcase>
|
|
68
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" time="0.
|
|
68
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" time="0.021">
|
|
69
69
|
</testcase>
|
|
70
70
|
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" time="0.005">
|
|
71
71
|
</testcase>
|
|
72
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" time="0.
|
|
72
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" time="0.006">
|
|
73
73
|
</testcase>
|
|
74
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" time="0.
|
|
74
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" time="0.012">
|
|
75
75
|
</testcase>
|
|
76
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.
|
|
76
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" name="Delta2AccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.006">
|
|
77
77
|
</testcase>
|
|
78
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" time="0.
|
|
78
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" time="0.032">
|
|
79
79
|
</testcase>
|
|
80
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should update mppt status in quota when MpptStatus message is received" name="Delta2AccessoryBase processQuotaMessage MpptStatus should update mppt status in quota when MpptStatus message is received" time="0.
|
|
80
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should update mppt status in quota when MpptStatus message is received" name="Delta2AccessoryBase processQuotaMessage MpptStatus should update mppt status in quota when MpptStatus message is received" time="0.003">
|
|
81
81
|
</testcase>
|
|
82
82
|
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should update AC state when MpptStatus message is received with cfgAcEnabled" name="Delta2AccessoryBase processQuotaMessage MpptStatus should update AC state when MpptStatus message is received with cfgAcEnabled" time="0.003">
|
|
83
83
|
</testcase>
|
|
84
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should update X-Boost state when MpptStatus message is received with cfgAcXboost" name="Delta2AccessoryBase processQuotaMessage MpptStatus should update X-Boost state when MpptStatus message is received with cfgAcXboost" time="0.
|
|
84
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should update X-Boost state when MpptStatus message is received with cfgAcXboost" name="Delta2AccessoryBase processQuotaMessage MpptStatus should update X-Boost state when MpptStatus message is received with cfgAcXboost" time="0.005">
|
|
85
85
|
</testcase>
|
|
86
|
-
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should not update any characteristic when MpptStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage MpptStatus should not update any characteristic when MpptStatus message is received with undefined status" time="0.
|
|
86
|
+
<testcase classname="Delta2AccessoryBase processQuotaMessage MpptStatus should not update any characteristic when MpptStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage MpptStatus should not update any characteristic when MpptStatus message is received with undefined status" time="0.016">
|
|
87
87
|
</testcase>
|
|
88
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="Delta2AccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.
|
|
88
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="Delta2AccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.003">
|
|
89
89
|
</testcase>
|
|
90
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" time="0.
|
|
90
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" time="0.004">
|
|
91
91
|
</testcase>
|
|
92
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
92
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
93
93
|
</testcase>
|
|
94
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" time="0.
|
|
94
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" time="0.021">
|
|
95
95
|
</testcase>
|
|
96
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
96
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.006">
|
|
97
97
|
</testcase>
|
|
98
98
|
<testcase classname="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" time="0.005">
|
|
99
99
|
</testcase>
|
|
100
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
100
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.009">
|
|
101
101
|
</testcase>
|
|
102
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested" time="0.
|
|
102
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested" name="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested" time="0.006">
|
|
103
103
|
</testcase>
|
|
104
|
-
<testcase classname="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
104
|
+
<testcase classname="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues MpptStatus should update MpptStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.019">
|
|
105
105
|
</testcase>
|
|
106
106
|
</testsuite>
|
|
107
|
-
<testsuite name="PowerStreamAccessory" errors="0" failures="0" skipped="0" timestamp="
|
|
108
|
-
<testcase classname="PowerStreamAccessory initialize should add required services when initializing accessory" name="PowerStreamAccessory initialize should add required services when initializing accessory" time="0.
|
|
107
|
+
<testsuite name="PowerStreamAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:06" time="6.476" tests="51">
|
|
108
|
+
<testcase classname="PowerStreamAccessory initialize should add required services when initializing accessory" name="PowerStreamAccessory initialize should add required services when initializing accessory" time="0.02">
|
|
109
109
|
</testcase>
|
|
110
|
-
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" time="0.
|
|
110
|
+
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" time="0.015">
|
|
111
111
|
</testcase>
|
|
112
|
-
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" time="0.
|
|
112
|
+
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" time="0.026">
|
|
113
113
|
</testcase>
|
|
114
114
|
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
|
|
115
115
|
when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
|
|
116
116
|
when powerStream settings are not defined in config" time="0.011">
|
|
117
117
|
</testcase>
|
|
118
|
-
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" time="0.
|
|
118
|
+
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" time="0.009">
|
|
119
119
|
</testcase>
|
|
120
|
-
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" time="0.
|
|
120
|
+
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" time="0.015">
|
|
121
121
|
</testcase>
|
|
122
122
|
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics
|
|
123
123
|
when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics
|
|
124
|
-
when powerStream settings are not defined in config" time="0.
|
|
124
|
+
when powerStream settings are not defined in config" time="0.042">
|
|
125
125
|
</testcase>
|
|
126
126
|
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" time="0.018">
|
|
127
127
|
</testcase>
|
|
128
|
-
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" time="0.
|
|
128
|
+
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" time="0.007">
|
|
129
129
|
</testcase>
|
|
130
130
|
<testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
|
|
131
131
|
when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
|
|
132
|
-
when powerStream settings are not defined in config" time="0.
|
|
132
|
+
when powerStream settings are not defined in config" time="0.02">
|
|
133
133
|
</testcase>
|
|
134
|
-
<testcase classname="PowerStreamAccessory initialize indicatorService maxBrightness should initialize indicator service with permanent max brightness when it is created" name="PowerStreamAccessory initialize indicatorService maxBrightness should initialize indicator service with permanent max brightness when it is created" time="0.
|
|
134
|
+
<testcase classname="PowerStreamAccessory initialize indicatorService maxBrightness should initialize indicator service with permanent max brightness when it is created" name="PowerStreamAccessory initialize indicatorService maxBrightness should initialize indicator service with permanent max brightness when it is created" time="0.004">
|
|
135
135
|
</testcase>
|
|
136
|
-
<testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand when powerStream settings are not defined in config" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand when powerStream settings are not defined in config" time="0.
|
|
136
|
+
<testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand when powerStream settings are not defined in config" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand when powerStream settings are not defined in config" time="0.004">
|
|
137
137
|
</testcase>
|
|
138
138
|
<testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand
|
|
139
139
|
when powerStream.type settings are not defined in config" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand
|
|
@@ -141,513 +141,705 @@
|
|
|
141
141
|
</testcase>
|
|
142
142
|
<testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 6000 max power demand
|
|
143
143
|
when powerStream.type is 600W" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 6000 max power demand
|
|
144
|
-
when powerStream.type is 600W" time="0.
|
|
144
|
+
when powerStream.type is 600W" time="0.013">
|
|
145
145
|
</testcase>
|
|
146
146
|
<testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 8000 max power demand
|
|
147
147
|
when powerStream.type is 800W" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 8000 max power demand
|
|
148
|
-
when powerStream.type is 800W" time="0.
|
|
148
|
+
when powerStream.type is 800W" time="0.004">
|
|
149
149
|
</testcase>
|
|
150
150
|
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" name="PowerStreamAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" time="0.006">
|
|
151
151
|
</testcase>
|
|
152
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" time="0.
|
|
152
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" time="0.003">
|
|
153
153
|
</testcase>
|
|
154
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without batSoc" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without batSoc" time="0.
|
|
154
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without batSoc" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without batSoc" time="0.017">
|
|
155
155
|
</testcase>
|
|
156
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without lowerLimit" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without lowerLimit" time="0.
|
|
156
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without lowerLimit" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received without lowerLimit" time="0.004">
|
|
157
157
|
</testcase>
|
|
158
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with batSoc and lowerLimit" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with batSoc and lowerLimit" time="0.
|
|
158
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with batSoc and lowerLimit" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with batSoc and lowerLimit" time="0.004">
|
|
159
159
|
</testcase>
|
|
160
160
|
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should not update PV Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should not update PV Input and Output Consumption when Hearbeat message is received with undefined status" time="0.005">
|
|
161
161
|
</testcase>
|
|
162
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv1InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv1InputWatts" time="0.
|
|
162
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv1InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv1InputWatts" time="0.014">
|
|
163
163
|
</testcase>
|
|
164
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv1InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv1InputWatts" time="0.
|
|
164
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv1InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv1InputWatts" time="0.005">
|
|
165
165
|
</testcase>
|
|
166
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv2InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv2InputWatts" time="0.
|
|
166
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv2InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 pv2InputWatts" time="0.005">
|
|
167
167
|
</testcase>
|
|
168
168
|
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv2InputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with pv2InputWatts" time="0.005">
|
|
169
169
|
</testcase>
|
|
170
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with all pv-related parameters" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with all pv-related parameters" time="0.
|
|
170
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with all pv-related parameters" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with all pv-related parameters" time="0.015">
|
|
171
171
|
</testcase>
|
|
172
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" time="0.
|
|
172
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" time="0.003">
|
|
173
173
|
</testcase>
|
|
174
174
|
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Output Consumption when Hearbeat message is received with positive batInputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Output Consumption when Hearbeat message is received with positive batInputWatts" time="0.007">
|
|
175
175
|
</testcase>
|
|
176
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero batInputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero batInputWatts" time="0.
|
|
176
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero batInputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero batInputWatts" time="0.004">
|
|
177
177
|
</testcase>
|
|
178
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative batInputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative batInputWatts" time="0.
|
|
178
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative batInputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative batInputWatts" time="0.016">
|
|
179
179
|
</testcase>
|
|
180
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" time="0.
|
|
180
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" time="0.005">
|
|
181
181
|
</testcase>
|
|
182
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Output Consumption when Hearbeat message is received with positive invOutputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Output Consumption when Hearbeat message is received with positive invOutputWatts" time="0.
|
|
182
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Output Consumption when Hearbeat message is received with positive invOutputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Output Consumption when Hearbeat message is received with positive invOutputWatts" time="0.006">
|
|
183
183
|
</testcase>
|
|
184
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input and Output Consumption when Hearbeat message is received with zero invOutputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input and Output Consumption when Hearbeat message is received with zero invOutputWatts" time="0.
|
|
184
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input and Output Consumption when Hearbeat message is received with zero invOutputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input and Output Consumption when Hearbeat message is received with zero invOutputWatts" time="0.012">
|
|
185
185
|
</testcase>
|
|
186
186
|
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input Consumption when Hearbeat message is received with negative invOutputWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV Input Consumption when Hearbeat message is received with negative invOutputWatts" time="0.005">
|
|
187
187
|
</testcase>
|
|
188
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV State when Hearbeat message is received with invOnOff set to true" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV State when Hearbeat message is received with invOnOff set to true" time="0.
|
|
188
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV State when Hearbeat message is received with invOnOff set to true" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV State when Hearbeat message is received with invOnOff set to true" time="0.006">
|
|
189
189
|
</testcase>
|
|
190
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV brightness when Hearbeat message is received with invBrightness" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV brightness when Hearbeat message is received with invBrightness" time="0.
|
|
190
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV brightness when Hearbeat message is received with invBrightness" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV brightness when Hearbeat message is received with invBrightness" time="0.005">
|
|
191
191
|
</testcase>
|
|
192
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts" time="0.
|
|
192
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts" time="0.004">
|
|
193
193
|
</testcase>
|
|
194
|
-
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts equal to 0" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts equal to 0" time="0.
|
|
194
|
+
<testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts equal to 0" name="PowerStreamAccessory processQuotaMessage Hearbeat updateConsumption INV should update INV power demand when Hearbeat message is received with permanentWatts equal to 0" time="0.006">
|
|
195
195
|
</testcase>
|
|
196
|
-
<testcase classname="PowerStreamAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="PowerStreamAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.
|
|
196
|
+
<testcase classname="PowerStreamAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="PowerStreamAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.015">
|
|
197
197
|
</testcase>
|
|
198
198
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" time="0.005">
|
|
199
199
|
</testcase>
|
|
200
200
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
|
|
201
201
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
|
|
202
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
202
|
+
when initializing default values with quotas were not initialized properly for it" time="0.006">
|
|
203
203
|
</testcase>
|
|
204
204
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics when initializing default values" time="0.005">
|
|
205
205
|
</testcase>
|
|
206
206
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics
|
|
207
207
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics
|
|
208
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
208
|
+
when initializing default values with quotas were not initialized properly for it" time="0.005">
|
|
209
209
|
</testcase>
|
|
210
|
-
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics when initializing default values" time="0.
|
|
210
|
+
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics when initializing default values" time="0.006">
|
|
211
211
|
</testcase>
|
|
212
212
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics
|
|
213
213
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics
|
|
214
214
|
when initializing default values with quotas were not initialized properly for it" time="0.005">
|
|
215
215
|
</testcase>
|
|
216
|
-
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" time="0.
|
|
216
|
+
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" time="0.008">
|
|
217
217
|
</testcase>
|
|
218
218
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
|
|
219
219
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
|
|
220
220
|
when initializing default values with quotas were not initialized properly for it" time="0.005">
|
|
221
221
|
</testcase>
|
|
222
|
-
<testcase classname="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics when initializing default values" time="0.
|
|
222
|
+
<testcase classname="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics when initializing default values" time="0.023">
|
|
223
223
|
</testcase>
|
|
224
224
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics
|
|
225
225
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics
|
|
226
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
226
|
+
when initializing default values with quotas were not initialized properly for it" time="0.005">
|
|
227
227
|
</testcase>
|
|
228
|
-
<testcase classname="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV brightness-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV brightness-related characteristics when initializing default values" time="0.
|
|
228
|
+
<testcase classname="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV brightness-related characteristics when initializing default values" name="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV brightness-related characteristics when initializing default values" time="0.006">
|
|
229
229
|
</testcase>
|
|
230
230
|
<testcase classname="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV power demand-related characteristics
|
|
231
231
|
when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV power demand-related characteristics
|
|
232
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
232
|
+
when initializing default values with quotas were not initialized properly for it" time="0.005">
|
|
233
233
|
</testcase>
|
|
234
234
|
</testsuite>
|
|
235
|
-
<testsuite name="GlacierAccessory" errors="0" failures="0" skipped="0" timestamp="
|
|
236
|
-
<testcase classname="GlacierAccessory initialize should add required services when initializing accessory" name="GlacierAccessory initialize should add required services when initializing accessory" time="0.
|
|
235
|
+
<testsuite name="GlacierAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:06" time="7.462" tests="54">
|
|
236
|
+
<testcase classname="GlacierAccessory initialize should add required services when initializing accessory" name="GlacierAccessory initialize should add required services when initializing accessory" time="0.024">
|
|
237
237
|
</testcase>
|
|
238
|
-
<testcase classname="GlacierAccessory initialize contactSensorService serviceSubName should initialize contact sensor service with permanent name when it is created" name="GlacierAccessory initialize contactSensorService serviceSubName should initialize contact sensor service with permanent name when it is created" time="0.
|
|
238
|
+
<testcase classname="GlacierAccessory initialize contactSensorService serviceSubName should initialize contact sensor service with permanent name when it is created" name="GlacierAccessory initialize contactSensorService serviceSubName should initialize contact sensor service with permanent name when it is created" time="0.024">
|
|
239
239
|
</testcase>
|
|
240
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should update ems status in quota when EmsStatus message is received" name="GlacierAccessory processQuotaMessage updateEmsStatus should update ems status in quota when EmsStatus message is received" time="0.
|
|
240
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should update ems status in quota when EmsStatus message is received" name="GlacierAccessory processQuotaMessage updateEmsStatus should update ems status in quota when EmsStatus message is received" time="0.012">
|
|
241
241
|
</testcase>
|
|
242
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should update battery level when EmsStatus message is received with lcdSoc" name="GlacierAccessory processQuotaMessage updateEmsStatus should update battery level when EmsStatus message is received with lcdSoc" time="0.
|
|
242
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should update battery level when EmsStatus message is received with lcdSoc" name="GlacierAccessory processQuotaMessage updateEmsStatus should update battery level when EmsStatus message is received with lcdSoc" time="0.015">
|
|
243
243
|
</testcase>
|
|
244
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should not update any characteristic when EmsStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updateEmsStatus should not update any characteristic when EmsStatus message is received with undefined status" time="0.
|
|
244
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateEmsStatus should not update any characteristic when EmsStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updateEmsStatus should not update any characteristic when EmsStatus message is received with undefined status" time="0.026">
|
|
245
245
|
</testcase>
|
|
246
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update bams status in quota when BmsStatus message is received" name="GlacierAccessory processQuotaMessage updateBmsStatus should update bams status in quota when BmsStatus message is received" time="0.
|
|
246
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update bams status in quota when BmsStatus message is received" name="GlacierAccessory processQuotaMessage updateBmsStatus should update bams status in quota when BmsStatus message is received" time="0.025">
|
|
247
247
|
</testcase>
|
|
248
248
|
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to true
|
|
249
249
|
when BmsStatus message is received with non zero inWatts and without outWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to true
|
|
250
|
-
when BmsStatus message is received with non zero inWatts and without outWatts" time="0.
|
|
250
|
+
when BmsStatus message is received with non zero inWatts and without outWatts" time="0.012">
|
|
251
251
|
</testcase>
|
|
252
252
|
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to true
|
|
253
253
|
when BmsStatus message is received with non zero inWatts and non equal to it outWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to true
|
|
254
|
-
when BmsStatus message is received with non zero inWatts and non equal to it outWatts" time="0.
|
|
254
|
+
when BmsStatus message is received with non zero inWatts and non equal to it outWatts" time="0.023">
|
|
255
255
|
</testcase>
|
|
256
256
|
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to false
|
|
257
257
|
when BmsStatus message is received with zero inWatts and non equal to it outWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to false
|
|
258
|
-
when BmsStatus message is received with zero inWatts and non equal to it outWatts" time="0.
|
|
258
|
+
when BmsStatus message is received with zero inWatts and non equal to it outWatts" time="0.014">
|
|
259
259
|
</testcase>
|
|
260
260
|
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to false
|
|
261
261
|
when BmsStatus message is received with zero inWatts and outWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update charging state to false
|
|
262
|
-
when BmsStatus message is received with zero inWatts and outWatts" time="0.
|
|
262
|
+
when BmsStatus message is received with zero inWatts and outWatts" time="0.017">
|
|
263
263
|
</testcase>
|
|
264
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet input consumptions when BmsStatus message is received with inWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet input consumptions when BmsStatus message is received with inWatts" time="0.
|
|
264
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet input consumptions when BmsStatus message is received with inWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet input consumptions when BmsStatus message is received with inWatts" time="0.005">
|
|
265
265
|
</testcase>
|
|
266
266
|
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet output watts consumption when BmsStatus message is received with outWatts" name="GlacierAccessory processQuotaMessage updateBmsStatus should update battery outlet output watts consumption when BmsStatus message is received with outWatts" time="0.008">
|
|
267
267
|
</testcase>
|
|
268
|
-
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should not update any characteristic when BmsStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updateBmsStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.
|
|
268
|
+
<testcase classname="GlacierAccessory processQuotaMessage updateBmsStatus should not update any characteristic when BmsStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updateBmsStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.022">
|
|
269
269
|
</testcase>
|
|
270
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" name="GlacierAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" time="0.
|
|
270
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" name="GlacierAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" time="0.006">
|
|
271
271
|
</testcase>
|
|
272
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" time="0.
|
|
272
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" name="GlacierAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" time="0.028">
|
|
273
273
|
</testcase>
|
|
274
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to On when PdStatus message is received with pwrState equal to On" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to On when PdStatus message is received with pwrState equal to On" time="0.
|
|
274
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to On when PdStatus message is received with pwrState equal to On" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to On when PdStatus message is received with pwrState equal to On" time="0.005">
|
|
275
275
|
</testcase>
|
|
276
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to Off when PdStatus message is received with pwrState equal to Off" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to Off when PdStatus message is received with pwrState equal to Off" time="0.
|
|
276
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to Off when PdStatus message is received with pwrState equal to Off" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target state to Off when PdStatus message is received with pwrState equal to Off" time="0.005">
|
|
277
277
|
</testcase>
|
|
278
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate dual zone services when PdStatus message is received with flagTwoZone equal to Dual" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate dual zone services when PdStatus message is received with flagTwoZone equal to Dual" time="0.
|
|
278
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate dual zone services when PdStatus message is received with flagTwoZone equal to Dual" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate dual zone services when PdStatus message is received with flagTwoZone equal to Dual" time="0.038">
|
|
279
279
|
</testcase>
|
|
280
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate single zone service when PdStatus message is received with flagTwoZone equal to Single" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate single zone service when PdStatus message is received with flagTwoZone equal to Single" time="0.
|
|
280
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate single zone service when PdStatus message is received with flagTwoZone equal to Single" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should activate single zone service when PdStatus message is received with flagTwoZone equal to Single" time="0.011">
|
|
281
281
|
</testcase>
|
|
282
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual left zone service when PdStatus message is received with tmpL" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual left zone service when PdStatus message is received with tmpL" time="0.
|
|
282
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual left zone service when PdStatus message is received with tmpL" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual left zone service when PdStatus message is received with tmpL" time="0.009">
|
|
283
283
|
</testcase>
|
|
284
284
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual right zone service when PdStatus message is received with tmpR" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of dual right zone service when PdStatus message is received with tmpR" time="0.009">
|
|
285
285
|
</testcase>
|
|
286
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of single zone service when PdStatus message is received with tmpAver" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of single zone service when PdStatus message is received with tmpAver" time="0.
|
|
286
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of single zone service when PdStatus message is received with tmpAver" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update current temperature of single zone service when PdStatus message is received with tmpAver" time="0.008">
|
|
287
287
|
</testcase>
|
|
288
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual left zone service when PdStatus message is received with tmpLSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual left zone service when PdStatus message is received with tmpLSet" time="0.
|
|
288
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual left zone service when PdStatus message is received with tmpLSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual left zone service when PdStatus message is received with tmpLSet" time="0.028">
|
|
289
289
|
</testcase>
|
|
290
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual right zone service when PdStatus message is received with tmpRSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual right zone service when PdStatus message is received with tmpRSet" time="0.
|
|
290
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual right zone service when PdStatus message is received with tmpRSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of dual right zone service when PdStatus message is received with tmpRSet" time="0.018">
|
|
291
291
|
</testcase>
|
|
292
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of single zone service when PdStatus message is received with tmpMSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of single zone service when PdStatus message is received with tmpMSet" time="0.
|
|
292
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of single zone service when PdStatus message is received with tmpMSet" name="GlacierAccessory processQuotaMessage updatePdValues updateFridgeZonesValues Should update target temperature of single zone service when PdStatus message is received with tmpMSet" time="0.012">
|
|
293
293
|
</testcase>
|
|
294
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to true when PdStatus message is received with coolMode equal to Eco" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to true when PdStatus message is received with coolMode equal to Eco" time="0.
|
|
294
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to true when PdStatus message is received with coolMode equal to Eco" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to true when PdStatus message is received with coolMode equal to Eco" time="0.02">
|
|
295
295
|
</testcase>
|
|
296
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to false when PdStatus message is received with coolMode equal to Normal" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to false when PdStatus message is received with coolMode equal to Normal" time="0.
|
|
296
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to false when PdStatus message is received with coolMode equal to Normal" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update ECO mode to false when PdStatus message is received with coolMode equal to Normal" time="0.012">
|
|
297
297
|
</testcase>
|
|
298
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to true when PdStatus message is received with doorStat equal to Closed" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to true when PdStatus message is received with doorStat equal to Closed" time="0.
|
|
298
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to true when PdStatus message is received with doorStat equal to Closed" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to true when PdStatus message is received with doorStat equal to Closed" time="0.036">
|
|
299
299
|
</testcase>
|
|
300
|
-
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to false when PdStatus message is received with doorStat equal to Opened" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to false when PdStatus message is received with doorStat equal to Opened" time="0.
|
|
300
|
+
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to false when PdStatus message is received with doorStat equal to Opened" name="GlacierAccessory processQuotaMessage updatePdValues updateStateValues Should update door status to false when PdStatus message is received with doorStat equal to Opened" time="0.009">
|
|
301
301
|
</testcase>
|
|
302
302
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Small Ice Cubes service
|
|
303
303
|
when PdStatus message is received with iceMkMode equal to SmallInPreparation" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Small Ice Cubes service
|
|
304
|
-
when PdStatus message is received with iceMkMode equal to SmallInPreparation" time="0.
|
|
304
|
+
when PdStatus message is received with iceMkMode equal to SmallInPreparation" time="0.009">
|
|
305
305
|
</testcase>
|
|
306
306
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Small Ice Cubes service
|
|
307
307
|
when PdStatus message is received with iceMkMode equal to SmallInProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Small Ice Cubes service
|
|
308
|
-
when PdStatus message is received with iceMkMode equal to SmallInProgress" time="0.
|
|
308
|
+
when PdStatus message is received with iceMkMode equal to SmallInProgress" time="0.03">
|
|
309
309
|
</testcase>
|
|
310
310
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Large Ice Cubes service
|
|
311
311
|
when PdStatus message is received with iceMkMode equal to LargeInPreparation" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Large Ice Cubes service
|
|
312
|
-
when PdStatus message is received with iceMkMode equal to LargeInPreparation" time="0.
|
|
312
|
+
when PdStatus message is received with iceMkMode equal to LargeInPreparation" time="0.007">
|
|
313
313
|
</testcase>
|
|
314
314
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Large Ice Cubes service
|
|
315
315
|
when PdStatus message is received with iceMkMode equal to LargeInProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Make Large Ice Cubes service
|
|
316
|
-
when PdStatus message is received with iceMkMode equal to LargeInProgress" time="0.
|
|
316
|
+
when PdStatus message is received with iceMkMode equal to LargeInProgress" time="0.01">
|
|
317
317
|
</testcase>
|
|
318
318
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Small Ice Cubes service
|
|
319
319
|
when PdStatus message is received with iceMkMode equal to SmallInPreparation" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Small Ice Cubes service
|
|
320
|
-
when PdStatus message is received with iceMkMode equal to SmallInPreparation" time="0.
|
|
320
|
+
when PdStatus message is received with iceMkMode equal to SmallInPreparation" time="0.006">
|
|
321
321
|
</testcase>
|
|
322
322
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Small Ice Cubes service
|
|
323
323
|
when PdStatus message is received with iceMkMode equal to SmallInProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Small Ice Cubes service
|
|
324
|
-
when PdStatus message is received with iceMkMode equal to SmallInProgress" time="0.
|
|
324
|
+
when PdStatus message is received with iceMkMode equal to SmallInProgress" time="0.026">
|
|
325
325
|
</testcase>
|
|
326
326
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Large Ice Cubes service
|
|
327
327
|
when PdStatus message is received with iceMkMode equal to LargeInPreparation" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Large Ice Cubes service
|
|
328
|
-
when PdStatus message is received with iceMkMode equal to LargeInPreparation" time="0.
|
|
328
|
+
when PdStatus message is received with iceMkMode equal to LargeInPreparation" time="0.044">
|
|
329
329
|
</testcase>
|
|
330
330
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Large Ice Cubes service
|
|
331
331
|
when PdStatus message is received with iceMkMode equal to LargeInProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Make Large Ice Cubes service
|
|
332
|
-
when PdStatus message is received with iceMkMode equal to LargeInProgress" time="0.
|
|
332
|
+
when PdStatus message is received with iceMkMode equal to LargeInProgress" time="0.081">
|
|
333
333
|
</testcase>
|
|
334
334
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should enable Make Small and Large Ice Cubes services
|
|
335
335
|
when PdStatus message is received with icePercent equal to 100" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should enable Make Small and Large Ice Cubes services
|
|
336
|
-
when PdStatus message is received with icePercent equal to 100" time="0.
|
|
336
|
+
when PdStatus message is received with icePercent equal to 100" time="0.024">
|
|
337
337
|
</testcase>
|
|
338
338
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should not enable Make Small and Large Ice Cubes services
|
|
339
339
|
when PdStatus message is received with icePercent that is not equal to 100" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should not enable Make Small and Large Ice Cubes services
|
|
340
|
-
when PdStatus message is received with icePercent that is not equal to 100" time="0.
|
|
340
|
+
when PdStatus message is received with icePercent that is not equal to 100" time="0.036">
|
|
341
341
|
</testcase>
|
|
342
342
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Detach Ice service
|
|
343
343
|
when PdStatus message is received with fsmState equal to InProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should leave enabled Detach Ice service
|
|
344
|
-
when PdStatus message is received with fsmState equal to InProgress" time="0.
|
|
344
|
+
when PdStatus message is received with fsmState equal to InProgress" time="0.01">
|
|
345
345
|
</testcase>
|
|
346
346
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should enabled Detach Ice and Make Ice services
|
|
347
347
|
when PdStatus message is received with fsmState equal to Completed" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should enabled Detach Ice and Make Ice services
|
|
348
|
-
when PdStatus message is received with fsmState equal to Completed" time="0.
|
|
348
|
+
when PdStatus message is received with fsmState equal to Completed" time="0.027">
|
|
349
349
|
</testcase>
|
|
350
350
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Detach Ice service
|
|
351
351
|
when PdStatus message is received with fsmState equal to InProgress" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set active Detach Ice service
|
|
352
|
-
when PdStatus message is received with fsmState equal to InProgress" time="0.
|
|
352
|
+
when PdStatus message is received with fsmState equal to InProgress" time="0.017">
|
|
353
353
|
</testcase>
|
|
354
354
|
<testcase classname="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set deactivate Detach Ice service
|
|
355
355
|
when PdStatus message is received with fsmState equal to Completed" name="GlacierAccessory processQuotaMessage updatePdValues updateIceMakingValues Should set deactivate Detach Ice service
|
|
356
|
-
when PdStatus message is received with fsmState equal to Completed" time="0.
|
|
356
|
+
when PdStatus message is received with fsmState equal to Completed" time="0.01">
|
|
357
357
|
</testcase>
|
|
358
|
-
<testcase classname="GlacierAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="GlacierAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.
|
|
358
|
+
<testcase classname="GlacierAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="GlacierAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.04">
|
|
359
359
|
</testcase>
|
|
360
|
-
<testcase classname="GlacierAccessory initializeQuota updateEmsValues should update EmsStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updateEmsValues should update EmsStatus-related characteristics when is requested" time="0.
|
|
360
|
+
<testcase classname="GlacierAccessory initializeQuota updateEmsValues should update EmsStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updateEmsValues should update EmsStatus-related characteristics when is requested" time="0.015">
|
|
361
361
|
</testcase>
|
|
362
|
-
<testcase classname="GlacierAccessory initializeQuota updateEmsValues should not update EmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updateEmsValues should not update EmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
362
|
+
<testcase classname="GlacierAccessory initializeQuota updateEmsValues should not update EmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updateEmsValues should not update EmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.009">
|
|
363
363
|
</testcase>
|
|
364
|
-
<testcase classname="GlacierAccessory initializeQuota updateBmsValues should update BmsStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updateBmsValues should update BmsStatus-related characteristics when is requested" time="0.
|
|
364
|
+
<testcase classname="GlacierAccessory initializeQuota updateBmsValues should update BmsStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updateBmsValues should update BmsStatus-related characteristics when is requested" time="0.03">
|
|
365
365
|
</testcase>
|
|
366
|
-
<testcase classname="GlacierAccessory initializeQuota updateBmsValues should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updateBmsValues should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
366
|
+
<testcase classname="GlacierAccessory initializeQuota updateBmsValues should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updateBmsValues should not update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.008">
|
|
367
367
|
</testcase>
|
|
368
368
|
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should update PdStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should update PdStatus-related characteristics when is requested" time="0.028">
|
|
369
369
|
</testcase>
|
|
370
|
-
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
370
|
+
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updatePdValues updateFridgeZonesValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.035">
|
|
371
|
+
</testcase>
|
|
372
|
+
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateStateValues should update PdStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updatePdValues updateStateValues should update PdStatus-related characteristics when is requested" time="0.011">
|
|
373
|
+
</testcase>
|
|
374
|
+
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateStateValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updatePdValues updateStateValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.03">
|
|
375
|
+
</testcase>
|
|
376
|
+
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateIceMakingValues should update PdStatus-related characteristics when is requested" name="GlacierAccessory initializeQuota updatePdValues updateIceMakingValues should update PdStatus-related characteristics when is requested" time="0.012">
|
|
377
|
+
</testcase>
|
|
378
|
+
<testcase classname="GlacierAccessory initializeQuota updatePdValues updateIceMakingValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="GlacierAccessory initializeQuota updatePdValues updateIceMakingValues should not update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.035">
|
|
379
|
+
</testcase>
|
|
380
|
+
</testsuite>
|
|
381
|
+
<testsuite name="DeltaProUltraAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:13" time="1.564" tests="45">
|
|
382
|
+
<testcase classname="DeltaProUltraAccessory initialize should add required services when initializing accessory" name="DeltaProUltraAccessory initialize should add required services when initializing accessory" time="0.008">
|
|
383
|
+
</testcase>
|
|
384
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="DeltaProUltraAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.006">
|
|
385
|
+
</testcase>
|
|
386
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" name="DeltaProUltraAccessory processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" time="0.01">
|
|
387
|
+
</testcase>
|
|
388
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus BatteryLevel should update battery level when PdStatus message is received with soc" name="DeltaProUltraAccessory processQuotaMessage PdStatus BatteryLevel should update battery level when PdStatus message is received with soc" time="0.027">
|
|
389
|
+
</testcase>
|
|
390
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus BatteryLevel should not update any characteristic when PdStatus message is received with undefined status" name="DeltaProUltraAccessory processQuotaMessage PdStatus BatteryLevel should not update any characteristic when PdStatus message is received with undefined status" time="0.007">
|
|
391
|
+
</testcase>
|
|
392
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
393
|
+
when PdStatus message is received with non zero wattsInSum and without wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
394
|
+
when PdStatus message is received with non zero wattsInSum and without wattsOutSum" time="0.01">
|
|
395
|
+
</testcase>
|
|
396
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
397
|
+
when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
398
|
+
when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" time="0.006">
|
|
399
|
+
</testcase>
|
|
400
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
401
|
+
when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
402
|
+
when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" time="0.007">
|
|
403
|
+
</testcase>
|
|
404
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
405
|
+
when PdStatus message is received with zero wattsInSum and wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
406
|
+
when PdStatus message is received with zero wattsInSum and wattsOutSum" time="0.013">
|
|
407
|
+
</testcase>
|
|
408
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update AC, USB input consumptions when PdStatus message is received with wattsInSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update AC, USB input consumptions when PdStatus message is received with wattsInSum" time="0.032">
|
|
409
|
+
</testcase>
|
|
410
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL11Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL11Pwr" time="0.011">
|
|
411
|
+
</testcase>
|
|
412
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL11Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL11Pwr" time="0.012">
|
|
413
|
+
</testcase>
|
|
414
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL12Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL12Pwr" time="0.005">
|
|
415
|
+
</testcase>
|
|
416
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL12Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL12Pwr" time="0.004">
|
|
417
|
+
</testcase>
|
|
418
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL21Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL21Pwr" time="0.003">
|
|
419
|
+
</testcase>
|
|
420
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL21Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL21Pwr" time="0.019">
|
|
421
|
+
</testcase>
|
|
422
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL22Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL22Pwr" time="0.004">
|
|
423
|
+
</testcase>
|
|
424
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL22Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL22Pwr" time="0.007">
|
|
425
|
+
</testcase>
|
|
426
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcTtPwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcTtPwr" time="0.005">
|
|
427
|
+
</testcase>
|
|
428
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcTtPwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcTtPwr" time="0.009">
|
|
429
|
+
</testcase>
|
|
430
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL14Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAcL14Pwr" time="0.026">
|
|
431
|
+
</testcase>
|
|
432
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL14Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAcL14Pwr" time="0.008">
|
|
433
|
+
</testcase>
|
|
434
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAc5p8Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with outAc5p8Pwr" time="0.004">
|
|
435
|
+
</testcase>
|
|
436
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAc5p8Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption with 0 when PdStatus message received with 0 outAc5p8Pwr" time="0.004">
|
|
437
|
+
</testcase>
|
|
438
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with all ac-related parameters" name="DeltaProUltraAccessory processQuotaMessage PdStatus AC should update AC output consumption when PdStatus message is received with all ac-related parameters" time="0.005">
|
|
439
|
+
</testcase>
|
|
440
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outUsb1Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outUsb1Pwr" time="0.008">
|
|
441
|
+
</testcase>
|
|
442
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outUsb1Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outUsb1Pwr" time="0.033">
|
|
443
|
+
</testcase>
|
|
444
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outUsb2Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outUsb2Pwr" time="0.006">
|
|
445
|
+
</testcase>
|
|
446
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outUsb2Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outUsb2Pwr" time="0.008">
|
|
447
|
+
</testcase>
|
|
448
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outTypec1Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outTypec1Pwr" time="0.004">
|
|
449
|
+
</testcase>
|
|
450
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outTypec1Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outTypec1Pwr" time="0.004">
|
|
451
|
+
</testcase>
|
|
452
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outTypec2Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with outTypec2Pwr" time="0.026">
|
|
453
|
+
</testcase>
|
|
454
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outTypec2Pwr" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption with 0 when PdStatus message received with 0 outTypec2Pwr" time="0.011">
|
|
455
|
+
</testcase>
|
|
456
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with all usb-related parameters" name="DeltaProUltraAccessory processQuotaMessage PdStatus USB should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.01">
|
|
457
|
+
</testcase>
|
|
458
|
+
<testcase classname="DeltaProUltraAccessory processQuotaMessage PdSetStatus should not update any characteristic when PdSetStatus message is received with undefined status" name="DeltaProUltraAccessory processQuotaMessage PdSetStatus should not update any characteristic when PdSetStatus message is received with undefined status" time="0.009">
|
|
459
|
+
</testcase>
|
|
460
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaProUltraAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.013">
|
|
461
|
+
</testcase>
|
|
462
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus BatteryLevel should update BatteryLevel-related characteristics when is requested" name="DeltaProUltraAccessory initializeDefaultValues PdStatus BatteryLevel should update BatteryLevel-related characteristics when is requested" time="0.006">
|
|
463
|
+
</testcase>
|
|
464
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus BatteryLevel should update BatteryLevel-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProUltraAccessory initializeDefaultValues PdStatus BatteryLevel should update BatteryLevel-related characteristics when is requested and quotas were not initialized properly for it" time="0.028">
|
|
465
|
+
</testcase>
|
|
466
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus ChargingState should update ChargingState-related characteristics when is requested" name="DeltaProUltraAccessory initializeDefaultValues PdStatus ChargingState should update ChargingState-related characteristics when is requested" time="0.006">
|
|
467
|
+
</testcase>
|
|
468
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus ChargingState should not update ChargingState-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProUltraAccessory initializeDefaultValues PdStatus ChargingState should not update ChargingState-related characteristics when is requested and quotas were not initialized properly for it" time="0.016">
|
|
469
|
+
</testcase>
|
|
470
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus AC should update AC-related characteristics when is requested" name="DeltaProUltraAccessory initializeDefaultValues PdStatus AC should update AC-related characteristics when is requested" time="0.011">
|
|
471
|
+
</testcase>
|
|
472
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus AC should not update AC-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProUltraAccessory initializeDefaultValues PdStatus AC should not update AC-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
371
473
|
</testcase>
|
|
372
|
-
<testcase classname="
|
|
474
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus USB should update USB-related characteristics when is requested" name="DeltaProUltraAccessory initializeDefaultValues PdStatus USB should update USB-related characteristics when is requested" time="0.027">
|
|
373
475
|
</testcase>
|
|
374
|
-
<testcase classname="
|
|
476
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdStatus USB should not update USB-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProUltraAccessory initializeDefaultValues PdStatus USB should not update USB-related characteristics when is requested and quotas were not initialized properly for it" time="0.016">
|
|
375
477
|
</testcase>
|
|
376
|
-
<testcase classname="
|
|
478
|
+
<testcase classname="DeltaProUltraAccessory initializeDefaultValues PdSetStatus should update PdSetStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProUltraAccessory initializeDefaultValues PdSetStatus should update PdSetStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.008">
|
|
377
479
|
</testcase>
|
|
378
|
-
|
|
480
|
+
</testsuite>
|
|
481
|
+
<testsuite name="WaveAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:13" time="1.917" tests="43">
|
|
482
|
+
<testcase classname="WaveAccessory initialize should add required services when initializing accessory" name="WaveAccessory initialize should add required services when initializing accessory" time="0.016">
|
|
483
|
+
</testcase>
|
|
484
|
+
<testcase classname="WaveAccessory processQuotaMessage updateBmsValues should update bms in quota when Bms message is received" name="WaveAccessory processQuotaMessage updateBmsValues should update bms in quota when Bms message is received" time="0.026">
|
|
485
|
+
</testcase>
|
|
486
|
+
<testcase classname="WaveAccessory processQuotaMessage updateBmsValues should update battery level when Bms message is received with bmsSoc" name="WaveAccessory processQuotaMessage updateBmsValues should update battery level when Bms message is received with bmsSoc" time="0.009">
|
|
487
|
+
</testcase>
|
|
488
|
+
<testcase classname="WaveAccessory processQuotaMessage updateBmsValues should not update any characteristic when Bms message is received with undefined status" name="WaveAccessory processQuotaMessage updateBmsValues should not update any characteristic when Bms message is received with undefined status" time="0.006">
|
|
489
|
+
</testcase>
|
|
490
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update power in quota when Power message is received" name="WaveAccessory processQuotaMessage updatePowerValues should update power in quota when Power message is received" time="0.006">
|
|
491
|
+
</testcase>
|
|
492
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update charging state to true
|
|
493
|
+
when Power message is received with non zero acPwrIn and without batPwrOut" name="WaveAccessory processQuotaMessage updatePowerValues should update charging state to true
|
|
494
|
+
when Power message is received with non zero acPwrIn and without batPwrOut" time="0.017">
|
|
495
|
+
</testcase>
|
|
496
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update charging state to true
|
|
497
|
+
when Power message is received with non zero acPwrIn and non equal to it batPwrOut" name="WaveAccessory processQuotaMessage updatePowerValues should update charging state to true
|
|
498
|
+
when Power message is received with non zero acPwrIn and non equal to it batPwrOut" time="0.006">
|
|
499
|
+
</testcase>
|
|
500
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update charging state to false
|
|
501
|
+
when Power message is received with zero acPwrIn and non equal to it batPwrOut" name="WaveAccessory processQuotaMessage updatePowerValues should update charging state to false
|
|
502
|
+
when Power message is received with zero acPwrIn and non equal to it batPwrOut" time="0.01">
|
|
503
|
+
</testcase>
|
|
504
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update charging state to false
|
|
505
|
+
when Power message is received with zero acPwrIn and batPwrOut" name="WaveAccessory processQuotaMessage updatePowerValues should update charging state to false
|
|
506
|
+
when Power message is received with zero acPwrIn and batPwrOut" time="0.009">
|
|
507
|
+
</testcase>
|
|
508
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet input consumptions when Power message is received with acPwrIn" name="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet input consumptions when Power message is received with acPwrIn" time="0.006">
|
|
509
|
+
</testcase>
|
|
510
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output watts consumption when Power message is received with batPwrOut" name="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output watts consumption when Power message is received with batPwrOut" time="0.006">
|
|
511
|
+
</testcase>
|
|
512
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output current when Power message is received with batCurr" name="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output current when Power message is received with batCurr" time="0.007">
|
|
513
|
+
</testcase>
|
|
514
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output voltage when Power message is received with batVolt" name="WaveAccessory processQuotaMessage updatePowerValues should update battery outlet output voltage when Power message is received with batVolt" time="0.007">
|
|
515
|
+
</testcase>
|
|
516
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePowerValues should not update any characteristic when Power message is received with undefined status" name="WaveAccessory processQuotaMessage updatePowerValues should not update any characteristic when Power message is received with undefined status" time="0.008">
|
|
517
|
+
</testcase>
|
|
518
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" name="WaveAccessory processQuotaMessage updatePdValues should update pd status in quota when PdStatus message is received" time="0.007">
|
|
519
|
+
</testcase>
|
|
520
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues should update setTemp in pd status in quota when PdStatus message is received with Celsius value" name="WaveAccessory processQuotaMessage updatePdValues should update setTemp in pd status in quota when PdStatus message is received with Celsius value" time="0.005">
|
|
521
|
+
</testcase>
|
|
522
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues should update setTemp in pd status in quota when PdStatus message is received with Fahrenheit value" name="WaveAccessory processQuotaMessage updatePdValues should update setTemp in pd status in quota when PdStatus message is received with Fahrenheit value" time="0.024">
|
|
523
|
+
</testcase>
|
|
524
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" name="WaveAccessory processQuotaMessage updatePdValues should not update any characteristic when PdStatus message is received with undefined status" time="0.005">
|
|
525
|
+
</testcase>
|
|
526
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Off when PdStatus message is received with powerSts=Off" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Off when PdStatus message is received with powerSts=Off" time="0.009">
|
|
527
|
+
</testcase>
|
|
528
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Auto when PdStatus message is received with powerSts=On and pdMainMode=Fan" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Auto when PdStatus message is received with powerSts=On and pdMainMode=Fan" time="0.004">
|
|
529
|
+
</testcase>
|
|
530
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Cool when PdStatus message is received with powerSts=On and pdMainMode=Cool" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Cool when PdStatus message is received with powerSts=On and pdMainMode=Cool" time="0.005">
|
|
531
|
+
</testcase>
|
|
532
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Cool when PdStatus message is received with powerSts=On and pdMainMode=Heat" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should update target state to Cool when PdStatus message is received with powerSts=On and pdMainMode=Heat" time="0.021">
|
|
533
|
+
</testcase>
|
|
534
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should not update target state when PdStatus message is received without powerSts" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should not update target state when PdStatus message is received without powerSts" time="0.003">
|
|
535
|
+
</testcase>
|
|
536
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should not update target state when PdStatus message is received without pdMainMode" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerModeValues Should not update target state when PdStatus message is received without pdMainMode" time="0.003">
|
|
537
|
+
</testcase>
|
|
538
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateFanModeValues Should update fan rotation speed when PdStatus message is received with setFanVal=Medium" name="WaveAccessory processQuotaMessage updatePdValues updateFanModeValues Should update fan rotation speed when PdStatus message is received with setFanVal=Medium" time="0.003">
|
|
539
|
+
</testcase>
|
|
540
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateFanModeValues Should not update fan rotation speed when PdStatus message is received without setFanVal" name="WaveAccessory processQuotaMessage updatePdValues updateFanModeValues Should not update fan rotation speed when PdStatus message is received without setFanVal" time="0.004">
|
|
541
|
+
</testcase>
|
|
542
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should update temperature display units when PdStatus message is received with pdTempSys=Fahrenheit" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should update temperature display units when PdStatus message is received with pdTempSys=Fahrenheit" time="0.018">
|
|
543
|
+
</testcase>
|
|
544
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should update target temperature when PdStatus message is received with pdTempSys=Celsius and setTempCel" name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should update target temperature when PdStatus message is received with pdTempSys=Celsius and setTempCel" time="0.004">
|
|
545
|
+
</testcase>
|
|
546
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should not update temperature parameters when PdStatus message is received without pdTempSys, setTempCel and setTempfah " name="WaveAccessory processQuotaMessage updatePdValues updateAirConditionerStateValues Should not update temperature parameters when PdStatus message is received without pdTempSys, setTempCel and setTempfah " time="0.003">
|
|
547
|
+
</testcase>
|
|
548
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdDevValues should update pd status in quota when PdStatusDev message is received" name="WaveAccessory processQuotaMessage updatePdDevValues should update pd status in quota when PdStatusDev message is received" time="0.003">
|
|
549
|
+
</testcase>
|
|
550
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdDevValues Should update current temperature when PdStatusDev message is received with envTemp" name="WaveAccessory processQuotaMessage updatePdDevValues Should update current temperature when PdStatusDev message is received with envTemp" time="0.003">
|
|
551
|
+
</testcase>
|
|
552
|
+
<testcase classname="WaveAccessory processQuotaMessage updatePdDevValues Should not update current temperature when PdStatusDev message is received without envTemp" name="WaveAccessory processQuotaMessage updatePdDevValues Should not update current temperature when PdStatusDev message is received without envTemp" time="0.026">
|
|
553
|
+
</testcase>
|
|
554
|
+
<testcase classname="WaveAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="WaveAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.005">
|
|
555
|
+
</testcase>
|
|
556
|
+
<testcase classname="WaveAccessory initializeQuota updateBmsInitialValues should update BMS-related characteristics when is requested" name="WaveAccessory initializeQuota updateBmsInitialValues should update BMS-related characteristics when is requested" time="0.005">
|
|
557
|
+
</testcase>
|
|
558
|
+
<testcase classname="WaveAccessory initializeQuota updateBmsInitialValues should not update BMS-related characteristics when is requested and quotas were not initialized properly for it" name="WaveAccessory initializeQuota updateBmsInitialValues should not update BMS-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
559
|
+
</testcase>
|
|
560
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update Pd-related characteristics when is requested" name="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update Pd-related characteristics when is requested" time="0.003">
|
|
561
|
+
</testcase>
|
|
562
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update target temperature when quota is received with tempSys=Fahrenheit" name="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update target temperature when quota is received with tempSys=Fahrenheit" time="0.005">
|
|
563
|
+
</testcase>
|
|
564
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update target temperature when quota is received with tempSys=Celsius" name="WaveAccessory initializeQuota updatePdInitialValues pdMessage should update target temperature when quota is received with tempSys=Celsius" time="0.037">
|
|
565
|
+
</testcase>
|
|
566
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdMessage should not update Pd-related characteristics when is requested and quotas were not initialized properly for it" name="WaveAccessory initializeQuota updatePdInitialValues pdMessage should not update Pd-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
567
|
+
</testcase>
|
|
568
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdDevMessage should update PdDev-related characteristics when is requested" name="WaveAccessory initializeQuota updatePdInitialValues pdDevMessage should update PdDev-related characteristics when is requested" time="0.005">
|
|
569
|
+
</testcase>
|
|
570
|
+
<testcase classname="WaveAccessory initializeQuota updatePdInitialValues pdDevMessage should not update PdDev-related characteristics when is requested and quotas were not initialized properly for it" name="WaveAccessory initializeQuota updatePdInitialValues pdDevMessage should not update PdDev-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
571
|
+
</testcase>
|
|
572
|
+
<testcase classname="WaveAccessory initializeQuota updatePowerInitialValues should update POWER-related characteristics when is requested" name="WaveAccessory initializeQuota updatePowerInitialValues should update POWER-related characteristics when is requested" time="0.005">
|
|
573
|
+
</testcase>
|
|
574
|
+
<testcase classname="WaveAccessory initializeQuota updatePowerInitialValues should not update POWER-related characteristics when is requested and quotas were not initialized properly for it" name="WaveAccessory initializeQuota updatePowerInitialValues should not update POWER-related characteristics when is requested and quotas were not initialized properly for it" time="0.033">
|
|
379
575
|
</testcase>
|
|
380
576
|
</testsuite>
|
|
381
|
-
<testsuite name="DeltaProAccessory" errors="0" failures="0" skipped="0" timestamp="
|
|
382
|
-
<testcase classname="DeltaProAccessory initialize should add required services when initializing accessory" name="DeltaProAccessory initialize should add required services when initializing accessory" time="0.
|
|
577
|
+
<testsuite name="DeltaProAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:14" time="1.424" tests="39">
|
|
578
|
+
<testcase classname="DeltaProAccessory initialize should add required services when initializing accessory" name="DeltaProAccessory initialize should add required services when initializing accessory" time="0.027">
|
|
383
579
|
</testcase>
|
|
384
|
-
<testcase classname="DeltaProAccessory processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" name="DeltaProAccessory processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" time="0.
|
|
580
|
+
<testcase classname="DeltaProAccessory processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" name="DeltaProAccessory processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" time="0.006">
|
|
385
581
|
</testcase>
|
|
386
|
-
<testcase classname="DeltaProAccessory processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" name="DeltaProAccessory processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" time="0.
|
|
582
|
+
<testcase classname="DeltaProAccessory processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" name="DeltaProAccessory processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" time="0.007">
|
|
387
583
|
</testcase>
|
|
388
584
|
<testcase classname="DeltaProAccessory processQuotaMessage BmsMasterStatus should not update any characteristic when BmsStatus message is received with undefined status" name="DeltaProAccessory processQuotaMessage BmsMasterStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.007">
|
|
389
585
|
</testcase>
|
|
390
|
-
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" name="DeltaProAccessory processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" time="0.
|
|
586
|
+
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" name="DeltaProAccessory processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" time="0.006">
|
|
391
587
|
</testcase>
|
|
392
588
|
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
|
|
393
589
|
when InvStatus message is received with non zero inputWatts and without outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
|
|
394
|
-
when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.
|
|
590
|
+
when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.022">
|
|
395
591
|
</testcase>
|
|
396
592
|
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
|
|
397
593
|
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
|
|
398
|
-
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.
|
|
594
|
+
when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.009">
|
|
399
595
|
</testcase>
|
|
400
596
|
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
|
|
401
597
|
when InvStatus message is received with zero inputWatts and non equal to it outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
|
|
402
|
-
when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.
|
|
598
|
+
when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.011">
|
|
403
599
|
</testcase>
|
|
404
600
|
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
|
|
405
601
|
when InvStatus message is received with zero inputWatts and outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
|
|
406
|
-
when InvStatus message is received with zero inputWatts and outputWatts" time="0.
|
|
602
|
+
when InvStatus message is received with zero inputWatts and outputWatts" time="0.008">
|
|
407
603
|
</testcase>
|
|
408
|
-
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" time="0.
|
|
604
|
+
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" time="0.031">
|
|
409
605
|
</testcase>
|
|
410
606
|
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" name="DeltaProAccessory processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" time="0.008">
|
|
411
607
|
</testcase>
|
|
412
|
-
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" name="DeltaProAccessory processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" time="0.
|
|
608
|
+
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" name="DeltaProAccessory processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" time="0.006">
|
|
413
609
|
</testcase>
|
|
414
|
-
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" time="0.
|
|
610
|
+
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" time="0.009">
|
|
415
611
|
</testcase>
|
|
416
|
-
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" name="DeltaProAccessory processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" time="0.
|
|
612
|
+
<testcase classname="DeltaProAccessory processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" name="DeltaProAccessory processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" time="0.007">
|
|
417
613
|
</testcase>
|
|
418
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="DeltaProAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.
|
|
614
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="DeltaProAccessory processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.016">
|
|
419
615
|
</testcase>
|
|
420
616
|
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" name="DeltaProAccessory processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" time="0.01">
|
|
421
617
|
</testcase>
|
|
422
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" name="DeltaProAccessory processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" time="0.
|
|
618
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" name="DeltaProAccessory processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" time="0.005">
|
|
423
619
|
</testcase>
|
|
424
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" name="DeltaProAccessory processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" time="0.
|
|
620
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" name="DeltaProAccessory processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" time="0.006">
|
|
425
621
|
</testcase>
|
|
426
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" time="0.
|
|
622
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" time="0.006">
|
|
427
623
|
</testcase>
|
|
428
624
|
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" time="0.009">
|
|
429
625
|
</testcase>
|
|
430
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" time="0.
|
|
626
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" time="0.009">
|
|
431
627
|
</testcase>
|
|
432
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" time="0.
|
|
628
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" time="0.006">
|
|
433
629
|
</testcase>
|
|
434
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" time="0.
|
|
630
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" time="0.006">
|
|
435
631
|
</testcase>
|
|
436
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" time="0.
|
|
632
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" time="0.027">
|
|
437
633
|
</testcase>
|
|
438
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" time="0.
|
|
634
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" time="0.005">
|
|
439
635
|
</testcase>
|
|
440
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" time="0.
|
|
636
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" time="0.005">
|
|
441
637
|
</testcase>
|
|
442
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" time="0.
|
|
638
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" time="0.008">
|
|
443
639
|
</testcase>
|
|
444
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" time="0.
|
|
640
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" time="0.028">
|
|
445
641
|
</testcase>
|
|
446
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" time="0.
|
|
642
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" time="0.02">
|
|
447
643
|
</testcase>
|
|
448
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" time="0.
|
|
644
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" time="0.012">
|
|
449
645
|
</testcase>
|
|
450
|
-
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.
|
|
646
|
+
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" name="DeltaProAccessory processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.011">
|
|
451
647
|
</testcase>
|
|
452
648
|
<testcase classname="DeltaProAccessory processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" name="DeltaProAccessory processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" time="0.025">
|
|
453
649
|
</testcase>
|
|
454
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaProAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.
|
|
650
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaProAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.043">
|
|
455
651
|
</testcase>
|
|
456
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" time="0.
|
|
652
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" time="0.012">
|
|
457
653
|
</testcase>
|
|
458
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
654
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.01">
|
|
459
655
|
</testcase>
|
|
460
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" time="0.
|
|
656
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" time="0.019">
|
|
461
657
|
</testcase>
|
|
462
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
658
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.03">
|
|
463
659
|
</testcase>
|
|
464
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" time="0.
|
|
660
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" name="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" time="0.005">
|
|
465
661
|
</testcase>
|
|
466
|
-
<testcase classname="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
662
|
+
<testcase classname="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessory initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
|
|
467
663
|
</testcase>
|
|
468
664
|
</testsuite>
|
|
469
|
-
<testsuite name="
|
|
470
|
-
<testcase classname="
|
|
665
|
+
<testsuite name="ThermostatFridgeServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:15" time="5.24" tests="39">
|
|
666
|
+
<testcase classname="ThermostatFridgeServiceBase initialize should add Thermostat service when it is not added to accessory yet" name="ThermostatFridgeServiceBase initialize should add Thermostat service when it is not added to accessory yet" time="0.049">
|
|
471
667
|
</testcase>
|
|
472
|
-
<testcase classname="
|
|
668
|
+
<testcase classname="ThermostatFridgeServiceBase initialize should use existing Thermostat service when it is already added to accessory" name="ThermostatFridgeServiceBase initialize should use existing Thermostat service when it is already added to accessory" time="0.003">
|
|
473
669
|
</testcase>
|
|
474
|
-
<testcase classname="
|
|
670
|
+
<testcase classname="ThermostatFridgeServiceBase initialize should add Thermostat characteristics when initializing accessory" name="ThermostatFridgeServiceBase initialize should add Thermostat characteristics when initializing accessory" time="0.002">
|
|
475
671
|
</testcase>
|
|
476
|
-
<testcase classname="
|
|
672
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to value when it is requested" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to value when it is requested" time="0.002">
|
|
477
673
|
</testcase>
|
|
478
|
-
<testcase classname="
|
|
674
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" time="0.002">
|
|
479
675
|
</testcase>
|
|
480
|
-
<testcase classname="
|
|
481
|
-
when PdStatus message is received with non zero wattsInSum and without wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
482
|
-
when PdStatus message is received with non zero wattsInSum and without wattsOutSum" time="0.022">
|
|
676
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" time="0.001">
|
|
483
677
|
</testcase>
|
|
484
|
-
<testcase classname="
|
|
485
|
-
when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
|
|
486
|
-
when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" time="0.014">
|
|
678
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to value when it is requested" name="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to value when it is requested" time="0.001">
|
|
487
679
|
</testcase>
|
|
488
|
-
<testcase classname="
|
|
489
|
-
when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
490
|
-
when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" time="0.011">
|
|
680
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" name="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" time="0.002">
|
|
491
681
|
</testcase>
|
|
492
|
-
<testcase classname="
|
|
493
|
-
when PdStatus message is received with zero wattsInSum and wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
|
|
494
|
-
when PdStatus message is received with zero wattsInSum and wattsOutSum" time="0.013">
|
|
682
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to min allowed value when update requested for value that is below it" name="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to min allowed value when update requested for value that is below it" time="0.002">
|
|
495
683
|
</testcase>
|
|
496
|
-
<testcase classname="
|
|
684
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentState should set current state to Cool when it is requested" name="ThermostatFridgeServiceBase updateCurrentState should set current state to Cool when it is requested" time="0.002">
|
|
497
685
|
</testcase>
|
|
498
|
-
<testcase classname="
|
|
686
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentState should set current state to Off when it is requested" name="ThermostatFridgeServiceBase updateCurrentState should set current state to Off when it is requested" time="0.001">
|
|
499
687
|
</testcase>
|
|
500
|
-
<testcase classname="
|
|
688
|
+
<testcase classname="ThermostatFridgeServiceBase updateCurrentState should set current state to Off when update requested for unsupported value" name="ThermostatFridgeServiceBase updateCurrentState should set current state to Off when update requested for unsupported value" time="0.001">
|
|
501
689
|
</testcase>
|
|
502
|
-
<testcase classname="
|
|
690
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetState should set target state to Cool when it is requested" name="ThermostatFridgeServiceBase updateTargetState should set target state to Cool when it is requested" time="0.002">
|
|
503
691
|
</testcase>
|
|
504
|
-
<testcase classname="
|
|
692
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetState should set target state to Off when it is requested" name="ThermostatFridgeServiceBase updateTargetState should set target state to Off when it is requested" time="0.001">
|
|
505
693
|
</testcase>
|
|
506
|
-
<testcase classname="
|
|
694
|
+
<testcase classname="ThermostatFridgeServiceBase updateTargetState should set target state to Off when update requested for unsupported value" name="ThermostatFridgeServiceBase updateTargetState should set target state to Off when update requested for unsupported value" time="0.001">
|
|
507
695
|
</testcase>
|
|
508
|
-
<testcase classname="
|
|
696
|
+
<testcase classname="ThermostatFridgeServiceBase updateTemperatureDisplayUnits should set temperature display units to Fahrenheit when it is requested" name="ThermostatFridgeServiceBase updateTemperatureDisplayUnits should set temperature display units to Fahrenheit when it is requested" time="0.006">
|
|
509
697
|
</testcase>
|
|
510
|
-
<testcase classname="
|
|
698
|
+
<testcase classname="ThermostatFridgeServiceBase updateTemperatureDisplayUnits should set temperature display units to Celsius when it is requested" name="ThermostatFridgeServiceBase updateTemperatureDisplayUnits should set temperature display units to Celsius when it is requested" time="0.002">
|
|
511
699
|
</testcase>
|
|
512
|
-
<testcase classname="
|
|
700
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics CurrentTemperature onGet should get CurrentTemperature value when device is online" name="ThermostatFridgeServiceBase characteristics CurrentTemperature onGet should get CurrentTemperature value when device is online" time="0.001">
|
|
513
701
|
</testcase>
|
|
514
|
-
<testcase classname="
|
|
702
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature value but device is offline" name="ThermostatFridgeServiceBase characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature value but device is offline" time="0.002">
|
|
515
703
|
</testcase>
|
|
516
|
-
<testcase classname="
|
|
704
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onGet should get TargetTemperature value when device is online" name="ThermostatFridgeServiceBase characteristics TargetTemperature onGet should get TargetTemperature value when device is online" time="0.001">
|
|
517
705
|
</testcase>
|
|
518
|
-
<testcase classname="
|
|
706
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onGet should throw an error when getting TargetTemperature value but device is offline" name="ThermostatFridgeServiceBase characteristics TargetTemperature onGet should throw an error when getting TargetTemperature value but device is offline" time="0.001">
|
|
519
707
|
</testcase>
|
|
520
|
-
<testcase classname="
|
|
708
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should set TargetTemperature value when device is online" name="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should set TargetTemperature value when device is online" time="0.001">
|
|
521
709
|
</testcase>
|
|
522
|
-
<testcase classname="
|
|
710
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should throw an error when setting TargetTemperature value but device is offline" name="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should throw an error when setting TargetTemperature value but device is offline" time="0.001">
|
|
523
711
|
</testcase>
|
|
524
|
-
<testcase classname="
|
|
712
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should throw an error when setting on value but service is disabled" name="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should throw an error when setting on value but service is disabled" time="0.001">
|
|
525
713
|
</testcase>
|
|
526
|
-
<testcase classname="
|
|
714
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should revert changing of TargetTemperature when sending Set command to device is failed" name="ThermostatFridgeServiceBase characteristics TargetTemperature onSet should revert changing of TargetTemperature when sending Set command to device is failed" time="0.001">
|
|
527
715
|
</testcase>
|
|
528
|
-
<testcase classname="
|
|
716
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics CurrentHeatingCoolingState onGet should get CurrentHeatingCoolingState value when device is online" name="ThermostatFridgeServiceBase characteristics CurrentHeatingCoolingState onGet should get CurrentHeatingCoolingState value when device is online" time="0">
|
|
529
717
|
</testcase>
|
|
530
|
-
<testcase classname="
|
|
718
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics CurrentHeatingCoolingState onGet should throw an error when getting CurrentHeatingCoolingState value but device is offline" name="ThermostatFridgeServiceBase characteristics CurrentHeatingCoolingState onGet should throw an error when getting CurrentHeatingCoolingState value but device is offline" time="0">
|
|
531
719
|
</testcase>
|
|
532
|
-
<testcase classname="
|
|
720
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onGet should get TargetHeatingCoolingState value when device is online" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onGet should get TargetHeatingCoolingState value when device is online" time="0">
|
|
533
721
|
</testcase>
|
|
534
|
-
<testcase classname="
|
|
722
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onGet should throw an error when getting TargetHeatingCoolingState value but device is offline" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onGet should throw an error when getting TargetHeatingCoolingState value but device is offline" time="0.001">
|
|
535
723
|
</testcase>
|
|
536
|
-
<testcase classname="
|
|
724
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should set TargetHeatingCoolingState value when device is online" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should set TargetHeatingCoolingState value when device is online" time="0.001">
|
|
537
725
|
</testcase>
|
|
538
|
-
<testcase classname="
|
|
726
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting TargetHeatingCoolingState value but device is offline" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting TargetHeatingCoolingState value but device is offline" time="0.001">
|
|
539
727
|
</testcase>
|
|
540
|
-
<testcase classname="
|
|
728
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting on value but service is disabled" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting on value but service is disabled" time="0.001">
|
|
541
729
|
</testcase>
|
|
542
|
-
<testcase classname="
|
|
730
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should revert changing of TargetHeatingCoolingState when sending Set command to device is failed" name="ThermostatFridgeServiceBase characteristics TargetHeatingCoolingState onSet should revert changing of TargetHeatingCoolingState when sending Set command to device is failed" time="0.002">
|
|
543
731
|
</testcase>
|
|
544
|
-
<testcase classname="
|
|
732
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onGet should get TemperatureDisplayUnits value when device is online" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onGet should get TemperatureDisplayUnits value when device is online" time="0.001">
|
|
545
733
|
</testcase>
|
|
546
|
-
<testcase classname="
|
|
734
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onGet should throw an error when getting TemperatureDisplayUnits value but device is offline" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onGet should throw an error when getting TemperatureDisplayUnits value but device is offline" time="0.001">
|
|
547
735
|
</testcase>
|
|
548
|
-
<testcase classname="
|
|
736
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should set TemperatureDisplayUnits value when device is online" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should set TemperatureDisplayUnits value when device is online" time="0">
|
|
549
737
|
</testcase>
|
|
550
|
-
<testcase classname="
|
|
738
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting TemperatureDisplayUnits value but device is offline" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting TemperatureDisplayUnits value but device is offline" time="0.007">
|
|
551
739
|
</testcase>
|
|
552
|
-
<testcase classname="
|
|
740
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting on value but service is disabled" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting on value but service is disabled" time="0.001">
|
|
553
741
|
</testcase>
|
|
554
|
-
<testcase classname="
|
|
742
|
+
<testcase classname="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should revert changing of TemperatureDisplayUnits when sending Set command to device is failed" name="ThermostatFridgeServiceBase characteristics TemperatureDisplayUnits onSet should revert changing of TemperatureDisplayUnits when sending Set command to device is failed" time="0.001">
|
|
555
743
|
</testcase>
|
|
556
|
-
|
|
744
|
+
</testsuite>
|
|
745
|
+
<testsuite name="ThermostatAirConditionerServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:14" time="6.024" tests="42">
|
|
746
|
+
<testcase classname="ThermostatAirConditionerServiceBase initialize should add Thermostat service when it is not added to accessory yet" name="ThermostatAirConditionerServiceBase initialize should add Thermostat service when it is not added to accessory yet" time="0.038">
|
|
557
747
|
</testcase>
|
|
558
|
-
<testcase classname="
|
|
748
|
+
<testcase classname="ThermostatAirConditionerServiceBase initialize should use existing Thermostat service when it is already added to accessory" name="ThermostatAirConditionerServiceBase initialize should use existing Thermostat service when it is already added to accessory" time="0.003">
|
|
559
749
|
</testcase>
|
|
560
|
-
<testcase classname="
|
|
750
|
+
<testcase classname="ThermostatAirConditionerServiceBase initialize should add Thermostat characteristics when initializing accessory" name="ThermostatAirConditionerServiceBase initialize should add Thermostat characteristics when initializing accessory" time="0.002">
|
|
561
751
|
</testcase>
|
|
562
|
-
<testcase classname="
|
|
752
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to value when it is requested" name="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to value when it is requested" time="0.002">
|
|
563
753
|
</testcase>
|
|
564
|
-
<testcase classname="
|
|
754
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" name="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" time="0.008">
|
|
565
755
|
</testcase>
|
|
566
|
-
<testcase classname="
|
|
756
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" name="ThermostatAirConditionerServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" time="0.003">
|
|
567
757
|
</testcase>
|
|
568
|
-
|
|
569
|
-
<testsuite name="EcoFlowMqttApiManager" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:18" time="4.626" tests="32">
|
|
570
|
-
<testcase classname="EcoFlowMqttApiManager connect should not send Set command when it is impossible to acquire certificate" name="EcoFlowMqttApiManager connect should not send Set command when it is impossible to acquire certificate" time="0.011">
|
|
758
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to value when it is requested" name="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to value when it is requested" time="0.002">
|
|
571
759
|
</testcase>
|
|
572
|
-
<testcase classname="
|
|
760
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" name="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" time="0.002">
|
|
573
761
|
</testcase>
|
|
574
|
-
<testcase classname="
|
|
762
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to min allowed value when update requested for value that is below it" name="ThermostatAirConditionerServiceBase updateTargetTemperature should set target temperature to min allowed value when update requested for value that is below it" time="0.003">
|
|
575
763
|
</testcase>
|
|
576
|
-
<testcase classname="
|
|
764
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Cool when it is requested" name="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Cool when it is requested" time="0.002">
|
|
577
765
|
</testcase>
|
|
578
|
-
<testcase classname="
|
|
766
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Heat when it is requested" name="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Heat when it is requested" time="0.001">
|
|
579
767
|
</testcase>
|
|
580
|
-
<testcase classname="
|
|
768
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Off when it is requested" name="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Off when it is requested" time="0.001">
|
|
581
769
|
</testcase>
|
|
582
|
-
<testcase classname="
|
|
770
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Cool when update requested for unsupported value" name="ThermostatAirConditionerServiceBase updateCurrentState should set current state to Cool when update requested for unsupported value" time="0.001">
|
|
583
771
|
</testcase>
|
|
584
|
-
<testcase classname="
|
|
772
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetState should set target state to Cool when it is requested" name="ThermostatAirConditionerServiceBase updateTargetState should set target state to Cool when it is requested" time="0.001">
|
|
585
773
|
</testcase>
|
|
586
|
-
<testcase classname="
|
|
774
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetState should set target state to Heat when it is requested" name="ThermostatAirConditionerServiceBase updateTargetState should set target state to Heat when it is requested" time="0.001">
|
|
587
775
|
</testcase>
|
|
588
|
-
<testcase classname="
|
|
776
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetState should set target state to Auto when it is requested" name="ThermostatAirConditionerServiceBase updateTargetState should set target state to Auto when it is requested" time="0.002">
|
|
589
777
|
</testcase>
|
|
590
|
-
<testcase classname="
|
|
778
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetState should set target state to Off when it is requested" name="ThermostatAirConditionerServiceBase updateTargetState should set target state to Off when it is requested" time="0.002">
|
|
591
779
|
</testcase>
|
|
592
|
-
<testcase classname="
|
|
780
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTargetState should set target state to Autp when update requested for unsupported value" name="ThermostatAirConditionerServiceBase updateTargetState should set target state to Autp when update requested for unsupported value" time="0.001">
|
|
593
781
|
</testcase>
|
|
594
|
-
<testcase classname="
|
|
782
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTemperatureDisplayUnits should set temperature display units to Fahrenheit when it is requested" name="ThermostatAirConditionerServiceBase updateTemperatureDisplayUnits should set temperature display units to Fahrenheit when it is requested" time="0.01">
|
|
595
783
|
</testcase>
|
|
596
|
-
<testcase classname="
|
|
784
|
+
<testcase classname="ThermostatAirConditionerServiceBase updateTemperatureDisplayUnits should set temperature display units to Celsius when it is requested" name="ThermostatAirConditionerServiceBase updateTemperatureDisplayUnits should set temperature display units to Celsius when it is requested" time="0.001">
|
|
597
785
|
</testcase>
|
|
598
|
-
<testcase classname="
|
|
786
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics CurrentTemperature onGet should get CurrentTemperature value when device is online" name="ThermostatAirConditionerServiceBase characteristics CurrentTemperature onGet should get CurrentTemperature value when device is online" time="0">
|
|
599
787
|
</testcase>
|
|
600
|
-
<testcase classname="
|
|
788
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature value but device is offline" name="ThermostatAirConditionerServiceBase characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature value but device is offline" time="0.002">
|
|
601
789
|
</testcase>
|
|
602
|
-
<testcase classname="
|
|
790
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onGet should get TargetTemperature value when device is online" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onGet should get TargetTemperature value when device is online" time="0.001">
|
|
603
791
|
</testcase>
|
|
604
|
-
<testcase classname="
|
|
792
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onGet should throw an error when getting TargetTemperature value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onGet should throw an error when getting TargetTemperature value but device is offline" time="0.001">
|
|
605
793
|
</testcase>
|
|
606
|
-
<testcase classname="
|
|
794
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should set TargetTemperature value when device is online" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should set TargetTemperature value when device is online" time="0.001">
|
|
607
795
|
</testcase>
|
|
608
|
-
<testcase classname="
|
|
796
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should throw an error when setting TargetTemperature value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should throw an error when setting TargetTemperature value but device is offline" time="0.001">
|
|
609
797
|
</testcase>
|
|
610
|
-
<testcase classname="
|
|
798
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should throw an error when setting on value but service is disabled" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should throw an error when setting on value but service is disabled" time="0.002">
|
|
611
799
|
</testcase>
|
|
612
|
-
<testcase classname="
|
|
800
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should revert changing of TargetTemperature when sending Set command to device is failed" name="ThermostatAirConditionerServiceBase characteristics TargetTemperature onSet should revert changing of TargetTemperature when sending Set command to device is failed" time="0.002">
|
|
613
801
|
</testcase>
|
|
614
|
-
<testcase classname="
|
|
802
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics CurrentHeatingCoolingState onGet should get CurrentHeatingCoolingState value when device is online" name="ThermostatAirConditionerServiceBase characteristics CurrentHeatingCoolingState onGet should get CurrentHeatingCoolingState value when device is online" time="0">
|
|
615
803
|
</testcase>
|
|
616
|
-
<testcase classname="
|
|
804
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics CurrentHeatingCoolingState onGet should throw an error when getting CurrentHeatingCoolingState value but device is offline" name="ThermostatAirConditionerServiceBase characteristics CurrentHeatingCoolingState onGet should throw an error when getting CurrentHeatingCoolingState value but device is offline" time="0.001">
|
|
617
805
|
</testcase>
|
|
618
|
-
<testcase classname="
|
|
806
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onGet should get TargetHeatingCoolingState value when device is online" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onGet should get TargetHeatingCoolingState value when device is online" time="0.001">
|
|
619
807
|
</testcase>
|
|
620
|
-
<testcase classname="
|
|
808
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onGet should throw an error when getting TargetHeatingCoolingState value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onGet should throw an error when getting TargetHeatingCoolingState value but device is offline" time="0.001">
|
|
621
809
|
</testcase>
|
|
622
|
-
<testcase classname="
|
|
810
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should set TargetHeatingCoolingState value when device is online" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should set TargetHeatingCoolingState value when device is online" time="0">
|
|
623
811
|
</testcase>
|
|
624
|
-
<testcase classname="
|
|
812
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting TargetHeatingCoolingState value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting TargetHeatingCoolingState value but device is offline" time="0.001">
|
|
625
813
|
</testcase>
|
|
626
|
-
<testcase classname="
|
|
814
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting on value but service is disabled" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should throw an error when setting on value but service is disabled" time="0.001">
|
|
627
815
|
</testcase>
|
|
628
|
-
<testcase classname="
|
|
816
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should revert changing of TargetHeatingCoolingState when sending Set command to device is failed" name="ThermostatAirConditionerServiceBase characteristics TargetHeatingCoolingState onSet should revert changing of TargetHeatingCoolingState when sending Set command to device is failed" time="0.001">
|
|
629
817
|
</testcase>
|
|
630
|
-
<testcase classname="
|
|
631
|
-
when destroying an EcoFlow MQTT API object" name="EcoFlowMqttApiManager destroy should unsubscribe from all topics for all devices that shares single mqtt client
|
|
632
|
-
when destroying an EcoFlow MQTT API object" time="0.019">
|
|
818
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onGet should get TemperatureDisplayUnits value when device is online" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onGet should get TemperatureDisplayUnits value when device is online" time="0.001">
|
|
633
819
|
</testcase>
|
|
634
|
-
<testcase classname="
|
|
635
|
-
|
|
636
|
-
|
|
820
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onGet should throw an error when getting TemperatureDisplayUnits value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onGet should throw an error when getting TemperatureDisplayUnits value but device is offline" time="0.001">
|
|
821
|
+
</testcase>
|
|
822
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should set TemperatureDisplayUnits value when device is online" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should set TemperatureDisplayUnits value when device is online" time="0">
|
|
823
|
+
</testcase>
|
|
824
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting TemperatureDisplayUnits value but device is offline" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting TemperatureDisplayUnits value but device is offline" time="0.001">
|
|
825
|
+
</testcase>
|
|
826
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting on value but service is disabled" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should throw an error when setting on value but service is disabled" time="0">
|
|
827
|
+
</testcase>
|
|
828
|
+
<testcase classname="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should revert changing of TemperatureDisplayUnits when sending Set command to device is failed" name="ThermostatAirConditionerServiceBase characteristics TemperatureDisplayUnits onSet should revert changing of TemperatureDisplayUnits when sending Set command to device is failed" time="0.002">
|
|
637
829
|
</testcase>
|
|
638
830
|
</testsuite>
|
|
639
|
-
<testsuite name="PowerOceanAccessory" errors="0" failures="0" skipped="0" timestamp="
|
|
640
|
-
<testcase classname="PowerOceanAccessory initialize should add required services when initializing accessory" name="PowerOceanAccessory initialize should add required services when initializing accessory" time="0.
|
|
831
|
+
<testsuite name="PowerOceanAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:20" time="0.738" tests="35">
|
|
832
|
+
<testcase classname="PowerOceanAccessory initialize should add required services when initializing accessory" name="PowerOceanAccessory initialize should add required services when initializing accessory" time="0.007">
|
|
641
833
|
</testcase>
|
|
642
|
-
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" time="0.
|
|
834
|
+
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when they are defined in config" time="0.003">
|
|
643
835
|
</testcase>
|
|
644
|
-
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" time="0.
|
|
836
|
+
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics when pv settings are not defined in config" time="0.004">
|
|
645
837
|
</testcase>
|
|
646
838
|
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
|
|
647
839
|
when powerOcean settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
|
|
648
|
-
when powerOcean settings are not defined in config" time="0.
|
|
840
|
+
when powerOcean settings are not defined in config" time="0.012">
|
|
649
841
|
</testcase>
|
|
650
|
-
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" time="0.
|
|
842
|
+
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when they are defined in config" time="0.006">
|
|
651
843
|
</testcase>
|
|
652
844
|
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics when battery settings are not defined in config" time="0.005">
|
|
653
845
|
</testcase>
|
|
@@ -655,51 +847,53 @@
|
|
|
655
847
|
when powerOcean settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics
|
|
656
848
|
when powerOcean settings are not defined in config" time="0.004">
|
|
657
849
|
</testcase>
|
|
658
|
-
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" time="0.
|
|
850
|
+
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when they are defined in config" time="0.003">
|
|
659
851
|
</testcase>
|
|
660
|
-
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" time="0.
|
|
852
|
+
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics when inverter settings are not defined in config" time="0.003">
|
|
661
853
|
</testcase>
|
|
662
854
|
<testcase classname="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
|
|
663
855
|
when powerOcean settings are not defined in config" name="PowerOceanAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
|
|
664
|
-
when powerOcean settings are not defined in config" time="0.
|
|
856
|
+
when powerOcean settings are not defined in config" time="0.01">
|
|
665
857
|
</testcase>
|
|
666
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" name="PowerOceanAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" time="0.
|
|
858
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" name="PowerOceanAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" time="0.005">
|
|
667
859
|
</testcase>
|
|
668
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat
|
|
860
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat should ignore Hearbeat message when its content is unsupported" name="PowerOceanAccessory processQuotaMessage Hearbeat should ignore Hearbeat message when its content is unsupported" time="0.005">
|
|
669
861
|
</testcase>
|
|
670
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with
|
|
862
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" name="PowerOceanAccessory processQuotaMessage Hearbeat updateBatteryLevel should not update battery level when Hearbeat message is received with undefined status" time="0.005">
|
|
671
863
|
</testcase>
|
|
672
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat
|
|
864
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with bpSoc" name="PowerOceanAccessory processQuotaMessage Hearbeat updateBatteryLevel should update battery level when Hearbeat message is received with bpSoc" time="0.005">
|
|
673
865
|
</testcase>
|
|
674
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with
|
|
866
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should not update PV Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should not update PV Input and Output Consumption when Hearbeat message is received with undefined status" time="0.005">
|
|
675
867
|
</testcase>
|
|
676
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with evPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with evPwr" time="0.
|
|
868
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 evPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with 0 evPwr" time="0.01">
|
|
677
869
|
</testcase>
|
|
678
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV
|
|
870
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with evPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV should update PV Output Consumption when Hearbeat message is received with evPwr" time="0.004">
|
|
679
871
|
</testcase>
|
|
680
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Output Consumption when Hearbeat message is received with
|
|
872
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should not update BAT Input and Output Consumption when Hearbeat message is received with undefined status" time="0.004">
|
|
681
873
|
</testcase>
|
|
682
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT
|
|
874
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Output Consumption when Hearbeat message is received with positive bpPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Output Consumption when Hearbeat message is received with positive bpPwr" time="0.002">
|
|
683
875
|
</testcase>
|
|
684
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with
|
|
876
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero bpPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Input and Output Consumption when Hearbeat message is received with zero bpPwr" time="0.003">
|
|
685
877
|
</testcase>
|
|
686
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption
|
|
878
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative bpPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption BAT should update BAT Input Consumption when Hearbeat message is received with negative bpPwr" time="0.007">
|
|
687
879
|
</testcase>
|
|
688
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with
|
|
880
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should not update INV Input and Output Consumption when Hearbeat message is received with undefined status" time="0.011">
|
|
689
881
|
</testcase>
|
|
690
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with
|
|
882
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with psysLoadPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with psysLoadPwr" time="0.002">
|
|
691
883
|
</testcase>
|
|
692
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV
|
|
884
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with zero sysLoadPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Output Consumption when Hearbeat message is received with zero sysLoadPwr" time="0.002">
|
|
693
885
|
</testcase>
|
|
694
|
-
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Input Consumption when Hearbeat message is received with
|
|
886
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Input Consumption when Hearbeat message is received with sysGridPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Input Consumption when Hearbeat message is received with sysGridPwr" time="0.002">
|
|
887
|
+
</testcase>
|
|
888
|
+
<testcase classname="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Input Consumption when Hearbeat message is received with zero sysGridPwr" name="PowerOceanAccessory processQuotaMessage Hearbeat updateConsumption PV updateConsumption INV should update INV Input Consumption when Hearbeat message is received with zero sysGridPwr" time="0.002">
|
|
695
889
|
</testcase>
|
|
696
890
|
<testcase classname="PowerOceanAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="PowerOceanAccessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.002">
|
|
697
891
|
</testcase>
|
|
698
|
-
<testcase classname="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" name="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" time="0.
|
|
892
|
+
<testcase classname="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" name="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics when initializing default values" time="0.009">
|
|
699
893
|
</testcase>
|
|
700
894
|
<testcase classname="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
|
|
701
895
|
when initializing default values with quotas were not initialized properly for it" name="PowerOceanAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
|
|
702
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
896
|
+
when initializing default values with quotas were not initialized properly for it" time="0.002">
|
|
703
897
|
</testcase>
|
|
704
898
|
<testcase classname="PowerOceanAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics when initializing default values" name="PowerOceanAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics when initializing default values" time="0.002">
|
|
705
899
|
</testcase>
|
|
@@ -713,227 +907,157 @@
|
|
|
713
907
|
when initializing default values with quotas were not initialized properly for it" name="PowerOceanAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics
|
|
714
908
|
when initializing default values with quotas were not initialized properly for it" time="0.002">
|
|
715
909
|
</testcase>
|
|
716
|
-
<testcase classname="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" name="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" time="0.
|
|
910
|
+
<testcase classname="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" name="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics when initializing default values" time="0.007">
|
|
717
911
|
</testcase>
|
|
718
912
|
<testcase classname="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
|
|
719
913
|
when initializing default values with quotas were not initialized properly for it" name="PowerOceanAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
|
|
720
|
-
when initializing default values with quotas were not initialized properly for it" time="0.
|
|
914
|
+
when initializing default values with quotas were not initialized properly for it" time="0.003">
|
|
721
915
|
</testcase>
|
|
722
916
|
</testsuite>
|
|
723
|
-
<testsuite name="
|
|
724
|
-
<testcase classname="
|
|
725
|
-
</testcase>
|
|
726
|
-
<testcase classname="ThermostatFridgeServiceBase initialize should use existing Thermostat service when it is already added to accessory" name="ThermostatFridgeServiceBase initialize should use existing Thermostat service when it is already added to accessory" time="0.002">
|
|
727
|
-
</testcase>
|
|
728
|
-
<testcase classname="ThermostatFridgeServiceBase initialize should add Thermostat characteristics when initializing accessory" name="ThermostatFridgeServiceBase initialize should add Thermostat characteristics when initializing accessory" time="0.002">
|
|
729
|
-
</testcase>
|
|
730
|
-
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to value when it is requested" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to value when it is requested" time="0.002">
|
|
731
|
-
</testcase>
|
|
732
|
-
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to max allowed value when update requested for value that exceeds it" time="0.002">
|
|
733
|
-
</testcase>
|
|
734
|
-
<testcase classname="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" name="ThermostatFridgeServiceBase updateCurrentTemperature should set current temperature to min allowed value when update requested for value that is below it" time="0.002">
|
|
735
|
-
</testcase>
|
|
736
|
-
<testcase classname="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to value when it is requested" name="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to value when it is requested" time="0.002">
|
|
737
|
-
</testcase>
|
|
738
|
-
<testcase classname="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" name="ThermostatFridgeServiceBase updateTargetTemperature should set target temperature to max allowed value when update requested for value that exceeds it" time="0.008">
|
|
917
|
+
<testsuite name="EcoFlowMqttApiManager" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:20" time="0.905" tests="32">
|
|
918
|
+
<testcase classname="EcoFlowMqttApiManager connect should not send Set command when it is impossible to acquire certificate" name="EcoFlowMqttApiManager connect should not send Set command when it is impossible to acquire certificate" time="0.011">
|
|
739
919
|
</testcase>
|
|
740
|
-
<testcase classname="
|
|
920
|
+
<testcase classname="EcoFlowMqttApiManager connect should connect to mqtt server when a connection is not established yet" name="EcoFlowMqttApiManager connect should connect to mqtt server when a connection is not established yet" time="0.006">
|
|
741
921
|
</testcase>
|
|
742
|
-
<testcase classname="
|
|
922
|
+
<testcase classname="EcoFlowMqttApiManager connect should use existing connection to mqtt server when a connection is already established" name="EcoFlowMqttApiManager connect should use existing connection to mqtt server when a connection is already established" time="0.003">
|
|
743
923
|
</testcase>
|
|
744
|
-
<testcase classname="
|
|
924
|
+
<testcase classname="EcoFlowMqttApiManager connect should log when connection is established" name="EcoFlowMqttApiManager connect should log when connection is established" time="0.003">
|
|
745
925
|
</testcase>
|
|
746
|
-
<testcase classname="
|
|
926
|
+
<testcase classname="EcoFlowMqttApiManager connect should subscribe on mqtt messages when connection is established" name="EcoFlowMqttApiManager connect should subscribe on mqtt messages when connection is established" time="0.005">
|
|
747
927
|
</testcase>
|
|
748
|
-
<testcase classname="
|
|
928
|
+
<testcase classname="EcoFlowMqttApiManager connect simulate should connect to mock mqtt server when simulation is activated in config" name="EcoFlowMqttApiManager connect simulate should connect to mock mqtt server when simulation is activated in config" time="0.007">
|
|
749
929
|
</testcase>
|
|
750
|
-
<testcase classname="
|
|
930
|
+
<testcase classname="EcoFlowMqttApiManager connect simulate should acquire fake ceritifcate when simulation is activated in config" name="EcoFlowMqttApiManager connect simulate should acquire fake ceritifcate when simulation is activated in config" time="0.008">
|
|
751
931
|
</testcase>
|
|
752
|
-
<testcase classname="
|
|
932
|
+
<testcase classname="EcoFlowMqttApiManager processReceivedMessage should process quota message in all devices that shares single mqtt client" name="EcoFlowMqttApiManager processReceivedMessage should process quota message in all devices that shares single mqtt client" time="0.004">
|
|
753
933
|
</testcase>
|
|
754
|
-
<testcase classname="
|
|
934
|
+
<testcase classname="EcoFlowMqttApiManager processReceivedMessage should process set_reply message in all devices that shares single mqtt client" name="EcoFlowMqttApiManager processReceivedMessage should process set_reply message in all devices that shares single mqtt client" time="0.007">
|
|
755
935
|
</testcase>
|
|
756
|
-
<testcase classname="
|
|
936
|
+
<testcase classname="EcoFlowMqttApiManager sendSetCommand should publish to set topic when it is requested to send set command" name="EcoFlowMqttApiManager sendSetCommand should publish to set topic when it is requested to send set command" time="0.004">
|
|
757
937
|
</testcase>
|
|
758
|
-
<testcase classname="
|
|
938
|
+
<testcase classname="EcoFlowMqttApiManager sendSetCommand should not fail a process when sending set command is failed" name="EcoFlowMqttApiManager sendSetCommand should not fail a process when sending set command is failed" time="0.003">
|
|
759
939
|
</testcase>
|
|
760
|
-
<testcase classname="
|
|
940
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should not subscribe to quota topic when it is impossible to establish connection to mqtt server" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should not subscribe to quota topic when it is impossible to establish connection to mqtt server" time="0.004">
|
|
761
941
|
</testcase>
|
|
762
|
-
<testcase classname="
|
|
942
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should handle error when subscribing is failed" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should handle error when subscribing is failed" time="0.003">
|
|
763
943
|
</testcase>
|
|
764
|
-
<testcase classname="
|
|
944
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should subscribe to quota topic when it is requested" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnQuotaTopic should subscribe to quota topic when it is requested" time="0.004">
|
|
765
945
|
</testcase>
|
|
766
|
-
<testcase classname="
|
|
946
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should not subscribe to set_reply topic when it is impossible to establish connection to mqtt server" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should not subscribe to set_reply topic when it is impossible to establish connection to mqtt server" time="0.009">
|
|
767
947
|
</testcase>
|
|
768
|
-
<testcase classname="
|
|
948
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should handle error when subscribing is failed" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should handle error when subscribing is failed" time="0.005">
|
|
769
949
|
</testcase>
|
|
770
|
-
<testcase classname="
|
|
950
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should subscribe to set_reply topic when it is requested" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnSetReplyTopic should subscribe to set_reply topic when it is requested" time="0.005">
|
|
771
951
|
</testcase>
|
|
772
|
-
<testcase classname="
|
|
952
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should not subscribe to status topic when it is impossible to establish connection to mqtt server" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should not subscribe to status topic when it is impossible to establish connection to mqtt server" time="0.004">
|
|
773
953
|
</testcase>
|
|
774
|
-
<testcase classname="
|
|
954
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should handle error when subscribing is failed" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should handle error when subscribing is failed" time="0.004">
|
|
775
955
|
</testcase>
|
|
776
|
-
<testcase classname="
|
|
956
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should subscribe to status topic when it is requested" name="EcoFlowMqttApiManager subscribeOnTopic subscribeOnStatusTopic should subscribe to status topic when it is requested" time="0.008">
|
|
777
957
|
</testcase>
|
|
778
|
-
<testcase classname="
|
|
958
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should not subscribe to quota message when connection to mqtt server is not established" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should not subscribe to quota message when connection to mqtt server is not established" time="0.005">
|
|
779
959
|
</testcase>
|
|
780
|
-
<testcase classname="
|
|
960
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should not subscribe to quota message when device is not registered for client connection" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should not subscribe to quota message when device is not registered for client connection" time="0.005">
|
|
781
961
|
</testcase>
|
|
782
|
-
<testcase classname="
|
|
962
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should subscribe to quota message when it is requested" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnQuotaMessage should subscribe to quota message when it is requested" time="0.013">
|
|
783
963
|
</testcase>
|
|
784
|
-
<testcase classname="
|
|
964
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should not subscribe to set_reply message when connection to mqtt server is not established" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should not subscribe to set_reply message when connection to mqtt server is not established" time="0.005">
|
|
785
965
|
</testcase>
|
|
786
|
-
<testcase classname="
|
|
966
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should not subscribe to set_reply message when device is not registered for client connection" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should not subscribe to set_reply message when device is not registered for client connection" time="0.005">
|
|
787
967
|
</testcase>
|
|
788
|
-
<testcase classname="
|
|
968
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should subscribe to set_reply message when it is requested" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnSetReplyMessage should subscribe to set_reply message when it is requested" time="0.005">
|
|
789
969
|
</testcase>
|
|
790
|
-
<testcase classname="
|
|
970
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should not subscribe to status message when connection to mqtt server is not established" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should not subscribe to status message when connection to mqtt server is not established" time="0.004">
|
|
791
971
|
</testcase>
|
|
792
|
-
<testcase classname="
|
|
972
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should not subscribe to status message when device is not registered for client connection" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should not subscribe to status message when device is not registered for client connection" time="0.005">
|
|
793
973
|
</testcase>
|
|
794
|
-
<testcase classname="
|
|
974
|
+
<testcase classname="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should subscribe to status message when it is requested" name="EcoFlowMqttApiManager subscribeOnMessage subscribeOnStatusMessage should subscribe to status message when it is requested" time="0.012">
|
|
795
975
|
</testcase>
|
|
796
|
-
<testcase classname="
|
|
976
|
+
<testcase classname="EcoFlowMqttApiManager destroy should not unsubscribe from all topics when connection to mqtt server is not established yet" name="EcoFlowMqttApiManager destroy should not unsubscribe from all topics when connection to mqtt server is not established yet" time="0.003">
|
|
797
977
|
</testcase>
|
|
798
|
-
<testcase classname="
|
|
978
|
+
<testcase classname="EcoFlowMqttApiManager destroy should unsubscribe from all topics for all devices that shares single mqtt client
|
|
979
|
+
when destroying an EcoFlow MQTT API object" name="EcoFlowMqttApiManager destroy should unsubscribe from all topics for all devices that shares single mqtt client
|
|
980
|
+
when destroying an EcoFlow MQTT API object" time="0.003">
|
|
799
981
|
</testcase>
|
|
800
|
-
<testcase classname="
|
|
982
|
+
<testcase classname="EcoFlowMqttApiManager destroy should unsubscribe from all topics for devices that has own mqtt client
|
|
983
|
+
when destroying an EcoFlow MQTT API object" name="EcoFlowMqttApiManager destroy should unsubscribe from all topics for devices that has own mqtt client
|
|
984
|
+
when destroying an EcoFlow MQTT API object" time="0.006">
|
|
801
985
|
</testcase>
|
|
802
986
|
</testsuite>
|
|
803
|
-
<testsuite name="DeltaPro3Accessory" errors="0" failures="0" skipped="0" timestamp="
|
|
804
|
-
<testcase classname="DeltaPro3Accessory initialize should add required services when initializing accessory" name="DeltaPro3Accessory initialize should add required services when initializing accessory" time="0.
|
|
987
|
+
<testsuite name="DeltaPro3Accessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:21" time="0.576" tests="28">
|
|
988
|
+
<testcase classname="DeltaPro3Accessory initialize should add required services when initializing accessory" name="DeltaPro3Accessory initialize should add required services when initializing accessory" time="0.005">
|
|
805
989
|
</testcase>
|
|
806
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSocValues should update soc values in quota when received message contains them" name="DeltaPro3Accessory processQuotaMessage updateSocValues should update soc values in quota when received message contains them" time="0.
|
|
990
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSocValues should update soc values in quota when received message contains them" name="DeltaPro3Accessory processQuotaMessage updateSocValues should update soc values in quota when received message contains them" time="0.005">
|
|
807
991
|
</testcase>
|
|
808
992
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSocValues should update battery level when message is received with cmsBattSoc" name="DeltaPro3Accessory processQuotaMessage updateSocValues should update battery level when message is received with cmsBattSoc" time="0.003">
|
|
809
993
|
</testcase>
|
|
810
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSocValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateSocValues should not update any characteristic when message is received with undefined status" time="0.
|
|
994
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSocValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateSocValues should not update any characteristic when message is received with undefined status" time="0.003">
|
|
811
995
|
</testcase>
|
|
812
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update input watts in quota when received message contains it" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update input watts in quota when received message contains it" time="0.
|
|
996
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update input watts in quota when received message contains it" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update input watts in quota when received message contains it" time="0.003">
|
|
813
997
|
</testcase>
|
|
814
998
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
|
|
815
999
|
when message is received with non zero inputWatts and without outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
|
|
816
|
-
when message is received with non zero inputWatts and without outputWatts" time="0.
|
|
1000
|
+
when message is received with non zero inputWatts and without outputWatts" time="0.003">
|
|
817
1001
|
</testcase>
|
|
818
1002
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
|
|
819
1003
|
when message is received with non zero inputWatts and non equal to it outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
|
|
820
|
-
when message is received with non zero inputWatts and non equal to it outputWatts" time="0.
|
|
1004
|
+
when message is received with non zero inputWatts and non equal to it outputWatts" time="0.012">
|
|
821
1005
|
</testcase>
|
|
822
1006
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
|
|
823
1007
|
when message is received with zero inputWatts and non equal to it outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
|
|
824
|
-
when message is received with zero inputWatts and non equal to it outputWatts" time="0.
|
|
1008
|
+
when message is received with zero inputWatts and non equal to it outputWatts" time="0.005">
|
|
825
1009
|
</testcase>
|
|
826
1010
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
|
|
827
1011
|
when message is received with zero inputWatts and outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
|
|
828
|
-
when message is received with zero inputWatts and outputWatts" time="0.
|
|
1012
|
+
when message is received with zero inputWatts and outputWatts" time="0.007">
|
|
829
1013
|
</testcase>
|
|
830
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with inputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with inputWatts" time="0.
|
|
1014
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with inputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with inputWatts" time="0.003">
|
|
831
1015
|
</testcase>
|
|
832
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should not update any characteristic when message is received with undefined status" time="0.
|
|
1016
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should not update any characteristic when message is received with undefined status" time="0.011">
|
|
833
1017
|
</testcase>
|
|
834
1018
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC HV output watts consumption when message is received with powGetAcHvOut" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC HV output watts consumption when message is received with powGetAcHvOut" time="0.003">
|
|
835
1019
|
</testcase>
|
|
836
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC LV output consumption when message is received with powGetAcLvOut" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC LV output consumption when message is received with powGetAcLvOut" time="0.
|
|
1020
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC LV output consumption when message is received with powGetAcLvOut" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update AC LV output consumption when message is received with powGetAcLvOut" time="0.003">
|
|
837
1021
|
</testcase>
|
|
838
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update DC 12V output consumption when message is received with powGet12v" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update DC 12V output consumption when message is received with powGet12v" time="0.
|
|
1022
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update DC 12V output consumption when message is received with powGet12v" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should update DC 12V output consumption when message is received with powGet12v" time="0.003">
|
|
839
1023
|
</testcase>
|
|
840
1024
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateOutputWattsValues should not update any characteristic when message is received with undefined status" time="0.003">
|
|
841
1025
|
</testcase>
|
|
842
1026
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC HV state when message is received with flowInfoAcHvOut" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC HV state when message is received with flowInfoAcHvOut" time="0.003">
|
|
843
1027
|
</testcase>
|
|
844
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC LV state when message is received with flowInfoAcLvOut" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC LV state when message is received with flowInfoAcLvOut" time="0.
|
|
1028
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC LV state when message is received with flowInfoAcLvOut" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update AC LV state when message is received with flowInfoAcLvOut" time="0.005">
|
|
845
1029
|
</testcase>
|
|
846
1030
|
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update DC 12V state when message is received with flowInfo12v" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update DC 12V state when message is received with flowInfo12v" time="0.003">
|
|
847
1031
|
</testcase>
|
|
848
|
-
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should not update any characteristic when message is received with undefined status" time="0.
|
|
1032
|
+
<testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should not update any characteristic when message is received with undefined status" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should not update any characteristic when message is received with undefined status" time="0.004">
|
|
849
1033
|
</testcase>
|
|
850
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaPro3Accessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.
|
|
1034
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaPro3Accessory initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.013">
|
|
851
1035
|
</testcase>
|
|
852
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSocValues should update soc-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateSocValues should update soc-related characteristics when is requested" time="0.
|
|
1036
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSocValues should update soc-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateSocValues should update soc-related characteristics when is requested" time="0.003">
|
|
853
1037
|
</testcase>
|
|
854
1038
|
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSocValues should not update soc-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaPro3Accessory initializeDefaultValues updateSocValues should not update soc-related characteristics when is requested and quotas were not initialized properly for it" time="0.003">
|
|
855
1039
|
</testcase>
|
|
856
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested" time="0.
|
|
1040
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested" time="0.004">
|
|
857
1041
|
</testcase>
|
|
858
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested and quotas were not initialized properly for it" time="0.
|
|
1042
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaPro3Accessory initializeDefaultValues updateInputWattsValues should update input watts-related characteristics when is requested and quotas were not initialized properly for it" time="0.002">
|
|
859
1043
|
</testcase>
|
|
860
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested" time="0.
|
|
1044
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested" time="0.011">
|
|
861
1045
|
</testcase>
|
|
862
1046
|
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaPro3Accessory initializeDefaultValues updateOutputWattsValues should update output watts-related characteristics when is requested and quotas were not initialized properly for it" time="0.002">
|
|
863
1047
|
</testcase>
|
|
864
|
-
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested" time="0.
|
|
1048
|
+
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested" name="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested" time="0.003">
|
|
865
1049
|
</testcase>
|
|
866
1050
|
<testcase classname="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaPro3Accessory initializeDefaultValues updateSwitchStateValues should update switch-related characteristics when is requested and quotas were not initialized properly for it" time="0.003">
|
|
867
1051
|
</testcase>
|
|
868
1052
|
</testsuite>
|
|
869
|
-
<testsuite name="
|
|
870
|
-
<testcase classname="
|
|
871
|
-
</testcase>
|
|
872
|
-
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" time="0.002">
|
|
873
|
-
</testcase>
|
|
874
|
-
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" time="0.01">
|
|
875
|
-
</testcase>
|
|
876
|
-
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" time="0.002">
|
|
877
|
-
</testcase>
|
|
878
|
-
<testcase classname="SmartPlugAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" name="SmartPlugAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" time="0.002">
|
|
879
|
-
</testcase>
|
|
880
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" name="SmartPlugAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" time="0.002">
|
|
881
|
-
</testcase>
|
|
882
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" time="0.003">
|
|
883
|
-
</testcase>
|
|
884
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" time="0.002">
|
|
885
|
-
</testcase>
|
|
886
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" time="0.003">
|
|
887
|
-
</testcase>
|
|
888
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" time="0.008">
|
|
889
|
-
</testcase>
|
|
890
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" time="0.001">
|
|
891
|
-
</testcase>
|
|
892
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" time="0.002">
|
|
893
|
-
</testcase>
|
|
894
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" time="0.002">
|
|
895
|
-
</testcase>
|
|
896
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" time="0.003">
|
|
897
|
-
</testcase>
|
|
898
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" time="0.002">
|
|
899
|
-
</testcase>
|
|
900
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" time="0.002">
|
|
901
|
-
</testcase>
|
|
902
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" time="0.008">
|
|
903
|
-
</testcase>
|
|
904
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" time="0.001">
|
|
905
|
-
</testcase>
|
|
906
|
-
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" time="0.001">
|
|
907
|
-
</testcase>
|
|
908
|
-
<testcase classname="SmartPlugAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="SmartPlugAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.001">
|
|
909
|
-
</testcase>
|
|
910
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" name="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" time="0.002">
|
|
911
|
-
</testcase>
|
|
912
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
|
|
913
|
-
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
|
|
914
|
-
when initializing default values with quotas were not initialized properly for it" time="0.002">
|
|
915
|
-
</testcase>
|
|
916
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" name="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" time="0.002">
|
|
917
|
-
</testcase>
|
|
918
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic
|
|
919
|
-
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic
|
|
920
|
-
when initializing default values with quotas were not initialized properly for it" time="0.001">
|
|
921
|
-
</testcase>
|
|
922
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" name="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" time="0.008">
|
|
923
|
-
</testcase>
|
|
924
|
-
<testcase classname="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
|
|
925
|
-
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
|
|
926
|
-
when initializing default values with quotas were not initialized properly for it" time="0.002">
|
|
927
|
-
</testcase>
|
|
928
|
-
</testsuite>
|
|
929
|
-
<testsuite name="EcoFlowHomebridgePlatform" errors="0" failures="0" skipped="4" timestamp="2025-05-05T16:19:23" time="1.154" tests="35">
|
|
930
|
-
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize EcoFlow config when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize EcoFlow config when creating new platform" time="0.004">
|
|
1053
|
+
<testsuite name="EcoFlowHomebridgePlatform" errors="0" failures="0" skipped="4" timestamp="2026-01-02T11:56:21" time="0.982" tests="36">
|
|
1054
|
+
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize EcoFlow config when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize EcoFlow config when creating new platform" time="0.003">
|
|
931
1055
|
</testcase>
|
|
932
|
-
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize Service property when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize Service property when creating new platform" time="0.
|
|
1056
|
+
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize Service property when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize Service property when creating new platform" time="0.006">
|
|
933
1057
|
</testcase>
|
|
934
|
-
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize Characteristic property when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize Characteristic property when creating new platform" time="0.
|
|
1058
|
+
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize Characteristic property when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize Characteristic property when creating new platform" time="0.002">
|
|
935
1059
|
</testcase>
|
|
936
|
-
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize InputConsumptionWatt characteristic when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize InputConsumptionWatt characteristic when creating new platform" time="0.
|
|
1060
|
+
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize InputConsumptionWatt characteristic when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize InputConsumptionWatt characteristic when creating new platform" time="0.001">
|
|
937
1061
|
</testcase>
|
|
938
1062
|
<testcase classname="EcoFlowHomebridgePlatform constructor should initialize OutputConsumptionWatts characteristic when creating new platform" name="EcoFlowHomebridgePlatform constructor should initialize OutputConsumptionWatts characteristic when creating new platform" time="0.001">
|
|
939
1063
|
</testcase>
|
|
@@ -941,45 +1065,45 @@
|
|
|
941
1065
|
</testcase>
|
|
942
1066
|
<testcase classname="EcoFlowHomebridgePlatform constructor should subscribe on didFinishLaunching when creating new platform" name="EcoFlowHomebridgePlatform constructor should subscribe on didFinishLaunching when creating new platform" time="0.001">
|
|
943
1067
|
</testcase>
|
|
944
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register devices when devices are not configured" name="EcoFlowHomebridgePlatform registerDevices validation should not register devices when devices are not configured" time="0.
|
|
1068
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register devices when devices are not configured" name="EcoFlowHomebridgePlatform registerDevices validation should not register devices when devices are not configured" time="0.003">
|
|
945
1069
|
</testcase>
|
|
946
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when it is disabled" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when it is disabled" time="0.
|
|
1070
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when it is disabled" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when it is disabled" time="0.003">
|
|
947
1071
|
</testcase>
|
|
948
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when name is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when name is not defined" time="0.
|
|
1072
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when name is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when name is not defined" time="0.002">
|
|
949
1073
|
</testcase>
|
|
950
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when serialNumber is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when serialNumber is not defined" time="0.
|
|
1074
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when serialNumber is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when serialNumber is not defined" time="0.002">
|
|
951
1075
|
</testcase>
|
|
952
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when secretKey is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when secretKey is not defined" time="0.
|
|
1076
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when secretKey is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when secretKey is not defined" time="0.002">
|
|
953
1077
|
</testcase>
|
|
954
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when accessKey is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when accessKey is not defined" time="0.
|
|
1078
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when accessKey is not defined" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when accessKey is not defined" time="0.003">
|
|
955
1079
|
</testcase>
|
|
956
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when serial number is duplicated" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when serial number is duplicated" time="0.
|
|
1080
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when serial number is duplicated" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when serial number is duplicated" time="0.002">
|
|
957
1081
|
</testcase>
|
|
958
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when model is unknown" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when model is unknown" time="0.
|
|
1082
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices validation should not register device when model is unknown" name="EcoFlowHomebridgePlatform registerDevices validation should not register device when model is unknown" time="0.009">
|
|
959
1083
|
</testcase>
|
|
960
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should register device when accessory is not in cache yet" name="EcoFlowHomebridgePlatform registerDevices newDevice should register device when accessory is not in cache yet" time="0.
|
|
1084
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should register device when accessory is not in cache yet" name="EcoFlowHomebridgePlatform registerDevices newDevice should register device when accessory is not in cache yet" time="0.002">
|
|
961
1085
|
</testcase>
|
|
962
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should register platform accessory when new device is created" name="EcoFlowHomebridgePlatform registerDevices newDevice should register platform accessory when new device is created" time="0.
|
|
1086
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should register platform accessory when new device is created" name="EcoFlowHomebridgePlatform registerDevices newDevice should register platform accessory when new device is created" time="0.002">
|
|
963
1087
|
</testcase>
|
|
964
1088
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should initialize device when registering non cached devices" name="EcoFlowHomebridgePlatform registerDevices newDevice should initialize device when registering non cached devices" time="0.055">
|
|
965
1089
|
</testcase>
|
|
966
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should ignore initialization of default values when registering simulation of device" name="EcoFlowHomebridgePlatform registerDevices newDevice should ignore initialization of default values when registering simulation of device" time="0.
|
|
1090
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices newDevice should ignore initialization of default values when registering simulation of device" name="EcoFlowHomebridgePlatform registerDevices newDevice should ignore initialization of default values when registering simulation of device" time="0.054">
|
|
967
1091
|
</testcase>
|
|
968
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2 accessory when model is Delta2 in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2 accessory when model is Delta2 in config" time="0.
|
|
1092
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2 accessory when model is Delta2 in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2 accessory when model is Delta2 in config" time="0.003">
|
|
969
1093
|
</testcase>
|
|
970
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2Max accessory when model is Delta2Max in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2Max accessory when model is Delta2Max in config" time="0.
|
|
1094
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2Max accessory when model is Delta2Max in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Delta2Max accessory when model is Delta2Max in config" time="0.004">
|
|
971
1095
|
</testcase>
|
|
972
1096
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro accessory when model is DeltaPro in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro accessory when model is DeltaPro in config" time="0">
|
|
973
1097
|
<skipped/>
|
|
974
1098
|
</testcase>
|
|
975
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro3 accessory when model is DeltaPro3 in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro3 accessory when model is DeltaPro3 in config" time="0.
|
|
1099
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro3 accessory when model is DeltaPro3 in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaPro3 accessory when model is DeltaPro3 in config" time="0.002">
|
|
976
1100
|
</testcase>
|
|
977
1101
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaProUltra accessory when model is DeltaProUltra in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register DeltaProUltra accessory when model is DeltaProUltra in config" time="0">
|
|
978
1102
|
<skipped/>
|
|
979
1103
|
</testcase>
|
|
980
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Discovery accessory when model is Discovery in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Discovery accessory when model is Discovery in config" time="0.
|
|
1104
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Discovery accessory when model is Discovery in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Discovery accessory when model is Discovery in config" time="0.008">
|
|
981
1105
|
</testcase>
|
|
982
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerStream accessory when model is PowerStream in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerStream accessory when model is PowerStream in config" time="0.
|
|
1106
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerStream accessory when model is PowerStream in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerStream accessory when model is PowerStream in config" time="0.003">
|
|
983
1107
|
</testcase>
|
|
984
1108
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerOcean accessory when model is PowerOcean in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register PowerOcean accessory when model is PowerOcean in config" time="0">
|
|
985
1109
|
<skipped/>
|
|
@@ -989,7 +1113,9 @@
|
|
|
989
1113
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Glacier accessory when model is Glacier in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Glacier accessory when model is Glacier in config" time="0">
|
|
990
1114
|
<skipped/>
|
|
991
1115
|
</testcase>
|
|
992
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices
|
|
1116
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register Wave accessory when model is Glacier in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register Wave accessory when model is Glacier in config" time="0.003">
|
|
1117
|
+
</testcase>
|
|
1118
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices cachedDevice should register device when accessory is already cached" name="EcoFlowHomebridgePlatform registerDevices cachedDevice should register device when accessory is already cached" time="0.003">
|
|
993
1119
|
</testcase>
|
|
994
1120
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices cachedDevice should not register platform accessory when cached device is created" name="EcoFlowHomebridgePlatform registerDevices cachedDevice should not register platform accessory when cached device is created" time="0.002">
|
|
995
1121
|
</testcase>
|
|
@@ -997,65 +1123,129 @@
|
|
|
997
1123
|
</testcase>
|
|
998
1124
|
<testcase classname="EcoFlowHomebridgePlatform registerDevices cachedDevice should cleanupServices of initialized device when registering cached device" name="EcoFlowHomebridgePlatform registerDevices cachedDevice should cleanupServices of initialized device when registering cached device" time="0.053">
|
|
999
1125
|
</testcase>
|
|
1000
|
-
<testcase classname="EcoFlowHomebridgePlatform registerDevices cleanupDevices should remove obsolete device when it is not specified in config" name="EcoFlowHomebridgePlatform registerDevices cleanupDevices should remove obsolete device when it is not specified in config" time="0.
|
|
1126
|
+
<testcase classname="EcoFlowHomebridgePlatform registerDevices cleanupDevices should remove obsolete device when it is not specified in config" name="EcoFlowHomebridgePlatform registerDevices cleanupDevices should remove obsolete device when it is not specified in config" time="0.003">
|
|
1001
1127
|
</testcase>
|
|
1002
1128
|
<testcase classname="EcoFlowHomebridgePlatform configureAccessory should add accessory to list of accessories when it is restored from cache" name="EcoFlowHomebridgePlatform configureAccessory should add accessory to list of accessories when it is restored from cache" time="0.001">
|
|
1003
1129
|
</testcase>
|
|
1004
1130
|
</testsuite>
|
|
1005
|
-
<testsuite name="
|
|
1006
|
-
<testcase classname="
|
|
1131
|
+
<testsuite name="SmartPlugAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:22" time="0.386" tests="27">
|
|
1132
|
+
<testcase classname="SmartPlugAccessory initialize should add required services when initializing accessory" name="SmartPlugAccessory initialize should add required services when initializing accessory" time="0.005">
|
|
1007
1133
|
</testcase>
|
|
1008
|
-
<testcase classname="
|
|
1134
|
+
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" time="0.003">
|
|
1009
1135
|
</testcase>
|
|
1010
|
-
<testcase classname="
|
|
1136
|
+
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" time="0.003">
|
|
1011
1137
|
</testcase>
|
|
1012
|
-
<testcase classname="
|
|
1138
|
+
<testcase classname="SmartPlugAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" name="SmartPlugAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" time="0.003">
|
|
1013
1139
|
</testcase>
|
|
1014
|
-
<testcase classname="
|
|
1140
|
+
<testcase classname="SmartPlugAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" name="SmartPlugAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" time="0.004">
|
|
1015
1141
|
</testcase>
|
|
1016
|
-
<testcase classname="
|
|
1142
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" name="SmartPlugAccessory processQuotaMessage Hearbeat should update heartbeat in quota when Hearbeat message is received" time="0.004">
|
|
1017
1143
|
</testcase>
|
|
1018
|
-
<testcase classname="
|
|
1144
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat should ignore Hearbeat message when its content is unsupported" name="SmartPlugAccessory processQuotaMessage Hearbeat should ignore Hearbeat message when its content is unsupported" time="0.002">
|
|
1019
1145
|
</testcase>
|
|
1020
|
-
<testcase classname="
|
|
1146
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" time="0.003">
|
|
1021
1147
|
</testcase>
|
|
1022
|
-
<testcase classname="
|
|
1148
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" time="0.008">
|
|
1023
1149
|
</testcase>
|
|
1024
|
-
<testcase classname="
|
|
1150
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" time="0.002">
|
|
1025
1151
|
</testcase>
|
|
1026
|
-
<testcase classname="
|
|
1152
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" time="0.002">
|
|
1027
1153
|
</testcase>
|
|
1028
|
-
<testcase classname="
|
|
1154
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" time="0.003">
|
|
1029
1155
|
</testcase>
|
|
1030
|
-
<testcase classname="
|
|
1156
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" time="0.002">
|
|
1031
1157
|
</testcase>
|
|
1032
|
-
<testcase classname="
|
|
1158
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" name="SmartPlugAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" time="0.002">
|
|
1033
1159
|
</testcase>
|
|
1034
|
-
<testcase classname="
|
|
1160
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" time="0.002">
|
|
1035
1161
|
</testcase>
|
|
1036
|
-
<testcase classname="
|
|
1162
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" time="0.002">
|
|
1037
1163
|
</testcase>
|
|
1038
|
-
<testcase classname="
|
|
1164
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" name="SmartPlugAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" time="0.002">
|
|
1039
1165
|
</testcase>
|
|
1040
|
-
<testcase classname="
|
|
1166
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" time="0.001">
|
|
1041
1167
|
</testcase>
|
|
1042
|
-
<testcase classname="
|
|
1168
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" time="0.002">
|
|
1043
1169
|
</testcase>
|
|
1044
|
-
<testcase classname="
|
|
1170
|
+
<testcase classname="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" name="SmartPlugAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" time="0.002">
|
|
1171
|
+
</testcase>
|
|
1172
|
+
<testcase classname="SmartPlugAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="SmartPlugAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.002">
|
|
1173
|
+
</testcase>
|
|
1174
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" name="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" time="0.01">
|
|
1175
|
+
</testcase>
|
|
1176
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
|
|
1177
|
+
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
|
|
1178
|
+
when initializing default values with quotas were not initialized properly for it" time="0.001">
|
|
1179
|
+
</testcase>
|
|
1180
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" name="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" time="0.001">
|
|
1181
|
+
</testcase>
|
|
1182
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic
|
|
1183
|
+
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateBrightnessValues should update brightness characteristic
|
|
1184
|
+
when initializing default values with quotas were not initialized properly for it" time="0.001">
|
|
1185
|
+
</testcase>
|
|
1186
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" name="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" time="0.002">
|
|
1187
|
+
</testcase>
|
|
1188
|
+
<testcase classname="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
|
|
1189
|
+
when initializing default values with quotas were not initialized properly for it" name="SmartPlugAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
|
|
1190
|
+
when initializing default values with quotas were not initialized properly for it" time="0.004">
|
|
1045
1191
|
</testcase>
|
|
1046
1192
|
</testsuite>
|
|
1047
|
-
<testsuite name="
|
|
1048
|
-
<testcase classname="
|
|
1193
|
+
<testsuite name="FanPositionedServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:22" time="0.614" tests="21">
|
|
1194
|
+
<testcase classname="FanPositionedServiceBase initialize should add Fan service when it is not added to accessory yet" name="FanPositionedServiceBase initialize should add Fan service when it is not added to accessory yet" time="0.002">
|
|
1049
1195
|
</testcase>
|
|
1050
|
-
<testcase classname="
|
|
1196
|
+
<testcase classname="FanPositionedServiceBase initialize should use existing Fan service when it is already added to accessory" name="FanPositionedServiceBase initialize should use existing Fan service when it is already added to accessory" time="0.001">
|
|
1197
|
+
</testcase>
|
|
1198
|
+
<testcase classname="FanPositionedServiceBase initialize should add Fan characteristics when initializing accessory" name="FanPositionedServiceBase initialize should add Fan characteristics when initializing accessory" time="0.001">
|
|
1199
|
+
</testcase>
|
|
1200
|
+
<testcase classname="FanPositionedServiceBase updateState should set On state to true when it is requested" name="FanPositionedServiceBase updateState should set On state to true when it is requested" time="0">
|
|
1201
|
+
</testcase>
|
|
1202
|
+
<testcase classname="FanPositionedServiceBase updateRotationSpeed should set 0% rotation speed when the first of four values is set" name="FanPositionedServiceBase updateRotationSpeed should set 0% rotation speed when the first of four values is set" time="0">
|
|
1203
|
+
</testcase>
|
|
1204
|
+
<testcase classname="FanPositionedServiceBase updateRotationSpeed should set 25% rotation speed when the second of four values is set" name="FanPositionedServiceBase updateRotationSpeed should set 25% rotation speed when the second of four values is set" time="0">
|
|
1205
|
+
</testcase>
|
|
1206
|
+
<testcase classname="FanPositionedServiceBase updateRotationSpeed should set 75% rotation speed when the third of four values is set" name="FanPositionedServiceBase updateRotationSpeed should set 75% rotation speed when the third of four values is set" time="0.001">
|
|
1207
|
+
</testcase>
|
|
1208
|
+
<testcase classname="FanPositionedServiceBase updateRotationSpeed should set 100% rotation speed when the fourth of four values is set" name="FanPositionedServiceBase updateRotationSpeed should set 100% rotation speed when the fourth of four values is set" time="0.005">
|
|
1209
|
+
</testcase>
|
|
1210
|
+
<testcase classname="FanPositionedServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" name="FanPositionedServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1211
|
+
</testcase>
|
|
1212
|
+
<testcase classname="FanPositionedServiceBase characteristics On onGet should get On value when device is online" name="FanPositionedServiceBase characteristics On onGet should get On value when device is online" time="0">
|
|
1213
|
+
</testcase>
|
|
1214
|
+
<testcase classname="FanPositionedServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="FanPositionedServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.001">
|
|
1215
|
+
</testcase>
|
|
1216
|
+
<testcase classname="FanPositionedServiceBase characteristics On onSet should set On value when device is online" name="FanPositionedServiceBase characteristics On onSet should set On value when device is online" time="0.001">
|
|
1217
|
+
</testcase>
|
|
1218
|
+
<testcase classname="FanPositionedServiceBase characteristics On onSet should throw an error when setting On value but device is offline" name="FanPositionedServiceBase characteristics On onSet should throw an error when setting On value but device is offline" time="0.001">
|
|
1219
|
+
</testcase>
|
|
1220
|
+
<testcase classname="FanPositionedServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" name="FanPositionedServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" time="0.001">
|
|
1221
|
+
</testcase>
|
|
1222
|
+
<testcase classname="FanPositionedServiceBase characteristics On onSet should revert changing of On state when it is failed" name="FanPositionedServiceBase characteristics On onSet should revert changing of On state when it is failed" time="0.001">
|
|
1223
|
+
</testcase>
|
|
1224
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onGet should get RotationSpeed value when device is online" name="FanPositionedServiceBase characteristics RotationSpeed onGet should get RotationSpeed value when device is online" time="0.001">
|
|
1225
|
+
</testcase>
|
|
1226
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onGet should throw an error when getting RotationSpeed value but device is offline" name="FanPositionedServiceBase characteristics RotationSpeed onGet should throw an error when getting RotationSpeed value but device is offline" time="0.001">
|
|
1227
|
+
</testcase>
|
|
1228
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onSet should set RotationSpeed value when device is online" name="FanPositionedServiceBase characteristics RotationSpeed onSet should set RotationSpeed value when device is online" time="0">
|
|
1229
|
+
</testcase>
|
|
1230
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but device is offline" name="FanPositionedServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but device is offline" time="0">
|
|
1231
|
+
</testcase>
|
|
1232
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but service is disabled" name="FanPositionedServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but service is disabled" time="0">
|
|
1233
|
+
</testcase>
|
|
1234
|
+
<testcase classname="FanPositionedServiceBase characteristics RotationSpeed onSet should revert changing of RotationSpeed when sending Set command to device is failed" name="FanPositionedServiceBase characteristics RotationSpeed onSet should revert changing of RotationSpeed when sending Set command to device is failed" time="0.001">
|
|
1235
|
+
</testcase>
|
|
1236
|
+
</testsuite>
|
|
1237
|
+
<testsuite name="OutletServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:22" time="1.073" tests="24">
|
|
1238
|
+
<testcase classname="OutletServiceBase initialize should add Outlet service when it is not added to accessory yet" name="OutletServiceBase initialize should add Outlet service when it is not added to accessory yet" time="0.002">
|
|
1051
1239
|
</testcase>
|
|
1052
|
-
<testcase classname="OutletServiceBase initialize should
|
|
1240
|
+
<testcase classname="OutletServiceBase initialize should use existing Outlet service when it is already added to accessory" name="OutletServiceBase initialize should use existing Outlet service when it is already added to accessory" time="0.001">
|
|
1241
|
+
</testcase>
|
|
1242
|
+
<testcase classname="OutletServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" name="OutletServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" time="0.001">
|
|
1053
1243
|
</testcase>
|
|
1054
1244
|
<testcase classname="OutletServiceBase initialize should add OutputConsumptionInWatts characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add OutputConsumptionInWatts characteristic when it is enabled in configuration" time="0.001">
|
|
1055
1245
|
</testcase>
|
|
1056
|
-
<testcase classname="OutletServiceBase initialize should add OutputVoltage characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add OutputVoltage characteristic when it is enabled in configuration" time="0">
|
|
1246
|
+
<testcase classname="OutletServiceBase initialize should add OutputVoltage characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add OutputVoltage characteristic when it is enabled in configuration" time="0.001">
|
|
1057
1247
|
</testcase>
|
|
1058
|
-
<testcase classname="OutletServiceBase initialize should add OutputCurrent characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add OutputCurrent characteristic when it is enabled in configuration" time="0">
|
|
1248
|
+
<testcase classname="OutletServiceBase initialize should add OutputCurrent characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add OutputCurrent characteristic when it is enabled in configuration" time="0.001">
|
|
1059
1249
|
</testcase>
|
|
1060
1250
|
<testcase classname="OutletServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="OutletServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.001">
|
|
1061
1251
|
</testcase>
|
|
@@ -1079,9 +1269,9 @@
|
|
|
1079
1269
|
</testcase>
|
|
1080
1270
|
<testcase classname="OutletServiceBase updateOutputCurrent should not set OutputCurrent when it is disabled in configuration" name="OutletServiceBase updateOutputCurrent should not set OutputCurrent when it is disabled in configuration" time="0.001">
|
|
1081
1271
|
</testcase>
|
|
1082
|
-
<testcase classname="OutletServiceBase characteristics On onGet should get On value when device is online" name="OutletServiceBase characteristics On onGet should get On value when device is online" time="0.
|
|
1272
|
+
<testcase classname="OutletServiceBase characteristics On onGet should get On value when device is online" name="OutletServiceBase characteristics On onGet should get On value when device is online" time="0.002">
|
|
1083
1273
|
</testcase>
|
|
1084
|
-
<testcase classname="OutletServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="OutletServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.
|
|
1274
|
+
<testcase classname="OutletServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="OutletServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.004">
|
|
1085
1275
|
</testcase>
|
|
1086
1276
|
<testcase classname="OutletServiceBase characteristics On onSet should set On value when device is online" name="OutletServiceBase characteristics On onSet should set On value when device is online" time="0.001">
|
|
1087
1277
|
</testcase>
|
|
@@ -1091,89 +1281,103 @@
|
|
|
1091
1281
|
</testcase>
|
|
1092
1282
|
<testcase classname="OutletServiceBase characteristics On onSet should revert changing of On state when it is failed" name="OutletServiceBase characteristics On onSet should revert changing of On state when it is failed" time="0.001">
|
|
1093
1283
|
</testcase>
|
|
1284
|
+
<testcase classname="OutletServiceBase characteristics On onSet should revert changing of On state when it is failed with error" name="OutletServiceBase characteristics On onSet should revert changing of On state when it is failed with error" time="0.503">
|
|
1285
|
+
</testcase>
|
|
1094
1286
|
</testsuite>
|
|
1095
|
-
<testsuite name="
|
|
1096
|
-
<testcase classname="
|
|
1287
|
+
<testsuite name="FanServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:23" time="0.328" tests="20">
|
|
1288
|
+
<testcase classname="FanServiceBase initialize should add Fan service when it is not added to accessory yet" name="FanServiceBase initialize should add Fan service when it is not added to accessory yet" time="0.002">
|
|
1097
1289
|
</testcase>
|
|
1098
|
-
<testcase classname="
|
|
1290
|
+
<testcase classname="FanServiceBase initialize should use existing Fan service when it is already added to accessory" name="FanServiceBase initialize should use existing Fan service when it is already added to accessory" time="0.001">
|
|
1099
1291
|
</testcase>
|
|
1100
|
-
<testcase classname="
|
|
1292
|
+
<testcase classname="FanServiceBase initialize should add Fan characteristics when initializing accessory" name="FanServiceBase initialize should add Fan characteristics when initializing accessory" time="0.006">
|
|
1101
1293
|
</testcase>
|
|
1102
|
-
<testcase classname="
|
|
1294
|
+
<testcase classname="FanServiceBase updateState should set On state to true when it is requested" name="FanServiceBase updateState should set On state to true when it is requested" time="0.001">
|
|
1103
1295
|
</testcase>
|
|
1104
|
-
<testcase classname="
|
|
1296
|
+
<testcase classname="FanServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" name="FanServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" time="0.001">
|
|
1105
1297
|
</testcase>
|
|
1106
|
-
<testcase classname="
|
|
1298
|
+
<testcase classname="FanServiceBase updateRotationSpeed should set 0% rotation speed when minimum value is set" name="FanServiceBase updateRotationSpeed should set 0% rotation speed when minimum value is set" time="0.001">
|
|
1107
1299
|
</testcase>
|
|
1108
|
-
<testcase classname="
|
|
1300
|
+
<testcase classname="FanServiceBase updateRotationSpeed should set rotation speed when it is requested" name="FanServiceBase updateRotationSpeed should set rotation speed when it is requested" time="0.001">
|
|
1109
1301
|
</testcase>
|
|
1110
|
-
<testcase classname="
|
|
1302
|
+
<testcase classname="FanServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" name="FanServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1111
1303
|
</testcase>
|
|
1112
|
-
<testcase classname="
|
|
1304
|
+
<testcase classname="FanServiceBase characteristics On onGet should get On value when device is online" name="FanServiceBase characteristics On onGet should get On value when device is online" time="0.001">
|
|
1113
1305
|
</testcase>
|
|
1114
|
-
<testcase classname="
|
|
1306
|
+
<testcase classname="FanServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="FanServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.002">
|
|
1115
1307
|
</testcase>
|
|
1116
|
-
<testcase classname="
|
|
1308
|
+
<testcase classname="FanServiceBase characteristics On onSet should set On value when device is online" name="FanServiceBase characteristics On onSet should set On value when device is online" time="0.001">
|
|
1117
1309
|
</testcase>
|
|
1118
|
-
<testcase classname="
|
|
1310
|
+
<testcase classname="FanServiceBase characteristics On onSet should throw an error when setting On value but device is offline" name="FanServiceBase characteristics On onSet should throw an error when setting On value but device is offline" time="0.001">
|
|
1119
1311
|
</testcase>
|
|
1120
|
-
<testcase classname="
|
|
1312
|
+
<testcase classname="FanServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" name="FanServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" time="0.001">
|
|
1121
1313
|
</testcase>
|
|
1122
|
-
<testcase classname="
|
|
1314
|
+
<testcase classname="FanServiceBase characteristics On onSet should revert changing of On state when it is failed" name="FanServiceBase characteristics On onSet should revert changing of On state when it is failed" time="0.001">
|
|
1123
1315
|
</testcase>
|
|
1124
|
-
<testcase classname="
|
|
1316
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onGet should get RotationSpeed value when device is online" name="FanServiceBase characteristics RotationSpeed onGet should get RotationSpeed value when device is online" time="0">
|
|
1125
1317
|
</testcase>
|
|
1126
|
-
<testcase classname="
|
|
1318
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onGet should throw an error when getting RotationSpeed value but device is offline" name="FanServiceBase characteristics RotationSpeed onGet should throw an error when getting RotationSpeed value but device is offline" time="0.001">
|
|
1127
1319
|
</testcase>
|
|
1128
|
-
<testcase classname="
|
|
1320
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onSet should set RotationSpeed value when device is online" name="FanServiceBase characteristics RotationSpeed onSet should set RotationSpeed value when device is online" time="0.001">
|
|
1129
1321
|
</testcase>
|
|
1130
|
-
<testcase classname="
|
|
1322
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but device is offline" name="FanServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but device is offline" time="0.001">
|
|
1131
1323
|
</testcase>
|
|
1132
|
-
<testcase classname="
|
|
1324
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but service is disabled" name="FanServiceBase characteristics RotationSpeed onSet should throw an error when setting RotationSpeed value but service is disabled" time="0.001">
|
|
1133
1325
|
</testcase>
|
|
1134
|
-
<testcase classname="
|
|
1326
|
+
<testcase classname="FanServiceBase characteristics RotationSpeed onSet should revert changing of RotationSpeed when sending Set command to device is failed" name="FanServiceBase characteristics RotationSpeed onSet should revert changing of RotationSpeed when sending Set command to device is failed" time="0.001">
|
|
1135
1327
|
</testcase>
|
|
1136
1328
|
</testsuite>
|
|
1137
|
-
<testsuite name="
|
|
1138
|
-
<testcase classname="
|
|
1329
|
+
<testsuite name="LightBulbServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:23" time="0.414" tests="20">
|
|
1330
|
+
<testcase classname="LightBulbServiceBase initialize should add Lightbulb service when it is not added to accessory yet" name="LightBulbServiceBase initialize should add Lightbulb service when it is not added to accessory yet" time="0.002">
|
|
1331
|
+
</testcase>
|
|
1332
|
+
<testcase classname="LightBulbServiceBase initialize should use existing Lightbulb service when it is already added to accessory" name="LightBulbServiceBase initialize should use existing Lightbulb service when it is already added to accessory" time="0.001">
|
|
1333
|
+
</testcase>
|
|
1334
|
+
<testcase classname="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" name="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" time="0.001">
|
|
1139
1335
|
</testcase>
|
|
1140
|
-
<testcase classname="
|
|
1336
|
+
<testcase classname="LightBulbServiceBase updateState should set On state to true when it is requested" name="LightBulbServiceBase updateState should set On state to true when it is requested" time="0.001">
|
|
1337
|
+
</testcase>
|
|
1338
|
+
<testcase classname="LightBulbServiceBase updateBrightness should set 100% brightness when maximum value is set" name="LightBulbServiceBase updateBrightness should set 100% brightness when maximum value is set" time="0.001">
|
|
1339
|
+
</testcase>
|
|
1340
|
+
<testcase classname="LightBulbServiceBase updateBrightness should set 0% brightness when minimum value is set" name="LightBulbServiceBase updateBrightness should set 0% brightness when minimum value is set" time="0">
|
|
1141
1341
|
</testcase>
|
|
1142
|
-
<testcase classname="
|
|
1342
|
+
<testcase classname="LightBulbServiceBase updateBrightness should set brightness when it is requested" name="LightBulbServiceBase updateBrightness should set brightness when it is requested" time="0">
|
|
1343
|
+
</testcase>
|
|
1344
|
+
<testcase classname="LightBulbServiceBase updateBrightness should revert changing of brightness to value set from UI when sending Set command to device is failed" name="LightBulbServiceBase updateBrightness should revert changing of brightness to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1143
1345
|
</testcase>
|
|
1144
|
-
<testcase classname="
|
|
1346
|
+
<testcase classname="LightBulbServiceBase characteristics On onGet should get On value when device is online" name="LightBulbServiceBase characteristics On onGet should get On value when device is online" time="0">
|
|
1145
1347
|
</testcase>
|
|
1146
|
-
<testcase classname="
|
|
1348
|
+
<testcase classname="LightBulbServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="LightBulbServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.001">
|
|
1349
|
+
</testcase>
|
|
1350
|
+
<testcase classname="LightBulbServiceBase characteristics On onSet should set On value when device is online" name="LightBulbServiceBase characteristics On onSet should set On value when device is online" time="0.001">
|
|
1147
1351
|
</testcase>
|
|
1148
|
-
<testcase classname="
|
|
1352
|
+
<testcase classname="LightBulbServiceBase characteristics On onSet should throw an error when setting On value but device is offline" name="LightBulbServiceBase characteristics On onSet should throw an error when setting On value but device is offline" time="0.006">
|
|
1149
1353
|
</testcase>
|
|
1150
|
-
<testcase classname="
|
|
1354
|
+
<testcase classname="LightBulbServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" name="LightBulbServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" time="0.001">
|
|
1151
1355
|
</testcase>
|
|
1152
|
-
<testcase classname="
|
|
1356
|
+
<testcase classname="LightBulbServiceBase characteristics On onSet should revert changing of On state when it is failed" name="LightBulbServiceBase characteristics On onSet should revert changing of On state when it is failed" time="0.001">
|
|
1153
1357
|
</testcase>
|
|
1154
|
-
<testcase classname="
|
|
1358
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onGet should get Brightness value when device is online" name="LightBulbServiceBase characteristics Brightness onGet should get Brightness value when device is online" time="0.001">
|
|
1155
1359
|
</testcase>
|
|
1156
|
-
<testcase classname="
|
|
1360
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onGet should throw an error when getting Brightness value but device is offline" name="LightBulbServiceBase characteristics Brightness onGet should throw an error when getting Brightness value but device is offline" time="0.001">
|
|
1157
1361
|
</testcase>
|
|
1158
|
-
<testcase classname="
|
|
1362
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onSet should set Brightness value when device is online" name="LightBulbServiceBase characteristics Brightness onSet should set Brightness value when device is online" time="0">
|
|
1159
1363
|
</testcase>
|
|
1160
|
-
<testcase classname="
|
|
1364
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onSet should throw an error when setting Brightness value but device is offline" name="LightBulbServiceBase characteristics Brightness onSet should throw an error when setting Brightness value but device is offline" time="0">
|
|
1161
1365
|
</testcase>
|
|
1162
|
-
<testcase classname="
|
|
1366
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onSet should throw an error when setting on value but service is disabled" name="LightBulbServiceBase characteristics Brightness onSet should throw an error when setting on value but service is disabled" time="0.001">
|
|
1163
1367
|
</testcase>
|
|
1164
|
-
<testcase classname="
|
|
1368
|
+
<testcase classname="LightBulbServiceBase characteristics Brightness onSet should revert changing of Brightness when sending Set command to device is failed" name="LightBulbServiceBase characteristics Brightness onSet should revert changing of Brightness when sending Set command to device is failed" time="0.001">
|
|
1165
1369
|
</testcase>
|
|
1166
1370
|
</testsuite>
|
|
1167
|
-
<testsuite name="OutletBatteryServiceBase" errors="0" failures="0" skipped="0" timestamp="
|
|
1371
|
+
<testsuite name="OutletBatteryServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:24" time="0.388" tests="14">
|
|
1168
1372
|
<testcase classname="OutletBatteryServiceBase initialize should add Outlet service when it is not added to accessory yet" name="OutletBatteryServiceBase initialize should add Outlet service when it is not added to accessory yet" time="0.002">
|
|
1169
1373
|
</testcase>
|
|
1170
|
-
<testcase classname="OutletBatteryServiceBase initialize should use existing Outlet service when it is already added to accessory" name="OutletBatteryServiceBase initialize should use existing Outlet service when it is already added to accessory" time="0">
|
|
1374
|
+
<testcase classname="OutletBatteryServiceBase initialize should use existing Outlet service when it is already added to accessory" name="OutletBatteryServiceBase initialize should use existing Outlet service when it is already added to accessory" time="0.001">
|
|
1171
1375
|
</testcase>
|
|
1172
|
-
<testcase classname="OutletBatteryServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" name="OutletBatteryServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" time="0">
|
|
1376
|
+
<testcase classname="OutletBatteryServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" name="OutletBatteryServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" time="0.007">
|
|
1173
1377
|
</testcase>
|
|
1174
1378
|
<testcase classname="OutletBatteryServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" name="OutletBatteryServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" time="0.001">
|
|
1175
1379
|
</testcase>
|
|
1176
|
-
<testcase classname="OutletBatteryServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" name="OutletBatteryServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" time="0.
|
|
1380
|
+
<testcase classname="OutletBatteryServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" name="OutletBatteryServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" time="0.001">
|
|
1177
1381
|
</testcase>
|
|
1178
1382
|
<testcase classname="OutletBatteryServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletBatteryServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1179
1383
|
</testcase>
|
|
@@ -1187,25 +1391,25 @@
|
|
|
1187
1391
|
</testcase>
|
|
1188
1392
|
<testcase classname="OutletBatteryServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletBatteryServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1189
1393
|
</testcase>
|
|
1190
|
-
<testcase classname="OutletBatteryServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletBatteryServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0
|
|
1394
|
+
<testcase classname="OutletBatteryServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletBatteryServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0">
|
|
1191
1395
|
</testcase>
|
|
1192
1396
|
<testcase classname="OutletBatteryServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" name="OutletBatteryServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" time="0.001">
|
|
1193
1397
|
</testcase>
|
|
1194
1398
|
<testcase classname="OutletBatteryServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" name="OutletBatteryServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" time="0.001">
|
|
1195
1399
|
</testcase>
|
|
1196
1400
|
</testsuite>
|
|
1197
|
-
<testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="
|
|
1401
|
+
<testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:24" time="0.325" tests="12">
|
|
1198
1402
|
<testcase classname="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1199
1403
|
</testcase>
|
|
1200
1404
|
<testcase classname="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1201
1405
|
</testcase>
|
|
1202
|
-
<testcase classname="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0
|
|
1406
|
+
<testcase classname="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0">
|
|
1203
1407
|
</testcase>
|
|
1204
1408
|
<testcase classname="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0">
|
|
1205
1409
|
</testcase>
|
|
1206
|
-
<testcase classname="OutletAcService updateStatusLowBattery should set low battery level when it is less than 20" name="OutletAcService updateStatusLowBattery should set low battery level when it is less than 20" time="0
|
|
1410
|
+
<testcase classname="OutletAcService updateStatusLowBattery should set low battery level when it is less than 20" name="OutletAcService updateStatusLowBattery should set low battery level when it is less than 20" time="0">
|
|
1207
1411
|
</testcase>
|
|
1208
|
-
<testcase classname="OutletAcService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletAcService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0
|
|
1412
|
+
<testcase classname="OutletAcService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletAcService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0">
|
|
1209
1413
|
</testcase>
|
|
1210
1414
|
<testcase classname="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1211
1415
|
</testcase>
|
|
@@ -1221,225 +1425,233 @@
|
|
|
1221
1425
|
</testcase>
|
|
1222
1426
|
<testcase classname="OutletAcService processOnSetOn should send Set command of INV moduleType to device when Enabled value was changed to false" name="OutletAcService processOnSetOn should send Set command of INV moduleType to device when Enabled value was changed to false" time="0.001">
|
|
1223
1427
|
</testcase>
|
|
1224
|
-
<testcase classname="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0
|
|
1428
|
+
<testcase classname="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0">
|
|
1225
1429
|
</testcase>
|
|
1226
1430
|
</testsuite>
|
|
1227
|
-
<testsuite name="
|
|
1228
|
-
<testcase classname="
|
|
1431
|
+
<testsuite name="EcoFlowAccessoryBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:15" time="10.771" tests="32">
|
|
1432
|
+
<testcase classname="EcoFlowAccessoryBase initialize should add required services when initializing accessory" name="EcoFlowAccessoryBase initialize should add required services when initializing accessory" time="0.003">
|
|
1229
1433
|
</testcase>
|
|
1230
|
-
<testcase classname="
|
|
1434
|
+
<testcase classname="EcoFlowAccessoryBase connectMqtt should connect to mqtt server during initialization when subscription to quota and set_reply topic is successful" name="EcoFlowAccessoryBase connectMqtt should connect to mqtt server during initialization when subscription to quota and set_reply topic is successful" time="0.163">
|
|
1231
1435
|
</testcase>
|
|
1232
|
-
<testcase classname="
|
|
1436
|
+
<testcase classname="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to quota was failed during initialization" name="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to quota was failed during initialization" time="0.153">
|
|
1233
1437
|
</testcase>
|
|
1234
|
-
<testcase classname="
|
|
1438
|
+
<testcase classname="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to set_reply was failed during initialization" name="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to set_reply was failed during initialization" time="0.157">
|
|
1235
1439
|
</testcase>
|
|
1236
|
-
<testcase classname="
|
|
1440
|
+
<testcase classname="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to status was failed during initialization" name="EcoFlowAccessoryBase connectMqtt should re-connect to mqtt server when subscription to status was failed during initialization" time="0.16">
|
|
1237
1441
|
</testcase>
|
|
1238
|
-
<testcase classname="
|
|
1442
|
+
<testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota, set_reply and status messages when mqtt is failed to connect" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota, set_reply and status messages when mqtt is failed to connect" time="0.005">
|
|
1239
1443
|
</testcase>
|
|
1240
|
-
<testcase classname="
|
|
1444
|
+
<testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota, set_reply and status messages when mqtt is connected successfully" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota, set_reply and status messages when mqtt is connected successfully" time="0.009">
|
|
1241
1445
|
</testcase>
|
|
1242
|
-
<testcase classname="
|
|
1446
|
+
<testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should filter failed subscription on parameters updates when mqtt is connected successfully" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should filter failed subscription on parameters updates when mqtt is connected successfully" time="0.007">
|
|
1243
1447
|
</testcase>
|
|
1244
|
-
<testcase classname="
|
|
1448
|
+
<testcase classname="EcoFlowAccessoryBase processQuotaMessage should call processQuotaMessage when new quota message is received" name="EcoFlowAccessoryBase processQuotaMessage should call processQuotaMessage when new quota message is received" time="0.007">
|
|
1245
1449
|
</testcase>
|
|
1246
|
-
<testcase classname="
|
|
1450
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore 'set_reply' message when no 'set' command was sent yet" name="EcoFlowAccessoryBase processSetReplyMessage should ignore 'set_reply' message when no 'set' command was sent yet" time="0.006">
|
|
1247
1451
|
</testcase>
|
|
1248
|
-
<testcase classname="
|
|
1452
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore 'set_reply' message when it was not initialized by 'set' command from current instance" name="EcoFlowAccessoryBase processSetReplyMessage should ignore 'set_reply' message when it was not initialized by 'set' command from current instance" time="0.002">
|
|
1249
1453
|
</testcase>
|
|
1250
|
-
<testcase classname="
|
|
1454
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should clear timeout for message when it is already processed" name="EcoFlowAccessoryBase processSetReplyMessage should clear timeout for message when it is already processed" time="0.154">
|
|
1251
1455
|
</testcase>
|
|
1252
|
-
<testcase classname="
|
|
1456
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'ack' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'ack' acknowledgement" time="0.002">
|
|
1253
1457
|
</testcase>
|
|
1254
|
-
|
|
1255
|
-
<testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:27" time="0.356" tests="10">
|
|
1256
|
-
<testcase classname="OutletService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1458
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'ack' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'ack' acknowledgement" time="0.003">
|
|
1257
1459
|
</testcase>
|
|
1258
|
-
<testcase classname="
|
|
1460
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'result' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'result' acknowledgement" time="0.003">
|
|
1259
1461
|
</testcase>
|
|
1260
|
-
<testcase classname="
|
|
1462
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'result' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'result' acknowledgement" time="0.002">
|
|
1261
1463
|
</testcase>
|
|
1262
|
-
<testcase classname="
|
|
1464
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'configOk' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when 'set_reply' message contains successful 'configOk' acknowledgement" time="0.002">
|
|
1263
1465
|
</testcase>
|
|
1264
|
-
<testcase classname="
|
|
1466
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'configOk' acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message contains failed 'configOk' acknowledgement" time="0.003">
|
|
1265
1467
|
</testcase>
|
|
1266
|
-
<testcase classname="
|
|
1468
|
+
<testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message does not contain ack/result/configOk acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when 'set_reply' message does not contain ack/result/configOk acknowledgement" time="0.002">
|
|
1267
1469
|
</testcase>
|
|
1268
|
-
<testcase classname="
|
|
1470
|
+
<testcase classname="EcoFlowAccessoryBase processStatusMessage should update status of all services when status message is received with value Online (1)" name="EcoFlowAccessoryBase processStatusMessage should update status of all services when status message is received with value Online (1)" time="0.002">
|
|
1269
1471
|
</testcase>
|
|
1270
|
-
<testcase classname="
|
|
1472
|
+
<testcase classname="EcoFlowAccessoryBase processStatusMessage should update status of all services when status message is received with value Offline (0)" name="EcoFlowAccessoryBase processStatusMessage should update status of all services when status message is received with value Offline (0)" time="0.002">
|
|
1271
1473
|
</testcase>
|
|
1272
|
-
<testcase classname="
|
|
1474
|
+
<testcase classname="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" name="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" time="0.402">
|
|
1273
1475
|
</testcase>
|
|
1274
|
-
<testcase classname="
|
|
1476
|
+
<testcase classname="EcoFlowAccessoryBase destroy should unsubscribe from parameters updates when destroying accessory" name="EcoFlowAccessoryBase destroy should unsubscribe from parameters updates when destroying accessory" time="0.003">
|
|
1275
1477
|
</testcase>
|
|
1276
|
-
|
|
1277
|
-
<testsuite name="OutletDc12vService" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:28" time="0.425" tests="9">
|
|
1278
|
-
<testcase classname="OutletDc12vService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletDc12vService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1478
|
+
<testcase classname="EcoFlowAccessoryBase cleanupServices should remove non registered services when cleanup is called" name="EcoFlowAccessoryBase cleanupServices should remove non registered services when cleanup is called" time="0.014">
|
|
1279
1479
|
</testcase>
|
|
1280
|
-
<testcase classname="
|
|
1480
|
+
<testcase classname="EcoFlowAccessoryBase cleanupServices should cleanup characteristics for registered services only when cleanup is called" name="EcoFlowAccessoryBase cleanupServices should cleanup characteristics for registered services only when cleanup is called" time="0.003">
|
|
1281
1481
|
</testcase>
|
|
1282
|
-
<testcase classname="
|
|
1482
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should send mqtt "set" message when sending of command is requested" name="EcoFlowAccessoryBase sendSetCommand should send mqtt "set" message when sending of command is requested" time="0.003">
|
|
1283
1483
|
</testcase>
|
|
1284
|
-
<testcase classname="
|
|
1484
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should revert sent command when its sending is timed out" name="EcoFlowAccessoryBase sendSetCommand should revert sent command when its sending is timed out" time="0.162">
|
|
1285
1485
|
</testcase>
|
|
1286
|
-
<testcase classname="
|
|
1486
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should log timed out warning when command's sending is timed out" name="EcoFlowAccessoryBase sendSetCommand should log timed out warning when command's sending is timed out" time="0.153">
|
|
1287
1487
|
</testcase>
|
|
1288
|
-
<testcase classname="
|
|
1488
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should mark all accessory's services as unreachable when command's sending is timed out" name="EcoFlowAccessoryBase sendSetCommand should mark all accessory's services as unreachable when command's sending is timed out" time="0.153">
|
|
1289
1489
|
</testcase>
|
|
1290
|
-
<testcase classname="
|
|
1490
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should remove message from setReply dictionary when command's sending is timed out" name="EcoFlowAccessoryBase sendSetCommand should remove message from setReply dictionary when command's sending is timed out" time="0.152">
|
|
1291
1491
|
</testcase>
|
|
1292
|
-
<testcase classname="
|
|
1492
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should ignore timed out message when it is already processed" name="EcoFlowAccessoryBase sendSetCommand should ignore timed out message when it is already processed" time="0.154">
|
|
1293
1493
|
</testcase>
|
|
1294
|
-
<testcase classname="
|
|
1494
|
+
<testcase classname="EcoFlowAccessoryBase sendSetCommand should use default value of setReplyWaitResponseTimeoutMs when it is not set in config" name="EcoFlowAccessoryBase sendSetCommand should use default value of setReplyWaitResponseTimeoutMs when it is not set in config" time="3.102">
|
|
1295
1495
|
</testcase>
|
|
1296
1496
|
</testsuite>
|
|
1297
|
-
<testsuite name="
|
|
1298
|
-
<testcase classname="
|
|
1497
|
+
<testsuite name="SwitchServiceBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:25" time="0.499" tests="13">
|
|
1498
|
+
<testcase classname="SwitchServiceBase initialize should add Switch service when it is not added to accessory yet" name="SwitchServiceBase initialize should add Switch service when it is not added to accessory yet" time="0.002">
|
|
1299
1499
|
</testcase>
|
|
1300
|
-
<testcase classname="
|
|
1500
|
+
<testcase classname="SwitchServiceBase initialize should use existing Switch service when it is already added to accessory" name="SwitchServiceBase initialize should use existing Switch service when it is already added to accessory" time="0.001">
|
|
1301
1501
|
</testcase>
|
|
1302
|
-
<testcase classname="
|
|
1502
|
+
<testcase classname="SwitchServiceBase initialize should add mandatory characteristics when initializing accessory" name="SwitchServiceBase initialize should add mandatory characteristics when initializing accessory" time="0.001">
|
|
1303
1503
|
</testcase>
|
|
1304
|
-
<testcase classname="
|
|
1504
|
+
<testcase classname="SwitchServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="SwitchServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.007">
|
|
1305
1505
|
</testcase>
|
|
1306
|
-
<testcase classname="
|
|
1506
|
+
<testcase classname="SwitchServiceBase updateState should set On state to true when it is requested" name="SwitchServiceBase updateState should set On state to true when it is requested" time="0.002">
|
|
1307
1507
|
</testcase>
|
|
1308
|
-
<testcase classname="
|
|
1508
|
+
<testcase classname="SwitchServiceBase updateState should set On state to false when it is requested" name="SwitchServiceBase updateState should set On state to false when it is requested" time="0">
|
|
1309
1509
|
</testcase>
|
|
1310
|
-
<testcase classname="
|
|
1510
|
+
<testcase classname="SwitchServiceBase updateEnabled should set On state to false when service is disabled" name="SwitchServiceBase updateEnabled should set On state to false when service is disabled" time="0">
|
|
1311
1511
|
</testcase>
|
|
1312
|
-
<testcase classname="
|
|
1512
|
+
<testcase classname="SwitchServiceBase characteristics On onGet should get On value when device is online" name="SwitchServiceBase characteristics On onGet should get On value when device is online" time="0.001">
|
|
1313
1513
|
</testcase>
|
|
1314
|
-
<testcase classname="
|
|
1514
|
+
<testcase classname="SwitchServiceBase characteristics On onGet should throw an error when getting On value but device is offline" name="SwitchServiceBase characteristics On onGet should throw an error when getting On value but device is offline" time="0.002">
|
|
1315
1515
|
</testcase>
|
|
1316
|
-
<testcase classname="
|
|
1516
|
+
<testcase classname="SwitchServiceBase characteristics On onSet should set On value when device is online" name="SwitchServiceBase characteristics On onSet should set On value when device is online" time="0.001">
|
|
1317
1517
|
</testcase>
|
|
1318
|
-
<testcase classname="
|
|
1518
|
+
<testcase classname="SwitchServiceBase characteristics On onSet should throw an error when setting On value but device is offline" name="SwitchServiceBase characteristics On onSet should throw an error when setting On value but device is offline" time="0.001">
|
|
1319
1519
|
</testcase>
|
|
1320
|
-
<testcase classname="
|
|
1520
|
+
<testcase classname="SwitchServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" name="SwitchServiceBase characteristics On onSet should throw an error when setting On value but service is disabled" time="0.001">
|
|
1521
|
+
</testcase>
|
|
1522
|
+
<testcase classname="SwitchServiceBase characteristics On onSet should revert changing of On state when it is failed" name="SwitchServiceBase characteristics On onSet should revert changing of On state when it is failed" time="0.001">
|
|
1321
1523
|
</testcase>
|
|
1322
|
-
|
|
1524
|
+
</testsuite>
|
|
1525
|
+
<testsuite name="ThermostatAirConditionerService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:25" time="1.779" tests="10">
|
|
1526
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetState should send Set command of PowerMode operateType to device when value is updated to Off" name="ThermostatAirConditionerService processOnSetTargetState should send Set command of PowerMode operateType to device when value is updated to Off" time="0.03">
|
|
1323
1527
|
</testcase>
|
|
1324
|
-
<testcase classname="
|
|
1528
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Cool" name="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Cool" time="0.503">
|
|
1325
1529
|
</testcase>
|
|
1326
|
-
<testcase classname="
|
|
1530
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Heat" name="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Heat" time="0.503">
|
|
1327
1531
|
</testcase>
|
|
1328
|
-
<testcase classname="
|
|
1532
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Auto" name="ThermostatAirConditionerService processOnSetTargetState should send Set commands of PowerMode and MainMode operateType to device when value is updated to Auto" time="0.504">
|
|
1329
1533
|
</testcase>
|
|
1330
|
-
<testcase classname="
|
|
1534
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetState should revert changing of TargetState when sending Set command to device is failed" name="ThermostatAirConditionerService processOnSetTargetState should revert changing of TargetState when sending Set command to device is failed" time="0.006">
|
|
1331
1535
|
</testcase>
|
|
1332
|
-
<testcase classname="
|
|
1536
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.004">
|
|
1333
1537
|
</testcase>
|
|
1334
|
-
<testcase classname="
|
|
1538
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" name="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" time="0.002">
|
|
1335
1539
|
</testcase>
|
|
1336
|
-
<testcase classname="
|
|
1540
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" name="ThermostatAirConditionerService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" time="0.002">
|
|
1337
1541
|
</testcase>
|
|
1338
|
-
<testcase classname="
|
|
1542
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" name="ThermostatAirConditionerService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" time="0.002">
|
|
1339
1543
|
</testcase>
|
|
1340
|
-
<testcase classname="
|
|
1544
|
+
<testcase classname="ThermostatAirConditionerService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatAirConditionerService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0.002">
|
|
1341
1545
|
</testcase>
|
|
1342
|
-
|
|
1546
|
+
</testsuite>
|
|
1547
|
+
<testsuite name="FanModeService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:26" time="0.829" tests="12">
|
|
1548
|
+
<testcase classname="FanModeService setOn should not allow to set value when it is updated from UI" name="FanModeService setOn should not allow to set value when it is updated from UI" time="0.004">
|
|
1343
1549
|
</testcase>
|
|
1344
|
-
<testcase classname="
|
|
1550
|
+
<testcase classname="FanModeService updateState should set On state to true when it is requested" name="FanModeService updateState should set On state to true when it is requested" time="0.001">
|
|
1345
1551
|
</testcase>
|
|
1346
|
-
<testcase classname="
|
|
1552
|
+
<testcase classname="FanModeService updatePositionedRotationSpeed should set 100% rotation speed when Fan Mode is set to High" name="FanModeService updatePositionedRotationSpeed should set 100% rotation speed when Fan Mode is set to High" time="0.001">
|
|
1347
1553
|
</testcase>
|
|
1348
|
-
<testcase classname="
|
|
1554
|
+
<testcase classname="FanModeService updatePositionedRotationSpeed should set 67% rotation speed when Fan Mode is set to Medium" name="FanModeService updatePositionedRotationSpeed should set 67% rotation speed when Fan Mode is set to Medium" time="0.001">
|
|
1349
1555
|
</testcase>
|
|
1350
|
-
<testcase classname="
|
|
1556
|
+
<testcase classname="FanModeService updatePositionedRotationSpeed should set 33% rotation speed when Fan Mode is set to Low" name="FanModeService updatePositionedRotationSpeed should set 33% rotation speed when Fan Mode is set to Low" time="0.001">
|
|
1351
1557
|
</testcase>
|
|
1352
|
-
<testcase classname="
|
|
1558
|
+
<testcase classname="FanModeService processOnSetOn should send Set command with main mode set to Fan to device when On value was changed to true" name="FanModeService processOnSetOn should send Set command with main mode set to Fan to device when On value was changed to true" time="0.001">
|
|
1353
1559
|
</testcase>
|
|
1354
|
-
<testcase classname="
|
|
1560
|
+
<testcase classname="FanModeService processOnSetOn should send Set command with powerMode set to Off to device when On value was changed to false" name="FanModeService processOnSetOn should send Set command with powerMode set to Off to device when On value was changed to false" time="0.001">
|
|
1355
1561
|
</testcase>
|
|
1356
|
-
<testcase classname="
|
|
1562
|
+
<testcase classname="FanModeService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="FanModeService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1357
1563
|
</testcase>
|
|
1358
|
-
<testcase classname="
|
|
1564
|
+
<testcase classname="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to Low to device when Fan Mode value was changed to 33" name="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to Low to device when Fan Mode value was changed to 33" time="0.001">
|
|
1359
1565
|
</testcase>
|
|
1360
|
-
<testcase classname="
|
|
1566
|
+
<testcase classname="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to Medium to device when Fan Mode value was changed to 67" name="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to Medium to device when Fan Mode value was changed to 67" time="0.001">
|
|
1567
|
+
</testcase>
|
|
1568
|
+
<testcase classname="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to High to device when Fan Mode value was changed to 100" name="FanModeService processOnSetPositionedRotationSpeed should send Set command with fanValue set to High to device when Fan Mode value was changed to 100" time="0">
|
|
1569
|
+
</testcase>
|
|
1570
|
+
<testcase classname="FanModeService processOnSetPositionedRotationSpeed should revert changing of Fan Mode when sending Set command to device is failed" name="FanModeService processOnSetPositionedRotationSpeed should revert changing of Fan Mode when sending Set command to device is failed" time="0.011">
|
|
1361
1571
|
</testcase>
|
|
1362
1572
|
</testsuite>
|
|
1363
|
-
<testsuite name="
|
|
1364
|
-
<testcase classname="
|
|
1573
|
+
<testsuite name="PluginConfigDevicesRenderer" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:24" time="3.09" tests="14">
|
|
1574
|
+
<testcase classname="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" name="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" time="0.003">
|
|
1365
1575
|
</testcase>
|
|
1366
|
-
<testcase classname="
|
|
1576
|
+
<testcase classname="PluginConfigDevicesRenderer render tabsRendering should render tabs when there are 2 devices in configuration" name="PluginConfigDevicesRenderer render tabsRendering should render tabs when there are 2 devices in configuration" time="0.049">
|
|
1367
1577
|
</testcase>
|
|
1368
|
-
<testcase classname="
|
|
1578
|
+
<testcase classname="PluginConfigDevicesRenderer render tabsRendering should render tabs when there are no devices in configuration" name="PluginConfigDevicesRenderer render tabsRendering should render tabs when there are no devices in configuration" time="0.004">
|
|
1369
1579
|
</testcase>
|
|
1370
|
-
<testcase classname="
|
|
1580
|
+
<testcase classname="PluginConfigDevicesRenderer render tabsNavigation should render form for first device in configuration by default" name="PluginConfigDevicesRenderer render tabsNavigation should render form for first device in configuration by default" time="0.014">
|
|
1371
1581
|
</testcase>
|
|
1372
|
-
<testcase classname="
|
|
1582
|
+
<testcase classname="PluginConfigDevicesRenderer render tabsNavigation should render form for second device when second tab is clicked" name="PluginConfigDevicesRenderer render tabsNavigation should render form for second device when second tab is clicked" time="0.01">
|
|
1373
1583
|
</testcase>
|
|
1374
|
-
<testcase classname="
|
|
1584
|
+
<testcase classname="PluginConfigDevicesRenderer render tabPanelsRendering should render tab panels and activate first one when there are 2 devices in configuration" name="PluginConfigDevicesRenderer render tabPanelsRendering should render tab panels and activate first one when there are 2 devices in configuration" time="0.011">
|
|
1375
1585
|
</testcase>
|
|
1376
|
-
<testcase classname="
|
|
1586
|
+
<testcase classname="PluginConfigDevicesRenderer render tabPanelsRendering should render tab panels when there are no devices in configuration" name="PluginConfigDevicesRenderer render tabPanelsRendering should render tab panels when there are no devices in configuration" time="0.003">
|
|
1377
1587
|
</testcase>
|
|
1378
|
-
<testcase classname="
|
|
1588
|
+
<testcase classname="PluginConfigDevicesRenderer render addNewDevice should render form for new device when addDeviceTab is clicked" name="PluginConfigDevicesRenderer render addNewDevice should render form for new device when addDeviceTab is clicked" time="0.036">
|
|
1379
1589
|
</testcase>
|
|
1380
|
-
<testcase classname="
|
|
1590
|
+
<testcase classname="PluginConfigDevicesRenderer render addNewDevice should render tab with default values when addDeviceTab is clicked" name="PluginConfigDevicesRenderer render addNewDevice should render tab with default values when addDeviceTab is clicked" time="0.025">
|
|
1381
1591
|
</testcase>
|
|
1382
|
-
|
|
1383
|
-
<testsuite name="PluginConfigDevicesRenderer" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:26" time="3.359" tests="14">
|
|
1384
|
-
<testcase classname="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" name="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" time="0.006">
|
|
1592
|
+
<testcase classname="PluginConfigDevicesRenderer render removeDevice should remove active tab when remove button is clicked" name="PluginConfigDevicesRenderer render removeDevice should remove active tab when remove button is clicked" time="0.017">
|
|
1385
1593
|
</testcase>
|
|
1386
|
-
<testcase classname="PluginConfigDevicesRenderer render
|
|
1594
|
+
<testcase classname="PluginConfigDevicesRenderer render removeDevice should leave addNewDevice tab only when remove button is clicked for last device" name="PluginConfigDevicesRenderer render removeDevice should leave addNewDevice tab only when remove button is clicked for last device" time="0.024">
|
|
1387
1595
|
</testcase>
|
|
1388
|
-
<testcase classname="PluginConfigDevicesRenderer render
|
|
1596
|
+
<testcase classname="PluginConfigDevicesRenderer render applyChanges should update changes when there are any made on form" name="PluginConfigDevicesRenderer render applyChanges should update changes when there are any made on form" time="0.016">
|
|
1389
1597
|
</testcase>
|
|
1390
|
-
<testcase classname="PluginConfigDevicesRenderer render
|
|
1598
|
+
<testcase classname="PluginConfigDevicesRenderer render applyChanges should update tab name when name was changed on form" name="PluginConfigDevicesRenderer render applyChanges should update tab name when name was changed on form" time="0.013">
|
|
1391
1599
|
</testcase>
|
|
1392
|
-
<testcase classname="PluginConfigDevicesRenderer render
|
|
1600
|
+
<testcase classname="PluginConfigDevicesRenderer render modelChanged should update tab name when name was changed on form" name="PluginConfigDevicesRenderer render modelChanged should update tab name when name was changed on form" time="0.01">
|
|
1393
1601
|
</testcase>
|
|
1394
|
-
|
|
1602
|
+
</testsuite>
|
|
1603
|
+
<testsuite name="OutletReadOnlyService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:27" time="0.429" tests="10">
|
|
1604
|
+
<testcase classname="OutletReadOnlyService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletReadOnlyService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1395
1605
|
</testcase>
|
|
1396
|
-
<testcase classname="
|
|
1606
|
+
<testcase classname="OutletReadOnlyService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletReadOnlyService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1397
1607
|
</testcase>
|
|
1398
|
-
<testcase classname="
|
|
1608
|
+
<testcase classname="OutletReadOnlyService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletReadOnlyService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1399
1609
|
</testcase>
|
|
1400
|
-
<testcase classname="
|
|
1610
|
+
<testcase classname="OutletReadOnlyService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletReadOnlyService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1401
1611
|
</testcase>
|
|
1402
|
-
<testcase classname="
|
|
1612
|
+
<testcase classname="OutletReadOnlyService updateStatusLowBattery should set low battery level when it is less than 20" name="OutletReadOnlyService updateStatusLowBattery should set low battery level when it is less than 20" time="0.002">
|
|
1403
1613
|
</testcase>
|
|
1404
|
-
<testcase classname="
|
|
1614
|
+
<testcase classname="OutletReadOnlyService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletReadOnlyService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
|
|
1405
1615
|
</testcase>
|
|
1406
|
-
<testcase classname="
|
|
1616
|
+
<testcase classname="OutletReadOnlyService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" name="OutletReadOnlyService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" time="0.001">
|
|
1407
1617
|
</testcase>
|
|
1408
|
-
<testcase classname="
|
|
1618
|
+
<testcase classname="OutletReadOnlyService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletReadOnlyService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1409
1619
|
</testcase>
|
|
1410
|
-
<testcase classname="
|
|
1620
|
+
<testcase classname="OutletReadOnlyService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletReadOnlyService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1621
|
+
</testcase>
|
|
1622
|
+
<testcase classname="OutletReadOnlyService processOnSetOn should not allow to set ON value" name="OutletReadOnlyService processOnSetOn should not allow to set ON value" time="0.001">
|
|
1411
1623
|
</testcase>
|
|
1412
1624
|
</testsuite>
|
|
1413
|
-
<testsuite name="
|
|
1414
|
-
<testcase classname="
|
|
1625
|
+
<testsuite name="OutletDc12vService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:27" time="0.545" tests="9">
|
|
1626
|
+
<testcase classname="OutletDc12vService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletDc12vService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.004">
|
|
1415
1627
|
</testcase>
|
|
1416
|
-
<testcase classname="
|
|
1628
|
+
<testcase classname="OutletDc12vService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletDc12vService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1417
1629
|
</testcase>
|
|
1418
|
-
<testcase classname="
|
|
1630
|
+
<testcase classname="OutletDc12vService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletDc12vService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.002">
|
|
1419
1631
|
</testcase>
|
|
1420
|
-
<testcase classname="
|
|
1632
|
+
<testcase classname="OutletDc12vService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletDc12vService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.016">
|
|
1421
1633
|
</testcase>
|
|
1422
|
-
<testcase classname="
|
|
1634
|
+
<testcase classname="OutletDc12vService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletDc12vService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.002">
|
|
1423
1635
|
</testcase>
|
|
1424
|
-
<testcase classname="
|
|
1636
|
+
<testcase classname="OutletDc12vService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletDc12vService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1425
1637
|
</testcase>
|
|
1426
|
-
<testcase classname="
|
|
1638
|
+
<testcase classname="OutletDc12vService processOnSetOn should send Set command to device when Enabled value was changed to true" name="OutletDc12vService processOnSetOn should send Set command to device when Enabled value was changed to true" time="0.002">
|
|
1427
1639
|
</testcase>
|
|
1428
|
-
<testcase classname="
|
|
1640
|
+
<testcase classname="OutletDc12vService processOnSetOn should send Set command to device when Enabled value was changed to false" name="OutletDc12vService processOnSetOn should send Set command to device when Enabled value was changed to false" time="0.001">
|
|
1429
1641
|
</testcase>
|
|
1430
|
-
<testcase classname="
|
|
1642
|
+
<testcase classname="OutletDc12vService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletDc12vService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
|
|
1431
1643
|
</testcase>
|
|
1432
1644
|
</testsuite>
|
|
1433
|
-
<testsuite name="OutletAcHvService" errors="0" failures="0" skipped="0" timestamp="
|
|
1434
|
-
<testcase classname="OutletAcHvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcHvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.
|
|
1645
|
+
<testsuite name="OutletAcHvService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:27" time="0.476" tests="9">
|
|
1646
|
+
<testcase classname="OutletAcHvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcHvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.004">
|
|
1435
1647
|
</testcase>
|
|
1436
|
-
<testcase classname="OutletAcHvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcHvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.
|
|
1648
|
+
<testcase classname="OutletAcHvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcHvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1437
1649
|
</testcase>
|
|
1438
|
-
<testcase classname="OutletAcHvService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcHvService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.
|
|
1650
|
+
<testcase classname="OutletAcHvService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcHvService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1439
1651
|
</testcase>
|
|
1440
1652
|
<testcase classname="OutletAcHvService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletAcHvService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1441
1653
|
</testcase>
|
|
1442
|
-
<testcase classname="OutletAcHvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcHvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.
|
|
1654
|
+
<testcase classname="OutletAcHvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcHvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1443
1655
|
</testcase>
|
|
1444
1656
|
<testcase classname="OutletAcHvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletAcHvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1445
1657
|
</testcase>
|
|
@@ -1447,39 +1659,79 @@
|
|
|
1447
1659
|
</testcase>
|
|
1448
1660
|
<testcase classname="OutletAcHvService processOnSetOn should send Set command to device when Enabled value was changed to false" name="OutletAcHvService processOnSetOn should send Set command to device when Enabled value was changed to false" time="0.001">
|
|
1449
1661
|
</testcase>
|
|
1450
|
-
<testcase classname="OutletAcHvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcHvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.
|
|
1662
|
+
<testcase classname="OutletAcHvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcHvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
|
|
1663
|
+
</testcase>
|
|
1664
|
+
</testsuite>
|
|
1665
|
+
<testsuite name="OutletAcLvService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:27" time="0.539" tests="9">
|
|
1666
|
+
<testcase classname="OutletAcLvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcLvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.006">
|
|
1667
|
+
</testcase>
|
|
1668
|
+
<testcase classname="OutletAcLvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcLvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1669
|
+
</testcase>
|
|
1670
|
+
<testcase classname="OutletAcLvService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcLvService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1671
|
+
</testcase>
|
|
1672
|
+
<testcase classname="OutletAcLvService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletAcLvService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1673
|
+
</testcase>
|
|
1674
|
+
<testcase classname="OutletAcLvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcLvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1675
|
+
</testcase>
|
|
1676
|
+
<testcase classname="OutletAcLvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletAcLvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1677
|
+
</testcase>
|
|
1678
|
+
<testcase classname="OutletAcLvService processOnSetOn should send Set command to device when Enabled value was changed to true" name="OutletAcLvService processOnSetOn should send Set command to device when Enabled value was changed to true" time="0.001">
|
|
1679
|
+
</testcase>
|
|
1680
|
+
<testcase classname="OutletAcLvService processOnSetOn should send Set command to device when Enabled value was changed to false" name="OutletAcLvService processOnSetOn should send Set command to device when Enabled value was changed to false" time="0.013">
|
|
1681
|
+
</testcase>
|
|
1682
|
+
<testcase classname="OutletAcLvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcLvService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
|
|
1451
1683
|
</testcase>
|
|
1452
1684
|
</testsuite>
|
|
1453
|
-
<testsuite name="
|
|
1685
|
+
<testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:27" time="0.488" tests="9">
|
|
1686
|
+
<testcase classname="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1687
|
+
</testcase>
|
|
1688
|
+
<testcase classname="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1689
|
+
</testcase>
|
|
1690
|
+
<testcase classname="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1691
|
+
</testcase>
|
|
1692
|
+
<testcase classname="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.011">
|
|
1693
|
+
</testcase>
|
|
1694
|
+
<testcase classname="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1695
|
+
</testcase>
|
|
1696
|
+
<testcase classname="OutletAcService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletAcService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1697
|
+
</testcase>
|
|
1698
|
+
<testcase classname="OutletAcService processOnSetOn should send Set command to device when Enabled value was changed to true" name="OutletAcService processOnSetOn should send Set command to device when Enabled value was changed to true" time="0.002">
|
|
1699
|
+
</testcase>
|
|
1700
|
+
<testcase classname="OutletAcService processOnSetOn should send Set command to device when Enabled value was changed to false" name="OutletAcService processOnSetOn should send Set command to device when Enabled value was changed to false" time="0">
|
|
1701
|
+
</testcase>
|
|
1702
|
+
<testcase classname="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
|
|
1703
|
+
</testcase>
|
|
1704
|
+
</testsuite>
|
|
1705
|
+
<testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:28" time="0.427" tests="9">
|
|
1454
1706
|
<testcase classname="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1455
1707
|
</testcase>
|
|
1456
1708
|
<testcase classname="OutletUsbService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletUsbService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1457
1709
|
</testcase>
|
|
1458
1710
|
<testcase classname="OutletUsbService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletUsbService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1459
1711
|
</testcase>
|
|
1460
|
-
<testcase classname="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0
|
|
1712
|
+
<testcase classname="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0">
|
|
1461
1713
|
</testcase>
|
|
1462
1714
|
<testcase classname="OutletUsbService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletUsbService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1463
1715
|
</testcase>
|
|
1464
1716
|
<testcase classname="OutletUsbService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletUsbService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
|
|
1465
1717
|
</testcase>
|
|
1466
|
-
<testcase classname="OutletUsbService processOnSetOn should send Set command to device when On value was changed to true" name="OutletUsbService processOnSetOn should send Set command to device when On value was changed to true" time="0.
|
|
1718
|
+
<testcase classname="OutletUsbService processOnSetOn should send Set command to device when On value was changed to true" name="OutletUsbService processOnSetOn should send Set command to device when On value was changed to true" time="0.001">
|
|
1467
1719
|
</testcase>
|
|
1468
1720
|
<testcase classname="OutletUsbService processOnSetOn should send Set command to device when On value was changed to false" name="OutletUsbService processOnSetOn should send Set command to device when On value was changed to false" time="0.001">
|
|
1469
1721
|
</testcase>
|
|
1470
|
-
<testcase classname="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0">
|
|
1722
|
+
<testcase classname="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1471
1723
|
</testcase>
|
|
1472
1724
|
</testsuite>
|
|
1473
|
-
<testsuite name="PowerDemandService" errors="0" failures="0" skipped="0" timestamp="
|
|
1474
|
-
<testcase classname="PowerDemandService setOn should not allow to set value when it is updated from UI" name="PowerDemandService setOn should not allow to set value when it is updated from UI" time="0.
|
|
1725
|
+
<testsuite name="PowerDemandService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:28" time="0.458" tests="11">
|
|
1726
|
+
<testcase classname="PowerDemandService setOn should not allow to set value when it is updated from UI" name="PowerDemandService setOn should not allow to set value when it is updated from UI" time="0.003">
|
|
1475
1727
|
</testcase>
|
|
1476
|
-
<testcase classname="PowerDemandService updateState should set On state to true when it is requested" name="PowerDemandService updateState should set On state to true when it is requested" time="0.
|
|
1728
|
+
<testcase classname="PowerDemandService updateState should set On state to true when it is requested" name="PowerDemandService updateState should set On state to true when it is requested" time="0.001">
|
|
1477
1729
|
</testcase>
|
|
1478
|
-
<testcase classname="PowerDemandService updatePowerDemand should set 100% power demand when maximum value is set" name="PowerDemandService updatePowerDemand should set 100% power demand when maximum value is set" time="0.
|
|
1730
|
+
<testcase classname="PowerDemandService updatePowerDemand should set 100% power demand when maximum value is set" name="PowerDemandService updatePowerDemand should set 100% power demand when maximum value is set" time="0.001">
|
|
1479
1731
|
</testcase>
|
|
1480
1732
|
<testcase classname="PowerDemandService updatePowerDemand should set 0% power demand when minimum value is set" name="PowerDemandService updatePowerDemand should set 0% power demand when minimum value is set" time="0.001">
|
|
1481
1733
|
</testcase>
|
|
1482
|
-
<testcase classname="PowerDemandService updatePowerDemand should set power demand when it is requested" name="PowerDemandService updatePowerDemand should set power demand when it is requested" time="0.
|
|
1734
|
+
<testcase classname="PowerDemandService updatePowerDemand should set power demand when it is requested" name="PowerDemandService updatePowerDemand should set power demand when it is requested" time="0.001">
|
|
1483
1735
|
</testcase>
|
|
1484
1736
|
<testcase classname="PowerDemandService updatePowerDemand should revert changing of power demand to value set from UI when sending Set command to device is failed" name="PowerDemandService updatePowerDemand should revert changing of power demand to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1485
1737
|
</testcase>
|
|
@@ -1489,21 +1741,21 @@
|
|
|
1489
1741
|
</testcase>
|
|
1490
1742
|
<testcase classname="PowerDemandService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="PowerDemandService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1491
1743
|
</testcase>
|
|
1492
|
-
<testcase classname="PowerDemandService
|
|
1744
|
+
<testcase classname="PowerDemandService processOnSetRotationSpeed should send Set command to device when Power Demand value was changed" name="PowerDemandService processOnSetRotationSpeed should send Set command to device when Power Demand value was changed" time="0.001">
|
|
1493
1745
|
</testcase>
|
|
1494
|
-
<testcase classname="PowerDemandService
|
|
1746
|
+
<testcase classname="PowerDemandService processOnSetRotationSpeed should revert changing of Power Demand when sending Set command to device is failed" name="PowerDemandService processOnSetRotationSpeed should revert changing of Power Demand when sending Set command to device is failed" time="0.001">
|
|
1495
1747
|
</testcase>
|
|
1496
1748
|
</testsuite>
|
|
1497
|
-
<testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="
|
|
1498
|
-
<testcase classname="BrightnessService setOn should not allow to set value when it is updated from UI" name="BrightnessService setOn should not allow to set value when it is updated from UI" time="0.
|
|
1749
|
+
<testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:28" time="0.451" tests="11">
|
|
1750
|
+
<testcase classname="BrightnessService setOn should not allow to set value when it is updated from UI" name="BrightnessService setOn should not allow to set value when it is updated from UI" time="0.002">
|
|
1499
1751
|
</testcase>
|
|
1500
|
-
<testcase classname="BrightnessService updateState should set On state to true when it is requested" name="BrightnessService updateState should set On state to true when it is requested" time="0
|
|
1752
|
+
<testcase classname="BrightnessService updateState should set On state to true when it is requested" name="BrightnessService updateState should set On state to true when it is requested" time="0">
|
|
1501
1753
|
</testcase>
|
|
1502
|
-
<testcase classname="BrightnessService updateBrightness should set 100% brightness when maximum value is set" name="BrightnessService updateBrightness should set 100% brightness when maximum value is set" time="0.
|
|
1754
|
+
<testcase classname="BrightnessService updateBrightness should set 100% brightness when maximum value is set" name="BrightnessService updateBrightness should set 100% brightness when maximum value is set" time="0.001">
|
|
1503
1755
|
</testcase>
|
|
1504
|
-
<testcase classname="BrightnessService updateBrightness should set 0% brightness when minimum value is set" name="BrightnessService updateBrightness should set 0% brightness when minimum value is set" time="0
|
|
1756
|
+
<testcase classname="BrightnessService updateBrightness should set 0% brightness when minimum value is set" name="BrightnessService updateBrightness should set 0% brightness when minimum value is set" time="0">
|
|
1505
1757
|
</testcase>
|
|
1506
|
-
<testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0
|
|
1758
|
+
<testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0">
|
|
1507
1759
|
</testcase>
|
|
1508
1760
|
<testcase classname="BrightnessService updateBrightness should revert changing of Brightness to value set from UI when sending Set command to device is failed" name="BrightnessService updateBrightness should revert changing of Brightness to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1509
1761
|
</testcase>
|
|
@@ -1513,43 +1765,43 @@
|
|
|
1513
1765
|
</testcase>
|
|
1514
1766
|
<testcase classname="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1515
1767
|
</testcase>
|
|
1516
|
-
<testcase classname="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" name="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" time="0.
|
|
1768
|
+
<testcase classname="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" name="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" time="0.001">
|
|
1517
1769
|
</testcase>
|
|
1518
|
-
<testcase classname="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" name="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" time="0.
|
|
1770
|
+
<testcase classname="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" name="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" time="0.007">
|
|
1519
1771
|
</testcase>
|
|
1520
1772
|
</testsuite>
|
|
1521
|
-
<testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="
|
|
1773
|
+
<testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:28" time="0.41" tests="11">
|
|
1522
1774
|
<testcase classname="BrightnessService setOn should not allow to set value when it is updated from UI" name="BrightnessService setOn should not allow to set value when it is updated from UI" time="0.003">
|
|
1523
1775
|
</testcase>
|
|
1524
1776
|
<testcase classname="BrightnessService updateState should set On state to true when it is requested" name="BrightnessService updateState should set On state to true when it is requested" time="0.001">
|
|
1525
1777
|
</testcase>
|
|
1526
1778
|
<testcase classname="BrightnessService updateBrightness should set 100% brightness when maximum value is set" name="BrightnessService updateBrightness should set 100% brightness when maximum value is set" time="0.001">
|
|
1527
1779
|
</testcase>
|
|
1528
|
-
<testcase classname="BrightnessService updateBrightness should set 0% brightness when minimum value is set" name="BrightnessService updateBrightness should set 0% brightness when minimum value is set" time="0">
|
|
1780
|
+
<testcase classname="BrightnessService updateBrightness should set 0% brightness when minimum value is set" name="BrightnessService updateBrightness should set 0% brightness when minimum value is set" time="0.009">
|
|
1529
1781
|
</testcase>
|
|
1530
|
-
<testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0">
|
|
1782
|
+
<testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0.001">
|
|
1531
1783
|
</testcase>
|
|
1532
1784
|
<testcase classname="BrightnessService updateBrightness should revert changing of Brightness to value set from UI when sending Set command to device is failed" name="BrightnessService updateBrightness should revert changing of Brightness to value set from UI when sending Set command to device is failed" time="0.001">
|
|
1533
1785
|
</testcase>
|
|
1534
|
-
<testcase classname="BrightnessService processOnSetOn should send Set command with max brightness value to device when On value was changed to true" name="BrightnessService processOnSetOn should send Set command with max brightness value to device when On value was changed to true" time="0.
|
|
1786
|
+
<testcase classname="BrightnessService processOnSetOn should send Set command with max brightness value to device when On value was changed to true" name="BrightnessService processOnSetOn should send Set command with max brightness value to device when On value was changed to true" time="0.001">
|
|
1535
1787
|
</testcase>
|
|
1536
1788
|
<testcase classname="BrightnessService processOnSetOn should send Set command with min brightness value to device when On value was changed to false" name="BrightnessService processOnSetOn should send Set command with min brightness value to device when On value was changed to false" time="0.001">
|
|
1537
1789
|
</testcase>
|
|
1538
|
-
<testcase classname="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.
|
|
1790
|
+
<testcase classname="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="BrightnessService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1539
1791
|
</testcase>
|
|
1540
1792
|
<testcase classname="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" name="BrightnessService onBrightnessSet should send Set command to device when Brightness value was changed" time="0.001">
|
|
1541
1793
|
</testcase>
|
|
1542
|
-
<testcase classname="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" name="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" time="0">
|
|
1794
|
+
<testcase classname="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" name="BrightnessService onBrightnessSet should revert changing of Brightness when sending Set command to device is failed" time="0.001">
|
|
1543
1795
|
</testcase>
|
|
1544
1796
|
</testsuite>
|
|
1545
|
-
<testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="
|
|
1546
|
-
<testcase classname="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.
|
|
1797
|
+
<testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:28" time="0.401" tests="9">
|
|
1798
|
+
<testcase classname="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1547
1799
|
</testcase>
|
|
1548
1800
|
<testcase classname="OutletUsbService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletUsbService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1549
1801
|
</testcase>
|
|
1550
1802
|
<testcase classname="OutletUsbService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletUsbService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1551
1803
|
</testcase>
|
|
1552
|
-
<testcase classname="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0">
|
|
1804
|
+
<testcase classname="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletUsbService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1553
1805
|
</testcase>
|
|
1554
1806
|
<testcase classname="OutletUsbService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletUsbService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1555
1807
|
</testcase>
|
|
@@ -1559,75 +1811,51 @@
|
|
|
1559
1811
|
</testcase>
|
|
1560
1812
|
<testcase classname="OutletUsbService processOnSetOn should send Set command to device when On value was changed to false" name="OutletUsbService processOnSetOn should send Set command to device when On value was changed to false" time="0.001">
|
|
1561
1813
|
</testcase>
|
|
1562
|
-
<testcase classname="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.
|
|
1814
|
+
<testcase classname="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletUsbService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1563
1815
|
</testcase>
|
|
1564
1816
|
</testsuite>
|
|
1565
|
-
<testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="
|
|
1566
|
-
<testcase classname="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.
|
|
1817
|
+
<testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.398" tests="9">
|
|
1818
|
+
<testcase classname="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.002">
|
|
1567
1819
|
</testcase>
|
|
1568
|
-
<testcase classname="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0
|
|
1820
|
+
<testcase classname="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0">
|
|
1569
1821
|
</testcase>
|
|
1570
1822
|
<testcase classname="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1571
1823
|
</testcase>
|
|
1572
|
-
<testcase classname="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0">
|
|
1824
|
+
<testcase classname="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1573
1825
|
</testcase>
|
|
1574
1826
|
<testcase classname="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1575
1827
|
</testcase>
|
|
1576
|
-
<testcase classname="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0
|
|
1828
|
+
<testcase classname="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0">
|
|
1577
1829
|
</testcase>
|
|
1578
|
-
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" time="0
|
|
1830
|
+
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" time="0">
|
|
1579
1831
|
</testcase>
|
|
1580
1832
|
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" time="0.001">
|
|
1581
1833
|
</testcase>
|
|
1582
1834
|
<testcase classname="OutletCarService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletCarService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1583
1835
|
</testcase>
|
|
1584
1836
|
</testsuite>
|
|
1585
|
-
<testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="
|
|
1586
|
-
<testcase classname="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.
|
|
1837
|
+
<testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.364" tests="9">
|
|
1838
|
+
<testcase classname="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletCarService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.002">
|
|
1587
1839
|
</testcase>
|
|
1588
|
-
<testcase classname="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0
|
|
1840
|
+
<testcase classname="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletCarService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0">
|
|
1589
1841
|
</testcase>
|
|
1590
|
-
<testcase classname="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.
|
|
1842
|
+
<testcase classname="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletCarService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1591
1843
|
</testcase>
|
|
1592
|
-
<testcase classname="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.
|
|
1844
|
+
<testcase classname="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletCarService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.007">
|
|
1593
1845
|
</testcase>
|
|
1594
|
-
<testcase classname="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0
|
|
1846
|
+
<testcase classname="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletCarService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0">
|
|
1595
1847
|
</testcase>
|
|
1596
|
-
<testcase classname="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0
|
|
1848
|
+
<testcase classname="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletCarService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0">
|
|
1597
1849
|
</testcase>
|
|
1598
1850
|
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to true" time="0.001">
|
|
1599
1851
|
</testcase>
|
|
1600
|
-
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" time="0">
|
|
1852
|
+
<testcase classname="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" name="OutletCarService processOnSetOn should send Set command to device when On value was changed to false" time="0.001">
|
|
1601
1853
|
</testcase>
|
|
1602
1854
|
<testcase classname="OutletCarService processOnSetOn should revert changing of On state when sending Set command to device is failed" name="OutletCarService processOnSetOn should revert changing of On state when sending Set command to device is failed" time="0.001">
|
|
1603
1855
|
</testcase>
|
|
1604
1856
|
</testsuite>
|
|
1605
|
-
<testsuite name="
|
|
1606
|
-
<testcase classname="
|
|
1607
|
-
</testcase>
|
|
1608
|
-
<testcase classname="BatteryStatusService initialize should use existing Battery service when it is already added to accessory" name="BatteryStatusService initialize should use existing Battery service when it is already added to accessory" time="0.001">
|
|
1609
|
-
</testcase>
|
|
1610
|
-
<testcase classname="BatteryStatusService initialize should use existing display name of service when there is no name in configuration" name="BatteryStatusService initialize should use existing display name of service when there is no name in configuration" time="0">
|
|
1611
|
-
</testcase>
|
|
1612
|
-
<testcase classname="BatteryStatusService initialize should use name from configuration as a display name of service when there is name in configuration" name="BatteryStatusService initialize should use name from configuration as a display name of service when there is name in configuration" time="0">
|
|
1613
|
-
</testcase>
|
|
1614
|
-
<testcase classname="BatteryStatusService initialize should add Battery characteristics when initializing accessory" name="BatteryStatusService initialize should add Battery characteristics when initializing accessory" time="0.001">
|
|
1615
|
-
</testcase>
|
|
1616
|
-
<testcase classname="BatteryStatusService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="BatteryStatusService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.002">
|
|
1617
|
-
</testcase>
|
|
1618
|
-
<testcase classname="BatteryStatusService updateStatusLowBattery should set low battery level when it is less than 20" name="BatteryStatusService updateStatusLowBattery should set low battery level when it is less than 20" time="0.001">
|
|
1619
|
-
</testcase>
|
|
1620
|
-
<testcase classname="BatteryStatusService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="BatteryStatusService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
|
|
1621
|
-
</testcase>
|
|
1622
|
-
<testcase classname="BatteryStatusService updateBatteryLevel should set battery level when it is called to be set" name="BatteryStatusService updateBatteryLevel should set battery level when it is called to be set" time="0.036">
|
|
1623
|
-
</testcase>
|
|
1624
|
-
<testcase classname="BatteryStatusService updateChargingState should set charging state to false when new value is false" name="BatteryStatusService updateChargingState should set charging state to false when new value is false" time="0.001">
|
|
1625
|
-
</testcase>
|
|
1626
|
-
<testcase classname="BatteryStatusService updateChargingState should set charging state to true when new value is true" name="BatteryStatusService updateChargingState should set charging state to true when new value is true" time="0.001">
|
|
1627
|
-
</testcase>
|
|
1628
|
-
</testsuite>
|
|
1629
|
-
<testsuite name="EcoFlowHttpApiManager" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:31" time="0.466" tests="8">
|
|
1630
|
-
<testcase classname="EcoFlowHttpApiManager acquireCertificate should return null when it is failed to send http request" name="EcoFlowHttpApiManager acquireCertificate should return null when it is failed to send http request" time="0.032">
|
|
1857
|
+
<testsuite name="EcoFlowHttpApiManager" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.224" tests="8">
|
|
1858
|
+
<testcase classname="EcoFlowHttpApiManager acquireCertificate should return null when it is failed to send http request" name="EcoFlowHttpApiManager acquireCertificate should return null when it is failed to send http request" time="0.005">
|
|
1631
1859
|
</testcase>
|
|
1632
1860
|
<testcase classname="EcoFlowHttpApiManager acquireCertificate should return null when response contains non '0' code in response" name="EcoFlowHttpApiManager acquireCertificate should return null when response contains non '0' code in response" time="0.001">
|
|
1633
1861
|
</testcase>
|
|
@@ -1641,105 +1869,65 @@
|
|
|
1641
1869
|
</testcase>
|
|
1642
1870
|
<testcase classname="EcoFlowHttpApiManager getQuotas should return null when it is failed to send http request" name="EcoFlowHttpApiManager getQuotas should return null when it is failed to send http request" time="0.001">
|
|
1643
1871
|
</testcase>
|
|
1644
|
-
<testcase classname="EcoFlowHttpApiManager getQuotas should return requested quota data converted to typed object when request is successful" name="EcoFlowHttpApiManager getQuotas should return requested quota data converted to typed object when request is successful" time="0">
|
|
1872
|
+
<testcase classname="EcoFlowHttpApiManager getQuotas should return requested quota data converted to typed object when request is successful" name="EcoFlowHttpApiManager getQuotas should return requested quota data converted to typed object when request is successful" time="0.001">
|
|
1645
1873
|
</testcase>
|
|
1646
1874
|
</testsuite>
|
|
1647
|
-
<testsuite name="
|
|
1648
|
-
<testcase classname="
|
|
1649
|
-
</testcase>
|
|
1650
|
-
<testcase classname="TemperatureSensorService initialize should use existing TemperatureSensor service when it is already added to accessory" name="TemperatureSensorService initialize should use existing TemperatureSensor service when it is already added to accessory" time="0.001">
|
|
1875
|
+
<testsuite name="BatteryStatusService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.32" tests="11">
|
|
1876
|
+
<testcase classname="BatteryStatusService initialize should add Battery service when it is not added to accessory yet" name="BatteryStatusService initialize should add Battery service when it is not added to accessory yet" time="0.001">
|
|
1651
1877
|
</testcase>
|
|
1652
|
-
<testcase classname="
|
|
1653
|
-
</testcase>
|
|
1654
|
-
<testcase classname="TemperatureSensorService updateCurrentTemperature should set current temperature when it is requested" name="TemperatureSensorService updateCurrentTemperature should set current temperature when it is requested" time="0.001">
|
|
1655
|
-
</testcase>
|
|
1656
|
-
<testcase classname="TemperatureSensorService characteristics CurrentTemperature onGet should get CurrentTemperature when device is online" name="TemperatureSensorService characteristics CurrentTemperature onGet should get CurrentTemperature when device is online" time="0.001">
|
|
1657
|
-
</testcase>
|
|
1658
|
-
<testcase classname="TemperatureSensorService characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature but device is offline" name="TemperatureSensorService characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature but device is offline" time="0.003">
|
|
1659
|
-
</testcase>
|
|
1660
|
-
</testsuite>
|
|
1661
|
-
<testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:32" time="0.35" tests="7">
|
|
1662
|
-
<testcase classname="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletAcService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1663
|
-
</testcase>
|
|
1664
|
-
<testcase classname="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletAcService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
|
|
1665
|
-
</testcase>
|
|
1666
|
-
<testcase classname="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletAcService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
|
|
1667
|
-
</testcase>
|
|
1668
|
-
<testcase classname="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletAcService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
|
|
1669
|
-
</testcase>
|
|
1670
|
-
<testcase classname="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletAcService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
|
|
1878
|
+
<testcase classname="BatteryStatusService initialize should use existing Battery service when it is already added to accessory" name="BatteryStatusService initialize should use existing Battery service when it is already added to accessory" time="0.001">
|
|
1671
1879
|
</testcase>
|
|
1672
|
-
<testcase classname="
|
|
1880
|
+
<testcase classname="BatteryStatusService initialize should use existing display name of service when there is no name in configuration" name="BatteryStatusService initialize should use existing display name of service when there is no name in configuration" time="0.001">
|
|
1673
1881
|
</testcase>
|
|
1674
|
-
<testcase classname="
|
|
1882
|
+
<testcase classname="BatteryStatusService initialize should use name from configuration as a display name of service when there is name in configuration" name="BatteryStatusService initialize should use name from configuration as a display name of service when there is name in configuration" time="0">
|
|
1675
1883
|
</testcase>
|
|
1676
|
-
|
|
1677
|
-
<testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:32" time="0.452" tests="7">
|
|
1678
|
-
<testcase classname="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletUsbService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
|
|
1884
|
+
<testcase classname="BatteryStatusService initialize should add Battery characteristics when initializing accessory" name="BatteryStatusService initialize should add Battery characteristics when initializing accessory" time="0.001">
|
|
1679
1885
|
</testcase>
|
|
1680
|
-
<testcase classname="
|
|
1886
|
+
<testcase classname="BatteryStatusService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="BatteryStatusService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.001">
|
|
1681
1887
|
</testcase>
|
|
1682
|
-
<testcase classname="
|
|
1888
|
+
<testcase classname="BatteryStatusService updateStatusLowBattery should set low battery level when it is less than 20" name="BatteryStatusService updateStatusLowBattery should set low battery level when it is less than 20" time="0.001">
|
|
1683
1889
|
</testcase>
|
|
1684
|
-
<testcase classname="
|
|
1890
|
+
<testcase classname="BatteryStatusService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="BatteryStatusService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
|
|
1685
1891
|
</testcase>
|
|
1686
|
-
<testcase classname="
|
|
1892
|
+
<testcase classname="BatteryStatusService updateBatteryLevel should set battery level when it is called to be set" name="BatteryStatusService updateBatteryLevel should set battery level when it is called to be set" time="0.022">
|
|
1687
1893
|
</testcase>
|
|
1688
|
-
<testcase classname="
|
|
1894
|
+
<testcase classname="BatteryStatusService updateChargingState should set charging state to false when new value is false" name="BatteryStatusService updateChargingState should set charging state to false when new value is false" time="0.001">
|
|
1689
1895
|
</testcase>
|
|
1690
|
-
<testcase classname="
|
|
1896
|
+
<testcase classname="BatteryStatusService updateChargingState should set charging state to true when new value is true" name="BatteryStatusService updateChargingState should set charging state to true when new value is true" time="0.001">
|
|
1691
1897
|
</testcase>
|
|
1692
1898
|
</testsuite>
|
|
1693
|
-
<testsuite name="SwitchMakeIceService" errors="0" failures="0" skipped="0" timestamp="
|
|
1694
|
-
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" name="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" time="0.
|
|
1899
|
+
<testsuite name="SwitchMakeIceService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.255" tests="6">
|
|
1900
|
+
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" name="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" time="0.003">
|
|
1695
1901
|
</testcase>
|
|
1696
|
-
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" name="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" time="0">
|
|
1902
|
+
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" name="SwitchMakeIceService Small Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" time="0.001">
|
|
1697
1903
|
</testcase>
|
|
1698
|
-
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" name="SwitchMakeIceService Small Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" time="0">
|
|
1904
|
+
<testcase classname="SwitchMakeIceService Small Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" name="SwitchMakeIceService Small Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" time="0.001">
|
|
1699
1905
|
</testcase>
|
|
1700
1906
|
<testcase classname="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" name="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to true" time="0">
|
|
1701
1907
|
</testcase>
|
|
1702
|
-
<testcase classname="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" name="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" time="0">
|
|
1908
|
+
<testcase classname="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" name="SwitchMakeIceService Large Cubes processOnSetOn should send Set command to device when Make Ice Cubes value was changed to false" time="0.001">
|
|
1703
1909
|
</testcase>
|
|
1704
1910
|
<testcase classname="SwitchMakeIceService Large Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" name="SwitchMakeIceService Large Cubes processOnSetOn should revert changing of Make Ice Cubes state when sending Set command to device is failed" time="0.001">
|
|
1705
1911
|
</testcase>
|
|
1706
1912
|
</testsuite>
|
|
1707
|
-
<testsuite name="
|
|
1708
|
-
<testcase classname="
|
|
1709
|
-
</testcase>
|
|
1710
|
-
<testcase classname="MockMqttClient endAsync should do nothing when ending connection and there were no subscribeAsync calls" name="MockMqttClient endAsync should do nothing when ending connection and there were no subscribeAsync calls" time="0.154">
|
|
1913
|
+
<testsuite name="TemperatureSensorService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="0.376" tests="6">
|
|
1914
|
+
<testcase classname="TemperatureSensorService initialize should add TemperatureSensor service when it is not added to accessory yet" name="TemperatureSensorService initialize should add TemperatureSensor service when it is not added to accessory yet" time="0.002">
|
|
1711
1915
|
</testcase>
|
|
1712
|
-
<testcase classname="
|
|
1916
|
+
<testcase classname="TemperatureSensorService initialize should use existing TemperatureSensor service when it is already added to accessory" name="TemperatureSensorService initialize should use existing TemperatureSensor service when it is already added to accessory" time="0">
|
|
1713
1917
|
</testcase>
|
|
1714
|
-
<testcase classname="
|
|
1715
|
-
</testcase>
|
|
1716
|
-
<testcase classname="MockMqttClient subscribeAsync quota should emit quota when there was subscription to quota topic" name="MockMqttClient subscribeAsync quota should emit quota when there was subscription to quota topic" time="0.251">
|
|
1717
|
-
</testcase>
|
|
1718
|
-
<testcase classname="MockMqttClient subscribeAsync quota should emit quota from simulator when there was subscription to quota topic" name="MockMqttClient subscribeAsync quota should emit quota from simulator when there was subscription to quota topic" time="0.153">
|
|
1719
|
-
</testcase>
|
|
1720
|
-
<testcase classname="MockMqttClient subscribeAsync quota should not emit quota when there was no subscription to quota topic" name="MockMqttClient subscribeAsync quota should not emit quota when there was no subscription to quota topic" time="0.253">
|
|
1721
|
-
</testcase>
|
|
1722
|
-
<testcase classname="MockMqttClient subscribeAsync status should emit status when there was subscription to status topic" name="MockMqttClient subscribeAsync status should emit status when there was subscription to status topic" time="0.129">
|
|
1723
|
-
</testcase>
|
|
1724
|
-
<testcase classname="MockMqttClient subscribeAsync status should emit status from simulator when there was subscription to status topic" name="MockMqttClient subscribeAsync status should emit status from simulator when there was subscription to status topic" time="0.077">
|
|
1725
|
-
</testcase>
|
|
1726
|
-
<testcase classname="MockMqttClient subscribeAsync status should not emit status when there was no subscription to status topic" name="MockMqttClient subscribeAsync status should not emit status when there was no subscription to status topic" time="0.126">
|
|
1727
|
-
</testcase>
|
|
1728
|
-
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when simulator is not defined" name="MockMqttClient publishAsync should not emit set_reply message when simulator is not defined" time="0.001">
|
|
1729
|
-
</testcase>
|
|
1730
|
-
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when publishing to unknown topic" name="MockMqttClient publishAsync should not emit set_reply message when publishing to unknown topic" time="0.001">
|
|
1918
|
+
<testcase classname="TemperatureSensorService initialize should add TemperatureSensor characteristics when initializing accessory" name="TemperatureSensorService initialize should add TemperatureSensor characteristics when initializing accessory" time="0.001">
|
|
1731
1919
|
</testcase>
|
|
1732
|
-
<testcase classname="
|
|
1920
|
+
<testcase classname="TemperatureSensorService updateCurrentTemperature should set current temperature when it is requested" name="TemperatureSensorService updateCurrentTemperature should set current temperature when it is requested" time="0.001">
|
|
1733
1921
|
</testcase>
|
|
1734
|
-
<testcase classname="
|
|
1922
|
+
<testcase classname="TemperatureSensorService characteristics CurrentTemperature onGet should get CurrentTemperature when device is online" name="TemperatureSensorService characteristics CurrentTemperature onGet should get CurrentTemperature when device is online" time="0.001">
|
|
1735
1923
|
</testcase>
|
|
1736
|
-
<testcase classname="
|
|
1924
|
+
<testcase classname="TemperatureSensorService characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature but device is offline" name="TemperatureSensorService characteristics CurrentTemperature onGet should throw an error when getting CurrentTemperature but device is offline" time="0.009">
|
|
1737
1925
|
</testcase>
|
|
1738
1926
|
</testsuite>
|
|
1739
|
-
<testsuite name="ThermostatFridgeDualRightZoneService" errors="0" failures="0" skipped="0" timestamp="
|
|
1740
|
-
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTargetState should not allow to set Target State value" name="ThermostatFridgeDualRightZoneService processOnSetTargetState should not allow to set Target State value" time="0.
|
|
1927
|
+
<testsuite name="ThermostatFridgeDualRightZoneService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.301" tests="6">
|
|
1928
|
+
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTargetState should not allow to set Target State value" name="ThermostatFridgeDualRightZoneService processOnSetTargetState should not allow to set Target State value" time="0.002">
|
|
1741
1929
|
</testcase>
|
|
1742
|
-
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.
|
|
1930
|
+
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.001">
|
|
1743
1931
|
</testcase>
|
|
1744
1932
|
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" name="ThermostatFridgeDualRightZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" time="0.001">
|
|
1745
1933
|
</testcase>
|
|
@@ -1747,10 +1935,10 @@
|
|
|
1747
1935
|
</testcase>
|
|
1748
1936
|
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" name="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" time="0.001">
|
|
1749
1937
|
</testcase>
|
|
1750
|
-
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0">
|
|
1938
|
+
<testcase classname="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatFridgeDualRightZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0.001">
|
|
1751
1939
|
</testcase>
|
|
1752
1940
|
</testsuite>
|
|
1753
|
-
<testsuite name="ThermostatFridgeDualLeftZoneService" errors="0" failures="0" skipped="0" timestamp="
|
|
1941
|
+
<testsuite name="ThermostatFridgeDualLeftZoneService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.287" tests="6">
|
|
1754
1942
|
<testcase classname="ThermostatFridgeDualLeftZoneService processOnSetTargetState should not allow to set Target State value" name="ThermostatFridgeDualLeftZoneService processOnSetTargetState should not allow to set Target State value" time="0.003">
|
|
1755
1943
|
</testcase>
|
|
1756
1944
|
<testcase classname="ThermostatFridgeDualLeftZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatFridgeDualLeftZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.001">
|
|
@@ -1764,53 +1952,75 @@
|
|
|
1764
1952
|
<testcase classname="ThermostatFridgeDualLeftZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatFridgeDualLeftZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0.001">
|
|
1765
1953
|
</testcase>
|
|
1766
1954
|
</testsuite>
|
|
1767
|
-
<testsuite name="ThermostatFridgeSingleZoneService" errors="0" failures="0" skipped="0" timestamp="
|
|
1768
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetState should not allow to set Target State value" name="ThermostatFridgeSingleZoneService processOnSetTargetState should not allow to set Target State value" time="0.
|
|
1955
|
+
<testsuite name="ThermostatFridgeSingleZoneService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.279" tests="6">
|
|
1956
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetState should not allow to set Target State value" name="ThermostatFridgeSingleZoneService processOnSetTargetState should not allow to set Target State value" time="0.003">
|
|
1769
1957
|
</testcase>
|
|
1770
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.
|
|
1958
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Fahrenheit" time="0.001">
|
|
1771
1959
|
</testcase>
|
|
1772
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" time="0
|
|
1960
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should send Set command of TemperatureUnit operateType to device when value is updated to Celsius" time="0">
|
|
1773
1961
|
</testcase>
|
|
1774
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" time="0
|
|
1962
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" name="ThermostatFridgeSingleZoneService processOnSetTemperatureDisplayUnits should revert changing of TemperatureUnit when sending Set command to device is failed" time="0">
|
|
1775
1963
|
</testcase>
|
|
1776
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" name="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" time="0
|
|
1964
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" name="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should send Set command of Temperature operateType to device when value is updated" time="0">
|
|
1777
1965
|
</testcase>
|
|
1778
|
-
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0
|
|
1966
|
+
<testcase classname="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" name="ThermostatFridgeSingleZoneService processOnSetTargetTemperature should revert changing of Temperature when sending Set command to device is failed" time="0">
|
|
1779
1967
|
</testcase>
|
|
1780
1968
|
</testsuite>
|
|
1781
|
-
<testsuite name="MqttDevice" errors="0" failures="0" skipped="0" timestamp="
|
|
1782
|
-
<testcase classname="MqttDevice processReceivedMessage should ignore mqtt message when its topic is not supported" name="MqttDevice processReceivedMessage should ignore mqtt message when its topic is not supported" time="0.
|
|
1969
|
+
<testsuite name="MqttDevice" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.167" tests="10">
|
|
1970
|
+
<testcase classname="MqttDevice processReceivedMessage should ignore mqtt message when its topic is not supported" name="MqttDevice processReceivedMessage should ignore mqtt message when its topic is not supported" time="0.002">
|
|
1783
1971
|
</testcase>
|
|
1784
|
-
<testcase classname="MqttDevice processReceivedMessage should notify quota subscribers when quota mqtt message is received" name="MqttDevice processReceivedMessage should notify quota subscribers when quota mqtt message is received" time="0
|
|
1972
|
+
<testcase classname="MqttDevice processReceivedMessage should notify quota subscribers when quota mqtt message is received" name="MqttDevice processReceivedMessage should notify quota subscribers when quota mqtt message is received" time="0">
|
|
1785
1973
|
</testcase>
|
|
1786
|
-
<testcase classname="MqttDevice processReceivedMessage should notify set_reply subscribers when set_reply mqtt message is received" name="MqttDevice processReceivedMessage should notify set_reply subscribers when set_reply mqtt message is received" time="0
|
|
1974
|
+
<testcase classname="MqttDevice processReceivedMessage should notify set_reply subscribers when set_reply mqtt message is received" name="MqttDevice processReceivedMessage should notify set_reply subscribers when set_reply mqtt message is received" time="0">
|
|
1787
1975
|
</testcase>
|
|
1788
|
-
<testcase classname="MqttDevice processReceivedMessage should notify status subscribers when status mqtt message is received" name="MqttDevice processReceivedMessage should notify status subscribers when status mqtt message is received" time="0
|
|
1976
|
+
<testcase classname="MqttDevice processReceivedMessage should notify status subscribers when status mqtt message is received" name="MqttDevice processReceivedMessage should notify status subscribers when status mqtt message is received" time="0">
|
|
1789
1977
|
</testcase>
|
|
1790
1978
|
<testcase classname="MqttDevice processReceivedMessage should log message when it is received" name="MqttDevice processReceivedMessage should log message when it is received" time="0.001">
|
|
1791
1979
|
</testcase>
|
|
1792
|
-
<testcase classname="MqttDevice subscribeOnMessage should ignore subscription to topic when it is not supported" name="MqttDevice subscribeOnMessage should ignore subscription to topic when it is not supported" time="0
|
|
1980
|
+
<testcase classname="MqttDevice subscribeOnMessage should ignore subscription to topic when it is not supported" name="MqttDevice subscribeOnMessage should ignore subscription to topic when it is not supported" time="0">
|
|
1793
1981
|
</testcase>
|
|
1794
|
-
<testcase classname="MqttDevice subscribeOnMessage should subscribe on quota$ observable and return subscription when subscribing on quota topic" name="MqttDevice subscribeOnMessage should subscribe on quota$ observable and return subscription when subscribing on quota topic" time="0
|
|
1982
|
+
<testcase classname="MqttDevice subscribeOnMessage should subscribe on quota$ observable and return subscription when subscribing on quota topic" name="MqttDevice subscribeOnMessage should subscribe on quota$ observable and return subscription when subscribing on quota topic" time="0">
|
|
1795
1983
|
</testcase>
|
|
1796
|
-
<testcase classname="MqttDevice subscribeOnMessage should subscribe on quota$ observable when subscribing on quota topic" name="MqttDevice subscribeOnMessage should subscribe on quota$ observable when subscribing on quota topic" time="0
|
|
1984
|
+
<testcase classname="MqttDevice subscribeOnMessage should subscribe on quota$ observable when subscribing on quota topic" name="MqttDevice subscribeOnMessage should subscribe on quota$ observable when subscribing on quota topic" time="0">
|
|
1797
1985
|
</testcase>
|
|
1798
|
-
<testcase classname="MqttDevice subscribeOnMessage should subscribe on setReply$ observable when subscribing on set_reply topic" name="MqttDevice subscribeOnMessage should subscribe on setReply$ observable when subscribing on set_reply topic" time="0
|
|
1986
|
+
<testcase classname="MqttDevice subscribeOnMessage should subscribe on setReply$ observable when subscribing on set_reply topic" name="MqttDevice subscribeOnMessage should subscribe on setReply$ observable when subscribing on set_reply topic" time="0">
|
|
1799
1987
|
</testcase>
|
|
1800
1988
|
<testcase classname="MqttDevice subscribeOnMessage should subscribe on status$ observable when subscribing on status topic" name="MqttDevice subscribeOnMessage should subscribe on status$ observable when subscribing on status topic" time="0.001">
|
|
1801
1989
|
</testcase>
|
|
1802
1990
|
</testsuite>
|
|
1803
|
-
<testsuite name="
|
|
1804
|
-
<testcase classname="
|
|
1991
|
+
<testsuite name="MockMqttClient" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:29" time="1.774" tests="15">
|
|
1992
|
+
<testcase classname="MockMqttClient initialize should mock connection when create new instance of mock mqtt client" name="MockMqttClient initialize should mock connection when create new instance of mock mqtt client" time="0.002">
|
|
1805
1993
|
</testcase>
|
|
1806
|
-
<testcase classname="
|
|
1994
|
+
<testcase classname="MockMqttClient endAsync should do nothing when ending connection and there were no subscribeAsync calls" name="MockMqttClient endAsync should do nothing when ending connection and there were no subscribeAsync calls" time="0.151">
|
|
1807
1995
|
</testcase>
|
|
1808
|
-
<testcase classname="
|
|
1996
|
+
<testcase classname="MockMqttClient endAsync should stop emitting quota when ending connection and there was subscription to quota topic" name="MockMqttClient endAsync should stop emitting quota when ending connection and there was subscription to quota topic" time="0.402">
|
|
1809
1997
|
</testcase>
|
|
1810
|
-
<testcase classname="
|
|
1998
|
+
<testcase classname="MockMqttClient subscribeAsync should return empty array of subscriptions when subscribeAsync is called" name="MockMqttClient subscribeAsync should return empty array of subscriptions when subscribeAsync is called" time="0.001">
|
|
1999
|
+
</testcase>
|
|
2000
|
+
<testcase classname="MockMqttClient subscribeAsync quota should emit quota when there was subscription to quota topic" name="MockMqttClient subscribeAsync quota should emit quota when there was subscription to quota topic" time="0.251">
|
|
2001
|
+
</testcase>
|
|
2002
|
+
<testcase classname="MockMqttClient subscribeAsync quota should emit quota from simulator when there was subscription to quota topic" name="MockMqttClient subscribeAsync quota should emit quota from simulator when there was subscription to quota topic" time="0.154">
|
|
2003
|
+
</testcase>
|
|
2004
|
+
<testcase classname="MockMqttClient subscribeAsync quota should not emit quota when there was no subscription to quota topic" name="MockMqttClient subscribeAsync quota should not emit quota when there was no subscription to quota topic" time="0.252">
|
|
2005
|
+
</testcase>
|
|
2006
|
+
<testcase classname="MockMqttClient subscribeAsync status should emit status when there was subscription to status topic" name="MockMqttClient subscribeAsync status should emit status when there was subscription to status topic" time="0.126">
|
|
2007
|
+
</testcase>
|
|
2008
|
+
<testcase classname="MockMqttClient subscribeAsync status should emit status from simulator when there was subscription to status topic" name="MockMqttClient subscribeAsync status should emit status from simulator when there was subscription to status topic" time="0.078">
|
|
2009
|
+
</testcase>
|
|
2010
|
+
<testcase classname="MockMqttClient subscribeAsync status should not emit status when there was no subscription to status topic" name="MockMqttClient subscribeAsync status should not emit status when there was no subscription to status topic" time="0.125">
|
|
2011
|
+
</testcase>
|
|
2012
|
+
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when simulator is not defined" name="MockMqttClient publishAsync should not emit set_reply message when simulator is not defined" time="0.001">
|
|
2013
|
+
</testcase>
|
|
2014
|
+
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when publishing to unknown topic" name="MockMqttClient publishAsync should not emit set_reply message when publishing to unknown topic" time="0">
|
|
2015
|
+
</testcase>
|
|
2016
|
+
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when there is subscription to 'quota' topic only" name="MockMqttClient publishAsync should not emit set_reply message when there is subscription to 'quota' topic only" time="0.001">
|
|
2017
|
+
</testcase>
|
|
2018
|
+
<testcase classname="MockMqttClient publishAsync should not emit set_reply message when there is subscription to 'status' topic only" name="MockMqttClient publishAsync should not emit set_reply message when there is subscription to 'status' topic only" time="0.001">
|
|
2019
|
+
</testcase>
|
|
2020
|
+
<testcase classname="MockMqttClient publishAsync should emit set_reply message when there is subscription for set_reply topic" name="MockMqttClient publishAsync should emit set_reply message when there is subscription for set_reply topic" time="0.003">
|
|
1811
2021
|
</testcase>
|
|
1812
2022
|
</testsuite>
|
|
1813
|
-
<testsuite name="ContactSensorService" errors="0" failures="0" skipped="0" timestamp="
|
|
2023
|
+
<testsuite name="ContactSensorService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.298" tests="5">
|
|
1814
2024
|
<testcase classname="ContactSensorService initialize should add ContactSensor characteristics when initializing accessory" name="ContactSensorService initialize should add ContactSensor characteristics when initializing accessory" time="0.002">
|
|
1815
2025
|
</testcase>
|
|
1816
2026
|
<testcase classname="ContactSensorService updateState should set ContactSensor to CONTACT_DETECTED when update state with closed = true" name="ContactSensorService updateState should set ContactSensor to CONTACT_DETECTED when update state with closed = true" time="0.001">
|
|
@@ -1822,7 +2032,17 @@
|
|
|
1822
2032
|
<testcase classname="ContactSensorService characteristics ContactSensorState onGet should throw an error when getting ContactSensorState but device is offline" name="ContactSensorService characteristics ContactSensorState onGet should throw an error when getting ContactSensorState but device is offline" time="0.002">
|
|
1823
2033
|
</testcase>
|
|
1824
2034
|
</testsuite>
|
|
1825
|
-
<testsuite name="
|
|
2035
|
+
<testsuite name="DiscoveryAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.297" tests="4">
|
|
2036
|
+
<testcase classname="DiscoveryAccessory initialize should add required services when initializing accessory" name="DiscoveryAccessory initialize should add required services when initializing accessory" time="0.003">
|
|
2037
|
+
</testcase>
|
|
2038
|
+
<testcase classname="DiscoveryAccessory processQuotaMessage Default should log quota when any message is received" name="DiscoveryAccessory processQuotaMessage Default should log quota when any message is received" time="0.011">
|
|
2039
|
+
</testcase>
|
|
2040
|
+
<testcase classname="DiscoveryAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="DiscoveryAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.001">
|
|
2041
|
+
</testcase>
|
|
2042
|
+
<testcase classname="DiscoveryAccessory initializeQuota should log quota when initializing default values" name="DiscoveryAccessory initializeQuota should log quota when initializing default values" time="0.001">
|
|
2043
|
+
</testcase>
|
|
2044
|
+
</testsuite>
|
|
2045
|
+
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:30" time="0.295" tests="4">
|
|
1826
2046
|
<testcase classname="SwitchXboostService processOnSetOn should send Set command of MPPT moduleType to device
|
|
1827
2047
|
when X-Boost value was changed to true and service was initialized with MPPT setAcModuleType" name="SwitchXboostService processOnSetOn should send Set command of MPPT moduleType to device
|
|
1828
2048
|
when X-Boost value was changed to true and service was initialized with MPPT setAcModuleType" time="0.003">
|
|
@@ -1831,15 +2051,15 @@
|
|
|
1831
2051
|
when X-Boost value was changed to true and service was initialized with INV setAcModuleType" name="SwitchXboostService processOnSetOn should send Set command of INV moduleType to device
|
|
1832
2052
|
when X-Boost value was changed to true and service was initialized with INV setAcModuleType" time="0.001">
|
|
1833
2053
|
</testcase>
|
|
1834
|
-
<testcase classname="SwitchXboostService processOnSetOn should send Set command of INV moduleType to device when X-Boost value was changed to false" name="SwitchXboostService processOnSetOn should send Set command of INV moduleType to device when X-Boost value was changed to false" time="0.
|
|
2054
|
+
<testcase classname="SwitchXboostService processOnSetOn should send Set command of INV moduleType to device when X-Boost value was changed to false" name="SwitchXboostService processOnSetOn should send Set command of INV moduleType to device when X-Boost value was changed to false" time="0.001">
|
|
1835
2055
|
</testcase>
|
|
1836
2056
|
<testcase classname="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
|
|
1837
2057
|
</testcase>
|
|
1838
2058
|
</testsuite>
|
|
1839
|
-
<testsuite name="EcoFlowAccessoryWithQuotaBase" errors="0" failures="0" skipped="0" timestamp="
|
|
1840
|
-
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.
|
|
2059
|
+
<testsuite name="EcoFlowAccessoryWithQuotaBase" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.197" tests="6">
|
|
2060
|
+
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.004">
|
|
1841
2061
|
</testcase>
|
|
1842
|
-
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should get all quota when initialization of default values is requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should get all quota when initialization of default values is requested" time="0">
|
|
2062
|
+
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should get all quota when initialization of default values is requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should get all quota when initialization of default values is requested" time="0.001">
|
|
1843
2063
|
</testcase>
|
|
1844
2064
|
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when quota is not received" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when quota is not received" time="0.001">
|
|
1845
2065
|
</testcase>
|
|
@@ -1847,38 +2067,38 @@
|
|
|
1847
2067
|
</testcase>
|
|
1848
2068
|
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quotas with default values when they were not received and
|
|
1849
2069
|
updating of initial values is not requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quotas with default values when they were not received and
|
|
1850
|
-
updating of initial values is not requested" time="0">
|
|
2070
|
+
updating of initial values is not requested" time="0.001">
|
|
1851
2071
|
</testcase>
|
|
1852
|
-
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when it is not requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when it is not requested" time="0">
|
|
2072
|
+
<testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when it is not requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should not update initial values when it is not requested" time="0.001">
|
|
1853
2073
|
</testcase>
|
|
1854
2074
|
</testsuite>
|
|
1855
|
-
<testsuite name="MqttClient" errors="0" failures="0" skipped="0" timestamp="
|
|
2075
|
+
<testsuite name="MqttClient" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.279" tests="12">
|
|
1856
2076
|
<testcase classname="MqttClient client should get null as client when is not set yet" name="MqttClient client should get null as client when is not set yet" time="0.001">
|
|
1857
2077
|
</testcase>
|
|
1858
|
-
<testcase classname="MqttClient client should set client property when is not set yet" name="MqttClient client should set client property when is not set yet" time="0">
|
|
2078
|
+
<testcase classname="MqttClient client should set client property when is not set yet" name="MqttClient client should set client property when is not set yet" time="0.001">
|
|
1859
2079
|
</testcase>
|
|
1860
|
-
<testcase classname="MqttClient client should not set client property when it is already set" name="MqttClient client should not set client property when it is already set" time="0">
|
|
2080
|
+
<testcase classname="MqttClient client should not set client property when it is already set" name="MqttClient client should not set client property when it is already set" time="0.001">
|
|
1861
2081
|
</testcase>
|
|
1862
2082
|
<testcase classname="MqttClient isConnected should return false when mqtt is not connected" name="MqttClient isConnected should return false when mqtt is not connected" time="0.001">
|
|
1863
2083
|
</testcase>
|
|
1864
|
-
<testcase classname="MqttClient isConnected should return true when mqtt is connected" name="MqttClient isConnected should return true when mqtt is connected" time="0">
|
|
2084
|
+
<testcase classname="MqttClient isConnected should return true when mqtt is connected" name="MqttClient isConnected should return true when mqtt is connected" time="0.001">
|
|
1865
2085
|
</testcase>
|
|
1866
|
-
<testcase classname="MqttClient devices addDevice should add device to cache when there is no devices for serial number yet" name="MqttClient devices addDevice should add device to cache when there is no devices for serial number yet" time="0.
|
|
2086
|
+
<testcase classname="MqttClient devices addDevice should add device to cache when there is no devices for serial number yet" name="MqttClient devices addDevice should add device to cache when there is no devices for serial number yet" time="0.001">
|
|
1867
2087
|
</testcase>
|
|
1868
|
-
<testcase classname="MqttClient devices addDevice should add device to cache when there is already device for serial number" name="MqttClient devices addDevice should add device to cache when there is already device for serial number" time="0.
|
|
2088
|
+
<testcase classname="MqttClient devices addDevice should add device to cache when there is already device for serial number" name="MqttClient devices addDevice should add device to cache when there is already device for serial number" time="0.001">
|
|
1869
2089
|
</testcase>
|
|
1870
|
-
<testcase classname="MqttClient devices getDevices should return list of devices for serial number when there is any in cache" name="MqttClient devices getDevices should return list of devices for serial number when there is any in cache" time="0.
|
|
2090
|
+
<testcase classname="MqttClient devices getDevices should return list of devices for serial number when there is any in cache" name="MqttClient devices getDevices should return list of devices for serial number when there is any in cache" time="0.001">
|
|
1871
2091
|
</testcase>
|
|
1872
|
-
<testcase classname="MqttClient devices getDevices should return empty array when there is no device for serial number in cache" name="MqttClient devices getDevices should return empty array when there is no device for serial number in cache" time="0
|
|
2092
|
+
<testcase classname="MqttClient devices getDevices should return empty array when there is no device for serial number in cache" name="MqttClient devices getDevices should return empty array when there is no device for serial number in cache" time="0">
|
|
1873
2093
|
</testcase>
|
|
1874
|
-
<testcase classname="MqttClient devices getDevices should return empty array when serial number is not defined" name="MqttClient devices getDevices should return empty array when serial number is not defined" time="0">
|
|
2094
|
+
<testcase classname="MqttClient devices getDevices should return empty array when serial number is not defined" name="MqttClient devices getDevices should return empty array when serial number is not defined" time="0.001">
|
|
1875
2095
|
</testcase>
|
|
1876
2096
|
<testcase classname="MqttClient devices getAllDevices should return list of devices when there is any in cache" name="MqttClient devices getAllDevices should return list of devices when there is any in cache" time="0.002">
|
|
1877
2097
|
</testcase>
|
|
1878
|
-
<testcase classname="MqttClient devices getAllDevices should return empty array when serial number is not defined" name="MqttClient devices getAllDevices should return empty array when serial number is not defined" time="0
|
|
2098
|
+
<testcase classname="MqttClient devices getAllDevices should return empty array when serial number is not defined" name="MqttClient devices getAllDevices should return empty array when serial number is not defined" time="0">
|
|
1879
2099
|
</testcase>
|
|
1880
2100
|
</testsuite>
|
|
1881
|
-
<testsuite name="AccessoryInformationService" errors="0" failures="0" skipped="0" timestamp="
|
|
2101
|
+
<testsuite name="AccessoryInformationService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.315" tests="5">
|
|
1882
2102
|
<testcase classname="AccessoryInformationService initialize should throw error when trying to access non initialized service" name="AccessoryInformationService initialize should throw error when trying to access non initialized service" time="0.002">
|
|
1883
2103
|
</testcase>
|
|
1884
2104
|
<testcase classname="AccessoryInformationService initialize should add AccessoryInformation service when it is not added to accessory yet" name="AccessoryInformationService initialize should add AccessoryInformation service when it is not added to accessory yet" time="0.002">
|
|
@@ -1887,34 +2107,34 @@
|
|
|
1887
2107
|
</testcase>
|
|
1888
2108
|
<testcase classname="AccessoryInformationService initialize should add information characteristics when initializing accessory" name="AccessoryInformationService initialize should add information characteristics when initializing accessory" time="0.001">
|
|
1889
2109
|
</testcase>
|
|
1890
|
-
<testcase classname="AccessoryInformationService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="AccessoryInformationService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.
|
|
2110
|
+
<testcase classname="AccessoryInformationService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="AccessoryInformationService cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.002">
|
|
1891
2111
|
</testcase>
|
|
1892
2112
|
</testsuite>
|
|
1893
|
-
<testsuite name="SwitchDetachIceService" errors="0" failures="0" skipped="0" timestamp="
|
|
1894
|
-
<testcase classname="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to On" name="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to On" time="0.
|
|
2113
|
+
<testsuite name="SwitchDetachIceService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.34" tests="3">
|
|
2114
|
+
<testcase classname="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to On" name="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to On" time="0.006">
|
|
1895
2115
|
</testcase>
|
|
1896
|
-
<testcase classname="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to Off" name="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to Off" time="0">
|
|
2116
|
+
<testcase classname="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to Off" name="SwitchDetachIceService processOnSetOn should send Set command to device when Detach Ice value was changed to Off" time="0.003">
|
|
1897
2117
|
</testcase>
|
|
1898
2118
|
<testcase classname="SwitchDetachIceService processOnSetOn should revert changing of Detach Ice state when sending Set command to device is failed" name="SwitchDetachIceService processOnSetOn should revert changing of Detach Ice state when sending Set command to device is failed" time="0.001">
|
|
1899
2119
|
</testcase>
|
|
1900
2120
|
</testsuite>
|
|
1901
|
-
<testsuite name="SwitchEcoModeService" errors="0" failures="0" skipped="0" timestamp="
|
|
1902
|
-
<testcase classname="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Eco" name="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Eco" time="0.
|
|
2121
|
+
<testsuite name="SwitchEcoModeService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.331" tests="3">
|
|
2122
|
+
<testcase classname="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Eco" name="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Eco" time="0.003">
|
|
1903
2123
|
</testcase>
|
|
1904
2124
|
<testcase classname="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Normal" name="SwitchEcoModeService processOnSetOn should send Set command to device when ECO mode value was changed to Normal" time="0.001">
|
|
1905
2125
|
</testcase>
|
|
1906
2126
|
<testcase classname="SwitchEcoModeService processOnSetOn should revert changing of ECO mode state when sending Set command to device is failed" name="SwitchEcoModeService processOnSetOn should revert changing of ECO mode state when sending Set command to device is failed" time="0.001">
|
|
1907
2127
|
</testcase>
|
|
1908
2128
|
</testsuite>
|
|
1909
|
-
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="
|
|
1910
|
-
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" time="0.
|
|
2129
|
+
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.337" tests="3">
|
|
2130
|
+
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" time="0.002">
|
|
1911
2131
|
</testcase>
|
|
1912
2132
|
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" time="0.001">
|
|
1913
2133
|
</testcase>
|
|
1914
2134
|
<testcase classname="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
|
|
1915
2135
|
</testcase>
|
|
1916
2136
|
</testsuite>
|
|
1917
|
-
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="
|
|
2137
|
+
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="0.288" tests="3">
|
|
1918
2138
|
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" time="0.003">
|
|
1919
2139
|
</testcase>
|
|
1920
2140
|
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" time="0.001">
|
|
@@ -1922,31 +2142,31 @@
|
|
|
1922
2142
|
<testcase classname="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
|
|
1923
2143
|
</testcase>
|
|
1924
2144
|
</testsuite>
|
|
1925
|
-
<testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="
|
|
1926
|
-
<testcase classname="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to true" name="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to true" time="0.
|
|
2145
|
+
<testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:32" time="0.359" tests="3">
|
|
2146
|
+
<testcase classname="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to true" name="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to true" time="0.004">
|
|
1927
2147
|
</testcase>
|
|
1928
2148
|
<testcase classname="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to false" name="OutletService processOnSetOn should send Set command of Switch cmdCode to device when Enabled value was changed to false" time="0">
|
|
1929
2149
|
</testcase>
|
|
1930
2150
|
<testcase classname="OutletService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" name="OutletService processOnSetOn should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
|
|
1931
2151
|
</testcase>
|
|
1932
2152
|
</testsuite>
|
|
1933
|
-
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="
|
|
1934
|
-
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" time="0.
|
|
2153
|
+
<testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:32" time="0.271" tests="3">
|
|
2154
|
+
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to true" time="0.003">
|
|
1935
2155
|
</testcase>
|
|
1936
2156
|
<testcase classname="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService processOnSetOn should send Set command to device when X-Boost value was changed to false" time="0.001">
|
|
1937
2157
|
</testcase>
|
|
1938
2158
|
<testcase classname="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService processOnSetOn should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
|
|
1939
2159
|
</testcase>
|
|
1940
2160
|
</testsuite>
|
|
1941
|
-
<testsuite name="Delta2MaxAccessory" errors="0" failures="0" skipped="0" timestamp="
|
|
1942
|
-
<testcase classname="Delta2MaxAccessory initialize should use Delta2Max-specific configuration when initializing accessory" name="Delta2MaxAccessory initialize should use Delta2Max-specific configuration when initializing accessory" time="0.
|
|
2161
|
+
<testsuite name="Delta2MaxAccessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:32" time="0.192" tests="1">
|
|
2162
|
+
<testcase classname="Delta2MaxAccessory initialize should use Delta2Max-specific configuration when initializing accessory" name="Delta2MaxAccessory initialize should use Delta2Max-specific configuration when initializing accessory" time="0.004">
|
|
1943
2163
|
</testcase>
|
|
1944
2164
|
</testsuite>
|
|
1945
|
-
<testsuite name="Delta2Accessory" errors="0" failures="0" skipped="0" timestamp="
|
|
1946
|
-
<testcase classname="Delta2Accessory initialize should use Delta2-specific configuration when initializing accessory" name="Delta2Accessory initialize should use Delta2-specific configuration when initializing accessory" time="0.
|
|
2165
|
+
<testsuite name="Delta2Accessory" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:32" time="0.831" tests="1">
|
|
2166
|
+
<testcase classname="Delta2Accessory initialize should use Delta2-specific configuration when initializing accessory" name="Delta2Accessory initialize should use Delta2-specific configuration when initializing accessory" time="0.004">
|
|
1947
2167
|
</testcase>
|
|
1948
2168
|
</testsuite>
|
|
1949
|
-
<testsuite name="customCharacteristic" errors="0" failures="0" skipped="0" timestamp="
|
|
2169
|
+
<testsuite name="customCharacteristic" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:33" time="0.208" tests="6">
|
|
1950
2170
|
<testcase classname="customCharacteristic InputConsumptionWattFactory should initialize UUID of characteristic" name="customCharacteristic InputConsumptionWattFactory should initialize UUID of characteristic" time="0.001">
|
|
1951
2171
|
</testcase>
|
|
1952
2172
|
<testcase classname="customCharacteristic InputConsumptionWattFactory should use proper default value during initialization of characteristic" name="customCharacteristic InputConsumptionWattFactory should use proper default value during initialization of characteristic" time="0">
|
|
@@ -1955,93 +2175,119 @@
|
|
|
1955
2175
|
</testcase>
|
|
1956
2176
|
<testcase classname="customCharacteristic OutputConsumptionWattFactory should initialize UUID of characteristic" name="customCharacteristic OutputConsumptionWattFactory should initialize UUID of characteristic" time="0">
|
|
1957
2177
|
</testcase>
|
|
1958
|
-
<testcase classname="customCharacteristic OutputConsumptionWattFactory should use proper default value during initialization of characteristic" name="customCharacteristic OutputConsumptionWattFactory should use proper default value during initialization of characteristic" time="0">
|
|
2178
|
+
<testcase classname="customCharacteristic OutputConsumptionWattFactory should use proper default value during initialization of characteristic" name="customCharacteristic OutputConsumptionWattFactory should use proper default value during initialization of characteristic" time="0.001">
|
|
1959
2179
|
</testcase>
|
|
1960
2180
|
<testcase classname="customCharacteristic OutputConsumptionWattFactory should create characteristic with correct properties" name="customCharacteristic OutputConsumptionWattFactory should create characteristic with correct properties" time="0.001">
|
|
1961
2181
|
</testcase>
|
|
1962
2182
|
</testsuite>
|
|
1963
|
-
<testsuite name="Logger" errors="0" failures="0" skipped="0" timestamp="
|
|
1964
|
-
<testcase classname="Logger prefix should return origin prefix when is requested" name="Logger prefix should return origin prefix when is requested" time="0.
|
|
2183
|
+
<testsuite name="Logger" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:33" time="0.205" tests="7">
|
|
2184
|
+
<testcase classname="Logger prefix should return origin prefix when is requested" name="Logger prefix should return origin prefix when is requested" time="0.001">
|
|
1965
2185
|
</testcase>
|
|
1966
2186
|
<testcase classname="Logger info should add device name as prefix and call origin method when is called" name="Logger info should add device name as prefix and call origin method when is called" time="0.001">
|
|
1967
2187
|
</testcase>
|
|
1968
2188
|
<testcase classname="Logger success should add device name as prefix and call origin method when is called" name="Logger success should add device name as prefix and call origin method when is called" time="0.001">
|
|
1969
2189
|
</testcase>
|
|
1970
|
-
<testcase classname="Logger warn should add device name as prefix and call origin method when is called" name="Logger warn should add device name as prefix and call origin method when is called" time="0
|
|
1971
|
-
</testcase>
|
|
1972
|
-
<testcase classname="Logger error should add device name as prefix and call origin method when is called" name="Logger error should add device name as prefix and call origin method when is called" time="0.001">
|
|
1973
|
-
</testcase>
|
|
1974
|
-
<testcase classname="Logger debug should add device name as prefix and call origin method when is called" name="Logger debug should add device name as prefix and call origin method when is called" time="0.001">
|
|
2190
|
+
<testcase classname="Logger warn should add device name as prefix and call origin method when is called" name="Logger warn should add device name as prefix and call origin method when is called" time="0">
|
|
1975
2191
|
</testcase>
|
|
1976
|
-
<testcase classname="Logger
|
|
2192
|
+
<testcase classname="Logger error should add device name as prefix and call origin method when is called" name="Logger error should add device name as prefix and call origin method when is called" time="0">
|
|
1977
2193
|
</testcase>
|
|
1978
|
-
|
|
1979
|
-
<testsuite name="PluginConfigNameRenderer" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:36" time="0.714" tests="2">
|
|
1980
|
-
<testcase classname="PluginConfigNameRenderer render should render a textbox for name property when is called" name="PluginConfigNameRenderer render should render a textbox for name property when is called" time="0.004">
|
|
2194
|
+
<testcase classname="Logger debug should add device name as prefix and call origin method when is called" name="Logger debug should add device name as prefix and call origin method when is called" time="0">
|
|
1981
2195
|
</testcase>
|
|
1982
|
-
<testcase classname="
|
|
2196
|
+
<testcase classname="Logger log should add device name as prefix and call origin method when is called" name="Logger log should add device name as prefix and call origin method when is called" time="0">
|
|
1983
2197
|
</testcase>
|
|
1984
2198
|
</testsuite>
|
|
1985
|
-
<testsuite name="ComponentRenderer" errors="0" failures="0" skipped="0" timestamp="
|
|
1986
|
-
<testcase classname="ComponentRenderer renderTextBox should render a textbox with required attribute when schema contains required attribute set to true" name="ComponentRenderer renderTextBox should render a textbox with required attribute when schema contains required attribute set to true" time="0.
|
|
2199
|
+
<testsuite name="ComponentRenderer" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:31" time="3.363" tests="11">
|
|
2200
|
+
<testcase classname="ComponentRenderer renderTextBox should render a textbox with required attribute when schema contains required attribute set to true" name="ComponentRenderer renderTextBox should render a textbox with required attribute when schema contains required attribute set to true" time="0.008">
|
|
1987
2201
|
</testcase>
|
|
1988
|
-
<testcase classname="ComponentRenderer renderTextBox should render a textbox without required attribute when schema does not contain required attribute" name="ComponentRenderer renderTextBox should render a textbox without required attribute when schema does not contain required attribute" time="0.
|
|
2202
|
+
<testcase classname="ComponentRenderer renderTextBox should render a textbox without required attribute when schema does not contain required attribute" name="ComponentRenderer renderTextBox should render a textbox without required attribute when schema does not contain required attribute" time="0.004">
|
|
1989
2203
|
</testcase>
|
|
1990
|
-
<testcase classname="ComponentRenderer renderTextBox should render a textbox with placeholder attribute when schema does not contain description attribute" name="ComponentRenderer renderTextBox should render a textbox with placeholder attribute when schema does not contain description attribute" time="0.
|
|
2204
|
+
<testcase classname="ComponentRenderer renderTextBox should render a textbox with placeholder attribute when schema does not contain description attribute" name="ComponentRenderer renderTextBox should render a textbox with placeholder attribute when schema does not contain description attribute" time="0.002">
|
|
1991
2205
|
</testcase>
|
|
1992
|
-
<testcase classname="ComponentRenderer renderTextBox should set value of textbox when rendering" name="ComponentRenderer renderTextBox should set value of textbox when rendering" time="0.
|
|
2206
|
+
<testcase classname="ComponentRenderer renderTextBox should set value of textbox when rendering" name="ComponentRenderer renderTextBox should set value of textbox when rendering" time="0.002">
|
|
1993
2207
|
</testcase>
|
|
1994
|
-
<testcase classname="ComponentRenderer renderTextBox should call onChangeCallback with the new value when the textbox value changes" name="ComponentRenderer renderTextBox should call onChangeCallback with the new value when the textbox value changes" time="0.
|
|
2208
|
+
<testcase classname="ComponentRenderer renderTextBox should call onChangeCallback with the new value when the textbox value changes" name="ComponentRenderer renderTextBox should call onChangeCallback with the new value when the textbox value changes" time="0.004">
|
|
1995
2209
|
</testcase>
|
|
1996
2210
|
<testcase classname="ComponentRenderer renderTextBox should call onChangeCallback with the new undefined value when the textbox value changes to undefined" name="ComponentRenderer renderTextBox should call onChangeCallback with the new undefined value when the textbox value changes to undefined" time="0.003">
|
|
1997
2211
|
</testcase>
|
|
1998
2212
|
<testcase classname="ComponentRenderer renderDropDown should render a dropdown with required attribute when schema contains required attribute set to true" name="ComponentRenderer renderDropDown should render a dropdown with required attribute when schema contains required attribute set to true" time="0.006">
|
|
1999
2213
|
</testcase>
|
|
2000
|
-
<testcase classname="ComponentRenderer renderDropDown should render a dropdown without required attribute when schema does not contain required attribute" name="ComponentRenderer renderDropDown should render a dropdown without required attribute when schema does not contain required attribute" time="0.
|
|
2214
|
+
<testcase classname="ComponentRenderer renderDropDown should render a dropdown without required attribute when schema does not contain required attribute" name="ComponentRenderer renderDropDown should render a dropdown without required attribute when schema does not contain required attribute" time="0.003">
|
|
2001
2215
|
</testcase>
|
|
2002
2216
|
<testcase classname="ComponentRenderer renderDropDown should set value of dropdown when rendering" name="ComponentRenderer renderDropDown should set value of dropdown when rendering" time="0.004">
|
|
2003
2217
|
</testcase>
|
|
2004
2218
|
<testcase classname="ComponentRenderer renderDropDown should call onChangeCallback with the new value when the dropdown value changes" name="ComponentRenderer renderDropDown should call onChangeCallback with the new value when the dropdown value changes" time="0.004">
|
|
2005
2219
|
</testcase>
|
|
2006
|
-
<testcase classname="ComponentRenderer renderDropDown should call onChangeCallback with the new undefined value when the dropdown value changes to undefined" name="ComponentRenderer renderDropDown should call onChangeCallback with the new undefined value when the dropdown value changes to undefined" time="0.
|
|
2220
|
+
<testcase classname="ComponentRenderer renderDropDown should call onChangeCallback with the new undefined value when the dropdown value changes to undefined" name="ComponentRenderer renderDropDown should call onChangeCallback with the new undefined value when the dropdown value changes to undefined" time="0.004">
|
|
2007
2221
|
</testcase>
|
|
2008
2222
|
</testsuite>
|
|
2009
|
-
<testsuite name="
|
|
2010
|
-
<testcase classname="
|
|
2223
|
+
<testsuite name="PluginConfigNameRenderer" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:34" time="1.05" tests="2">
|
|
2224
|
+
<testcase classname="PluginConfigNameRenderer render should render a textbox for name property when is called" name="PluginConfigNameRenderer render should render a textbox for name property when is called" time="0.004">
|
|
2225
|
+
</testcase>
|
|
2226
|
+
<testcase classname="PluginConfigNameRenderer render should updatePluginConfig when value of textbox is changed" name="PluginConfigNameRenderer render should updatePluginConfig when value of textbox is changed" time="0.003">
|
|
2227
|
+
</testcase>
|
|
2228
|
+
</testsuite>
|
|
2229
|
+
<testsuite name="characteristicExtensions" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:34" time="0.285" tests="4">
|
|
2230
|
+
<testcase classname="characteristicExtensions setPropsPerms should set default perms when called with DEFAULT" name="characteristicExtensions setPropsPerms should set default perms when called with DEFAULT" time="0.001">
|
|
2231
|
+
</testcase>
|
|
2232
|
+
<testcase classname="characteristicExtensions setPropsPerms should set read-only perms when called with READ_ONLY" name="characteristicExtensions setPropsPerms should set read-only perms when called with READ_ONLY" time="0">
|
|
2233
|
+
</testcase>
|
|
2234
|
+
<testcase classname="characteristicExtensions setPropsPerms should set default perms when called with undefined" name="characteristicExtensions setPropsPerms should set default perms when called with undefined" time="0">
|
|
2235
|
+
</testcase>
|
|
2236
|
+
<testcase classname="characteristicExtensions setPropsPerms should return the characteristic instance for chaining" name="characteristicExtensions setPropsPerms should return the characteristic instance for chaining" time="0">
|
|
2237
|
+
</testcase>
|
|
2238
|
+
</testsuite>
|
|
2239
|
+
<testsuite name="MachineIdProvider" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.153" tests="3">
|
|
2240
|
+
<testcase classname="MachineIdProvider getMachineId should return valid machineId when there are no issues" name="MachineIdProvider getMachineId should return valid machineId when there are no issues" time="0.001">
|
|
2011
2241
|
</testcase>
|
|
2012
2242
|
<testcase classname="MachineIdProvider getMachineId should return UUID when it is not possible to get machineId" name="MachineIdProvider getMachineId should return UUID when it is not possible to get machineId" time="0">
|
|
2013
2243
|
</testcase>
|
|
2014
2244
|
<testcase classname="MachineIdProvider getMachineId should log error when it is not possible to get machineId" name="MachineIdProvider getMachineId should log error when it is not possible to get machineId" time="0">
|
|
2015
2245
|
</testcase>
|
|
2016
2246
|
</testsuite>
|
|
2017
|
-
<testsuite name="
|
|
2247
|
+
<testsuite name="Converter" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.161" tests="7">
|
|
2248
|
+
<testcase classname="Converter convertFahrenheitToCelsius should convert 32°F to 0°C" name="Converter convertFahrenheitToCelsius should convert 32°F to 0°C" time="0">
|
|
2249
|
+
</testcase>
|
|
2250
|
+
<testcase classname="Converter convertFahrenheitToCelsius should convert 212°F to 100°C" name="Converter convertFahrenheitToCelsius should convert 212°F to 100°C" time="0.001">
|
|
2251
|
+
</testcase>
|
|
2252
|
+
<testcase classname="Converter convertFahrenheitToCelsius should convert 98.6°F to 37°C" name="Converter convertFahrenheitToCelsius should convert 98.6°F to 37°C" time="0">
|
|
2253
|
+
</testcase>
|
|
2254
|
+
<testcase classname="Converter convertFahrenheitToCelsius should convert 0°F to approximately -17.78°C" name="Converter convertFahrenheitToCelsius should convert 0°F to approximately -17.78°C" time="0">
|
|
2255
|
+
</testcase>
|
|
2256
|
+
<testcase classname="Converter convertFahrenheitToCelsius should return undefined if input is undefined" name="Converter convertFahrenheitToCelsius should return undefined if input is undefined" time="0.001">
|
|
2257
|
+
</testcase>
|
|
2258
|
+
<testcase classname="Converter convertFahrenheitToCelsius should return undefined if input is null" name="Converter convertFahrenheitToCelsius should return undefined if input is null" time="0">
|
|
2259
|
+
</testcase>
|
|
2260
|
+
<testcase classname="Converter convertFahrenheitToCelsius should handle negative Fahrenheit values" name="Converter convertFahrenheitToCelsius should handle negative Fahrenheit values" time="0">
|
|
2261
|
+
</testcase>
|
|
2262
|
+
</testsuite>
|
|
2263
|
+
<testsuite name="PluginConfigRenderer" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.155" tests="2">
|
|
2018
2264
|
<testcase classname="PluginConfigRenderer render should call sub-renderers one render is called" name="PluginConfigRenderer render should call sub-renderers one render is called" time="0.001">
|
|
2019
2265
|
</testcase>
|
|
2020
|
-
<testcase classname="PluginConfigRenderer render should initialize configuration inside context wgen it is not defined" name="PluginConfigRenderer render should initialize configuration inside context wgen it is not defined" time="0
|
|
2266
|
+
<testcase classname="PluginConfigRenderer render should initialize configuration inside context wgen it is not defined" name="PluginConfigRenderer render should initialize configuration inside context wgen it is not defined" time="0">
|
|
2021
2267
|
</testcase>
|
|
2022
2268
|
</testsuite>
|
|
2023
|
-
<testsuite name="DeviceInfo" errors="0" failures="0" skipped="0" timestamp="
|
|
2024
|
-
<testcase classname="DeviceInfo connectionKey should initialize connectionKey when creating device info" name="DeviceInfo connectionKey should initialize connectionKey when creating device info" time="0">
|
|
2269
|
+
<testsuite name="DeviceInfo" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.144" tests="2">
|
|
2270
|
+
<testcase classname="DeviceInfo connectionKey should initialize connectionKey when creating device info" name="DeviceInfo connectionKey should initialize connectionKey when creating device info" time="0.001">
|
|
2025
2271
|
</testcase>
|
|
2026
2272
|
<testcase classname="DeviceInfo accessKey should initialize accessKey when creating device info" name="DeviceInfo accessKey should initialize accessKey when creating device info" time="0">
|
|
2027
2273
|
</testcase>
|
|
2028
2274
|
</testsuite>
|
|
2029
|
-
<testsuite name="
|
|
2030
|
-
<testcase classname="
|
|
2275
|
+
<testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:33" time="2.68" tests="3">
|
|
2276
|
+
<testcase classname="index should set function to window object when reference to file is loaded" name="index should set function to window object when reference to file is loaded" time="0.001">
|
|
2031
2277
|
</testcase>
|
|
2032
|
-
<testcase classname="
|
|
2278
|
+
<testcase classname="index renderEcoFlowPluginConfig should create renderer with name and devices sub-renderers when is called" name="index renderEcoFlowPluginConfig should create renderer with name and devices sub-renderers when is called" time="0.003">
|
|
2033
2279
|
</testcase>
|
|
2034
|
-
|
|
2035
|
-
<testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2025-05-05T16:19:37" time="0.287" tests="1">
|
|
2036
|
-
<testcase classname="index should return origin prefix when is requested" name="index should return origin prefix when is requested" time="0.001">
|
|
2280
|
+
<testcase classname="index renderEcoFlowPluginConfig should call settings manager render when is called" name="index renderEcoFlowPluginConfig should call settings manager render when is called" time="0.002">
|
|
2037
2281
|
</testcase>
|
|
2038
2282
|
</testsuite>
|
|
2039
|
-
<testsuite name="
|
|
2040
|
-
<testcase classname="
|
|
2283
|
+
<testsuite name="BatteryStatusProvider" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.259" tests="2">
|
|
2284
|
+
<testcase classname="BatteryStatusProvider getStatusLowBattery should return normal battery status when current battery level is not lower discharging limit plus 5% buffer" name="BatteryStatusProvider getStatusLowBattery should return normal battery status when current battery level is not lower discharging limit plus 5% buffer" time="0.001">
|
|
2041
2285
|
</testcase>
|
|
2042
|
-
<testcase classname="
|
|
2286
|
+
<testcase classname="BatteryStatusProvider getStatusLowBattery should return low battery status when current battery level is lower discharging limit plus 5% buffer" name="BatteryStatusProvider getStatusLowBattery should return low battery status when current battery level is lower discharging limit plus 5% buffer" time="0.001">
|
|
2043
2287
|
</testcase>
|
|
2044
|
-
|
|
2288
|
+
</testsuite>
|
|
2289
|
+
<testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2026-01-02T11:56:35" time="0.266" tests="1">
|
|
2290
|
+
<testcase classname="index should return origin prefix when is requested" name="index should return origin prefix when is requested" time="0.001">
|
|
2045
2291
|
</testcase>
|
|
2046
2292
|
</testsuite>
|
|
2047
2293
|
</testsuites>
|