@pietrolubini/homebridge-ecoflow 1.5.0-beta.1 → 1.5.0-beta.2

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.
Files changed (90) hide show
  1. package/README.md +43 -0
  2. package/config.schema.json +18 -1
  3. package/dist/accessories/batteries/delta2/services/delta2OutletServiceBase.d.ts +2 -2
  4. package/dist/accessories/batteries/delta2/services/delta2OutletServiceBase.js +2 -2
  5. package/dist/accessories/batteries/delta2/services/delta2OutletServiceBase.js.map +1 -1
  6. package/dist/accessories/batteries/deltapro/deltaProAccessory.d.ts +24 -2
  7. package/dist/accessories/batteries/deltapro/deltaProAccessory.js +113 -2
  8. package/dist/accessories/batteries/deltapro/deltaProAccessory.js.map +1 -1
  9. package/dist/accessories/batteries/deltapro/services/deltaProOutletServiceBase.d.ts +2 -2
  10. package/dist/accessories/batteries/deltapro/services/deltaProOutletServiceBase.js +2 -2
  11. package/dist/accessories/batteries/deltapro/services/deltaProOutletServiceBase.js.map +1 -1
  12. package/dist/accessories/batteries/deltapro3/deltaPro3Accessory.js +8 -8
  13. package/dist/accessories/batteries/deltapro3/deltaPro3Accessory.js.map +1 -1
  14. package/dist/accessories/batteries/deltapro3/interfaces/deltaPro3HttpApiContracts.d.ts +2 -2
  15. package/dist/accessories/batteries/deltapro3/interfaces/deltaPro3MqttApiContracts.d.ts +3 -5
  16. package/dist/accessories/batteries/deltapro3/services/deltaPro3OutletServiceBase.d.ts +2 -2
  17. package/dist/accessories/batteries/deltapro3/services/deltaPro3OutletServiceBase.js +2 -2
  18. package/dist/accessories/batteries/deltapro3/services/deltaPro3OutletServiceBase.js.map +1 -1
  19. package/dist/accessories/batteries/deltapro3/simulations/deltaPro3Simulator.js +16 -18
  20. package/dist/accessories/batteries/deltapro3/simulations/deltaPro3Simulator.js.map +1 -1
  21. package/dist/accessories/batteries/deltaproultra/services/deltaProUltraOutletServiceBase.d.ts +2 -2
  22. package/dist/accessories/batteries/deltaproultra/services/deltaProUltraOutletServiceBase.js +2 -2
  23. package/dist/accessories/batteries/deltaproultra/services/deltaProUltraOutletServiceBase.js.map +1 -1
  24. package/dist/accessories/powerstream/interfaces/powerStreamMqttApiContracts.d.ts +3 -5
  25. package/dist/accessories/powerstream/interfaces/powerStreamMqttApiContracts.js +3 -5
  26. package/dist/accessories/powerstream/interfaces/powerStreamMqttApiContracts.js.map +1 -1
  27. package/dist/accessories/powerstream/services/brightnessService.js +2 -2
  28. package/dist/accessories/powerstream/services/brightnessService.js.map +1 -1
  29. package/dist/accessories/powerstream/services/outletInvService.d.ts +2 -2
  30. package/dist/accessories/powerstream/services/outletInvService.js +2 -2
  31. package/dist/accessories/powerstream/services/outletInvService.js.map +1 -1
  32. package/dist/accessories/powerstream/services/outletService.d.ts +2 -2
  33. package/dist/accessories/powerstream/services/outletService.js +2 -2
  34. package/dist/accessories/powerstream/services/outletService.js.map +1 -1
  35. package/dist/accessories/powerstream/services/powerDemandService.js +1 -1
  36. package/dist/accessories/powerstream/services/powerDemandService.js.map +1 -1
  37. package/dist/accessories/smartplug/interfaces/smartPlugHttpApiContracts.d.ts +11 -0
  38. package/dist/accessories/{powerstream/interfaces/httpApiPowerStreamContracts.js → smartplug/interfaces/smartPlugHttpApiContracts.js} +1 -1
  39. package/dist/accessories/smartplug/interfaces/smartPlugHttpApiContracts.js.map +1 -0
  40. package/dist/accessories/smartplug/interfaces/smartPlugMqttApiContracts.d.ts +32 -0
  41. package/dist/accessories/smartplug/interfaces/smartPlugMqttApiContracts.js +18 -0
  42. package/dist/accessories/smartplug/interfaces/smartPlugMqttApiContracts.js.map +1 -0
  43. package/dist/accessories/smartplug/services/brightnessService.d.ts +7 -0
  44. package/dist/accessories/smartplug/services/brightnessService.js +27 -0
  45. package/dist/accessories/smartplug/services/brightnessService.js.map +1 -0
  46. package/dist/accessories/smartplug/services/brightnessService.spec.d.ts +1 -0
  47. package/dist/accessories/smartplug/services/outletService.d.ts +7 -0
  48. package/dist/accessories/smartplug/services/outletService.js +24 -0
  49. package/dist/accessories/smartplug/services/outletService.js.map +1 -0
  50. package/dist/accessories/smartplug/services/outletService.spec.d.ts +1 -0
  51. package/dist/accessories/smartplug/simulations/smartPlugSimulator.d.ts +6 -0
  52. package/dist/accessories/smartplug/simulations/smartPlugSimulator.js +34 -0
  53. package/dist/accessories/smartplug/simulations/smartPlugSimulator.js.map +1 -0
  54. package/dist/accessories/{batteries/deltapro/deltaProAccessoryBase.d.ts → smartplug/smartPlugAccessory.d.ts} +13 -14
  55. package/dist/accessories/smartplug/smartPlugAccessory.js +81 -0
  56. package/dist/accessories/smartplug/smartPlugAccessory.js.map +1 -0
  57. package/dist/accessories/smartplug/smartPlugAccessory.spec.d.ts +1 -0
  58. package/dist/characteristics/customCharacteristic.d.ts +12 -0
  59. package/dist/characteristics/customCharacteristic.js +45 -9
  60. package/dist/characteristics/customCharacteristic.js.map +1 -1
  61. package/dist/config.d.ts +13 -3
  62. package/dist/config.js +15 -9
  63. package/dist/config.js.map +1 -1
  64. package/dist/homebridge-ui/public/index.html +1 -1
  65. package/dist/homebridge-ui/public/index.js +1 -1
  66. package/dist/platform.js +9 -1
  67. package/dist/platform.js.map +1 -1
  68. package/dist/services/batteryOutletServiceBase.d.ts +14 -0
  69. package/dist/services/batteryOutletServiceBase.js +37 -0
  70. package/dist/services/batteryOutletServiceBase.js.map +1 -0
  71. package/dist/services/batteryOutletServiceBase.spec.d.ts +1 -0
  72. package/dist/services/outletServiceBase.d.ts +10 -11
  73. package/dist/services/outletServiceBase.js +9 -20
  74. package/dist/services/outletServiceBase.js.map +1 -1
  75. package/dist/services/serviceBase.js +1 -1
  76. package/dist/services/serviceBase.js.map +1 -1
  77. package/dist/services/temperatureSensorService.d.ts +10 -0
  78. package/dist/services/temperatureSensorService.js +21 -0
  79. package/dist/services/temperatureSensorService.js.map +1 -0
  80. package/dist/services/temperatureSensorService.spec.d.ts +1 -0
  81. package/junit.xml +681 -557
  82. package/package.json +1 -1
  83. package/dist/accessories/batteries/deltapro/deltaProAccessoryBase.js +0 -119
  84. package/dist/accessories/batteries/deltapro/deltaProAccessoryBase.js.map +0 -1
  85. package/dist/accessories/powerstream/interfaces/httpApiPowerStreamContracts.d.ts +0 -16
  86. package/dist/accessories/powerstream/interfaces/httpApiPowerStreamContracts.js.map +0 -1
  87. package/dist/accessories/powerstream/interfaces/mqttApiPowerStreamContracts.d.ts +0 -41
  88. package/dist/accessories/powerstream/interfaces/mqttApiPowerStreamContracts.js +0 -21
  89. package/dist/accessories/powerstream/interfaces/mqttApiPowerStreamContracts.js.map +0 -1
  90. /package/dist/accessories/batteries/deltapro/{deltaProAccessoryBase.spec.d.ts → deltaProAccessory.spec.d.ts} +0 -0
package/junit.xml CHANGED
@@ -1,79 +1,79 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuites name="jest tests" tests="611" failures="0" errors="0" time="25.106">
3
- <testsuite name="DeltaProUltraAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:16" time="6.143" tests="45">
4
- <testcase classname="DeltaProUltraAccessory initialize should add required services when initializing accessory" name="DeltaProUltraAccessory initialize should add required services when initializing accessory" time="0.019">
2
+ <testsuites name="jest tests" tests="665" failures="0" errors="0" time="28.117">
3
+ <testsuite name="DeltaProUltraAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:42" time="6.318" tests="45">
4
+ <testcase classname="DeltaProUltraAccessory initialize should add required services when initializing accessory" name="DeltaProUltraAccessory initialize should add required services when initializing accessory" time="0.015">
5
5
  </testcase>
6
- <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.004">
6
+ <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">
7
7
  </testcase>
8
- <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.009">
8
+ <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.004">
9
9
  </testcase>
10
- <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.003">
10
+ <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.005">
11
11
  </testcase>
12
- <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">
12
+ <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.008">
13
13
  </testcase>
14
14
  <testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
15
15
  when PdStatus message is received with non zero wattsInSum and without wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
16
- when PdStatus message is received with non zero wattsInSum and without wattsOutSum" time="0.007">
16
+ when PdStatus message is received with non zero wattsInSum and without wattsOutSum" time="0.005">
17
17
  </testcase>
18
18
  <testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to true
19
19
  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
20
- when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" time="0.007">
20
+ when PdStatus message is received with non zero wattsInSum and non equal to it wattsOutSum" time="0.01">
21
21
  </testcase>
22
22
  <testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
23
23
  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
24
- when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" time="0.013">
24
+ when PdStatus message is received with zero wattsInSum and non equal to it wattsOutSum" time="0.012">
25
25
  </testcase>
26
26
  <testcase classname="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
27
27
  when PdStatus message is received with zero wattsInSum and wattsOutSum" name="DeltaProUltraAccessory processQuotaMessage PdStatus ChargingState should update charging state to false
28
- when PdStatus message is received with zero wattsInSum and wattsOutSum" time="0.003">
28
+ when PdStatus message is received with zero wattsInSum and wattsOutSum" time="0.01">
29
29
  </testcase>
30
- <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.003">
30
+ <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.005">
31
31
  </testcase>
32
- <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.002">
32
+ <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.005">
33
33
  </testcase>
34
- <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.002">
34
+ <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.004">
35
35
  </testcase>
36
- <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.002">
36
+ <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.004">
37
37
  </testcase>
38
- <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.002">
38
+ <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">
39
39
  </testcase>
40
- <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.001">
40
+ <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.023">
41
41
  </testcase>
42
- <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.002">
42
+ <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.008">
43
43
  </testcase>
44
- <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.003">
44
+ <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">
45
45
  </testcase>
46
- <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.002">
46
+ <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.008">
47
47
  </testcase>
48
- <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.013">
48
+ <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.004">
49
49
  </testcase>
50
- <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.006">
50
+ <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.003">
51
51
  </testcase>
52
- <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.005">
52
+ <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.004">
53
53
  </testcase>
54
- <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.009">
54
+ <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.003">
55
55
  </testcase>
56
- <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.007">
56
+ <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.017">
57
57
  </testcase>
58
- <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.005">
58
+ <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.003">
59
59
  </testcase>
60
60
  <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.003">
61
61
  </testcase>
62
- <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.002">
62
+ <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.003">
63
63
  </testcase>
64
- <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.003">
64
+ <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.005">
65
65
  </testcase>
66
- <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.005">
66
+ <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.003">
67
67
  </testcase>
68
68
  <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.003">
69
69
  </testcase>
70
70
  <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.003">
71
71
  </testcase>
72
- <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.003">
72
+ <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.014">
73
73
  </testcase>
74
- <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.002">
74
+ <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.01">
75
75
  </testcase>
76
- <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.006">
76
+ <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.003">
77
77
  </testcase>
78
78
  <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.003">
79
79
  </testcase>
@@ -81,135 +81,135 @@
81
81
  </testcase>
82
82
  <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.003">
83
83
  </testcase>
84
- <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.004">
84
+ <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.003">
85
85
  </testcase>
86
86
  <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.003">
87
87
  </testcase>
88
- <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.003">
88
+ <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">
89
89
  </testcase>
90
- <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.003">
90
+ <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.004">
91
91
  </testcase>
92
92
  <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.003">
93
93
  </testcase>
94
- <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.011">
94
+ <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.003">
95
95
  </testcase>
96
- <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.002">
96
+ <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.003">
97
97
  </testcase>
98
- <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.002">
98
+ <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.003">
99
99
  </testcase>
100
- <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.002">
100
+ <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.003">
101
101
  </testcase>
102
102
  </testsuite>
103
- <testsuite name="PowerStreamAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:16" time="6.297" tests="51">
104
- <testcase classname="PowerStreamAccessory initialize should add required services when initializing accessory" name="PowerStreamAccessory initialize should add required services when initializing accessory" time="0.024">
103
+ <testsuite name="PowerStreamAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:42" time="6.391" tests="51">
104
+ <testcase classname="PowerStreamAccessory initialize should add required services when initializing accessory" name="PowerStreamAccessory initialize should add required services when initializing accessory" time="0.012">
105
105
  </testcase>
106
- <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.007">
106
+ <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.01">
107
107
  </testcase>
108
- <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.008">
108
+ <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.017">
109
109
  </testcase>
110
110
  <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
111
111
  when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics PV should initialize PV outlet service with additional characteristics
112
- when powerStream settings are not defined in config" time="0.006">
112
+ when powerStream settings are not defined in config" time="0.007">
113
113
  </testcase>
114
- <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.006">
114
+ <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.012">
115
115
  </testcase>
116
- <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.006">
116
+ <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.007">
117
117
  </testcase>
118
118
  <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics
119
119
  when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics BAT should initialize BAT outlet service with additional characteristics
120
- when powerStream settings are not defined in config" time="0.024">
120
+ when powerStream settings are not defined in config" time="0.005">
121
121
  </testcase>
122
- <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.004">
122
+ <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.021">
123
123
  </testcase>
124
- <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">
124
+ <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.009">
125
125
  </testcase>
126
126
  <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
127
127
  when powerStream settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics INV should initialize INV outlet service with additional characteristics
128
- when powerStream settings are not defined in config" time="0.006">
128
+ when powerStream settings are not defined in config" time="0.011">
129
129
  </testcase>
130
- <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.005">
130
+ <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">
131
131
  </testcase>
132
- <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.017">
132
+ <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">
133
133
  </testcase>
134
134
  <testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand
135
135
  when powerStream.type settings are not defined in config" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with default max power demand
136
- when powerStream.type settings are not defined in config" time="0.003">
136
+ when powerStream.type settings are not defined in config" time="0.033">
137
137
  </testcase>
138
138
  <testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 6000 max power demand
139
139
  when powerStream.type is 600W" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 6000 max power demand
140
- when powerStream.type is 600W" time="0.002">
140
+ when powerStream.type is 600W" time="0.004">
141
141
  </testcase>
142
142
  <testcase classname="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 8000 max power demand
143
143
  when powerStream.type is 800W" name="PowerStreamAccessory initialize powerDemandService maxPowerDemand should initialize indicator service with 8000 max power demand
144
- when powerStream.type is 800W" time="0.003">
144
+ when powerStream.type is 800W" time="0.004">
145
145
  </testcase>
146
146
  <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.004">
147
147
  </testcase>
148
- <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.004">
148
+ <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">
149
149
  </testcase>
150
- <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">
150
+ <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.01">
151
151
  </testcase>
152
- <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.002">
152
+ <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">
153
153
  </testcase>
154
- <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.005">
154
+ <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.009">
155
155
  </testcase>
156
- <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.002">
156
+ <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.003">
157
157
  </testcase>
158
- <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.004">
158
+ <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.003">
159
159
  </testcase>
160
160
  <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.002">
161
161
  </testcase>
162
- <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.013">
162
+ <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.011">
163
163
  </testcase>
164
- <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.003">
164
+ <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.002">
165
165
  </testcase>
166
- <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.004">
166
+ <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.002">
167
167
  </testcase>
168
- <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">
168
+ <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.002">
169
169
  </testcase>
170
- <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.003">
170
+ <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.004">
171
171
  </testcase>
172
- <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.002">
172
+ <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">
173
173
  </testcase>
174
- <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">
174
+ <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.012">
175
175
  </testcase>
176
176
  <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.003">
177
177
  </testcase>
178
- <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.005">
178
+ <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.004">
179
179
  </testcase>
180
180
  <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.003">
181
181
  </testcase>
182
- <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.003">
182
+ <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.002">
183
183
  </testcase>
184
184
  <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.003">
185
185
  </testcase>
186
- <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.012">
186
+ <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.014">
187
187
  </testcase>
188
188
  <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.003">
189
189
  </testcase>
190
190
  <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.002">
191
191
  </testcase>
192
- <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.002">
192
+ <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.003">
193
193
  </testcase>
194
- <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.002">
194
+ <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.003">
195
195
  </testcase>
196
196
  <testcase classname="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
197
197
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateBatteryLevel should update battery level-related characteristics
198
198
  when initializing default values with quotas were not initialized properly for it" time="0.002">
199
199
  </testcase>
200
- <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.002">
200
+ <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.011">
201
201
  </testcase>
202
202
  <testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics
203
203
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption PV should update PV consumption-related characteristics
204
- when initializing default values with quotas were not initialized properly for it" time="0.014">
204
+ when initializing default values with quotas were not initialized properly for it" time="0.002">
205
205
  </testcase>
206
- <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.003">
206
+ <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.002">
207
207
  </testcase>
208
208
  <testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics
209
209
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption BAT should update BAT consumption-related characteristics
210
- when initializing default values with quotas were not initialized properly for it" time="0.002">
210
+ when initializing default values with quotas were not initialized properly for it" time="0.007">
211
211
  </testcase>
212
- <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.002">
212
+ <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.011">
213
213
  </testcase>
214
214
  <testcase classname="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
215
215
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateConsumption INV should update INV consumption-related characteristics
@@ -219,301 +219,361 @@
219
219
  </testcase>
220
220
  <testcase classname="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics
221
221
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updateBrightness INV should update INV brightness-related characteristics
222
- when initializing default values with quotas were not initialized properly for it" time="0.006">
222
+ when initializing default values with quotas were not initialized properly for it" time="0.013">
223
223
  </testcase>
224
- <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.018">
224
+ <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.004">
225
225
  </testcase>
226
226
  <testcase classname="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV power demand-related characteristics
227
227
  when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeDefaultValues updatePowerDemand INV should update INV power demand-related characteristics
228
228
  when initializing default values with quotas were not initialized properly for it" time="0.003">
229
229
  </testcase>
230
230
  </testsuite>
231
- <testsuite name="Delta2AccessoryBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:16" time="6.262" tests="47">
232
- <testcase classname="Delta2AccessoryBase initialize should add required services when initializing accessory" name="Delta2AccessoryBase initialize should add required services when initializing accessory" time="0.021">
231
+ <testsuite name="Delta2AccessoryBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:42" time="6.507" tests="47">
232
+ <testcase classname="Delta2AccessoryBase initialize should add required services when initializing accessory" name="Delta2AccessoryBase initialize should add required services when initializing accessory" time="0.02">
233
233
  </testcase>
234
234
  <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.01">
235
235
  </testcase>
236
- <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.016">
236
+ <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.027">
237
237
  </testcase>
238
- <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update bms status in quota when BmsStatus message is received" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update bms status in quota when BmsStatus message is received" time="0.006">
238
+ <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update bms status in quota when BmsStatus message is received" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update bms status in quota when BmsStatus message is received" time="0.01">
239
239
  </testcase>
240
- <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when BmsStatus message is received with f32ShowSoc" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when BmsStatus message is received with f32ShowSoc" time="0.006">
240
+ <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when BmsStatus message is received with f32ShowSoc" name="Delta2AccessoryBase processQuotaMessage EmsStatus should update battery level when BmsStatus message is received with f32ShowSoc" time="0.009">
241
241
  </testcase>
242
- <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when BmsStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.012">
242
+ <testcase classname="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when BmsStatus message is received with undefined status" name="Delta2AccessoryBase processQuotaMessage EmsStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.009">
243
243
  </testcase>
244
- <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.009">
244
+ <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.008">
245
245
  </testcase>
246
246
  <testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
247
247
  when InvStatus message is received with non zero inputWatts and without outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
248
- when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.008">
248
+ when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.01">
249
249
  </testcase>
250
250
  <testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to true
251
251
  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
252
- when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.006">
252
+ when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.018">
253
253
  </testcase>
254
254
  <testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
255
255
  when InvStatus message is received with zero inputWatts and non equal to it outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
256
- when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.032">
256
+ when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.013">
257
257
  </testcase>
258
258
  <testcase classname="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
259
259
  when InvStatus message is received with zero inputWatts and outputWatts" name="Delta2AccessoryBase processQuotaMessage InvStatus should update charging state to false
260
260
  when InvStatus message is received with zero inputWatts and outputWatts" time="0.007">
261
261
  </testcase>
262
- <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.005">
262
+ <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.008">
263
263
  </testcase>
264
- <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.005">
264
+ <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.009">
265
265
  </testcase>
266
- <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.004">
266
+ <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.011">
267
267
  </testcase>
268
- <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.004">
268
+ <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.006">
269
269
  </testcase>
270
- <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.022">
270
+ <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.008">
271
271
  </testcase>
272
- <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.004">
272
+ <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.007">
273
273
  </testcase>
274
- <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.004">
274
+ <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">
275
275
  </testcase>
276
- <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.004">
276
+ <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">
277
277
  </testcase>
278
278
  <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.006">
279
279
  </testcase>
280
- <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.003">
280
+ <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">
281
281
  </testcase>
282
- <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.004">
282
+ <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.018">
283
283
  </testcase>
284
- <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.016">
284
+ <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.006">
285
285
  </testcase>
286
- <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.004">
286
+ <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">
287
287
  </testcase>
288
- <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.004">
288
+ <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.012">
289
289
  </testcase>
290
- <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.007">
290
+ <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">
291
291
  </testcase>
292
- <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.004">
292
+ <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.006">
293
293
  </testcase>
294
- <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.004">
294
+ <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.015">
295
295
  </testcase>
296
- <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.005">
296
+ <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.006">
297
297
  </testcase>
298
- <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.015">
298
+ <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.006">
299
299
  </testcase>
300
- <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.003">
300
+ <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">
301
301
  </testcase>
302
- <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.003">
302
+ <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.006">
303
303
  </testcase>
304
- <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.003">
304
+ <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">
305
305
  </testcase>
306
- <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.003">
306
+ <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.011">
307
307
  </testcase>
308
- <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">
308
+ <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.004">
309
309
  </testcase>
310
- <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.015">
310
+ <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.007">
311
311
  </testcase>
312
- <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.004">
312
+ <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.006">
313
313
  </testcase>
314
- <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.004">
314
+ <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.005">
315
315
  </testcase>
316
316
  <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.004">
317
317
  </testcase>
318
- <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.006">
318
+ <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">
319
319
  </testcase>
320
- <testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.005">
320
+ <testcase classname="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="Delta2AccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.012">
321
321
  </testcase>
322
- <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.016">
322
+ <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.005">
323
323
  </testcase>
324
- <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.004">
324
+ <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.005">
325
325
  </testcase>
326
- <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.004">
326
+ <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.006">
327
327
  </testcase>
328
- <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.004">
328
+ <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.006">
329
329
  </testcase>
330
- <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.004">
330
+ <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.016">
331
331
  </testcase>
332
- <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.003">
332
+ <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.006">
333
333
  </testcase>
334
334
  </testsuite>
335
- <testsuite name="DeltaPro3Accessory" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:23" time="1.274" tests="29">
336
- <testcase classname="DeltaPro3Accessory initialize should add required services when initializing accessory" name="DeltaPro3Accessory initialize should add required services when initializing accessory" time="0.007">
335
+ <testsuite name="DeltaPro3Accessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:48" time="1.561" tests="29">
336
+ <testcase classname="DeltaPro3Accessory initialize should add required services when initializing accessory" name="DeltaPro3Accessory initialize should add required services when initializing accessory" time="0.008">
337
337
  </testcase>
338
- <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.006">
338
+ <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.017">
339
339
  </testcase>
340
- <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.017">
340
+ <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.011">
341
341
  </testcase>
342
- <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.005">
342
+ <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.02">
343
343
  </testcase>
344
- <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.005">
344
+ <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.02">
345
345
  </testcase>
346
346
  <testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
347
- when message is received with non zero powInSumW and without powOutSumW" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
348
- when message is received with non zero powInSumW and without powOutSumW" time="0.008">
347
+ when message is received with non zero inputWatts and without outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
348
+ when message is received with non zero inputWatts and without outputWatts" time="0.004">
349
349
  </testcase>
350
350
  <testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
351
- when message is received with non zero powInSumW and non equal to it powOutSumW" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
352
- when message is received with non zero powInSumW and non equal to it powOutSumW" time="0.005">
351
+ when message is received with non zero inputWatts and non equal to it outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to true
352
+ when message is received with non zero inputWatts and non equal to it outputWatts" time="0.003">
353
353
  </testcase>
354
354
  <testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
355
- when message is received with zero powInSumW and non equal to it powOutSumW" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
356
- when message is received with zero powInSumW and non equal to it powOutSumW" time="0.004">
355
+ when message is received with zero inputWatts and non equal to it outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
356
+ when message is received with zero inputWatts and non equal to it outputWatts" time="0.003">
357
357
  </testcase>
358
358
  <testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
359
- when message is received with zero powInSumW and powOutSumW" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
360
- when message is received with zero powInSumW and powOutSumW" time="0.02">
359
+ when message is received with zero inputWatts and outputWatts" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update charging state to false
360
+ when message is received with zero inputWatts and outputWatts" time="0.006">
361
361
  </testcase>
362
- <testcase classname="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with powInSumW" name="DeltaPro3Accessory processQuotaMessage updateInputWattsValues should update AC HV, AC LV, DC 12V input consumptions when message is received with powInSumW" time="0.003">
362
+ <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.006">
363
363
  </testcase>
364
- <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.004">
364
+ <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.005">
365
365
  </testcase>
366
- <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">
366
+ <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.006">
367
367
  </testcase>
368
- <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.002">
368
+ <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.005">
369
369
  </testcase>
370
- <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.002">
370
+ <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.019">
371
371
  </testcase>
372
- <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.002">
372
+ <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.009">
373
373
  </testcase>
374
- <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.013">
374
+ <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.018">
375
375
  </testcase>
376
- <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.002">
376
+ <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.019">
377
377
  </testcase>
378
- <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.002">
378
+ <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.011">
379
379
  </testcase>
380
- <testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update X-Boost state when message is received with xboostEn" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update X-Boost state when message is received with xboostEn" time="0.002">
380
+ <testcase classname="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update X-Boost state when message is received with xboostEn" name="DeltaPro3Accessory processQuotaMessage updateSwitchStateValues should update X-Boost state when message is received with xboostEn" time="0.007">
381
381
  </testcase>
382
382
  <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.007">
383
383
  </testcase>
384
- <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.002">
384
+ <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.051">
385
385
  </testcase>
386
- <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">
386
+ <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.028">
387
387
  </testcase>
388
- <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.002">
388
+ <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.024">
389
389
  </testcase>
390
- <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.002">
390
+ <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.04">
391
391
  </testcase>
392
- <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">
392
+ <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.07">
393
393
  </testcase>
394
- <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.002">
394
+ <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.018">
395
395
  </testcase>
396
- <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.004">
396
+ <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.024">
397
397
  </testcase>
398
- <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.013">
398
+ <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.014">
399
399
  </testcase>
400
- <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.007">
400
+ <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.013">
401
401
  </testcase>
402
402
  </testsuite>
403
- <testsuite name="DeltaProAccessoryBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:22" time="1.432" tests="39">
404
- <testcase classname="DeltaProAccessoryBase initialize should add required services when initializing accessory" name="DeltaProAccessoryBase initialize should add required services when initializing accessory" time="0.021">
403
+ <testsuite name="DeltaProAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:48" time="1.671" tests="39">
404
+ <testcase classname="DeltaProAccessory initialize should add required services when initializing accessory" name="DeltaProAccessory initialize should add required services when initializing accessory" time="0.008">
405
405
  </testcase>
406
- <testcase classname="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" name="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should update bms status in quota when BmsStatus message is received" time="0.011">
406
+ <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">
407
407
  </testcase>
408
- <testcase classname="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" name="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should update battery level when BmsStatus message is received with f32ShowSoc" time="0.013">
408
+ <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.026">
409
409
  </testcase>
410
- <testcase classname="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should not update any characteristic when BmsStatus message is received with undefined status" name="DeltaProAccessoryBase processQuotaMessage BmsMasterStatus should not update any characteristic when BmsStatus message is received with undefined status" time="0.008">
410
+ <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.012">
411
411
  </testcase>
412
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update inv status in quota when InvStatus message is received" time="0.005">
412
+ <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.011">
413
413
  </testcase>
414
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to true
415
- when InvStatus message is received with non zero inputWatts and without outputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to true
416
- when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.005">
414
+ <testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
415
+ when InvStatus message is received with non zero inputWatts and without outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
416
+ when InvStatus message is received with non zero inputWatts and without outputWatts" time="0.006">
417
417
  </testcase>
418
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to true
419
- when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to true
420
- when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.014">
418
+ <testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to true
419
+ 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
420
+ when InvStatus message is received with non zero inputWatts and non equal to it outputWatts" time="0.004">
421
421
  </testcase>
422
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to false
423
- when InvStatus message is received with zero inputWatts and non equal to it outputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to false
424
- when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.005">
422
+ <testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
423
+ when InvStatus message is received with zero inputWatts and non equal to it outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
424
+ when InvStatus message is received with zero inputWatts and non equal to it outputWatts" time="0.007">
425
425
  </testcase>
426
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to false
427
- when InvStatus message is received with zero inputWatts and outputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update charging state to false
428
- when InvStatus message is received with zero inputWatts and outputWatts" time="0.004">
426
+ <testcase classname="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
427
+ when InvStatus message is received with zero inputWatts and outputWatts" name="DeltaProAccessory processQuotaMessage InvStatus should update charging state to false
428
+ when InvStatus message is received with zero inputWatts and outputWatts" time="0.007">
429
429
  </testcase>
430
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC, USB, CAR input consumptions when InvStatus message is received with inputWatts" time="0.004">
430
+ <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.011">
431
431
  </testcase>
432
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC state when InvStatus message is received with cfgAcEnabled" time="0.004">
432
+ <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.003">
433
433
  </testcase>
434
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update X-Boost state when InvStatus message is received with cfgAcXboost" time="0.003">
434
+ <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.003">
435
435
  </testcase>
436
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" name="DeltaProAccessoryBase processQuotaMessage InvStatus should update AC output watts consumption when InvStatus message is received with outputWatts" time="0.017">
436
+ <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.004">
437
437
  </testcase>
438
- <testcase classname="DeltaProAccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" name="DeltaProAccessoryBase processQuotaMessage InvStatus should not update any characteristic when InvStatus message is received with undefined status" time="0.007">
438
+ <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.004">
439
439
  </testcase>
440
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update pd status in quota when PdStatus message is received" time="0.006">
440
+ <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.004">
441
441
  </testcase>
442
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update CAR state when PdStatus message is received with carState" time="0.003">
442
+ <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.015">
443
443
  </testcase>
444
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update CAR output consumption when PdStatus message is received with carWatts" time="0.003">
444
+ <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.004">
445
445
  </testcase>
446
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB state when PdStatus message is received with dcOutState" time="0.006">
446
+ <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.004">
447
447
  </testcase>
448
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb1Watts" time="0.02">
448
+ <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.004">
449
449
  </testcase>
450
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb1Watts" time="0.003">
450
+ <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.004">
451
451
  </testcase>
452
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with usb2Watts" time="0.003">
452
+ <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.004">
453
453
  </testcase>
454
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 usb2Watts" time="0.005">
454
+ <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.021">
455
455
  </testcase>
456
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb1Watts" time="0.003">
456
+ <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.003">
457
457
  </testcase>
458
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb1Watts" time="0.003">
458
+ <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.003">
459
459
  </testcase>
460
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with qcUsb2Watts" time="0.005">
460
+ <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.007">
461
461
  </testcase>
462
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 qcUsb2Watts" time="0.023">
462
+ <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.003">
463
463
  </testcase>
464
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec1Watts" time="0.012">
464
+ <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.003">
465
465
  </testcase>
466
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec1Watts" time="0.004">
466
+ <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.003">
467
467
  </testcase>
468
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with typec2Watts" time="0.004">
468
+ <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.055">
469
469
  </testcase>
470
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption with 0 when PdStatus message received with 0 typec2Watts" time="0.003">
470
+ <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.024">
471
471
  </testcase>
472
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" name="DeltaProAccessoryBase processQuotaMessage PdStatus should update USB output consumption when PdStatus message is received with all usb-related parameters" time="0.003">
472
+ <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.009">
473
473
  </testcase>
474
- <testcase classname="DeltaProAccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" name="DeltaProAccessoryBase processQuotaMessage PdStatus should not update any characteristic when PdStatus message is received with undefined status" time="0.003">
474
+ <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.01">
475
475
  </testcase>
476
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" name="DeltaProAccessoryBase initializeDefaultValues should initialize quota when is called before initializeDefaultValues" time="0.017">
476
+ <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.015">
477
477
  </testcase>
478
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" name="DeltaProAccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested" time="0.003">
478
+ <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.022">
479
479
  </testcase>
480
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessoryBase initializeDefaultValues EmsStatus should update BmsStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.003">
480
+ <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.042">
481
481
  </testcase>
482
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" name="DeltaProAccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested" time="0.004">
482
+ <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.022">
483
483
  </testcase>
484
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessoryBase initializeDefaultValues InvStatus should update InvStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.007">
484
+ <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.032">
485
485
  </testcase>
486
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" name="DeltaProAccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested" time="0.017">
486
+ <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.008">
487
487
  </testcase>
488
- <testcase classname="DeltaProAccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" name="DeltaProAccessoryBase initializeDefaultValues PdStatus should update PdStatus-related characteristics when is requested and quotas were not initialized properly for it" time="0.006">
488
+ <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.009">
489
489
  </testcase>
490
490
  </testsuite>
491
- <testsuite name="EcoFlowMqttApiManager" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:23" time="5.17" tests="26">
492
- <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.023">
491
+ <testsuite name="PowerStreamAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:50" time="1.421" tests="26">
492
+ <testcase classname="PowerStreamAccessory initialize should add required services when initializing accessory" name="PowerStreamAccessory initialize should add required services when initializing accessory" time="0.006">
493
+ </testcase>
494
+ <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics should initialize outlet service with additional characteristics when settings are defined in config" time="0.004">
495
+ </testcase>
496
+ <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics should initialize outlet service without additional characteristics when settings are not defined in config" time="0.015">
497
+ </testcase>
498
+ <testcase classname="PowerStreamAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" name="PowerStreamAccessory initialize outletServices additionalCharacteristics should notinitialize outlet service without additional characteristics when outlet settings are not defined in config" time="0.004">
499
+ </testcase>
500
+ <testcase classname="PowerStreamAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" name="PowerStreamAccessory initialize brightnessService maxBrightness should initialize indicator service with permanent max brightness when it is created" time="0.003">
501
+ </testcase>
502
+ <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.003">
503
+ </testcase>
504
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should not update outlet characteristics when Hearbeat message is received with undefined status" time="0.004">
505
+ </testcase>
506
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with 0 watts" time="0.004">
507
+ </testcase>
508
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Consumption when Hearbeat message is received with watts" time="0.027">
509
+ </testcase>
510
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with 0 volt" time="0.003">
511
+ </testcase>
512
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Voltage when Hearbeat message is received with volt" time="0.012">
513
+ </testcase>
514
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with 0 current" time="0.004">
515
+ </testcase>
516
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" name="PowerStreamAccessory processQuotaMessage Hearbeat updateOutletValues should update Output Current when Hearbeat message is received with current" time="0.006">
517
+ </testcase>
518
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should not update brightness characteristics when Hearbeat message is received with undefined status" time="0.006">
493
519
  </testcase>
494
- <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.004">
520
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with 0 brightness" time="0.006">
521
+ </testcase>
522
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" name="PowerStreamAccessory processQuotaMessage Hearbeat updateBrightnessValues should update Brightness when Hearbeat message is received with brightness" time="0.006">
523
+ </testcase>
524
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" name="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should not update temperature service characteristics when Hearbeat message is received with undefined status" time="0.005">
525
+ </testcase>
526
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" name="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with 0 temp" time="0.017">
527
+ </testcase>
528
+ <testcase classname="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" name="PowerStreamAccessory processQuotaMessage Hearbeat updateTemperatureValues should update CurrentTemperature when Hearbeat message is received with temp" time="0.003">
529
+ </testcase>
530
+ <testcase classname="PowerStreamAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" name="PowerStreamAccessory initializeQuota should initialize quota when is called before initializeDefaultValues" time="0.002">
531
+ </testcase>
532
+ <testcase classname="PowerStreamAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" name="PowerStreamAccessory initializeQuota updateOutletValues should update outlet level-related characteristics when initializing default values" time="0.003">
533
+ </testcase>
534
+ <testcase classname="PowerStreamAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
535
+ when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeQuota updateOutletValues should update outlet level-related characteristics
536
+ when initializing default values with quotas were not initialized properly for it" time="0.004">
537
+ </testcase>
538
+ <testcase classname="PowerStreamAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" name="PowerStreamAccessory initializeQuota updateBrightnessValues should update brightness characteristic when initializing default values" time="0.002">
539
+ </testcase>
540
+ <testcase classname="PowerStreamAccessory initializeQuota updateBrightnessValues should update brightness characteristic
541
+ when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeQuota updateBrightnessValues should update brightness characteristic
542
+ when initializing default values with quotas were not initialized properly for it" time="0.002">
543
+ </testcase>
544
+ <testcase classname="PowerStreamAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" name="PowerStreamAccessory initializeQuota updateTemperatureValues should update current temperature characteristic when initializing default values" time="0.003">
545
+ </testcase>
546
+ <testcase classname="PowerStreamAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
547
+ when initializing default values with quotas were not initialized properly for it" name="PowerStreamAccessory initializeQuota updateTemperatureValues should update current temperature characteristic
548
+ when initializing default values with quotas were not initialized properly for it" time="0.003">
549
+ </testcase>
550
+ </testsuite>
551
+ <testsuite name="EcoFlowMqttApiManager" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:48" time="5.574" tests="26">
552
+ <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.013">
495
553
  </testcase>
496
- <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.005">
554
+ <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.013">
497
555
  </testcase>
498
- <testcase classname="EcoFlowMqttApiManager connect should log when connection is established" name="EcoFlowMqttApiManager connect should log when connection is established" time="0.005">
556
+ <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.009">
499
557
  </testcase>
500
- <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.006">
558
+ <testcase classname="EcoFlowMqttApiManager connect should log when connection is established" name="EcoFlowMqttApiManager connect should log when connection is established" time="0.007">
501
559
  </testcase>
502
- <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.012">
560
+ <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.01">
503
561
  </testcase>
504
- <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.03">
562
+ <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.035">
563
+ </testcase>
564
+ <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.011">
505
565
  </testcase>
506
566
  <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.006">
507
567
  </testcase>
508
- <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">
568
+ <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.006">
509
569
  </testcase>
510
- <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.005">
570
+ <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.003">
511
571
  </testcase>
512
- <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.005">
572
+ <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">
513
573
  </testcase>
514
- <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.005">
574
+ <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.02">
515
575
  </testcase>
516
- <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.005">
576
+ <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.006">
517
577
  </testcase>
518
578
  <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.005">
519
579
  </testcase>
@@ -523,45 +583,45 @@
523
583
  </testcase>
524
584
  <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">
525
585
  </testcase>
526
- <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">
586
+ <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.018">
527
587
  </testcase>
528
588
  <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">
529
589
  </testcase>
530
- <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.018">
590
+ <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.01">
531
591
  </testcase>
532
- <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.004">
592
+ <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.006">
533
593
  </testcase>
534
- <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.008">
594
+ <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.006">
535
595
  </testcase>
536
- <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.006">
596
+ <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">
537
597
  </testcase>
538
- <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.004">
598
+ <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.005">
539
599
  </testcase>
540
600
  <testcase classname="EcoFlowMqttApiManager destroy should unsubscribe from all topics for all devices that shares single mqtt client
541
601
  when destroying an EcoFlow MQTT API object" name="EcoFlowMqttApiManager destroy should unsubscribe from all topics for all devices that shares single mqtt client
542
- when destroying an EcoFlow MQTT API object" time="0.008">
602
+ when destroying an EcoFlow MQTT API object" time="0.024">
543
603
  </testcase>
544
604
  <testcase classname="EcoFlowMqttApiManager destroy should unsubscribe from all topics for devices that has own mqtt client
545
605
  when destroying an EcoFlow MQTT API object" name="EcoFlowMqttApiManager destroy should unsubscribe from all topics for devices that has own mqtt client
546
- when destroying an EcoFlow MQTT API object" time="0.017">
606
+ when destroying an EcoFlow MQTT API object" time="0.005">
547
607
  </testcase>
548
608
  </testsuite>
549
- <testsuite name="OutletServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:28" time="2.119" tests="23">
550
- <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.005">
551
- </testcase>
552
- <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">
609
+ <testsuite name="OutletServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:54" time="2.968" tests="18">
610
+ <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.004">
553
611
  </testcase>
554
- <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">
612
+ <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">
555
613
  </testcase>
556
- <testcase classname="OutletServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" time="0.001">
614
+ <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">
557
615
  </testcase>
558
616
  <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">
559
617
  </testcase>
560
- <testcase classname="OutletServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" name="OutletServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" time="0.001">
618
+ <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">
619
+ </testcase>
620
+ <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">
561
621
  </testcase>
562
622
  <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">
563
623
  </testcase>
564
- <testcase classname="OutletServiceBase updateState should set On state to true when it is requested" name="OutletServiceBase updateState should set On state to true when it is requested" time="0">
624
+ <testcase classname="OutletServiceBase updateState should set On state to true when it is requested" name="OutletServiceBase updateState should set On state to true when it is requested" time="0.01">
565
625
  </testcase>
566
626
  <testcase classname="OutletServiceBase updateState should set On state to false when it is requested" name="OutletServiceBase updateState should set On state to false when it is requested" time="0.001">
567
627
  </testcase>
@@ -573,33 +633,23 @@
573
633
  </testcase>
574
634
  <testcase classname="OutletServiceBase updateOutputConsumption should set OutletInUse to false when OutputConsumption is 0" name="OutletServiceBase updateOutputConsumption should set OutletInUse to false when OutputConsumption is 0" time="0.001">
575
635
  </testcase>
576
- <testcase classname="OutletServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
577
- </testcase>
578
- <testcase classname="OutletServiceBase updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletServiceBase updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0">
579
- </testcase>
580
- <testcase classname="OutletServiceBase updateStatusLowBattery should set low battery level when it is less than 20" name="OutletServiceBase updateStatusLowBattery should set low battery level when it is less than 20" time="0.001">
581
- </testcase>
582
- <testcase classname="OutletServiceBase updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletServiceBase updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
583
- </testcase>
584
- <testcase classname="OutletServiceBase updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" name="OutletServiceBase updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" time="0">
585
- </testcase>
586
- <testcase classname="OutletServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
636
+ <testcase classname="OutletServiceBase updateOutputVoltage should set OutputVoltage when it is enabled in configuration" name="OutletServiceBase updateOutputVoltage should set OutputVoltage when it is enabled in configuration" time="0.001">
587
637
  </testcase>
588
- <testcase classname="OutletServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
638
+ <testcase classname="OutletServiceBase updateOutputVoltage should not set OutputVoltage when it is disabled in configuration" name="OutletServiceBase updateOutputVoltage should not set OutputVoltage when it is disabled in configuration" time="0.001">
589
639
  </testcase>
590
- <testcase classname="OutletServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" name="OutletServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" time="0.001">
640
+ <testcase classname="OutletServiceBase updateOutputCurrent should set OutputCurrent when it is enabled in configuration" name="OutletServiceBase updateOutputCurrent should set OutputCurrent when it is enabled in configuration" time="0.001">
591
641
  </testcase>
592
- <testcase classname="OutletServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" name="OutletServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" time="0.006">
642
+ <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">
593
643
  </testcase>
594
- <testcase classname="OutletServiceBase onOnSet should revert changing of On state when it is failed" name="OutletServiceBase onOnSet should revert changing of On state when it is failed" time="0.001">
644
+ <testcase classname="OutletServiceBase onOnSet should revert changing of On state when it is failed" name="OutletServiceBase onOnSet should revert changing of On state when it is failed" time="0.002">
595
645
  </testcase>
596
646
  </testsuite>
597
- <testsuite name="EcoFlowHomebridgePlatform" errors="0" failures="0" skipped="2" timestamp="2025-03-17T16:56:24" time="6.303" tests="31">
647
+ <testsuite name="EcoFlowHomebridgePlatform" errors="0" failures="0" skipped="2" timestamp="2025-03-25T09:14:50" time="7.364" tests="32">
598
648
  <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.005">
599
649
  </testcase>
600
650
  <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.001">
601
651
  </testcase>
602
- <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.011">
652
+ <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.003">
603
653
  </testcase>
604
654
  <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">
605
655
  </testcase>
@@ -607,125 +657,179 @@
607
657
  </testcase>
608
658
  <testcase classname="EcoFlowHomebridgePlatform constructor should initialize success method of log when creating new platform and success method is not defined" name="EcoFlowHomebridgePlatform constructor should initialize success method of log when creating new platform and success method is not defined" time="0.001">
609
659
  </testcase>
610
- <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">
660
+ <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.002">
611
661
  </testcase>
612
- <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">
662
+ <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.005">
613
663
  </testcase>
614
- <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">
664
+ <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.012">
615
665
  </testcase>
616
- <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">
666
+ <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.004">
617
667
  </testcase>
618
- <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.004">
668
+ <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">
619
669
  </testcase>
620
- <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.003">
670
+ <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">
621
671
  </testcase>
622
- <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.002">
672
+ <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">
623
673
  </testcase>
624
- <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.003">
674
+ <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.005">
625
675
  </testcase>
626
- <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.002">
676
+ <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.003">
627
677
  </testcase>
628
- <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.011">
678
+ <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.004">
629
679
  </testcase>
630
- <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.006">
680
+ <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.005">
631
681
  </testcase>
632
- <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.053">
682
+ <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.056">
633
683
  </testcase>
634
- <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.053">
684
+ <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">
635
685
  </testcase>
636
- <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.002">
686
+ <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">
637
687
  </testcase>
638
688
  <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.003">
639
689
  </testcase>
640
690
  <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">
641
691
  <skipped/>
642
692
  </testcase>
643
- <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.003">
693
+ <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.004">
644
694
  </testcase>
645
695
  <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">
646
696
  <skipped/>
647
697
  </testcase>
648
- <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.012">
698
+ <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.014">
649
699
  </testcase>
650
- <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.001">
700
+ <testcase classname="EcoFlowHomebridgePlatform registerDevices createAccessory should register SmartPlug accessory when model is SmartPlug in config" name="EcoFlowHomebridgePlatform registerDevices createAccessory should register SmartPlug accessory when model is SmartPlug in config" time="0.01">
651
701
  </testcase>
652
- <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.001">
702
+ <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.005">
653
703
  </testcase>
654
- <testcase classname="EcoFlowHomebridgePlatform registerDevices cachedDevice should initialize device when registering cached device" name="EcoFlowHomebridgePlatform registerDevices cachedDevice should initialize device when registering cached device" time="0.052">
704
+ <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.017">
655
705
  </testcase>
656
- <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.052">
706
+ <testcase classname="EcoFlowHomebridgePlatform registerDevices cachedDevice should initialize device when registering cached device" name="EcoFlowHomebridgePlatform registerDevices cachedDevice should initialize device when registering cached device" time="0.054">
657
707
  </testcase>
658
- <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.002">
708
+ <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">
709
+ </testcase>
710
+ <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.004">
659
711
  </testcase>
660
712
  <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">
661
713
  </testcase>
662
714
  </testsuite>
663
- <testsuite name="EcoFlowAccessoryBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:24" time="6.849" tests="22">
715
+ <testsuite name="EcoFlowAccessoryBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:51" time="6.662" tests="22">
664
716
  <testcase classname="EcoFlowAccessoryBase initialize should add required services when initializing accessory" name="EcoFlowAccessoryBase initialize should add required services when initializing accessory" time="0.004">
665
717
  </testcase>
666
- <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.152">
718
+ <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.154">
719
+ </testcase>
720
+ <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.151">
721
+ </testcase>
722
+ <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.156">
723
+ </testcase>
724
+ <testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota and set_reply messages when mqtt is failed to connect" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota and set_reply messages when mqtt is failed to connect" time="0.008">
725
+ </testcase>
726
+ <testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota and set_reply messages when mqtt is connected successfully" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota and set_reply messages when mqtt is connected successfully" time="0.015">
727
+ </testcase>
728
+ <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.011">
729
+ </testcase>
730
+ <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.002">
667
731
  </testcase>
668
- <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">
732
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when no &apos;set&apos; command was sent yet" name="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when no &apos;set&apos; command was sent yet" time="0.016">
669
733
  </testcase>
670
- <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.153">
734
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when it was not initialized by &apos;set&apos; command from current instance" name="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when it was not initialized by &apos;set&apos; command from current instance" time="0.011">
671
735
  </testcase>
672
- <testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota and set_reply messages when mqtt is failed to connect" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should not subscribe on parameters updates for quota and set_reply messages when mqtt is failed to connect" time="0.003">
736
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;ack&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;ack&apos; acknowledgement" time="0.004">
673
737
  </testcase>
674
- <testcase classname="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota and set_reply messages when mqtt is connected successfully" name="EcoFlowAccessoryBase subscribeOnParameterUpdates should subscribe on parameters updates for quota and set_reply messages when mqtt is connected successfully" time="0.003">
738
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;ack&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;ack&apos; acknowledgement" time="0.007">
675
739
  </testcase>
676
- <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.003">
740
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;result&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;result&apos; acknowledgement" time="0.025">
677
741
  </testcase>
678
- <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.001">
742
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;result&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;result&apos; acknowledgement" time="0.003">
679
743
  </testcase>
680
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when no &apos;set&apos; command was sent yet" name="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when no &apos;set&apos; command was sent yet" time="0.003">
744
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;configOk&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;configOk&apos; acknowledgement" time="0.003">
681
745
  </testcase>
682
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when it was not initialized by &apos;set&apos; command from current instance" name="EcoFlowAccessoryBase processSetReplyMessage should ignore &apos;set_reply&apos; message when it was not initialized by &apos;set&apos; command from current instance" time="0.002">
746
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;configOk&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;configOk&apos; acknowledgement" time="0.003">
683
747
  </testcase>
684
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;ack&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;ack&apos; acknowledgement" time="0.001">
748
+ <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message does not contain ack/result/configOk acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message does not contain ack/result/configOk acknowledgement" time="0.004">
685
749
  </testcase>
686
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;ack&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;ack&apos; acknowledgement" time="0.002">
750
+ <testcase classname="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" name="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" time="0.404">
687
751
  </testcase>
688
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;result&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;result&apos; acknowledgement" time="0.002">
752
+ <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">
689
753
  </testcase>
690
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;result&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;result&apos; acknowledgement" time="0.002">
754
+ <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.006">
691
755
  </testcase>
692
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;configOk&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should do nothing when &apos;set_reply&apos; message contains successful &apos;configOk&apos; acknowledgement" time="0.002">
756
+ <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.002">
693
757
  </testcase>
694
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;configOk&apos; acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message contains failed &apos;configOk&apos; acknowledgement" time="0.002">
758
+ <testcase classname="EcoFlowAccessoryBase sendSetCommand should stop mqtt reconnection when destroying accessory" name="EcoFlowAccessoryBase sendSetCommand should stop mqtt reconnection when destroying accessory" time="0.002">
695
759
  </testcase>
696
- <testcase classname="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message does not contain ack/result/configOk acknowledgement" name="EcoFlowAccessoryBase processSetReplyMessage should call revert function when &apos;set_reply&apos; message does not contain ack/result/configOk acknowledgement" time="0.001">
760
+ </testsuite>
761
+ <testsuite name="BatteryOutletServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:57" time="0.572" tests="14">
762
+ <testcase classname="BatteryOutletServiceBase initialize should add Outlet service when it is not added to accessory yet" name="BatteryOutletServiceBase initialize should add Outlet service when it is not added to accessory yet" time="0.005">
763
+ </testcase>
764
+ <testcase classname="BatteryOutletServiceBase initialize should use existing Outlet service when it is already added to accessory" name="BatteryOutletServiceBase initialize should use existing Outlet service when it is already added to accessory" time="0.001">
765
+ </testcase>
766
+ <testcase classname="BatteryOutletServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" name="BatteryOutletServiceBase initialize should not add custom characteristics when initializing accessory without turned on custom characteristics" time="0.001">
767
+ </testcase>
768
+ <testcase classname="BatteryOutletServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" name="BatteryOutletServiceBase initialize should add InputConsumptionWatts characteristic when it is enabled in configuration" time="0.001">
769
+ </testcase>
770
+ <testcase classname="BatteryOutletServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" name="BatteryOutletServiceBase initialize should add BatteryLevel characteristic when it is enabled in configuration" time="0">
771
+ </testcase>
772
+ <testcase classname="BatteryOutletServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" name="BatteryOutletServiceBase updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
773
+ </testcase>
774
+ <testcase classname="BatteryOutletServiceBase updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="BatteryOutletServiceBase updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
775
+ </testcase>
776
+ <testcase classname="BatteryOutletServiceBase updateStatusLowBattery should set low battery level when it is less than 20" name="BatteryOutletServiceBase updateStatusLowBattery should set low battery level when it is less than 20" time="0.001">
697
777
  </testcase>
698
- <testcase classname="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" name="EcoFlowAccessoryBase destroy should stop mqtt reconnection when destroying accessory" time="0.401">
778
+ <testcase classname="BatteryOutletServiceBase updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="BatteryOutletServiceBase updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
699
779
  </testcase>
700
- <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.001">
780
+ <testcase classname="BatteryOutletServiceBase updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" name="BatteryOutletServiceBase updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" time="0.001">
701
781
  </testcase>
702
- <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.004">
782
+ <testcase classname="BatteryOutletServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="BatteryOutletServiceBase updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
703
783
  </testcase>
704
- <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.001">
784
+ <testcase classname="BatteryOutletServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="BatteryOutletServiceBase updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.009">
705
785
  </testcase>
706
- <testcase classname="EcoFlowAccessoryBase sendSetCommand should stop mqtt reconnection when destroying accessory" name="EcoFlowAccessoryBase sendSetCommand should stop mqtt reconnection when destroying accessory" time="0">
786
+ <testcase classname="BatteryOutletServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" name="BatteryOutletServiceBase updateChargingState should set charging state to false when input power consumption is 0 Watt" time="0.002">
787
+ </testcase>
788
+ <testcase classname="BatteryOutletServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" name="BatteryOutletServiceBase updateChargingState should set charging state to true when input power consumption is more than 0 Watt" time="0.002">
707
789
  </testcase>
708
790
  </testsuite>
709
- <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:30" time="0.582" tests="12">
710
- <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.007">
791
+ <testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:58" time="0.613" tests="10">
792
+ <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">
793
+ </testcase>
794
+ <testcase classname="OutletService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.002">
795
+ </testcase>
796
+ <testcase classname="OutletService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
797
+ </testcase>
798
+ <testcase classname="OutletService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
799
+ </testcase>
800
+ <testcase classname="OutletService updateStatusLowBattery should set low battery level when it is less than 20" name="OutletService updateStatusLowBattery should set low battery level when it is less than 20" time="0.002">
801
+ </testcase>
802
+ <testcase classname="OutletService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
803
+ </testcase>
804
+ <testcase classname="OutletService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" name="OutletService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" time="0.001">
805
+ </testcase>
806
+ <testcase classname="OutletService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
807
+ </testcase>
808
+ <testcase classname="OutletService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
809
+ </testcase>
810
+ <testcase classname="OutletService onOnSet should not allow to set ON value" name="OutletService onOnSet should not allow to set ON value" time="0.002">
811
+ </testcase>
812
+ </testsuite>
813
+ <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:58" time="1.213" tests="12">
814
+ <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.005">
711
815
  </testcase>
712
816
  <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">
713
817
  </testcase>
714
818
  <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">
715
819
  </testcase>
716
- <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">
820
+ <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.004">
717
821
  </testcase>
718
- <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.002">
822
+ <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.012">
719
823
  </testcase>
720
- <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.001">
824
+ <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.002">
721
825
  </testcase>
722
- <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">
826
+ <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.002">
723
827
  </testcase>
724
828
  <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">
725
829
  </testcase>
726
830
  <testcase classname="OutletAcService onOnSet should send Set command of MPPT moduleType to device
727
831
  when Enabled value was changed to true and service was initialized with MPPT setAcModuleType" name="OutletAcService onOnSet should send Set command of MPPT moduleType to device
728
- when Enabled value was changed to true and service was initialized with MPPT setAcModuleType" time="0.018">
832
+ when Enabled value was changed to true and service was initialized with MPPT setAcModuleType" time="0.001">
729
833
  </testcase>
730
834
  <testcase classname="OutletAcService onOnSet should send Set command of INV moduleType to device
731
835
  when Enabled value was changed to true and service was initialized with INV setAcModuleType" name="OutletAcService onOnSet should send Set command of INV moduleType to device
@@ -736,7 +840,7 @@
736
840
  <testcase classname="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
737
841
  </testcase>
738
842
  </testsuite>
739
- <testsuite name="OutletInvService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:31" time="0.683" tests="10">
843
+ <testsuite name="OutletInvService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:59" time="0.57" tests="10">
740
844
  <testcase classname="OutletInvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" name="OutletInvService updateOutputConsumption should set OutputConsumption when it is enabled in configuration" time="0.003">
741
845
  </testcase>
742
846
  <testcase classname="OutletInvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletInvService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.001">
@@ -753,65 +857,43 @@
753
857
  </testcase>
754
858
  <testcase classname="OutletInvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletInvService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.001">
755
859
  </testcase>
756
- <testcase classname="OutletInvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletInvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
757
- </testcase>
758
- <testcase classname="OutletInvService onOnSet should not allow to set ON value" name="OutletInvService onOnSet should not allow to set ON value" time="0.002">
759
- </testcase>
760
- </testsuite>
761
- <testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:31" time="1.272" tests="10">
762
- <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.005">
763
- </testcase>
764
- <testcase classname="OutletService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" name="OutletService updateOutputConsumption should not set OutputConsumption when it is disabled in configuration" time="0.011">
860
+ <testcase classname="OutletInvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletInvService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0">
765
861
  </testcase>
766
- <testcase classname="OutletService updateInputConsumption should set InputConsumption when it is enabled in configuration" name="OutletService updateInputConsumption should set InputConsumption when it is enabled in configuration" time="0.001">
767
- </testcase>
768
- <testcase classname="OutletService updateInputConsumption should not set InputConsumption when it is disabled in configuration" name="OutletService updateInputConsumption should not set InputConsumption when it is disabled in configuration" time="0.001">
769
- </testcase>
770
- <testcase classname="OutletService updateStatusLowBattery should set low battery level when it is less than 20" name="OutletService updateStatusLowBattery should set low battery level when it is less than 20" time="0.001">
771
- </testcase>
772
- <testcase classname="OutletService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" name="OutletService updateStatusLowBattery should set normal battery level when it is more than or equal to 20" time="0.001">
773
- </testcase>
774
- <testcase classname="OutletService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" name="OutletService updateStatusLowBattery should not set StatusLowBattery when it is disabled in configuration" time="0.001">
775
- </testcase>
776
- <testcase classname="OutletService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" name="OutletService updateBatteryLevel should set BatteryLevel when it is enabled in configuration" time="0.002">
777
- </testcase>
778
- <testcase classname="OutletService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" name="OutletService updateBatteryLevel should not set BatteryLevel when it is disabled in configuration" time="0.001">
779
- </testcase>
780
- <testcase classname="OutletService onOnSet should not allow to set ON value" name="OutletService onOnSet should not allow to set ON value" time="0.001">
862
+ <testcase classname="OutletInvService onOnSet should not allow to set ON value" name="OutletInvService onOnSet should not allow to set ON value" time="0.001">
781
863
  </testcase>
782
864
  </testsuite>
783
- <testsuite name="LightBulbServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:32" time="0.52" tests="11">
865
+ <testsuite name="LightBulbServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:59" time="0.584" tests="11">
784
866
  <testcase classname="LightBulbServiceBase initialize should add Fan service when it is not added to accessory yet" name="LightBulbServiceBase initialize should add Fan service when it is not added to accessory yet" time="0.003">
785
867
  </testcase>
786
868
  <testcase classname="LightBulbServiceBase initialize should use existing Fan service when it is already added to accessory" name="LightBulbServiceBase initialize should use existing Fan service when it is already added to accessory" time="0.001">
787
869
  </testcase>
788
- <testcase classname="LightBulbServiceBase initialize should add Fan characteristics when initializing accessory" name="LightBulbServiceBase initialize should add Fan characteristics when initializing accessory" time="0.001">
870
+ <testcase classname="LightBulbServiceBase initialize should add Fan characteristics when initializing accessory" name="LightBulbServiceBase initialize should add Fan characteristics when initializing accessory" time="0">
789
871
  </testcase>
790
872
  <testcase classname="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" name="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" time="0.001">
791
873
  </testcase>
792
874
  <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">
793
875
  </testcase>
794
- <testcase classname="LightBulbServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" name="LightBulbServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" time="0.001">
876
+ <testcase classname="LightBulbServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" name="LightBulbServiceBase updateRotationSpeed should set 100% rotation speed when maximum value is set" time="0.004">
795
877
  </testcase>
796
878
  <testcase classname="LightBulbServiceBase updateRotationSpeed should set 0% rotation speed when minimum value is set" name="LightBulbServiceBase updateRotationSpeed should set 0% rotation speed when minimum value is set" time="0.001">
797
879
  </testcase>
798
- <testcase classname="LightBulbServiceBase updateRotationSpeed should set rotation speed when it is requested" name="LightBulbServiceBase updateRotationSpeed should set rotation speed when it is requested" time="0.001">
880
+ <testcase classname="LightBulbServiceBase updateRotationSpeed should set rotation speed when it is requested" name="LightBulbServiceBase updateRotationSpeed should set rotation speed when it is requested" time="0.016">
799
881
  </testcase>
800
882
  <testcase classname="LightBulbServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" name="LightBulbServiceBase updateRotationSpeed should revert changing of rotation speed to value set from UI when sending Set command to device is failed" time="0.001">
801
883
  </testcase>
802
- <testcase classname="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" name="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" time="0.002">
884
+ <testcase classname="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" name="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" time="0.005">
803
885
  </testcase>
804
886
  <testcase classname="LightBulbServiceBase onRotationSpeedSet should revert changing of rotation speed when sending Set command to device is failed" name="LightBulbServiceBase onRotationSpeedSet should revert changing of rotation speed when sending Set command to device is failed" time="0.001">
805
887
  </testcase>
806
888
  </testsuite>
807
- <testsuite name="LightBulbServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:32" time="0.558" tests="11">
808
- <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.003">
889
+ <testsuite name="LightBulbServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:59" time="0.521" tests="11">
890
+ <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">
809
891
  </testcase>
810
892
  <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">
811
893
  </testcase>
812
- <testcase classname="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" name="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" time="0">
894
+ <testcase classname="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" name="LightBulbServiceBase initialize should add Lightbulb characteristics when initializing accessory" time="0.001">
813
895
  </testcase>
814
- <testcase classname="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" name="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" time="0">
896
+ <testcase classname="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" name="LightBulbServiceBase setOn should not allow to set value when it is updated from UI" time="0.001">
815
897
  </testcase>
816
898
  <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">
817
899
  </testcase>
@@ -819,23 +901,23 @@
819
901
  </testcase>
820
902
  <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.001">
821
903
  </testcase>
822
- <testcase classname="LightBulbServiceBase updateBrightness should set brightness when it is requested" name="LightBulbServiceBase updateBrightness should set brightness when it is requested" time="0.009">
904
+ <testcase classname="LightBulbServiceBase updateBrightness should set brightness when it is requested" name="LightBulbServiceBase updateBrightness should set brightness when it is requested" time="0.001">
823
905
  </testcase>
824
- <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.002">
906
+ <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">
825
907
  </testcase>
826
908
  <testcase classname="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" name="LightBulbServiceBase onOnSet should revert changing of On state when it is failed" time="0.001">
827
909
  </testcase>
828
910
  <testcase classname="LightBulbServiceBase onBrightnessSet should revert changing of brightness when sending Set command to device is failed" name="LightBulbServiceBase onBrightnessSet should revert changing of brightness when sending Set command to device is failed" time="0.001">
829
911
  </testcase>
830
912
  </testsuite>
831
- <testsuite name="OutletDc12vService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:32" time="0.486" tests="9">
913
+ <testsuite name="OutletDc12vService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:00" time="0.712" tests="9">
832
914
  <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">
833
915
  </testcase>
834
916
  <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">
835
917
  </testcase>
836
918
  <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.001">
837
919
  </testcase>
838
- <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">
920
+ <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.001">
839
921
  </testcase>
840
922
  <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.001">
841
923
  </testcase>
@@ -845,19 +927,39 @@
845
927
  </testcase>
846
928
  <testcase classname="OutletDc12vService onOnSet should send Set command to device when Enabled value was changed to false" name="OutletDc12vService onOnSet should send Set command to device when Enabled value was changed to false" time="0.001">
847
929
  </testcase>
848
- <testcase classname="OutletDc12vService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletDc12vService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0">
930
+ <testcase classname="OutletDc12vService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletDc12vService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
931
+ </testcase>
932
+ </testsuite>
933
+ <testsuite name="OutletAcLvService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:00" time="0.635" tests="9">
934
+ <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.007">
935
+ </testcase>
936
+ <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">
937
+ </testcase>
938
+ <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">
939
+ </testcase>
940
+ <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">
941
+ </testcase>
942
+ <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">
943
+ </testcase>
944
+ <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">
945
+ </testcase>
946
+ <testcase classname="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to true" name="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to true" time="0.001">
947
+ </testcase>
948
+ <testcase classname="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to false" name="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to false" time="0.001">
949
+ </testcase>
950
+ <testcase classname="OutletAcLvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcLvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
849
951
  </testcase>
850
952
  </testsuite>
851
- <testsuite name="OutletAcHvService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:33" time="0.562" tests="9">
852
- <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.002">
953
+ <testsuite name="OutletAcHvService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:01" time="0.573" tests="9">
954
+ <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.003">
853
955
  </testcase>
854
956
  <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">
855
957
  </testcase>
856
- <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">
958
+ <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">
857
959
  </testcase>
858
- <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">
960
+ <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">
859
961
  </testcase>
860
- <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">
962
+ <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">
861
963
  </testcase>
862
964
  <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">
863
965
  </testcase>
@@ -868,74 +970,104 @@
868
970
  <testcase classname="OutletAcHvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcHvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
869
971
  </testcase>
870
972
  </testsuite>
871
- <testsuite name="OutletAcLvService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:33" time="0.649" tests="9">
872
- <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.003">
973
+ <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:01" time="0.605" tests="9">
974
+ <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.004">
873
975
  </testcase>
874
- <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">
976
+ <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">
875
977
  </testcase>
876
- <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.002">
978
+ <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.014">
877
979
  </testcase>
878
- <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">
980
+ <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.002">
879
981
  </testcase>
880
- <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">
982
+ <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">
881
983
  </testcase>
882
- <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">
984
+ <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">
883
985
  </testcase>
884
- <testcase classname="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to true" name="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to true" time="0.002">
986
+ <testcase classname="OutletAcService onOnSet should send Set command to device when Enabled value was changed to true" name="OutletAcService onOnSet should send Set command to device when Enabled value was changed to true" time="0.001">
885
987
  </testcase>
886
- <testcase classname="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to false" name="OutletAcLvService onOnSet should send Set command to device when Enabled value was changed to false" time="0.001">
988
+ <testcase classname="OutletAcService onOnSet should send Set command to device when Enabled value was changed to false" name="OutletAcService onOnSet should send Set command to device when Enabled value was changed to false" time="0.001">
887
989
  </testcase>
888
- <testcase classname="OutletAcLvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcLvService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.002">
990
+ <testcase classname="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
889
991
  </testcase>
890
992
  </testsuite>
891
- <testsuite name="PowerDemandService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:33" time="0.574" tests="11">
892
- <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">
993
+ <testsuite name="PluginConfigDevicesRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:14:57" time="4.126" tests="14">
994
+ <testcase classname="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" name="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" time="0.002">
893
995
  </testcase>
894
- <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">
996
+ <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.031">
895
997
  </testcase>
896
- <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">
998
+ <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.005">
897
999
  </testcase>
898
- <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">
1000
+ <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.024">
899
1001
  </testcase>
900
- <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">
1002
+ <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.016">
901
1003
  </testcase>
902
- <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.013">
1004
+ <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.018">
903
1005
  </testcase>
904
- <testcase classname="PowerDemandService onOnSet should send Set command with max demand value to device when On value was changed to true" name="PowerDemandService onOnSet should send Set command with max demand value to device when On value was changed to true" time="0.001">
1006
+ <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">
905
1007
  </testcase>
906
- <testcase classname="PowerDemandService onOnSet should send Set command with min demand value to device when On value was changed to false" name="PowerDemandService onOnSet should send Set command with min demand value to device when On value was changed to false" time="0.001">
1008
+ <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.03">
907
1009
  </testcase>
908
- <testcase classname="PowerDemandService onOnSet should revert changing of On state when sending Set command to device is failed" name="PowerDemandService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1010
+ <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.042">
909
1011
  </testcase>
910
- <testcase classname="PowerDemandService onPowerDemandSet should send Set command to device when Power Demand value was changed" name="PowerDemandService onPowerDemandSet should send Set command to device when Power Demand value was changed" time="0.001">
1012
+ <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.022">
911
1013
  </testcase>
912
- <testcase classname="PowerDemandService onPowerDemandSet should revert changing of Power Demand when sending Set command to device is failed" name="PowerDemandService onPowerDemandSet should revert changing of Power Demand when sending Set command to device is failed" time="0.001">
1014
+ <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.026">
1015
+ </testcase>
1016
+ <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">
1017
+ </testcase>
1018
+ <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.012">
1019
+ </testcase>
1020
+ <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.011">
913
1021
  </testcase>
914
1022
  </testsuite>
915
- <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:33" time="0.602" tests="9">
916
- <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">
1023
+ <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:01" time="0.566" tests="9">
1024
+ <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.004">
917
1025
  </testcase>
918
- <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">
1026
+ <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">
919
1027
  </testcase>
920
- <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.002">
1028
+ <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">
921
1029
  </testcase>
922
- <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">
1030
+ <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">
923
1031
  </testcase>
924
- <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">
1032
+ <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">
925
1033
  </testcase>
926
- <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">
1034
+ <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">
927
1035
  </testcase>
928
- <testcase classname="OutletAcService onOnSet should send Set command to device when Enabled value was changed to true" name="OutletAcService onOnSet should send Set command to device when Enabled value was changed to true" time="0.001">
1036
+ <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to true" name="OutletUsbService onOnSet should send Set command to device when On value was changed to true" time="0.002">
929
1037
  </testcase>
930
- <testcase classname="OutletAcService onOnSet should send Set command to device when Enabled value was changed to false" name="OutletAcService onOnSet should send Set command to device when Enabled value was changed to false" time="0.001">
1038
+ <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to false" name="OutletUsbService onOnSet should send Set command to device when On value was changed to false" time="0.001">
931
1039
  </testcase>
932
- <testcase classname="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletAcService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
1040
+ <testcase classname="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1041
+ </testcase>
1042
+ </testsuite>
1043
+ <testsuite name="PowerDemandService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:01" time="0.537" tests="11">
1044
+ <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.002">
1045
+ </testcase>
1046
+ <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">
1047
+ </testcase>
1048
+ <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">
1049
+ </testcase>
1050
+ <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">
1051
+ </testcase>
1052
+ <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">
1053
+ </testcase>
1054
+ <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">
1055
+ </testcase>
1056
+ <testcase classname="PowerDemandService onOnSet should send Set command with max demand value to device when On value was changed to true" name="PowerDemandService onOnSet should send Set command with max demand value to device when On value was changed to true" time="0.001">
1057
+ </testcase>
1058
+ <testcase classname="PowerDemandService onOnSet should send Set command with min demand value to device when On value was changed to false" name="PowerDemandService onOnSet should send Set command with min demand value to device when On value was changed to false" time="0">
1059
+ </testcase>
1060
+ <testcase classname="PowerDemandService onOnSet should revert changing of On state when sending Set command to device is failed" name="PowerDemandService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1061
+ </testcase>
1062
+ <testcase classname="PowerDemandService onPowerDemandSet should send Set command to device when Power Demand value was changed" name="PowerDemandService onPowerDemandSet should send Set command to device when Power Demand value was changed" time="0.001">
1063
+ </testcase>
1064
+ <testcase classname="PowerDemandService onPowerDemandSet should revert changing of Power Demand when sending Set command to device is failed" name="PowerDemandService onPowerDemandSet should revert changing of Power Demand when sending Set command to device is failed" time="0.001">
933
1065
  </testcase>
934
1066
  </testsuite>
935
- <testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:34" time="0.454" tests="11">
936
- <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">
1067
+ <testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:01" time="0.548" tests="11">
1068
+ <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.004">
937
1069
  </testcase>
938
- <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">
1070
+ <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">
939
1071
  </testcase>
940
1072
  <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">
941
1073
  </testcase>
@@ -943,9 +1075,9 @@
943
1075
  </testcase>
944
1076
  <testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0.001">
945
1077
  </testcase>
946
- <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">
1078
+ <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">
947
1079
  </testcase>
948
- <testcase classname="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" name="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" time="0">
1080
+ <testcase classname="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" name="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" time="0.001">
949
1081
  </testcase>
950
1082
  <testcase classname="BrightnessService onOnSet should send Set command with min brightness value to device when On value was changed to false" name="BrightnessService onOnSet should send Set command with min brightness value to device when On value was changed to false" time="0.001">
951
1083
  </testcase>
@@ -956,37 +1088,31 @@
956
1088
  <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">
957
1089
  </testcase>
958
1090
  </testsuite>
959
- <testsuite name="PluginConfigDevicesRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:30" time="4.335" tests="14">
960
- <testcase classname="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" name="PluginConfigDevicesRenderer hideDeviceSettingsPerModel should contain proper hideDeviceSettingsPerModel configuration" time="0.003">
961
- </testcase>
962
- <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">
963
- </testcase>
964
- <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.007">
965
- </testcase>
966
- <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.019">
1091
+ <testsuite name="BrightnessService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:02" time="0.44" tests="11">
1092
+ <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">
967
1093
  </testcase>
968
- <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.012">
1094
+ <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">
969
1095
  </testcase>
970
- <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.028">
1096
+ <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">
971
1097
  </testcase>
972
- <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.002">
1098
+ <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">
973
1099
  </testcase>
974
- <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.043">
1100
+ <testcase classname="BrightnessService updateBrightness should set brightness when it is requested" name="BrightnessService updateBrightness should set brightness when it is requested" time="0.001">
975
1101
  </testcase>
976
- <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.036">
1102
+ <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.009">
977
1103
  </testcase>
978
- <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.024">
1104
+ <testcase classname="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" name="BrightnessService onOnSet should send Set command with max brightness value to device when On value was changed to true" time="0.001">
979
1105
  </testcase>
980
- <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.02">
1106
+ <testcase classname="BrightnessService onOnSet should send Set command with min brightness value to device when On value was changed to false" name="BrightnessService onOnSet should send Set command with min brightness value to device when On value was changed to false" time="0.001">
981
1107
  </testcase>
982
- <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.017">
1108
+ <testcase classname="BrightnessService onOnSet should revert changing of On state when sending Set command to device is failed" name="BrightnessService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
983
1109
  </testcase>
984
- <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.01">
1110
+ <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">
985
1111
  </testcase>
986
- <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.015">
1112
+ <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.002">
987
1113
  </testcase>
988
1114
  </testsuite>
989
- <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:34" time="0.492" tests="9">
1115
+ <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:02" time="0.489" tests="9">
990
1116
  <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">
991
1117
  </testcase>
992
1118
  <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">
@@ -995,41 +1121,41 @@
995
1121
  </testcase>
996
1122
  <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">
997
1123
  </testcase>
998
- <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.004">
1124
+ <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">
999
1125
  </testcase>
1000
- <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">
1126
+ <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">
1001
1127
  </testcase>
1002
1128
  <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to true" name="OutletUsbService onOnSet should send Set command to device when On value was changed to true" time="0.001">
1003
1129
  </testcase>
1004
- <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to false" name="OutletUsbService onOnSet should send Set command to device when On value was changed to false" time="0">
1130
+ <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to false" name="OutletUsbService onOnSet should send Set command to device when On value was changed to false" time="0.001">
1005
1131
  </testcase>
1006
1132
  <testcase classname="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1007
1133
  </testcase>
1008
1134
  </testsuite>
1009
- <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:34" time="0.441" tests="9">
1010
- <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">
1135
+ <testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:02" time="0.555" tests="9">
1136
+ <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.007">
1011
1137
  </testcase>
1012
- <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">
1138
+ <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.001">
1013
1139
  </testcase>
1014
- <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">
1140
+ <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">
1015
1141
  </testcase>
1016
- <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.009">
1142
+ <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">
1017
1143
  </testcase>
1018
- <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">
1144
+ <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">
1019
1145
  </testcase>
1020
- <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">
1146
+ <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.001">
1021
1147
  </testcase>
1022
- <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to true" name="OutletUsbService onOnSet should send Set command to device when On value was changed to true" time="0.001">
1148
+ <testcase classname="OutletCarService onOnSet should send Set command to device when On value was changed to true" name="OutletCarService onOnSet should send Set command to device when On value was changed to true" time="0.001">
1023
1149
  </testcase>
1024
- <testcase classname="OutletUsbService onOnSet should send Set command to device when On value was changed to false" name="OutletUsbService onOnSet should send Set command to device when On value was changed to false" time="0.001">
1150
+ <testcase classname="OutletCarService onOnSet should send Set command to device when On value was changed to false" name="OutletCarService onOnSet should send Set command to device when On value was changed to false" time="0">
1025
1151
  </testcase>
1026
- <testcase classname="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletUsbService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1152
+ <testcase classname="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.002">
1027
1153
  </testcase>
1028
1154
  </testsuite>
1029
- <testsuite name="BatteryStatusService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.39" tests="11">
1030
- <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">
1155
+ <testsuite name="BatteryStatusService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:02" time="0.375" tests="11">
1156
+ <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.003">
1031
1157
  </testcase>
1032
- <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">
1158
+ <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">
1033
1159
  </testcase>
1034
1160
  <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">
1035
1161
  </testcase>
@@ -1037,29 +1163,29 @@
1037
1163
  </testcase>
1038
1164
  <testcase classname="BatteryStatusService initialize should add Battery characteristics when initializing accessory" name="BatteryStatusService initialize should add Battery characteristics when initializing accessory" time="0">
1039
1165
  </testcase>
1040
- <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">
1166
+ <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">
1041
1167
  </testcase>
1042
- <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">
1168
+ <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.012">
1043
1169
  </testcase>
1044
1170
  <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">
1045
1171
  </testcase>
1046
- <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.028">
1172
+ <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.047">
1047
1173
  </testcase>
1048
- <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">
1174
+ <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.002">
1049
1175
  </testcase>
1050
1176
  <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">
1051
1177
  </testcase>
1052
1178
  </testsuite>
1053
- <testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.565" tests="9">
1054
- <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.004">
1179
+ <testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:02" time="0.468" tests="9">
1180
+ <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">
1055
1181
  </testcase>
1056
1182
  <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.001">
1057
1183
  </testcase>
1058
1184
  <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">
1059
1185
  </testcase>
1060
- <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.025">
1186
+ <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">
1061
1187
  </testcase>
1062
- <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">
1188
+ <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.004">
1063
1189
  </testcase>
1064
1190
  <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.001">
1065
1191
  </testcase>
@@ -1067,96 +1193,76 @@
1067
1193
  </testcase>
1068
1194
  <testcase classname="OutletCarService onOnSet should send Set command to device when On value was changed to false" name="OutletCarService onOnSet should send Set command to device when On value was changed to false" time="0.001">
1069
1195
  </testcase>
1070
- <testcase classname="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.002">
1196
+ <testcase classname="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" time="0">
1071
1197
  </testcase>
1072
1198
  </testsuite>
1073
- <testsuite name="EcoFlowHttpApiManager" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.305" tests="8">
1074
- <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.03">
1199
+ <testsuite name="EcoFlowHttpApiManager" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.295" tests="8">
1200
+ <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.029">
1075
1201
  </testcase>
1076
1202
  <testcase classname="EcoFlowHttpApiManager acquireCertificate should return null when response contains non &apos;0&apos; code in response" name="EcoFlowHttpApiManager acquireCertificate should return null when response contains non &apos;0&apos; code in response" time="0.002">
1077
1203
  </testcase>
1078
- <testcase classname="EcoFlowHttpApiManager acquireCertificate should use US host name when it is specified in configuration" name="EcoFlowHttpApiManager acquireCertificate should use US host name when it is specified in configuration" time="0.001">
1204
+ <testcase classname="EcoFlowHttpApiManager acquireCertificate should use US host name when it is specified in configuration" name="EcoFlowHttpApiManager acquireCertificate should use US host name when it is specified in configuration" time="0">
1079
1205
  </testcase>
1080
- <testcase classname="EcoFlowHttpApiManager acquireCertificate should return certificate data when request is successful" name="EcoFlowHttpApiManager acquireCertificate should return certificate data when request is successful" time="0.004">
1206
+ <testcase classname="EcoFlowHttpApiManager acquireCertificate should return certificate data when request is successful" name="EcoFlowHttpApiManager acquireCertificate should return certificate data when request is successful" time="0.001">
1081
1207
  </testcase>
1082
- <testcase classname="EcoFlowHttpApiManager getAllQuotas should return null when it is failed to send http request" name="EcoFlowHttpApiManager getAllQuotas should return null when it is failed to send http request" time="0.005">
1208
+ <testcase classname="EcoFlowHttpApiManager getAllQuotas should return null when it is failed to send http request" name="EcoFlowHttpApiManager getAllQuotas should return null when it is failed to send http request" time="0.002">
1083
1209
  </testcase>
1084
1210
  <testcase classname="EcoFlowHttpApiManager getAllQuotas should return all quota data converted to typed object when request is successful" name="EcoFlowHttpApiManager getAllQuotas should return all quota data converted to typed object when request is successful" time="0.001">
1085
1211
  </testcase>
1086
- <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">
1212
+ <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.002">
1087
1213
  </testcase>
1088
1214
  <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">
1089
1215
  </testcase>
1090
1216
  </testsuite>
1091
- <testsuite name="OutletCarService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.44" tests="9">
1092
- <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.003">
1093
- </testcase>
1094
- <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.001">
1095
- </testcase>
1096
- <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">
1217
+ <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.479" tests="7">
1218
+ <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">
1097
1219
  </testcase>
1098
- <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">
1220
+ <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">
1099
1221
  </testcase>
1100
- <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">
1222
+ <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.01">
1101
1223
  </testcase>
1102
- <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.001">
1224
+ <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">
1103
1225
  </testcase>
1104
- <testcase classname="OutletCarService onOnSet should send Set command to device when On value was changed to true" name="OutletCarService onOnSet should send Set command to device when On value was changed to true" time="0.001">
1226
+ <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">
1105
1227
  </testcase>
1106
- <testcase classname="OutletCarService onOnSet should send Set command to device when On value was changed to false" name="OutletCarService onOnSet should send Set command to device when On value was changed to false" time="0.001">
1228
+ <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">
1107
1229
  </testcase>
1108
- <testcase classname="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" name="OutletCarService onOnSet should revert changing of On state when sending Set command to device is failed" time="0.001">
1230
+ <testcase classname="OutletUsbService onOnSet should not allow to set ON value" name="OutletUsbService onOnSet should not allow to set ON value" time="0.001">
1109
1231
  </testcase>
1110
1232
  </testsuite>
1111
- <testsuite name="SwitchXboostServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.4" tests="7">
1233
+ <testsuite name="SwitchXboostServiceBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.375" tests="7">
1112
1234
  <testcase classname="SwitchXboostServiceBase initialize should add Switch service when it is not added to accessory yet" name="SwitchXboostServiceBase initialize should add Switch service when it is not added to accessory yet" time="0.003">
1113
1235
  </testcase>
1114
1236
  <testcase classname="SwitchXboostServiceBase initialize should use existing Switch service when it is already added to accessory" name="SwitchXboostServiceBase initialize should use existing Switch service when it is already added to accessory" time="0.001">
1115
1237
  </testcase>
1116
1238
  <testcase classname="SwitchXboostServiceBase initialize should add mandatory characteristics when initializing accessory" name="SwitchXboostServiceBase initialize should add mandatory characteristics when initializing accessory" time="0.001">
1117
1239
  </testcase>
1118
- <testcase classname="SwitchXboostServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="SwitchXboostServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.001">
1240
+ <testcase classname="SwitchXboostServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" name="SwitchXboostServiceBase cleanupCharacteristics should remove non registered characteristics when cleanup characteristics is called" time="0.005">
1119
1241
  </testcase>
1120
- <testcase classname="SwitchXboostServiceBase updateState should set On state to true when it is requested" name="SwitchXboostServiceBase updateState should set On state to true when it is requested" time="0">
1242
+ <testcase classname="SwitchXboostServiceBase updateState should set On state to true when it is requested" name="SwitchXboostServiceBase updateState should set On state to true when it is requested" time="0.001">
1121
1243
  </testcase>
1122
- <testcase classname="SwitchXboostServiceBase updateState should set On state to false when it is requested" name="SwitchXboostServiceBase updateState should set On state to false when it is requested" time="0">
1244
+ <testcase classname="SwitchXboostServiceBase updateState should set On state to false when it is requested" name="SwitchXboostServiceBase updateState should set On state to false when it is requested" time="0.001">
1123
1245
  </testcase>
1124
1246
  <testcase classname="SwitchXboostServiceBase onOnSet should revert changing of On state when it is failed" name="SwitchXboostServiceBase onOnSet should revert changing of On state when it is failed" time="0.001">
1125
1247
  </testcase>
1126
1248
  </testsuite>
1127
- <testsuite name="OutletUsbService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.585" tests="7">
1128
- <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">
1129
- </testcase>
1130
- <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">
1131
- </testcase>
1132
- <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">
1133
- </testcase>
1134
- <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">
1135
- </testcase>
1136
- <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">
1137
- </testcase>
1138
- <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">
1139
- </testcase>
1140
- <testcase classname="OutletUsbService onOnSet should not allow to set ON value" name="OutletUsbService onOnSet should not allow to set ON value" time="0.002">
1141
- </testcase>
1142
- </testsuite>
1143
- <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:35" time="0.531" tests="7">
1249
+ <testsuite name="OutletAcService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.503" tests="7">
1144
1250
  <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">
1145
1251
  </testcase>
1146
1252
  <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">
1147
1253
  </testcase>
1148
1254
  <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">
1149
1255
  </testcase>
1150
- <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">
1256
+ <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">
1151
1257
  </testcase>
1152
1258
  <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">
1153
1259
  </testcase>
1154
- <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">
1260
+ <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">
1155
1261
  </testcase>
1156
- <testcase classname="OutletAcService onOnSet should not allow to set ON value" name="OutletAcService onOnSet should not allow to set ON value" time="0.048">
1262
+ <testcase classname="OutletAcService onOnSet should not allow to set ON value" name="OutletAcService onOnSet should not allow to set ON value" time="0.043">
1157
1263
  </testcase>
1158
1264
  </testsuite>
1159
- <testsuite name="EcoFlowAccessoryWithQuotaBase" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:36" time="0.287" tests="6">
1265
+ <testsuite name="EcoFlowAccessoryWithQuotaBase" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.265" tests="6">
1160
1266
  <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.002">
1161
1267
  </testcase>
1162
1268
  <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">
@@ -1167,59 +1273,93 @@
1167
1273
  </testcase>
1168
1274
  <testcase classname="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quotas with default values when they were not received and
1169
1275
  updating of initial values is not requested" name="EcoFlowAccessoryWithQuotaBase initializeDefaultValues should initialize quotas with default values when they were not received and
1170
- updating of initial values is not requested" time="0">
1276
+ updating of initial values is not requested" time="0.001">
1171
1277
  </testcase>
1172
1278
  <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">
1173
1279
  </testcase>
1174
1280
  </testsuite>
1175
- <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:36" time="0.378" tests="4">
1281
+ <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="0.38" tests="4">
1176
1282
  <testcase classname="SwitchXboostService onOnSet should send Set command of MPPT moduleType to device
1177
1283
  when X-Boost value was changed to true and service was initialized with MPPT setAcModuleType" name="SwitchXboostService onOnSet should send Set command of MPPT moduleType to device
1178
- when X-Boost value was changed to true and service was initialized with MPPT setAcModuleType" time="0.003">
1284
+ when X-Boost value was changed to true and service was initialized with MPPT setAcModuleType" time="0.002">
1179
1285
  </testcase>
1180
1286
  <testcase classname="SwitchXboostService onOnSet should send Set command of INV moduleType to device
1181
1287
  when X-Boost value was changed to true and service was initialized with INV setAcModuleType" name="SwitchXboostService onOnSet should send Set command of INV moduleType to device
1182
- when X-Boost value was changed to true and service was initialized with INV setAcModuleType" time="0">
1288
+ when X-Boost value was changed to true and service was initialized with INV setAcModuleType" time="0.001">
1183
1289
  </testcase>
1184
- <testcase classname="SwitchXboostService onOnSet should send Set command of INV moduleType to device when X-Boost value was changed to false" name="SwitchXboostService onOnSet should send Set command of INV moduleType to device when X-Boost value was changed to false" time="0">
1290
+ <testcase classname="SwitchXboostService onOnSet should send Set command of INV moduleType to device when X-Boost value was changed to false" name="SwitchXboostService onOnSet should send Set command of INV moduleType to device when X-Boost value was changed to false" time="0.001">
1185
1291
  </testcase>
1186
1292
  <testcase classname="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
1187
1293
  </testcase>
1188
1294
  </testsuite>
1189
- <testsuite name="MqttClient" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:36" time="0.258" tests="12">
1295
+ <testsuite name="MqttClient" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:04" time="0.324" tests="12">
1190
1296
  <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">
1191
1297
  </testcase>
1192
1298
  <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">
1193
1299
  </testcase>
1194
- <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">
1300
+ <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">
1195
1301
  </testcase>
1196
- <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">
1302
+ <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.013">
1197
1303
  </testcase>
1198
1304
  <testcase classname="MqttClient isConnected should return true when mqtt is connected" name="MqttClient isConnected should return true when mqtt is connected" time="0">
1199
1305
  </testcase>
1200
- <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">
1306
+ <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.002">
1201
1307
  </testcase>
1202
1308
  <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">
1203
1309
  </testcase>
1204
1310
  <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">
1205
1311
  </testcase>
1206
- <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.001">
1312
+ <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">
1207
1313
  </testcase>
1208
- <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">
1314
+ <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">
1209
1315
  </testcase>
1210
1316
  <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.001">
1211
1317
  </testcase>
1212
1318
  <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">
1213
1319
  </testcase>
1214
1320
  </testsuite>
1215
- <testsuite name="MqttDevice" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.26" tests="8">
1216
- <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">
1321
+ <testsuite name="ComponentRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:04" time="0.664" tests="11">
1322
+ <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">
1323
+ </testcase>
1324
+ <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.006">
1325
+ </testcase>
1326
+ <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.006">
1327
+ </testcase>
1328
+ <testcase classname="ComponentRenderer renderTextBox should set value of textbox when rendering" name="ComponentRenderer renderTextBox should set value of textbox when rendering" time="0.002">
1329
+ </testcase>
1330
+ <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.003">
1331
+ </testcase>
1332
+ <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.002">
1333
+ </testcase>
1334
+ <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.004">
1335
+ </testcase>
1336
+ <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">
1337
+ </testcase>
1338
+ <testcase classname="ComponentRenderer renderDropDown should set value of dropdown when rendering" name="ComponentRenderer renderDropDown should set value of dropdown when rendering" time="0.002">
1339
+ </testcase>
1340
+ <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.003">
1341
+ </testcase>
1342
+ <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.003">
1343
+ </testcase>
1344
+ </testsuite>
1345
+ <testsuite name="TemperatureSensorService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:04" time="0.613" tests="4">
1346
+ <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.003">
1347
+ </testcase>
1348
+ <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">
1349
+ </testcase>
1350
+ <testcase classname="TemperatureSensorService initialize should add TemperatureSensor characteristics when initializing accessory" name="TemperatureSensorService initialize should add TemperatureSensor characteristics when initializing accessory" time="0">
1351
+ </testcase>
1352
+ <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">
1353
+ </testcase>
1354
+ </testsuite>
1355
+ <testsuite name="MqttDevice" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.28" tests="8">
1356
+ <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.003">
1217
1357
  </testcase>
1218
1358
  <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.001">
1219
1359
  </testcase>
1220
- <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">
1360
+ <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.001">
1221
1361
  </testcase>
1222
- <testcase classname="MqttDevice processReceivedMessage should log message when it is received" name="MqttDevice processReceivedMessage should log message when it is received" time="0">
1362
+ <testcase classname="MqttDevice processReceivedMessage should log message when it is received" name="MqttDevice processReceivedMessage should log message when it is received" time="0.001">
1223
1363
  </testcase>
1224
1364
  <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.001">
1225
1365
  </testcase>
@@ -1227,46 +1367,46 @@
1227
1367
  </testcase>
1228
1368
  <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">
1229
1369
  </testcase>
1230
- <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">
1370
+ <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.001">
1231
1371
  </testcase>
1232
1372
  </testsuite>
1233
- <testsuite name="ComponentRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:36" time="0.509" tests="11">
1234
- <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.005">
1373
+ <testsuite name="MockMqttClient" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:03" time="1.531" tests="11">
1374
+ <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.018">
1235
1375
  </testcase>
1236
- <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.002">
1376
+ <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.153">
1237
1377
  </testcase>
1238
- <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.003">
1378
+ <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.405">
1239
1379
  </testcase>
1240
- <testcase classname="ComponentRenderer renderTextBox should set value of textbox when rendering" name="ComponentRenderer renderTextBox should set value of textbox when rendering" time="0.002">
1380
+ <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">
1241
1381
  </testcase>
1242
- <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.002">
1382
+ <testcase classname="MockMqttClient subscribeAsync should emit quota when there was subscription to quota topic" name="MockMqttClient subscribeAsync should emit quota when there was subscription to quota topic" time="0.251">
1243
1383
  </testcase>
1244
- <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.001">
1384
+ <testcase classname="MockMqttClient subscribeAsync should emit quota from simulator when there was subscription to quota topic" name="MockMqttClient subscribeAsync should emit quota from simulator when there was subscription to quota topic" time="0.152">
1245
1385
  </testcase>
1246
- <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.002">
1386
+ <testcase classname="MockMqttClient subscribeAsync should not emit quota when there was no subscription to quota topic" name="MockMqttClient subscribeAsync should not emit quota when there was no subscription to quota topic" time="0.25">
1247
1387
  </testcase>
1248
- <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.002">
1388
+ <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">
1249
1389
  </testcase>
1250
- <testcase classname="ComponentRenderer renderDropDown should set value of dropdown when rendering" name="ComponentRenderer renderDropDown should set value of dropdown when rendering" time="0.001">
1390
+ <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">
1251
1391
  </testcase>
1252
- <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.002">
1392
+ <testcase classname="MockMqttClient publishAsync should not emit set_reply message when there is no subscription for set_reply topic" name="MockMqttClient publishAsync should not emit set_reply message when there is no subscription for set_reply topic" time="0">
1253
1393
  </testcase>
1254
- <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.002">
1394
+ <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">
1255
1395
  </testcase>
1256
1396
  </testsuite>
1257
- <testsuite name="AccessoryInformationService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.268" tests="5">
1397
+ <testsuite name="AccessoryInformationService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.325" tests="5">
1258
1398
  <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.003">
1259
1399
  </testcase>
1260
- <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.001">
1400
+ <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">
1261
1401
  </testcase>
1262
1402
  <testcase classname="AccessoryInformationService initialize should use existing AccessoryInformation service when it is already added to accessory" name="AccessoryInformationService initialize should use existing AccessoryInformation service when it is already added to accessory" time="0.001">
1263
1403
  </testcase>
1264
- <testcase classname="AccessoryInformationService initialize should add information characteristics when initializing accessory" name="AccessoryInformationService initialize should add information characteristics when initializing accessory" time="0.001">
1404
+ <testcase classname="AccessoryInformationService initialize should add information characteristics when initializing accessory" name="AccessoryInformationService initialize should add information characteristics when initializing accessory" time="0">
1265
1405
  </testcase>
1266
- <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.001">
1406
+ <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.014">
1267
1407
  </testcase>
1268
1408
  </testsuite>
1269
- <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.272" tests="3">
1409
+ <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.319" tests="3">
1270
1410
  <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" time="0.002">
1271
1411
  </testcase>
1272
1412
  <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" time="0.001">
@@ -1274,55 +1414,39 @@
1274
1414
  <testcase classname="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
1275
1415
  </testcase>
1276
1416
  </testsuite>
1277
- <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.227" tests="3">
1278
- <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" time="0.002">
1417
+ <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.325" tests="3">
1418
+ <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" time="0.004">
1279
1419
  </testcase>
1280
1420
  <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" time="0.001">
1281
1421
  </testcase>
1282
1422
  <testcase classname="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
1283
1423
  </testcase>
1284
1424
  </testsuite>
1285
- <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.233" tests="3">
1286
- <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" time="0.008">
1425
+ <testsuite name="SwitchXboostService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.328" tests="3">
1426
+ <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to true" time="0.003">
1287
1427
  </testcase>
1288
1428
  <testcase classname="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" name="SwitchXboostService onOnSet should send Set command to device when X-Boost value was changed to false" time="0.001">
1289
1429
  </testcase>
1290
- <testcase classname="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" time="0">
1430
+ <testcase classname="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" name="SwitchXboostService onOnSet should revert changing of X-Boost state when sending Set command to device is failed" time="0.001">
1291
1431
  </testcase>
1292
1432
  </testsuite>
1293
- <testsuite name="MockMqttClient" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:36" time="1.577" tests="11">
1294
- <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">
1295
- </testcase>
1296
- <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">
1297
- </testcase>
1298
- <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.404">
1433
+ <testsuite name="OutletService" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.402" tests="3">
1434
+ <testcase classname="OutletService onOnSet should send Set command of Switch cmdCode to device when Enabled value was changed to true" name="OutletService onOnSet should send Set command of Switch cmdCode to device when Enabled value was changed to true" time="0.003">
1299
1435
  </testcase>
1300
- <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.004">
1436
+ <testcase classname="OutletService onOnSet should send Set command of Switch cmdCode to device when Enabled value was changed to false" name="OutletService onOnSet should send Set command of Switch cmdCode to device when Enabled value was changed to false" time="0.001">
1301
1437
  </testcase>
1302
- <testcase classname="MockMqttClient subscribeAsync should emit quota when there was subscription to quota topic" name="MockMqttClient subscribeAsync should emit quota when there was subscription to quota topic" time="0.257">
1303
- </testcase>
1304
- <testcase classname="MockMqttClient subscribeAsync should emit quota from simulator when there was subscription to quota topic" name="MockMqttClient subscribeAsync should emit quota from simulator when there was subscription to quota topic" time="0.155">
1305
- </testcase>
1306
- <testcase classname="MockMqttClient subscribeAsync should not emit quota when there was no subscription to quota topic" name="MockMqttClient subscribeAsync should not emit quota when there was no subscription to quota topic" time="0.251">
1307
- </testcase>
1308
- <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.002">
1309
- </testcase>
1310
- <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">
1311
- </testcase>
1312
- <testcase classname="MockMqttClient publishAsync should not emit set_reply message when there is no subscription for set_reply topic" name="MockMqttClient publishAsync should not emit set_reply message when there is no subscription for set_reply topic" time="0.001">
1313
- </testcase>
1314
- <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">
1438
+ <testcase classname="OutletService onOnSet should revert changing of Enabled state when sending Set command to device is failed" name="OutletService onOnSet should revert changing of Enabled state when sending Set command to device is failed" time="0.001">
1315
1439
  </testcase>
1316
1440
  </testsuite>
1317
- <testsuite name="Delta2MaxAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.158" tests="1">
1318
- <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.003">
1441
+ <testsuite name="Delta2MaxAccessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:05" time="0.194" tests="1">
1442
+ <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">
1319
1443
  </testcase>
1320
1444
  </testsuite>
1321
- <testsuite name="Delta2Accessory" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:37" time="0.201" tests="1">
1322
- <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.002">
1445
+ <testsuite name="Delta2Accessory" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="0.242" tests="1">
1446
+ <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.003">
1323
1447
  </testcase>
1324
1448
  </testsuite>
1325
- <testsuite name="customCharacteristic" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="0.215" tests="6">
1449
+ <testsuite name="customCharacteristic" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="0.229" tests="6">
1326
1450
  <testcase classname="customCharacteristic InputConsumptionWattFactory should initialize UUID of characteristic" name="customCharacteristic InputConsumptionWattFactory should initialize UUID of characteristic" time="0.001">
1327
1451
  </testcase>
1328
1452
  <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">
@@ -1336,64 +1460,64 @@
1336
1460
  <testcase classname="customCharacteristic OutputConsumptionWattFactory should create characteristic with correct properties" name="customCharacteristic OutputConsumptionWattFactory should create characteristic with correct properties" time="0.001">
1337
1461
  </testcase>
1338
1462
  </testsuite>
1339
- <testsuite name="Logger" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="0.129" tests="7">
1340
- <testcase classname="Logger prefix should return origin prefix when is requested" name="Logger prefix should return origin prefix when is requested" time="0.001">
1463
+ <testsuite name="Logger" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="0.17" tests="7">
1464
+ <testcase classname="Logger prefix should return origin prefix when is requested" name="Logger prefix should return origin prefix when is requested" time="0.003">
1341
1465
  </testcase>
1342
1466
  <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">
1343
1467
  </testcase>
1344
- <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">
1468
+ <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">
1345
1469
  </testcase>
1346
- <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.002">
1470
+ <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.001">
1347
1471
  </testcase>
1348
1472
  <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">
1349
1473
  </testcase>
1350
- <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">
1474
+ <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.003">
1351
1475
  </testcase>
1352
- <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.001">
1476
+ <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">
1353
1477
  </testcase>
1354
1478
  </testsuite>
1355
- <testsuite name="MachineIdProvider" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="0.16" tests="3">
1356
- <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">
1479
+ <testsuite name="MachineIdProvider" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="0.146" tests="3">
1480
+ <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.002">
1357
1481
  </testcase>
1358
- <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">
1482
+ <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.001">
1359
1483
  </testcase>
1360
- <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">
1484
+ <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.001">
1361
1485
  </testcase>
1362
1486
  </testsuite>
1363
- <testsuite name="PluginConfigNameRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="0.556" tests="2">
1364
- <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">
1487
+ <testsuite name="PluginConfigNameRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="0.594" tests="2">
1488
+ <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.005">
1365
1489
  </testcase>
1366
- <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">
1490
+ <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.006">
1367
1491
  </testcase>
1368
1492
  </testsuite>
1369
- <testsuite name="DeviceInfo" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="0.152" tests="2">
1493
+ <testsuite name="DeviceInfo" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:07" time="0.518" tests="2">
1370
1494
  <testcase classname="DeviceInfo connectionKey should initialize connectionKey when creating device info" name="DeviceInfo connectionKey should initialize connectionKey when creating device info" time="0.001">
1371
1495
  </testcase>
1372
- <testcase classname="DeviceInfo accessKey should initialize accessKey when creating device info" name="DeviceInfo accessKey should initialize accessKey when creating device info" time="0">
1496
+ <testcase classname="DeviceInfo accessKey should initialize accessKey when creating device info" name="DeviceInfo accessKey should initialize accessKey when creating device info" time="0.004">
1373
1497
  </testcase>
1374
1498
  </testsuite>
1375
- <testsuite name="BatteryStatusProvider" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:39" time="0.36" tests="2">
1499
+ <testsuite name="BatteryStatusProvider" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:07" time="0.374" tests="2">
1376
1500
  <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">
1377
1501
  </testcase>
1378
- <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">
1502
+ <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">
1379
1503
  </testcase>
1380
1504
  </testsuite>
1381
- <testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:39" time="0.401" tests="1">
1505
+ <testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:07" time="0.344" tests="1">
1382
1506
  <testcase classname="index should return origin prefix when is requested" name="index should return origin prefix when is requested" time="0.002">
1383
1507
  </testcase>
1384
1508
  </testsuite>
1385
- <testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:38" time="2.263" tests="3">
1386
- <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">
1509
+ <testsuite name="index" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:06" time="2.609" tests="3">
1510
+ <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">
1387
1511
  </testcase>
1388
- <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">
1512
+ <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.002">
1389
1513
  </testcase>
1390
- <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.001">
1514
+ <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">
1391
1515
  </testcase>
1392
1516
  </testsuite>
1393
- <testsuite name="PluginConfigRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-17T16:56:39" time="1.811" tests="2">
1394
- <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">
1517
+ <testsuite name="PluginConfigRenderer" errors="0" failures="0" skipped="0" timestamp="2025-03-25T09:15:07" time="2.27" tests="2">
1518
+ <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.002">
1395
1519
  </testcase>
1396
- <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">
1520
+ <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.001">
1397
1521
  </testcase>
1398
1522
  </testsuite>
1399
1523
  </testsuites>