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