cdd-cli 3.2.0 → 4.0.0

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 (136) hide show
  1. package/.atl/skill-registry.md +30 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.json +1 -1
  4. package/.prettierignore +4 -0
  5. package/.prettierrc +8 -0
  6. package/.~lock.ROADMAP.md# +1 -0
  7. package/CHANGELOG.md +80 -0
  8. package/README.es.md +198 -0
  9. package/README.md +81 -23
  10. package/ROADMAP.md +647 -0
  11. package/SECURITY.md +5 -0
  12. package/__mocks__/ink.cjs +17 -0
  13. package/coverage/clover.xml +471 -500
  14. package/coverage/coverage-final.json +16 -16
  15. package/coverage/lcov-report/ContainerCreationPrompt.jsx.html +400 -0
  16. package/coverage/lcov-report/ControlsHUD.jsx.html +256 -0
  17. package/coverage/lcov-report/components/ContainerCreationPrompt.jsx.html +394 -0
  18. package/coverage/lcov-report/components/PromptField.jsx.html +229 -0
  19. package/coverage/lcov-report/components/SuggestionPanel.jsx.html +268 -0
  20. package/coverage/lcov-report/components/index.html +146 -0
  21. package/coverage/lcov-report/helpers/constants.js.html +139 -22
  22. package/coverage/lcov-report/helpers/containerOptionsBuilder.js.html +75 -42
  23. package/coverage/lcov-report/helpers/dockerHubService.js.html +310 -0
  24. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerActions.js.html +162 -84
  25. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerList.js.html +50 -32
  26. package/coverage/lcov-report/helpers/dockerService/serviceComponents/index.html +21 -21
  27. package/coverage/lcov-report/helpers/imageNameUtils.js.html +181 -0
  28. package/coverage/lcov-report/helpers/index.html +84 -54
  29. package/coverage/lcov-report/helpers/logger.js.html +68 -68
  30. package/coverage/lcov-report/helpers/safeCall.js.html +15 -15
  31. package/coverage/lcov-report/helpers/validationHelpers.js.html +66 -114
  32. package/coverage/lcov-report/hooks/creation/index.html +20 -20
  33. package/coverage/lcov-report/hooks/creation/useContainerActions.js.html +38 -17
  34. package/coverage/lcov-report/hooks/creation/useContainerCreation.js.html +593 -89
  35. package/coverage/lcov-report/hooks/creation/useLogsViewer.js.html +7 -7
  36. package/coverage/lcov-report/hooks/debug/index.html +5 -5
  37. package/coverage/lcov-report/hooks/debug/useDebugLogs.js.html +35 -20
  38. package/coverage/lcov-report/hooks/index.html +40 -40
  39. package/coverage/lcov-report/hooks/navigation/index.html +19 -19
  40. package/coverage/lcov-report/hooks/navigation/useContainerSelection.js.html +38 -29
  41. package/coverage/lcov-report/hooks/useContainerCommandRouter.js.html +119 -80
  42. package/coverage/lcov-report/hooks/useControls.js.html +306 -123
  43. package/coverage/lcov-report/hooks/useEraseConfirmation.js.html +8 -8
  44. package/coverage/lcov-report/hooks/useExitHandler.js.html +50 -41
  45. package/coverage/lcov-report/index.html +52 -67
  46. package/coverage/lcov.info +899 -952
  47. package/dist/App.js +18 -12
  48. package/dist/components/ContainerCreationPrompt.js +50 -13
  49. package/dist/components/ContainerList.js +3 -3
  50. package/dist/components/ContainerRow.js +20 -20
  51. package/dist/components/ContainerSection.js +3 -3
  52. package/dist/components/ControlsHUD.js +106 -0
  53. package/dist/components/Footer.js +2 -2
  54. package/dist/components/Header.js +7 -7
  55. package/dist/components/LogViewer.js +3 -3
  56. package/dist/components/MessageFeedback.js +2 -2
  57. package/dist/components/PromptField.js +4 -4
  58. package/dist/components/StatsBar.js +5 -5
  59. package/dist/components/SuggestionPanel.js +53 -0
  60. package/dist/components/UsageMenu.js +3 -3
  61. package/dist/helpers/appInfo.js +7 -7
  62. package/dist/helpers/constants.js +154 -1
  63. package/dist/helpers/containerOptionsBuilder.js +3 -3
  64. package/dist/helpers/dockerHubService.js +111 -0
  65. package/dist/helpers/dockerService/dockerService.js +1 -1
  66. package/dist/helpers/dockerService/serviceComponents/containerActions.js +99 -40
  67. package/dist/helpers/dockerService/serviceComponents/containerList.js +11 -11
  68. package/dist/helpers/dockerService/serviceComponents/containerLogs.js +9 -9
  69. package/dist/helpers/dockerService/serviceComponents/containerStats.js +5 -5
  70. package/dist/helpers/dockerService/serviceComponents/imageUtils.js +1 -1
  71. package/dist/helpers/exitWithMessage.js +10 -10
  72. package/dist/helpers/imageNameUtils.js +32 -0
  73. package/dist/helpers/logger.js +13 -13
  74. package/dist/helpers/safeCall.js +2 -2
  75. package/dist/helpers/validationHelpers.js +76 -21
  76. package/dist/hooks/creation/useContainerActions.js +28 -11
  77. package/dist/hooks/creation/useContainerCreation.js +452 -62
  78. package/dist/hooks/creation/useLogsViewer.js +2 -2
  79. package/dist/hooks/debug/useDebugLogs.js +4 -4
  80. package/dist/hooks/useContainerCommandRouter.js +14 -14
  81. package/dist/hooks/useContainers.js +3 -3
  82. package/dist/hooks/useControls.js +85 -38
  83. package/dist/hooks/useEraseConfirmation.js +3 -3
  84. package/dist/index.js +9 -2
  85. package/jest.config.cjs +7 -0
  86. package/package.json +7 -3
  87. package/src/App.jsx +39 -16
  88. package/src/components/ContainerCreationPrompt.jsx +54 -10
  89. package/src/components/ContainerList.jsx +3 -3
  90. package/src/components/ContainerRow.jsx +19 -16
  91. package/src/components/ContainerSection.jsx +3 -3
  92. package/src/components/ControlsHUD.jsx +66 -0
  93. package/src/components/Footer.jsx +2 -2
  94. package/src/components/Header.jsx +7 -7
  95. package/src/components/LogViewer.jsx +5 -3
  96. package/src/components/MessageFeedback.jsx +2 -2
  97. package/src/components/PromptField.jsx +4 -4
  98. package/src/components/StatsBar.jsx +11 -7
  99. package/src/components/SuggestionPanel.jsx +61 -0
  100. package/src/components/UsageMenu.jsx +18 -13
  101. package/src/helpers/appInfo.js +7 -7
  102. package/src/helpers/constants.js +48 -9
  103. package/src/helpers/containerOptionsBuilder.js +16 -5
  104. package/src/helpers/dockerHubService.js +75 -0
  105. package/src/helpers/dockerService/dockerService.js +1 -1
  106. package/src/helpers/dockerService/serviceComponents/containerActions.js +87 -61
  107. package/src/helpers/dockerService/serviceComponents/containerList.js +31 -25
  108. package/src/helpers/dockerService/serviceComponents/containerLogs.js +41 -26
  109. package/src/helpers/dockerService/serviceComponents/containerStats.js +13 -11
  110. package/src/helpers/dockerService/serviceComponents/imageUtils.js +5 -4
  111. package/src/helpers/exitWithMessage.js +13 -7
  112. package/src/helpers/imageNameUtils.js +32 -0
  113. package/src/helpers/logger.js +15 -16
  114. package/src/helpers/safeCall.js +2 -2
  115. package/src/helpers/validationHelpers.js +13 -29
  116. package/src/hooks/creation/useContainerActions.js +32 -12
  117. package/src/hooks/creation/useContainerCreation.js +293 -47
  118. package/src/hooks/creation/useLogsViewer.js +2 -2
  119. package/src/hooks/debug/useDebugLogs.js +15 -10
  120. package/src/hooks/navigation/useContainerSelection.js +17 -14
  121. package/src/hooks/useContainerCommandRouter.js +71 -58
  122. package/src/hooks/useContainers.js +4 -4
  123. package/src/hooks/useControls.js +135 -72
  124. package/src/hooks/useEraseConfirmation.js +3 -3
  125. package/src/hooks/useExitHandler.js +29 -26
  126. package/src/index.js +8 -4
  127. package/test/ContainerCreationPrompt.dom.test.js +313 -0
  128. package/test/ControlsHUD.dom.test.js +125 -0
  129. package/test/SuggestionPanel.dom.test.js +83 -0
  130. package/test/constants.test.js +41 -0
  131. package/test/dockerHubService.test.js +213 -0
  132. package/test/logger.test.js +58 -0
  133. package/test/resolveImageTag.test.js +26 -0
  134. package/test/useContainerCreation.dom.test.js +428 -2
  135. package/test/useContainerCreationHub.dom.test.js +184 -0
  136. package/test/useControls.dom.test.js +406 -4
@@ -1,424 +1,328 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1777138828865" clover="3.2.0">
3
- <project timestamp="1777138828865" name="All files">
4
- <metrics statements="532" coveredstatements="304" conditionals="326" coveredconditionals="151" methods="107" coveredmethods="50" elements="965" coveredelements="505" complexity="0" loc="532" ncloc="532" packages="6" files="16" classes="16"/>
2
+ <coverage generated="1777328001186" clover="3.2.0">
3
+ <project timestamp="1777328001186" name="All files">
4
+ <metrics statements="506" coveredstatements="297" conditionals="325" coveredconditionals="165" methods="94" coveredmethods="42" elements="925" coveredelements="504" complexity="0" loc="506" ncloc="506" packages="5" files="16" classes="16"/>
5
5
  <package name="helpers">
6
- <metrics statements="105" coveredstatements="96" conditionals="81" coveredconditionals="68" methods="22" coveredmethods="19"/>
6
+ <metrics statements="139" coveredstatements="77" conditionals="107" coveredconditionals="49" methods="26" coveredmethods="14"/>
7
7
  <file name="constants.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/constants.js">
8
- <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
9
- <line num="6" count="11" type="stmt"/>
10
- <line num="14" count="11" type="stmt"/>
11
- <line num="22" count="11" type="stmt"/>
12
- <line num="27" count="11" type="stmt"/>
13
- <line num="35" count="11" type="stmt"/>
14
- <line num="43" count="11" type="stmt"/>
8
+ <metrics statements="12" coveredstatements="12" conditionals="7" coveredconditionals="6" methods="1" coveredmethods="1"/>
9
+ <line num="6" count="4" type="stmt"/>
10
+ <line num="14" count="4" type="stmt"/>
11
+ <line num="22" count="4" type="stmt"/>
12
+ <line num="27" count="4" type="stmt"/>
13
+ <line num="35" count="4" type="stmt"/>
14
+ <line num="50" count="4" type="stmt"/>
15
+ <line num="83" count="29" type="cond" truecount="2" falsecount="0"/>
16
+ <line num="84" count="28" type="cond" truecount="2" falsecount="0"/>
17
+ <line num="85" count="23" type="stmt"/>
18
+ <line num="86" count="23" type="stmt"/>
19
+ <line num="87" count="23" type="cond" truecount="2" falsecount="0"/>
20
+ <line num="88" count="20" type="stmt"/>
15
21
  </file>
16
22
  <file name="containerOptionsBuilder.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/containerOptionsBuilder.js">
17
- <metrics statements="17" coveredstatements="17" conditionals="18" coveredconditionals="17" methods="4" coveredmethods="4"/>
18
- <line num="17" count="10" type="cond" truecount="2" falsecount="0"/>
19
- <line num="18" count="9" type="cond" truecount="2" falsecount="0"/>
20
- <line num="20" count="9" type="stmt"/>
21
- <line num="21" count="9" type="stmt"/>
22
- <line num="23" count="9" type="stmt"/>
23
- <line num="24" count="1" type="stmt"/>
24
- <line num="25" count="1" type="cond" truecount="3" falsecount="1"/>
25
- <line num="26" count="1" type="stmt"/>
26
- <line num="27" count="1" type="stmt"/>
27
- <line num="28" count="1" type="cond" truecount="2" falsecount="0"/>
28
- <line num="29" count="1" type="stmt"/>
29
- <line num="32" count="9" type="stmt"/>
30
- <line num="36" count="9" type="cond" truecount="2" falsecount="0"/>
31
- <line num="37" count="9" type="cond" truecount="2" falsecount="0"/>
32
- <line num="38" count="9" type="cond" truecount="2" falsecount="0"/>
33
- <line num="39" count="9" type="cond" truecount="2" falsecount="0"/>
34
- <line num="41" count="9" type="stmt"/>
23
+ <metrics statements="19" coveredstatements="13" conditionals="18" coveredconditionals="8" methods="4" coveredmethods="3"/>
24
+ <line num="22" count="4" type="cond" truecount="2" falsecount="0"/>
25
+ <line num="24" count="4" type="stmt"/>
26
+ <line num="26" count="4" type="cond" truecount="2" falsecount="0"/>
27
+ <line num="28" count="4" type="stmt"/>
28
+ <line num="31" count="4" type="stmt"/>
29
+ <line num="32" count="4" type="stmt"/>
30
+ <line num="34" count="4" type="stmt"/>
31
+ <line num="35" count="0" type="stmt"/>
32
+ <line num="36" count="0" type="cond" truecount="0" falsecount="4"/>
33
+ <line num="37" count="0" type="stmt"/>
34
+ <line num="38" count="0" type="stmt"/>
35
+ <line num="39" count="0" type="cond" truecount="0" falsecount="2"/>
36
+ <line num="40" count="0" type="stmt"/>
37
+ <line num="43" count="4" type="stmt"/>
38
+ <line num="47" count="4" type="cond" truecount="1" falsecount="1"/>
39
+ <line num="48" count="4" type="cond" truecount="1" falsecount="1"/>
40
+ <line num="49" count="4" type="cond" truecount="1" falsecount="1"/>
41
+ <line num="50" count="4" type="cond" truecount="1" falsecount="1"/>
42
+ <line num="52" count="4" type="stmt"/>
43
+ </file>
44
+ <file name="dockerHubService.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerHubService.js">
45
+ <metrics statements="24" coveredstatements="1" conditionals="19" coveredconditionals="0" methods="3" coveredmethods="0"/>
46
+ <line num="8" count="1" type="stmt"/>
47
+ <line num="24" count="0" type="stmt"/>
48
+ <line num="26" count="0" type="stmt"/>
49
+ <line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
50
+ <line num="28" count="0" type="stmt"/>
51
+ <line num="29" count="0" type="cond" truecount="0" falsecount="2"/>
52
+ <line num="30" count="0" type="stmt"/>
53
+ <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
54
+ <line num="32" count="0" type="stmt"/>
55
+ <line num="33" count="0" type="cond" truecount="0" falsecount="2"/>
56
+ <line num="34" count="0" type="stmt"/>
57
+ <line num="37" count="0" type="cond" truecount="0" falsecount="2"/>
58
+ <line num="38" count="0" type="stmt"/>
59
+ <line num="41" count="0" type="stmt"/>
60
+ <line num="54" count="0" type="stmt"/>
61
+ <line num="55" count="0" type="cond" truecount="0" falsecount="2"/>
62
+ <line num="57" count="0" type="stmt"/>
63
+ <line num="58" count="0" type="cond" truecount="0" falsecount="2"/>
64
+ <line num="60" count="0" type="stmt"/>
65
+ <line num="62" count="0" type="cond" truecount="0" falsecount="2"/>
66
+ <line num="63" count="0" type="stmt"/>
67
+ <line num="66" count="0" type="stmt"/>
68
+ <line num="67" count="0" type="cond" truecount="0" falsecount="2"/>
69
+ <line num="69" count="0" type="stmt"/>
70
+ </file>
71
+ <file name="imageNameUtils.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/imageNameUtils.js">
72
+ <metrics statements="9" coveredstatements="8" conditionals="6" coveredconditionals="4" methods="1" coveredmethods="1"/>
73
+ <line num="19" count="7" type="cond" truecount="1" falsecount="1"/>
74
+ <line num="21" count="7" type="stmt"/>
75
+ <line num="22" count="7" type="stmt"/>
76
+ <line num="23" count="7" type="cond" truecount="1" falsecount="1"/>
77
+ <line num="24" count="0" type="stmt"/>
78
+ <line num="27" count="7" type="stmt"/>
79
+ <line num="28" count="7" type="cond" truecount="2" falsecount="0"/>
80
+ <line num="29" count="5" type="stmt"/>
81
+ <line num="31" count="7" type="stmt"/>
35
82
  </file>
36
83
  <file name="logger.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/logger.js">
37
- <metrics statements="36" coveredstatements="27" conditionals="24" coveredconditionals="14" methods="11" coveredmethods="8"/>
38
- <line num="5" count="14" type="stmt"/>
39
- <line num="27" count="28" type="cond" truecount="1" falsecount="1"/>
40
- <line num="28" count="28" type="stmt"/>
84
+ <metrics statements="36" coveredstatements="10" conditionals="24" coveredconditionals="6" methods="11" coveredmethods="3"/>
85
+ <line num="5" count="2" type="stmt"/>
86
+ <line num="27" count="4" type="cond" truecount="1" falsecount="1"/>
87
+ <line num="28" count="4" type="stmt"/>
41
88
  <line num="30" count="0" type="stmt"/>
42
89
  <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
43
90
  <line num="32" count="0" type="stmt"/>
44
91
  <line num="34" count="0" type="stmt"/>
45
- <line num="38" count="14" type="cond" truecount="3" falsecount="0"/>
46
- <line num="42" count="14" type="cond" truecount="1" falsecount="1"/>
47
- <line num="44" count="14" type="stmt"/>
48
- <line num="47" count="29" type="stmt"/>
49
- <line num="48" count="29" type="cond" truecount="2" falsecount="0"/>
50
- <line num="52" count="29" type="cond" truecount="2" falsecount="0"/>
51
- <line num="53" count="10" type="stmt"/>
52
- <line num="56" count="19" type="stmt"/>
53
- <line num="57" count="19" type="stmt"/>
54
- <line num="58" count="19" type="stmt"/>
55
- <line num="59" count="19" type="stmt"/>
56
- <line num="62" count="19" type="cond" truecount="1" falsecount="2"/>
57
- <line num="64" count="19" type="cond" truecount="1" falsecount="1"/>
58
- <line num="65" count="19" type="cond" truecount="1" falsecount="1"/>
59
- <line num="66" count="19" type="cond" truecount="1" falsecount="1"/>
60
- <line num="67" count="19" type="stmt"/>
92
+ <line num="38" count="2" type="cond" truecount="3" falsecount="0"/>
93
+ <line num="42" count="2" type="cond" truecount="1" falsecount="1"/>
94
+ <line num="44" count="2" type="stmt"/>
95
+ <line num="47" count="0" type="stmt"/>
96
+ <line num="48" count="0" type="cond" truecount="0" falsecount="2"/>
97
+ <line num="52" count="0" type="cond" truecount="0" falsecount="2"/>
98
+ <line num="53" count="0" type="stmt"/>
99
+ <line num="56" count="0" type="stmt"/>
100
+ <line num="57" count="0" type="stmt"/>
101
+ <line num="58" count="0" type="stmt"/>
102
+ <line num="59" count="0" type="stmt"/>
103
+ <line num="62" count="0" type="cond" truecount="0" falsecount="3"/>
104
+ <line num="64" count="0" type="cond" truecount="0" falsecount="2"/>
105
+ <line num="65" count="0" type="cond" truecount="0" falsecount="2"/>
106
+ <line num="66" count="0" type="cond" truecount="0" falsecount="2"/>
107
+ <line num="67" count="0" type="stmt"/>
61
108
  <line num="69" count="0" type="stmt"/>
62
- <line num="73" count="19" type="stmt"/>
109
+ <line num="73" count="0" type="stmt"/>
63
110
  <line num="74" count="0" type="stmt"/>
64
111
  <line num="75" count="0" type="stmt"/>
65
- <line num="87" count="14" type="stmt"/>
66
- <line num="89" count="10" type="stmt"/>
67
- <line num="92" count="18" type="stmt"/>
112
+ <line num="87" count="2" type="stmt"/>
113
+ <line num="89" count="0" type="stmt"/>
114
+ <line num="92" count="0" type="stmt"/>
68
115
  <line num="95" count="0" type="stmt"/>
69
- <line num="98" count="1" type="stmt"/>
70
- <line num="107" count="4" type="cond" truecount="1" falsecount="1"/>
116
+ <line num="98" count="0" type="stmt"/>
117
+ <line num="107" count="20" type="cond" truecount="1" falsecount="1"/>
71
118
  <line num="108" count="0" type="stmt"/>
72
- <line num="110" count="4" type="stmt"/>
73
- <line num="111" count="4" type="stmt"/>
119
+ <line num="110" count="20" type="stmt"/>
120
+ <line num="111" count="20" type="stmt"/>
74
121
  </file>
75
122
  <file name="safeCall.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/safeCall.js">
76
- <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
77
- <line num="11" count="9" type="cond" truecount="2" falsecount="0"/>
78
- <line num="12" count="8" type="stmt"/>
79
- <line num="13" count="8" type="stmt"/>
80
- <line num="15" count="1" type="stmt"/>
81
- </file>
82
- <file name="validationHelpers.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/validationHelpers.js">
83
- <metrics statements="42" coveredstatements="42" conditionals="37" coveredconditionals="35" methods="6" coveredmethods="6"/>
84
- <line num="12" count="6" type="cond" truecount="4" falsecount="0"/>
123
+ <metrics statements="4" coveredstatements="3" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
124
+ <line num="11" count="6" type="cond" truecount="1" falsecount="1"/>
125
+ <line num="12" count="6" type="stmt"/>
85
126
  <line num="13" count="6" type="stmt"/>
86
- <line num="14" count="5" type="cond" truecount="1" falsecount="1"/>
87
- <line num="15" count="5" type="stmt"/>
88
- <line num="16" count="6" type="stmt"/>
89
- <line num="17" count="6" type="cond" truecount="4" falsecount="0"/>
90
- <line num="19" count="5" type="stmt"/>
91
- <line num="30" count="15" type="cond" truecount="1" falsecount="1"/>
92
- <line num="32" count="15" type="stmt"/>
93
- <line num="33" count="15" type="stmt"/>
94
- <line num="34" count="15" type="cond" truecount="2" falsecount="0"/>
95
- <line num="35" count="2" type="stmt"/>
96
- <line num="38" count="15" type="stmt"/>
97
- <line num="39" count="15" type="cond" truecount="2" falsecount="0"/>
98
- <line num="40" count="6" type="stmt"/>
99
- <line num="42" count="15" type="stmt"/>
100
- <line num="60" count="22" type="cond" truecount="2" falsecount="0"/>
101
- <line num="63" count="22" type="stmt"/>
102
- <line num="64" count="22" type="stmt"/>
103
- <line num="66" count="22" type="cond" truecount="4" falsecount="0"/>
104
- <line num="67" count="15" type="stmt"/>
105
- <line num="68" count="14" type="stmt"/>
106
- <line num="69" count="15" type="stmt"/>
107
- <line num="70" count="15" type="cond" truecount="2" falsecount="0"/>
108
- <line num="71" count="1" type="stmt"/>
109
- <line num="72" count="1" type="stmt"/>
110
- <line num="74" count="14" type="stmt"/>
111
- <line num="75" count="14" type="stmt"/>
112
- <line num="76" count="14" type="cond" truecount="2" falsecount="0"/>
113
- <line num="77" count="3" type="stmt"/>
114
- <line num="78" count="3" type="stmt"/>
115
- <line num="80" count="11" type="stmt"/>
116
- <line num="84" count="22" type="cond" truecount="2" falsecount="0"/>
117
- <line num="86" count="7" type="stmt"/>
118
- <line num="90" count="15" type="stmt"/>
119
- <line num="91" count="15" type="stmt"/>
120
- <line num="92" count="15" type="stmt"/>
121
- <line num="94" count="15" type="cond" truecount="5" falsecount="0"/>
122
- <line num="95" count="6" type="stmt"/>
123
- <line num="96" count="6" type="cond" truecount="4" falsecount="0"/>
124
- <line num="97" count="3" type="stmt"/>
125
- <line num="102" count="15" type="stmt"/>
126
- </file>
127
- </package>
128
- <package name="helpers.dockerService.serviceComponents">
129
- <metrics statements="152" coveredstatements="112" conditionals="87" coveredconditionals="55" methods="24" coveredmethods="17"/>
130
- <file name="containerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerActions.js">
131
- <metrics statements="125" coveredstatements="92" conditionals="68" coveredconditionals="41" methods="16" coveredmethods="13"/>
132
- <line num="16" count="29" type="stmt"/>
133
- <line num="19" count="29" type="stmt"/>
134
- <line num="32" count="1" type="stmt"/>
135
- <line num="33" count="1" type="stmt"/>
136
- <line num="34" count="1" type="stmt"/>
137
- <line num="35" count="1" type="stmt"/>
138
- <line num="36" count="1" type="stmt"/>
139
- <line num="38" count="0" type="stmt"/>
140
- <line num="39" count="0" type="stmt"/>
141
- <line num="51" count="3" type="cond" truecount="1" falsecount="1"/>
142
- <line num="52" count="3" type="stmt"/>
143
- <line num="53" count="3" type="stmt"/>
144
- <line num="54" count="3" type="cond" truecount="1" falsecount="1"/>
145
- <line num="55" count="3" type="stmt"/>
146
- <line num="56" count="3" type="cond" truecount="1" falsecount="1"/>
147
- <line num="57" count="3" type="stmt"/>
148
- <line num="70" count="6" type="stmt"/>
149
- <line num="72" count="6" type="stmt"/>
150
- <line num="73" count="6" type="stmt"/>
151
- <line num="75" count="0" type="stmt"/>
152
- <line num="76" count="0" type="stmt"/>
153
- <line num="78" count="6" type="cond" truecount="2" falsecount="0"/>
154
- <line num="79" count="1" type="stmt"/>
155
- <line num="80" count="1" type="stmt"/>
156
- <line num="81" count="1" type="stmt"/>
157
- <line num="82" count="1" type="stmt"/>
158
- <line num="84" count="0" type="stmt"/>
159
- <line num="85" count="0" type="stmt"/>
160
- <line num="88" count="6" type="stmt"/>
161
- <line num="94" count="6" type="cond" truecount="1" falsecount="1"/>
162
- <line num="97" count="6" type="stmt"/>
163
- <line num="99" count="6" type="cond" truecount="1" falsecount="1"/>
164
- <line num="100" count="6" type="stmt"/>
165
- <line num="101" count="6" type="stmt"/>
166
- <line num="102" count="6" type="cond" truecount="3" falsecount="1"/>
167
- <line num="103" count="6" type="stmt"/>
168
- <line num="104" count="6" type="cond" truecount="1" falsecount="1"/>
169
- <line num="105" count="6" type="stmt"/>
170
- <line num="106" count="6" type="stmt"/>
171
- <line num="107" count="6" type="stmt"/>
172
- <line num="108" count="1" type="cond" truecount="1" falsecount="1"/>
173
- <line num="109" count="1" type="cond" truecount="3" falsecount="1"/>
174
- <line num="110" count="1" type="stmt"/>
175
- <line num="115" count="0" type="stmt"/>
176
- <line num="118" count="6" type="stmt"/>
177
- <line num="119" count="4" type="stmt"/>
178
- <line num="120" count="4" type="stmt"/>
179
- <line num="122" count="6" type="stmt"/>
180
- <line num="123" count="4" type="stmt"/>
181
- <line num="124" count="4" type="cond" truecount="1" falsecount="1"/>
182
- <line num="125" count="0" type="cond" truecount="0" falsecount="2"/>
183
- <line num="126" count="0" type="stmt"/>
184
- <line num="127" count="0" type="stmt"/>
185
- <line num="129" count="0" type="stmt"/>
186
- <line num="130" count="0" type="stmt"/>
187
- <line num="131" count="0" type="stmt"/>
188
- <line num="132" count="0" type="stmt"/>
189
- <line num="133" count="0" type="stmt"/>
190
- <line num="135" count="0" type="stmt"/>
191
- <line num="136" count="0" type="stmt"/>
192
- <line num="138" count="4" type="stmt"/>
193
- <line num="139" count="4" type="stmt"/>
194
- <line num="140" count="1" type="stmt"/>
195
- <line num="142" count="4" type="stmt"/>
196
- <line num="143" count="4" type="stmt"/>
197
- <line num="146" count="6" type="stmt"/>
198
- <line num="147" count="6" type="cond" truecount="1" falsecount="2"/>
199
- <line num="148" count="6" type="cond" truecount="1" falsecount="1"/>
200
- <line num="151" count="6" type="cond" truecount="2" falsecount="0"/>
201
- <line num="152" count="3" type="stmt"/>
202
- <line num="153" count="3" type="stmt"/>
203
- <line num="154" count="3" type="cond" truecount="4" falsecount="0"/>
204
- <line num="155" count="1" type="stmt"/>
205
- <line num="156" count="1" type="stmt"/>
206
- <line num="157" count="1" type="stmt"/>
207
- <line num="161" count="6" type="cond" truecount="2" falsecount="0"/>
208
- <line num="162" count="4" type="cond" truecount="2" falsecount="0"/>
209
- <line num="163" count="4" type="cond" truecount="2" falsecount="0"/>
210
- <line num="164" count="4" type="cond" truecount="2" falsecount="0"/>
211
- <line num="165" count="4" type="stmt"/>
212
- <line num="166" count="4" type="cond" truecount="1" falsecount="1"/>
213
- <line num="167" count="4" type="cond" truecount="1" falsecount="1"/>
214
- <line num="169" count="4" type="cond" truecount="2" falsecount="2"/>
215
- <line num="170" count="4" type="stmt"/>
216
- <line num="171" count="4" type="stmt"/>
217
- <line num="172" count="4" type="cond" truecount="1" falsecount="1"/>
218
- <line num="173" count="4" type="stmt"/>
219
- <line num="174" count="4" type="stmt"/>
220
- <line num="175" count="4" type="stmt"/>
221
- <line num="181" count="0" type="stmt"/>
222
- <line num="185" count="0" type="cond" truecount="0" falsecount="2"/>
223
- <line num="186" count="0" type="stmt"/>
224
- <line num="187" count="0" type="stmt"/>
225
- <line num="188" count="0" type="stmt"/>
226
- <line num="189" count="0" type="cond" truecount="0" falsecount="2"/>
227
- <line num="190" count="0" type="cond" truecount="0" falsecount="2"/>
228
- <line num="191" count="0" type="stmt"/>
229
- <line num="196" count="6" type="stmt"/>
230
- <line num="197" count="6" type="stmt"/>
231
- <line num="198" count="6" type="cond" truecount="2" falsecount="0"/>
232
- <line num="199" count="6" type="stmt"/>
233
- <line num="200" count="6" type="stmt"/>
234
- <line num="202" count="0" type="stmt"/>
235
- <line num="203" count="0" type="stmt"/>
236
- <line num="213" count="1" type="stmt"/>
237
- <line num="214" count="1" type="stmt"/>
238
- <line num="215" count="1" type="stmt"/>
239
- <line num="216" count="1" type="stmt"/>
240
- <line num="217" count="1" type="stmt"/>
241
- <line num="219" count="0" type="stmt"/>
242
- <line num="220" count="0" type="stmt"/>
243
- <line num="230" count="1" type="stmt"/>
244
- <line num="231" count="1" type="stmt"/>
245
- <line num="232" count="1" type="stmt"/>
246
- <line num="233" count="1" type="stmt"/>
247
- <line num="234" count="1" type="stmt"/>
248
- <line num="236" count="0" type="stmt"/>
249
- <line num="237" count="0" type="stmt"/>
250
- <line num="247" count="1" type="stmt"/>
251
- <line num="248" count="1" type="stmt"/>
252
- <line num="249" count="1" type="stmt"/>
253
- <line num="250" count="1" type="stmt"/>
254
- <line num="251" count="1" type="stmt"/>
255
- <line num="253" count="0" type="stmt"/>
256
- <line num="254" count="0" type="stmt"/>
127
+ <line num="15" count="0" type="stmt"/>
257
128
  </file>
258
- <file name="containerList.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerList.js">
259
- <metrics statements="27" coveredstatements="20" conditionals="19" coveredconditionals="14" methods="8" coveredmethods="4"/>
260
- <line num="4" count="3" type="stmt"/>
261
- <line num="13" count="3" type="stmt"/>
262
- <line num="16" count="3" type="cond" truecount="5" falsecount="0"/>
263
- <line num="17" count="1" type="stmt"/>
264
- <line num="18" count="2" type="cond" truecount="2" falsecount="2"/>
265
- <line num="19" count="0" type="stmt"/>
266
- <line num="20" count="2" type="cond" truecount="4" falsecount="0"/>
267
- <line num="21" count="1" type="stmt"/>
129
+ <file name="validationHelpers.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/validationHelpers.js">
130
+ <metrics statements="35" coveredstatements="30" conditionals="31" coveredconditionals="24" methods="5" coveredmethods="5"/>
131
+ <line num="13" count="1" type="cond" truecount="3" falsecount="1"/>
132
+ <line num="14" count="1" type="stmt"/>
133
+ <line num="16" count="1" type="stmt"/>
134
+ <line num="18" count="1" type="cond" truecount="1" falsecount="1"/>
135
+ <line num="19" count="1" type="stmt"/>
136
+ <line num="20" count="1" type="stmt"/>
137
+ <line num="21" count="1" type="cond" truecount="2" falsecount="2"/>
268
138
  <line num="23" count="1" type="stmt"/>
269
- <line num="26" count="3" type="cond" truecount="1" falsecount="1"/>
270
- <line num="27" count="0" type="stmt"/>
271
- <line num="30" count="3" type="stmt"/>
272
- <line num="31" count="3" type="cond" truecount="1" falsecount="1"/>
273
- <line num="39" count="3" type="stmt"/>
274
- <line num="40" count="3" type="stmt"/>
275
- <line num="41" count="3" type="stmt"/>
276
- <line num="42" count="3" type="stmt"/>
277
- <line num="43" count="3" type="stmt"/>
278
- <line num="51" count="3" type="stmt"/>
279
- <line num="52" count="0" type="stmt"/>
280
- <line num="54" count="3" type="cond" truecount="1" falsecount="1"/>
139
+ <line num="41" count="7" type="cond" truecount="2" falsecount="0"/>
140
+ <line num="44" count="7" type="stmt"/>
141
+ <line num="45" count="7" type="stmt"/>
142
+ <line num="47" count="7" type="cond" truecount="4" falsecount="0"/>
143
+ <line num="48" count="2" type="stmt"/>
144
+ <line num="50" count="2" type="stmt"/>
145
+ <line num="52" count="2" type="stmt"/>
146
+ <line num="53" count="2" type="stmt"/>
147
+ <line num="54" count="2" type="cond" truecount="1" falsecount="1"/>
281
148
  <line num="55" count="0" type="stmt"/>
282
- <line num="58" count="3" type="stmt"/>
283
- <line num="59" count="0" type="stmt"/>
284
- <line num="61" count="3" type="stmt"/>
285
- <line num="65" count="0" type="stmt"/>
286
- <line num="66" count="0" type="stmt"/>
149
+ <line num="56" count="0" type="stmt"/>
150
+ <line num="58" count="2" type="stmt"/>
151
+ <line num="59" count="2" type="stmt"/>
152
+ <line num="60" count="2" type="cond" truecount="1" falsecount="1"/>
153
+ <line num="61" count="0" type="stmt"/>
154
+ <line num="62" count="0" type="stmt"/>
155
+ <line num="64" count="2" type="stmt"/>
156
+ <line num="68" count="7" type="cond" truecount="1" falsecount="1"/>
157
+ <line num="70" count="0" type="stmt"/>
158
+ <line num="74" count="7" type="stmt"/>
159
+ <line num="75" count="7" type="stmt"/>
160
+ <line num="76" count="7" type="stmt"/>
161
+ <line num="78" count="7" type="cond" truecount="5" falsecount="0"/>
162
+ <line num="79" count="2" type="stmt"/>
163
+ <line num="80" count="2" type="cond" truecount="4" falsecount="0"/>
164
+ <line num="81" count="1" type="stmt"/>
165
+ <line num="86" count="7" type="stmt"/>
287
166
  </file>
288
167
  </package>
289
168
  <package name="hooks">
290
- <metrics statements="150" coveredstatements="35" conditionals="105" coveredconditionals="6" methods="38" coveredmethods="6"/>
169
+ <metrics statements="175" coveredstatements="89" conditionals="136" coveredconditionals="68" methods="38" coveredmethods="11"/>
291
170
  <file name="useContainerCommandRouter.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useContainerCommandRouter.js">
292
- <metrics statements="36" coveredstatements="2" conditionals="26" coveredconditionals="0" methods="7" coveredmethods="1"/>
293
- <line num="39" count="24" type="stmt"/>
294
- <line num="40" count="0" type="stmt"/>
295
- <line num="42" count="0" type="cond" truecount="0" falsecount="2"/>
296
- <line num="43" count="0" type="stmt"/>
171
+ <metrics statements="36" coveredstatements="12" conditionals="26" coveredconditionals="6" methods="7" coveredmethods="2"/>
172
+ <line num="39" count="96" type="stmt"/>
173
+ <line num="41" count="12" type="stmt"/>
174
+ <line num="43" count="12" type="cond" truecount="1" falsecount="1"/>
297
175
  <line num="44" count="0" type="stmt"/>
298
- <line num="48" count="0" type="cond" truecount="0" falsecount="3"/>
299
- <line num="51" count="0" type="stmt"/>
300
- <line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
301
- <line num="55" count="0" type="stmt"/>
176
+ <line num="45" count="0" type="stmt"/>
177
+ <line num="49" count="0" type="cond" truecount="0" falsecount="3"/>
178
+ <line num="52" count="0" type="stmt"/>
179
+ <line num="55" count="12" type="cond" truecount="1" falsecount="1"/>
302
180
  <line num="56" count="0" type="stmt"/>
303
- <line num="60" count="0" type="cond" truecount="0" falsecount="5"/>
304
- <line num="66" count="0" type="stmt"/>
305
- <line num="69" count="0" type="cond" truecount="0" falsecount="2"/>
306
- <line num="70" count="0" type="stmt"/>
181
+ <line num="57" count="0" type="stmt"/>
182
+ <line num="61" count="0" type="cond" truecount="0" falsecount="5"/>
183
+ <line num="67" count="0" type="stmt"/>
184
+ <line num="70" count="12" type="cond" truecount="1" falsecount="1"/>
307
185
  <line num="71" count="0" type="stmt"/>
308
- <line num="75" count="0" type="stmt"/>
309
- <line num="78" count="0" type="cond" truecount="0" falsecount="2"/>
310
- <line num="79" count="0" type="cond" truecount="0" falsecount="2"/>
311
- <line num="80" count="0" type="stmt"/>
312
- <line num="82" count="0" type="stmt"/>
186
+ <line num="72" count="0" type="stmt"/>
187
+ <line num="76" count="0" type="stmt"/>
188
+ <line num="79" count="12" type="cond" truecount="1" falsecount="1"/>
189
+ <line num="80" count="0" type="cond" truecount="0" falsecount="2"/>
190
+ <line num="81" count="0" type="stmt"/>
313
191
  <line num="83" count="0" type="stmt"/>
314
- <line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
315
- <line num="87" count="0" type="cond" truecount="0" falsecount="2"/>
316
- <line num="88" count="0" type="stmt"/>
317
- <line num="90" count="0" type="stmt"/>
192
+ <line num="84" count="0" type="stmt"/>
193
+ <line num="87" count="12" type="cond" truecount="1" falsecount="1"/>
194
+ <line num="88" count="0" type="cond" truecount="0" falsecount="2"/>
195
+ <line num="89" count="0" type="stmt"/>
318
196
  <line num="91" count="0" type="stmt"/>
319
197
  <line num="92" count="0" type="stmt"/>
320
- <line num="95" count="0" type="cond" truecount="0" falsecount="2"/>
321
- <line num="96" count="0" type="stmt"/>
322
- <line num="97" count="0" type="stmt"/>
323
- <line num="98" count="0" type="stmt"/>
324
- <line num="101" count="0" type="cond" truecount="0" falsecount="2"/>
325
- <line num="102" count="0" type="stmt"/>
198
+ <line num="93" count="0" type="stmt"/>
199
+ <line num="96" count="12" type="cond" truecount="1" falsecount="1"/>
200
+ <line num="97" count="12" type="stmt"/>
201
+ <line num="98" count="12" type="stmt"/>
202
+ <line num="99" count="12" type="stmt"/>
203
+ <line num="102" count="0" type="cond" truecount="0" falsecount="2"/>
326
204
  <line num="103" count="0" type="stmt"/>
327
- <line num="106" count="0" type="stmt"/>
328
- <line num="109" count="24" type="stmt"/>
205
+ <line num="104" count="0" type="stmt"/>
206
+ <line num="107" count="0" type="stmt"/>
207
+ <line num="122" count="96" type="stmt"/>
329
208
  </file>
330
209
  <file name="useControls.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useControls.js">
331
- <metrics statements="83" coveredstatements="26" conditionals="59" coveredconditionals="6" methods="23" coveredmethods="3"/>
332
- <line num="25" count="24" type="stmt"/>
333
- <line num="28" count="24" type="stmt"/>
334
- <line num="30" count="24" type="stmt"/>
210
+ <metrics statements="108" coveredstatements="68" conditionals="90" coveredconditionals="61" methods="23" coveredmethods="6"/>
211
+ <line num="25" count="96" type="stmt"/>
212
+ <line num="28" count="96" type="stmt"/>
213
+ <line num="30" count="96" type="stmt"/>
335
214
  <line num="32" count="4" type="stmt"/>
336
- <line num="33" count="4" type="stmt"/>
337
- <line num="34" count="4" type="stmt"/>
338
- <line num="35" count="4" type="stmt"/>
339
- <line num="36" count="4" type="stmt"/>
340
- <line num="37" count="3" type="stmt"/>
341
- <line num="38" count="3" type="cond" truecount="4" falsecount="0"/>
342
- <line num="39" count="3" type="stmt"/>
343
- <line num="41" count="3" type="stmt"/>
215
+ <line num="38" count="4" type="stmt"/>
216
+ <line num="39" count="4" type="stmt"/>
217
+ <line num="40" count="4" type="stmt"/>
218
+ <line num="41" count="4" type="stmt"/>
344
219
  <line num="42" count="3" type="stmt"/>
345
- <line num="44" count="1" type="stmt"/>
346
- <line num="45" count="1" type="stmt"/>
347
- <line num="47" count="4" type="stmt"/>
348
- <line num="50" count="0" type="stmt"/>
349
- <line num="54" count="24" type="stmt"/>
350
- <line num="55" count="24" type="stmt"/>
351
- <line num="56" count="24" type="stmt"/>
352
- <line num="58" count="24" type="stmt"/>
353
- <line num="60" count="0" type="stmt"/>
354
- <line num="61" count="0" type="stmt"/>
355
- <line num="65" count="0" type="stmt"/>
356
- <line num="68" count="0" type="stmt"/>
357
- <line num="69" count="0" type="stmt"/>
358
- <line num="77" count="24" type="stmt"/>
220
+ <line num="43" count="3" type="cond" truecount="4" falsecount="0"/>
221
+ <line num="44" count="2" type="stmt"/>
222
+ <line num="47" count="3" type="stmt"/>
223
+ <line num="50" count="3" type="stmt"/>
224
+ <line num="51" count="3" type="stmt"/>
225
+ <line num="53" count="1" type="stmt"/>
226
+ <line num="54" count="1" type="stmt"/>
227
+ <line num="56" count="4" type="stmt"/>
228
+ <line num="59" count="0" type="stmt"/>
229
+ <line num="63" count="96" type="stmt"/>
230
+ <line num="64" count="96" type="stmt"/>
231
+ <line num="65" count="96" type="stmt"/>
232
+ <line num="68" count="96" type="cond" truecount="2" falsecount="0"/>
233
+ <line num="69" count="96" type="cond" truecount="2" falsecount="0"/>
234
+ <line num="71" count="96" type="stmt"/>
235
+ <line num="73" count="0" type="stmt"/>
236
+ <line num="74" count="0" type="stmt"/>
359
237
  <line num="78" count="0" type="stmt"/>
360
- <line num="80" count="0" type="stmt"/>
361
238
  <line num="81" count="0" type="stmt"/>
362
239
  <line num="82" count="0" type="stmt"/>
363
- <line num="85" count="0" type="stmt"/>
364
- <line num="89" count="24" type="stmt"/>
240
+ <line num="90" count="96" type="stmt"/>
241
+ <line num="92" count="0" type="stmt"/>
242
+ <line num="95" count="0" type="stmt"/>
243
+ <line num="96" count="0" type="stmt"/>
365
244
  <line num="97" count="0" type="stmt"/>
366
- <line num="98" count="0" type="stmt"/>
367
- <line num="99" count="0" type="stmt"/>
368
245
  <line num="101" count="0" type="stmt"/>
369
- <line num="102" count="0" type="stmt"/>
370
- <line num="105" count="24" type="stmt"/>
371
- <line num="107" count="0" type="stmt"/>
372
- <line num="108" count="0" type="stmt"/>
373
- <line num="109" count="0" type="stmt"/>
374
- <line num="110" count="0" type="stmt"/>
375
- <line num="117" count="24" type="stmt"/>
376
- <line num="118" count="0" type="stmt"/>
377
- <line num="120" count="0" type="cond" truecount="0" falsecount="2"/>
378
- <line num="121" count="0" type="cond" truecount="0" falsecount="2"/>
379
- <line num="123" count="0" type="cond" truecount="0" falsecount="2"/>
380
- <line num="124" count="0" type="stmt"/>
381
- <line num="125" count="0" type="stmt"/>
382
- <line num="126" count="0" type="stmt"/>
383
- <line num="129" count="0" type="cond" truecount="0" falsecount="4"/>
246
+ <line num="107" count="96" type="stmt"/>
247
+ <line num="115" count="0" type="stmt"/>
248
+ <line num="116" count="0" type="stmt"/>
249
+ <line num="119" count="0" type="stmt"/>
250
+ <line num="121" count="0" type="stmt"/>
251
+ <line num="122" count="12" type="stmt"/>
252
+ <line num="125" count="96" type="stmt"/>
253
+ <line num="127" count="0" type="stmt"/>
254
+ <line num="128" count="0" type="stmt"/>
255
+ <line num="129" count="0" type="stmt"/>
384
256
  <line num="130" count="0" type="stmt"/>
385
- <line num="131" count="0" type="stmt"/>
386
- <line num="134" count="0" type="cond" truecount="0" falsecount="4"/>
387
- <line num="135" count="0" type="cond" truecount="0" falsecount="2"/>
388
- <line num="136" count="0" type="cond" truecount="0" falsecount="2"/>
389
- <line num="137" count="0" type="cond" truecount="0" falsecount="2"/>
390
- <line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
391
- <line num="139" count="0" type="stmt"/>
392
- <line num="142" count="0" type="cond" truecount="0" falsecount="6"/>
393
- <line num="143" count="0" type="cond" truecount="0" falsecount="2"/>
394
- <line num="144" count="0" type="cond" truecount="0" falsecount="2"/>
395
- <line num="145" count="0" type="cond" truecount="0" falsecount="2"/>
396
- <line num="146" count="0" type="cond" truecount="0" falsecount="2"/>
397
- <line num="151" count="24" type="stmt"/>
398
- <line num="152" count="0" type="cond" truecount="0" falsecount="2"/>
399
- <line num="153" count="0" type="stmt"/>
400
- <line num="154" count="0" type="stmt"/>
401
- <line num="157" count="0" type="cond" truecount="0" falsecount="2"/>
402
- <line num="158" count="0" type="cond" truecount="0" falsecount="4"/>
403
- <line num="159" count="0" type="stmt"/>
404
- <line num="161" count="0" type="stmt"/>
405
- <line num="164" count="0" type="cond" truecount="0" falsecount="2"/>
406
- <line num="165" count="0" type="stmt"/>
407
- <line num="166" count="0" type="stmt"/>
408
- <line num="169" count="0" type="cond" truecount="0" falsecount="4"/>
409
- <line num="170" count="0" type="stmt"/>
410
- <line num="171" count="0" type="stmt"/>
411
- <line num="174" count="0" type="stmt"/>
412
- <line num="175" count="0" type="stmt"/>
413
- <line num="176" count="0" type="stmt"/>
414
- <line num="179" count="24" type="stmt"/>
257
+ <line num="137" count="96" type="stmt"/>
258
+ <line num="139" count="27" type="stmt"/>
259
+ <line num="141" count="27" type="stmt"/>
260
+ <line num="142" count="0" type="cond" truecount="0" falsecount="2"/>
261
+ <line num="143" count="27" type="cond" truecount="0" falsecount="2"/>
262
+ <line num="145" count="27" type="cond" truecount="1" falsecount="1"/>
263
+ <line num="146" count="0" type="stmt"/>
264
+ <line num="147" count="0" type="stmt"/>
265
+ <line num="148" count="0" type="stmt"/>
266
+ <line num="151" count="27" type="cond" truecount="4" falsecount="0"/>
267
+ <line num="153" count="6" type="cond" truecount="4" falsecount="0"/>
268
+ <line num="154" count="2" type="stmt"/>
269
+ <line num="155" count="2" type="stmt"/>
270
+ <line num="157" count="4" type="stmt"/>
271
+ <line num="158" count="4" type="stmt"/>
272
+ <line num="162" count="21" type="cond" truecount="2" falsecount="0"/>
273
+ <line num="163" count="4" type="cond" truecount="2" falsecount="0"/>
274
+ <line num="164" count="3" type="cond" truecount="6" falsecount="0"/>
275
+ <line num="165" count="1" type="stmt"/>
276
+ <line num="168" count="4" type="stmt"/>
277
+ <line num="172" count="17" type="cond" truecount="4" falsecount="0"/>
278
+ <line num="173" count="8" type="cond" truecount="2" falsecount="0"/>
279
+ <line num="174" count="1" type="stmt"/>
280
+ <line num="175" count="1" type="stmt"/>
281
+ <line num="177" count="7" type="cond" truecount="2" falsecount="0"/>
282
+ <line num="178" count="5" type="stmt"/>
283
+ <line num="179" count="5" type="stmt"/>
284
+ <line num="183" count="11" type="cond" truecount="3" falsecount="1"/>
285
+ <line num="184" count="0" type="cond" truecount="0" falsecount="2"/>
286
+ <line num="185" count="0" type="cond" truecount="0" falsecount="2"/>
287
+ <line num="186" count="0" type="stmt"/>
288
+ <line num="188" count="0" type="cond" truecount="0" falsecount="2"/>
289
+ <line num="189" count="0" type="cond" truecount="0" falsecount="2"/>
290
+ <line num="190" count="0" type="cond" truecount="0" falsecount="2"/>
291
+ <line num="191" count="0" type="stmt"/>
292
+ <line num="194" count="11" type="cond" truecount="6" falsecount="0"/>
293
+ <line num="195" count="9" type="cond" truecount="1" falsecount="1"/>
294
+ <line num="196" count="9" type="cond" truecount="2" falsecount="0"/>
295
+ <line num="198" count="9" type="cond" truecount="1" falsecount="1"/>
296
+ <line num="199" count="0" type="stmt"/>
297
+ <line num="200" count="9" type="cond" truecount="1" falsecount="1"/>
298
+ <line num="201" count="0" type="stmt"/>
299
+ <line num="202" count="9" type="cond" truecount="1" falsecount="1"/>
300
+ <line num="203" count="0" type="stmt"/>
301
+ <line num="210" count="96" type="stmt"/>
302
+ <line num="211" count="39" type="cond" truecount="1" falsecount="1"/>
303
+ <line num="212" count="0" type="stmt"/>
304
+ <line num="213" count="0" type="stmt"/>
305
+ <line num="216" count="39" type="cond" truecount="1" falsecount="1"/>
306
+ <line num="217" count="0" type="cond" truecount="0" falsecount="4"/>
307
+ <line num="218" count="0" type="stmt"/>
308
+ <line num="220" count="0" type="stmt"/>
309
+ <line num="223" count="39" type="cond" truecount="2" falsecount="0"/>
310
+ <line num="224" count="27" type="stmt"/>
311
+ <line num="225" count="27" type="stmt"/>
312
+ <line num="228" count="12" type="cond" truecount="2" falsecount="2"/>
313
+ <line num="229" count="0" type="stmt"/>
314
+ <line num="230" count="0" type="stmt"/>
315
+ <line num="233" count="12" type="stmt"/>
316
+ <line num="234" count="12" type="stmt"/>
317
+ <line num="235" count="12" type="stmt"/>
318
+ <line num="238" count="96" type="stmt"/>
415
319
  </file>
416
320
  <file name="useEraseConfirmation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useEraseConfirmation.js">
417
321
  <metrics statements="13" coveredstatements="4" conditionals="9" coveredconditionals="0" methods="3" coveredmethods="1"/>
418
- <line num="15" count="24" type="stmt"/>
419
- <line num="17" count="24" type="stmt"/>
322
+ <line num="15" count="96" type="stmt"/>
323
+ <line num="17" count="96" type="stmt"/>
420
324
  <line num="18" count="0" type="stmt"/>
421
- <line num="21" count="24" type="stmt"/>
325
+ <line num="21" count="96" type="stmt"/>
422
326
  <line num="23" count="0" type="cond" truecount="0" falsecount="4"/>
423
327
  <line num="24" count="0" type="stmt"/>
424
328
  <line num="25" count="0" type="stmt"/>
@@ -427,129 +331,195 @@
427
331
  <line num="30" count="0" type="stmt"/>
428
332
  <line num="31" count="0" type="stmt"/>
429
333
  <line num="32" count="0" type="stmt"/>
430
- <line num="38" count="24" type="stmt"/>
334
+ <line num="38" count="96" type="stmt"/>
431
335
  </file>
432
336
  <file name="useExitHandler.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useExitHandler.js">
433
- <metrics statements="18" coveredstatements="3" conditionals="11" coveredconditionals="0" methods="5" coveredmethods="1"/>
434
- <line num="20" count="24" type="stmt"/>
435
- <line num="33" count="24" type="stmt"/>
436
- <line num="34" count="0" type="cond" truecount="0" falsecount="2"/>
437
- <line num="35" count="0" type="stmt"/>
438
- <line num="38" count="0" type="cond" truecount="0" falsecount="2"/>
439
- <line num="39" count="0" type="stmt"/>
440
- <line num="42" count="0" type="stmt"/>
337
+ <metrics statements="18" coveredstatements="5" conditionals="11" coveredconditionals="1" methods="5" coveredmethods="2"/>
338
+ <line num="20" count="96" type="stmt"/>
339
+ <line num="33" count="96" type="stmt"/>
340
+ <line num="35" count="12" type="cond" truecount="1" falsecount="1"/>
341
+ <line num="36" count="12" type="stmt"/>
342
+ <line num="39" count="0" type="cond" truecount="0" falsecount="2"/>
343
+ <line num="40" count="0" type="stmt"/>
441
344
  <line num="43" count="0" type="stmt"/>
442
- <line num="44" count="0" type="cond" truecount="0" falsecount="4"/>
443
- <line num="45" count="0" type="stmt"/>
444
- <line num="47" count="0" type="stmt"/>
445
- <line num="54" count="0" type="stmt"/>
345
+ <line num="44" count="0" type="stmt"/>
346
+ <line num="45" count="0" type="cond" truecount="0" falsecount="4"/>
347
+ <line num="46" count="0" type="stmt"/>
348
+ <line num="48" count="0" type="stmt"/>
446
349
  <line num="55" count="0" type="stmt"/>
447
350
  <line num="56" count="0" type="stmt"/>
448
- <line num="57" count="0" type="cond" truecount="0" falsecount="2"/>
449
- <line num="58" count="0" type="stmt"/>
450
- <line num="62" count="0" type="stmt"/>
451
- <line num="65" count="24" type="stmt"/>
351
+ <line num="57" count="0" type="stmt"/>
352
+ <line num="58" count="0" type="cond" truecount="0" falsecount="2"/>
353
+ <line num="59" count="0" type="stmt"/>
354
+ <line num="63" count="0" type="stmt"/>
355
+ <line num="68" count="96" type="stmt"/>
452
356
  </file>
453
357
  </package>
454
358
  <package name="hooks.creation">
455
- <metrics statements="97" coveredstatements="52" conditionals="33" coveredconditionals="22" methods="14" coveredmethods="5"/>
359
+ <metrics statements="163" coveredstatements="120" conditionals="62" coveredconditionals="47" methods="21" coveredmethods="13"/>
456
360
  <file name="useContainerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerActions.js">
457
361
  <metrics statements="24" coveredstatements="3" conditionals="6" coveredconditionals="0" methods="6" coveredmethods="1"/>
458
- <line num="15" count="24" type="stmt"/>
459
- <line num="16" count="24" type="stmt"/>
460
- <line num="26" count="0" type="stmt"/>
461
- <line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
462
- <line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
463
- <line num="29" count="0" type="stmt"/>
464
- <line num="30" count="0" type="cond" truecount="0" falsecount="2"/>
362
+ <line num="20" count="96" type="stmt"/>
363
+ <line num="21" count="96" type="stmt"/>
465
364
  <line num="31" count="0" type="stmt"/>
466
- <line num="32" count="0" type="stmt"/>
467
- <line num="33" count="0" type="stmt"/>
365
+ <line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
366
+ <line num="33" count="0" type="cond" truecount="0" falsecount="2"/>
367
+ <line num="34" count="0" type="stmt"/>
368
+ <line num="35" count="0" type="cond" truecount="0" falsecount="2"/>
468
369
  <line num="36" count="0" type="stmt"/>
469
370
  <line num="37" count="0" type="stmt"/>
470
371
  <line num="38" count="0" type="stmt"/>
471
- <line num="39" count="0" type="stmt"/>
472
- <line num="40" count="0" type="stmt"/>
473
372
  <line num="41" count="0" type="stmt"/>
474
373
  <line num="42" count="0" type="stmt"/>
374
+ <line num="43" count="0" type="stmt"/>
475
375
  <line num="44" count="0" type="stmt"/>
476
376
  <line num="45" count="0" type="stmt"/>
477
- <line num="49" count="24" type="stmt"/>
478
- <line num="57" count="0" type="stmt"/>
479
- <line num="60" count="0" type="stmt"/>
480
- <line num="63" count="0" type="stmt"/>
481
- <line num="66" count="0" type="stmt"/>
377
+ <line num="46" count="0" type="stmt"/>
378
+ <line num="47" count="0" type="stmt"/>
379
+ <line num="49" count="0" type="stmt"/>
380
+ <line num="52" count="0" type="stmt"/>
381
+ <line num="56" count="96" type="stmt"/>
382
+ <line num="64" count="0" type="stmt"/>
383
+ <line num="67" count="0" type="stmt"/>
384
+ <line num="70" count="0" type="stmt"/>
385
+ <line num="73" count="0" type="stmt"/>
482
386
  </file>
483
387
  <file name="useContainerCreation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerCreation.js">
484
- <metrics statements="62" coveredstatements="45" conditionals="25" coveredconditionals="22" methods="5" coveredmethods="3"/>
485
- <line num="18" count="51" type="stmt"/>
486
- <line num="19" count="51" type="stmt"/>
487
- <line num="20" count="51" type="stmt"/>
488
- <line num="21" count="51" type="stmt"/>
489
- <line num="22" count="51" type="stmt"/>
490
- <line num="23" count="51" type="stmt"/>
491
- <line num="24" count="51" type="stmt"/>
492
- <line num="30" count="32" type="cond" truecount="2" falsecount="0"/>
493
- <line num="31" count="9" type="cond" truecount="2" falsecount="0"/>
494
- <line num="32" count="1" type="stmt"/>
495
- <line num="33" count="1" type="stmt"/>
496
- <line num="34" count="1" type="stmt"/>
497
- <line num="36" count="8" type="stmt"/>
498
- <line num="37" count="8" type="stmt"/>
499
- <line num="38" count="8" type="stmt"/>
500
- <line num="39" count="8" type="stmt"/>
501
- <line num="41" count="23" type="cond" truecount="2" falsecount="0"/>
502
- <line num="42" count="8" type="stmt"/>
503
- <line num="43" count="8" type="stmt"/>
504
- <line num="44" count="8" type="stmt"/>
505
- <line num="45" count="8" type="stmt"/>
506
- <line num="47" count="15" type="cond" truecount="2" falsecount="0"/>
507
- <line num="49" count="8" type="cond" truecount="4" falsecount="0"/>
508
- <line num="50" count="1" type="stmt"/>
509
- <line num="51" count="1" type="stmt"/>
510
- <line num="52" count="1" type="stmt"/>
511
- <line num="54" count="7" type="stmt"/>
512
- <line num="55" count="24" type="stmt"/>
513
- <line num="57" count="7" type="stmt"/>
514
- <line num="58" count="7" type="stmt"/>
515
- <line num="59" count="7" type="cond" truecount="5" falsecount="0"/>
516
- <line num="60" count="2" type="stmt"/>
517
- <line num="61" count="2" type="stmt"/>
518
- <line num="62" count="5" type="cond" truecount="1" falsecount="1"/>
519
- <line num="63" count="0" type="stmt"/>
520
- <line num="64" count="0" type="stmt"/>
521
- <line num="66" count="5" type="stmt"/>
522
- <line num="67" count="5" type="stmt"/>
523
- <line num="69" count="7" type="stmt"/>
524
- <line num="71" count="7" type="cond" truecount="1" falsecount="1"/>
525
- <line num="73" count="7" type="stmt"/>
526
- <line num="74" count="7" type="cond" truecount="2" falsecount="0"/>
527
- <line num="75" count="1" type="stmt"/>
528
- <line num="76" count="1" type="stmt"/>
529
- <line num="77" count="1" type="stmt"/>
530
- <line num="80" count="6" type="stmt"/>
531
- <line num="88" count="0" type="stmt"/>
532
- <line num="89" count="0" type="stmt"/>
533
- <line num="90" count="0" type="stmt"/>
534
- <line num="91" count="0" type="stmt"/>
535
- <line num="92" count="0" type="stmt"/>
536
- <line num="93" count="0" type="stmt"/>
537
- <line num="94" count="0" type="stmt"/>
538
- <line num="95" count="0" type="stmt"/>
539
- <line num="103" count="0" type="stmt"/>
540
- <line num="104" count="0" type="stmt"/>
541
- <line num="105" count="0" type="stmt"/>
542
- <line num="106" count="0" type="stmt"/>
543
- <line num="107" count="0" type="stmt"/>
388
+ <metrics statements="128" coveredstatements="113" conditionals="54" coveredconditionals="47" methods="12" coveredmethods="11"/>
389
+ <line num="10" count="2" type="stmt"/>
390
+ <line num="29" count="204" type="stmt"/>
391
+ <line num="30" count="204" type="stmt"/>
392
+ <line num="31" count="204" type="stmt"/>
393
+ <line num="32" count="204" type="stmt"/>
394
+ <line num="33" count="204" type="stmt"/>
395
+ <line num="34" count="204" type="stmt"/>
396
+ <line num="35" count="204" type="stmt"/>
397
+ <line num="38" count="204" type="stmt"/>
398
+ <line num="39" count="204" type="stmt"/>
399
+ <line num="40" count="204" type="stmt"/>
400
+ <line num="43" count="204" type="stmt"/>
401
+ <line num="44" count="204" type="stmt"/>
402
+ <line num="46" count="204" type="stmt"/>
403
+ <line num="57" count="28" type="stmt"/>
404
+ <line num="58" count="28" type="stmt"/>
405
+ <line num="59" count="28" type="stmt"/>
406
+ <line num="60" count="28" type="stmt"/>
407
+ <line num="62" count="28" type="stmt"/>
408
+ <line num="63" count="28" type="stmt"/>
409
+ <line num="64" count="28" type="stmt"/>
410
+ <line num="65" count="28" type="cond" truecount="2" falsecount="0"/>
411
+ <line num="66" count="1" type="stmt"/>
412
+ <line num="67" count="1" type="stmt"/>
413
+ <line num="69" count="27" type="stmt"/>
414
+ <line num="70" count="27" type="stmt"/>
415
+ <line num="71" count="540" type="stmt"/>
416
+ <line num="73" count="27" type="stmt"/>
417
+ <line num="82" count="6" type="stmt"/>
418
+ <line num="83" count="6" type="cond" truecount="2" falsecount="0"/>
419
+ <line num="84" count="5" type="cond" truecount="2" falsecount="0"/>
420
+ <line num="88" count="4" type="stmt"/>
421
+ <line num="90" count="4" type="stmt"/>
422
+ <line num="91" count="4" type="stmt"/>
423
+ <line num="93" count="4" type="stmt"/>
424
+ <line num="94" count="4" type="stmt"/>
425
+ <line num="96" count="4" type="stmt"/>
426
+ <line num="97" count="4" type="stmt"/>
427
+ <line num="98" count="4" type="stmt"/>
428
+ <line num="100" count="4" type="stmt"/>
429
+ <line num="101" count="4" type="stmt"/>
430
+ <line num="103" count="4" type="cond" truecount="2" falsecount="0"/>
431
+ <line num="104" count="3" type="stmt"/>
432
+ <line num="106" count="0" type="cond" truecount="0" falsecount="2"/>
544
433
  <line num="108" count="0" type="stmt"/>
545
- <line num="109" count="0" type="stmt"/>
546
- <line num="112" count="51" type="stmt"/>
434
+ <line num="110" count="4" type="cond" truecount="2" falsecount="0"/>
435
+ <line num="111" count="3" type="stmt"/>
436
+ <line num="124" count="23" type="stmt"/>
437
+ <line num="125" count="23" type="stmt"/>
438
+ <line num="127" count="23" type="stmt"/>
439
+ <line num="128" count="23" type="cond" truecount="2" falsecount="0"/>
440
+ <line num="129" count="22" type="cond" truecount="2" falsecount="0"/>
441
+ <line num="130" count="21" type="stmt"/>
442
+ <line num="132" count="23" type="stmt"/>
443
+ <line num="141" count="7" type="cond" truecount="3" falsecount="1"/>
444
+ <line num="142" count="7" type="stmt"/>
445
+ <line num="143" count="7" type="stmt"/>
446
+ <line num="144" count="7" type="stmt"/>
447
+ <line num="145" count="7" type="stmt"/>
448
+ <line num="146" count="7" type="stmt"/>
449
+ <line num="153" count="43" type="cond" truecount="2" falsecount="0"/>
450
+ <line num="154" count="18" type="cond" truecount="2" falsecount="0"/>
451
+ <line num="155" count="1" type="stmt"/>
452
+ <line num="156" count="1" type="stmt"/>
453
+ <line num="157" count="1" type="stmt"/>
454
+ <line num="159" count="17" type="stmt"/>
455
+ <line num="160" count="17" type="stmt"/>
456
+ <line num="161" count="17" type="stmt"/>
457
+ <line num="162" count="17" type="stmt"/>
458
+ <line num="165" count="17" type="stmt"/>
459
+ <line num="166" count="17" type="stmt"/>
460
+ <line num="168" count="25" type="cond" truecount="2" falsecount="0"/>
461
+ <line num="169" count="9" type="stmt"/>
462
+ <line num="170" count="9" type="stmt"/>
463
+ <line num="173" count="9" type="stmt"/>
464
+ <line num="174" count="9" type="stmt"/>
465
+ <line num="176" count="16" type="cond" truecount="2" falsecount="0"/>
466
+ <line num="178" count="9" type="cond" truecount="4" falsecount="0"/>
467
+ <line num="179" count="1" type="stmt"/>
468
+ <line num="182" count="1" type="stmt"/>
469
+ <line num="183" count="1" type="stmt"/>
470
+ <line num="185" count="8" type="stmt"/>
471
+ <line num="186" count="8" type="stmt"/>
472
+ <line num="187" count="24" type="stmt"/>
473
+ <line num="190" count="8" type="stmt"/>
474
+ <line num="196" count="8" type="stmt"/>
475
+ <line num="197" count="8" type="cond" truecount="5" falsecount="0"/>
476
+ <line num="199" count="3" type="cond" truecount="3" falsecount="1"/>
477
+ <line num="202" count="3" type="stmt"/>
478
+ <line num="205" count="3" type="stmt"/>
479
+ <line num="206" count="5" type="cond" truecount="5" falsecount="0"/>
480
+ <line num="207" count="1" type="stmt"/>
481
+ <line num="210" count="1" type="stmt"/>
482
+ <line num="211" count="4" type="cond" truecount="1" falsecount="1"/>
483
+ <line num="212" count="0" type="stmt"/>
484
+ <line num="215" count="0" type="stmt"/>
485
+ <line num="217" count="4" type="stmt"/>
486
+ <line num="220" count="4" type="stmt"/>
487
+ <line num="222" count="8" type="stmt"/>
488
+ <line num="224" count="7" type="cond" truecount="1" falsecount="1"/>
489
+ <line num="226" count="7" type="stmt"/>
490
+ <line num="227" count="7" type="cond" truecount="2" falsecount="0"/>
491
+ <line num="228" count="1" type="stmt"/>
492
+ <line num="229" count="1" type="stmt"/>
493
+ <line num="230" count="1" type="stmt"/>
494
+ <line num="233" count="6" type="stmt"/>
495
+ <line num="241" count="0" type="stmt"/>
496
+ <line num="242" count="0" type="stmt"/>
497
+ <line num="243" count="0" type="stmt"/>
498
+ <line num="244" count="0" type="stmt"/>
499
+ <line num="245" count="0" type="stmt"/>
500
+ <line num="246" count="0" type="stmt"/>
501
+ <line num="247" count="0" type="stmt"/>
502
+ <line num="248" count="0" type="stmt"/>
503
+ <line num="249" count="0" type="stmt"/>
504
+ <line num="250" count="0" type="stmt"/>
505
+ <line num="251" count="0" type="stmt"/>
506
+ <line num="259" count="12" type="stmt"/>
507
+ <line num="260" count="12" type="stmt"/>
508
+ <line num="261" count="12" type="stmt"/>
509
+ <line num="262" count="12" type="stmt"/>
510
+ <line num="263" count="12" type="stmt"/>
511
+ <line num="264" count="12" type="stmt"/>
512
+ <line num="265" count="12" type="stmt"/>
513
+ <line num="266" count="12" type="stmt"/>
514
+ <line num="267" count="12" type="stmt"/>
515
+ <line num="268" count="12" type="stmt"/>
516
+ <line num="271" count="204" type="stmt"/>
547
517
  </file>
548
518
  <file name="useLogsViewer.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useLogsViewer.js">
549
519
  <metrics statements="11" coveredstatements="4" conditionals="2" coveredconditionals="0" methods="3" coveredmethods="1"/>
550
- <line num="18" count="24" type="stmt"/>
551
- <line num="19" count="24" type="stmt"/>
552
- <line num="20" count="24" type="stmt"/>
520
+ <line num="18" count="96" type="stmt"/>
521
+ <line num="19" count="96" type="stmt"/>
522
+ <line num="20" count="96" type="stmt"/>
553
523
  <line num="26" count="0" type="stmt"/>
554
524
  <line num="27" count="0" type="stmt"/>
555
525
  <line num="34" count="0" type="stmt"/>
@@ -557,47 +527,48 @@
557
527
  <line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
558
528
  <line num="37" count="0" type="stmt"/>
559
529
  <line num="38" count="0" type="stmt"/>
560
- <line num="42" count="24" type="stmt"/>
530
+ <line num="42" count="96" type="stmt"/>
561
531
  </file>
562
532
  </package>
563
533
  <package name="hooks.debug">
564
- <metrics statements="16" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
534
+ <metrics statements="17" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
565
535
  <file name="useDebugLogs.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/debug/useDebugLogs.js">
566
- <metrics statements="16" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
567
- <line num="5" count="24" type="stmt"/>
568
- <line num="6" count="24" type="stmt"/>
569
- <line num="8" count="24" type="stmt"/>
570
- <line num="9" count="4" type="stmt"/>
536
+ <metrics statements="17" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
537
+ <line num="5" count="96" type="stmt"/>
538
+ <line num="6" count="96" type="stmt"/>
539
+ <line num="8" count="96" type="stmt"/>
540
+ <line num="9" count="20" type="stmt"/>
571
541
  <line num="10" count="0" type="stmt"/>
572
542
  <line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
573
- <line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
574
- <line num="13" count="0" type="cond" truecount="0" falsecount="4"/>
575
- <line num="14" count="0" type="stmt"/>
543
+ <line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
544
+ <line num="14" count="0" type="cond" truecount="0" falsecount="4"/>
576
545
  <line num="15" count="0" type="stmt"/>
546
+ <line num="16" count="0" type="stmt"/>
577
547
  <line num="17" count="0" type="stmt"/>
578
- <line num="20" count="0" type="cond" truecount="0" falsecount="2"/>
579
- <line num="21" count="0" type="stmt"/>
580
- <line num="22" count="0" type="stmt"/>
581
- <line num="25" count="4" type="stmt"/>
582
- <line num="28" count="24" type="stmt"/>
548
+ <line num="19" count="0" type="stmt"/>
549
+ <line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
550
+ <line num="26" count="0" type="stmt"/>
551
+ <line num="27" count="0" type="stmt"/>
552
+ <line num="30" count="20" type="stmt"/>
553
+ <line num="33" count="96" type="stmt"/>
583
554
  </file>
584
555
  </package>
585
556
  <package name="hooks.navigation">
586
- <metrics statements="12" coveredstatements="3" conditionals="10" coveredconditionals="0" methods="4" coveredmethods="1"/>
557
+ <metrics statements="12" coveredstatements="5" conditionals="10" coveredconditionals="1" methods="4" coveredmethods="2"/>
587
558
  <file name="useContainerSelection.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/navigation/useContainerSelection.js">
588
- <metrics statements="12" coveredstatements="3" conditionals="10" coveredconditionals="0" methods="4" coveredmethods="1"/>
589
- <line num="4" count="24" type="stmt"/>
590
- <line num="6" count="24" type="stmt"/>
591
- <line num="7" count="0" type="cond" truecount="0" falsecount="2"/>
592
- <line num="8" count="0" type="stmt"/>
593
- <line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
559
+ <metrics statements="12" coveredstatements="5" conditionals="10" coveredconditionals="1" methods="4" coveredmethods="2"/>
560
+ <line num="4" count="96" type="stmt"/>
561
+ <line num="6" count="96" type="stmt"/>
562
+ <line num="8" count="12" type="cond" truecount="1" falsecount="1"/>
563
+ <line num="9" count="12" type="stmt"/>
594
564
  <line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
595
- <line num="13" count="0" type="stmt"/>
596
- <line num="16" count="0" type="cond" truecount="0" falsecount="2"/>
565
+ <line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
566
+ <line num="14" count="0" type="stmt"/>
597
567
  <line num="17" count="0" type="cond" truecount="0" falsecount="2"/>
598
- <line num="18" count="0" type="stmt"/>
599
- <line num="21" count="0" type="stmt"/>
600
- <line num="24" count="24" type="stmt"/>
568
+ <line num="18" count="0" type="cond" truecount="0" falsecount="2"/>
569
+ <line num="19" count="0" type="stmt"/>
570
+ <line num="22" count="0" type="stmt"/>
571
+ <line num="27" count="96" type="stmt"/>
601
572
  </file>
602
573
  </package>
603
574
  </project>