slnodejs 6.0.42 → 6.1.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 (431) hide show
  1. package/lib/cli.js +1 -1
  2. package/package.json +124 -124
  3. package/tsOutputs/api.d.ts +12 -12
  4. package/tsOutputs/api.js +116 -116
  5. package/tsOutputs/build-scanner/ast-utils.js +38 -38
  6. package/tsOutputs/build-scanner/ast-utils.js.map +1 -1
  7. package/tsOutputs/build-scanner/build-diff-process.js +352 -346
  8. package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
  9. package/tsOutputs/build-scanner/cia.js +95 -95
  10. package/tsOutputs/build-scanner/complexity-metrics/complexity-metrics.js +1 -0
  11. package/tsOutputs/build-scanner/complexity-metrics/complexity-metrics.js.map +1 -0
  12. package/tsOutputs/build-scanner/configuration-loader.js +17 -17
  13. package/tsOutputs/build-scanner/current-agent-instance.js +5 -5
  14. package/tsOutputs/build-scanner/default-values-resolver.js +42 -42
  15. package/tsOutputs/build-scanner/entities-mapper.js +35 -35
  16. package/tsOutputs/build-scanner/file-and-folder-utils.js +176 -176
  17. package/tsOutputs/build-scanner/file-system/actual-file.js +66 -46
  18. package/tsOutputs/build-scanner/file-system/actual-file.js.map +1 -1
  19. package/tsOutputs/build-scanner/git-format-builder.js +68 -68
  20. package/tsOutputs/build-scanner/global-error-handler.js +20 -20
  21. package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +299 -299
  22. package/tsOutputs/build-scanner/instrumentation/file-instrumenter.js +271 -271
  23. package/tsOutputs/build-scanner/instrumentation/file-instrumenter.js.map +1 -1
  24. package/tsOutputs/build-scanner/instrumentation/instrumentation-utils.js +58 -58
  25. package/tsOutputs/build-scanner/instrumentation/instrumented-file-size-reducer.js +159 -159
  26. package/tsOutputs/build-scanner/instrumentation/markup-file-instrumenter.js +185 -190
  27. package/tsOutputs/build-scanner/instrumentation/markup-file-instrumenter.js.map +1 -1
  28. package/tsOutputs/build-scanner/instrumentation/sync-instrumenter.js +39 -39
  29. package/tsOutputs/build-scanner/js_diff/ast-node-types.js +44 -44
  30. package/tsOutputs/build-scanner/js_diff/branch-key.js +10 -10
  31. package/tsOutputs/build-scanner/js_diff/branch-signature.js +156 -156
  32. package/tsOutputs/build-scanner/js_diff/code-metrics-spec.js +1 -0
  33. package/tsOutputs/build-scanner/js_diff/code-metrics-spec.js.map +1 -0
  34. package/tsOutputs/build-scanner/js_diff/code-metrics.js +1 -0
  35. package/tsOutputs/build-scanner/js_diff/code-metrics.js.map +1 -0
  36. package/tsOutputs/build-scanner/js_diff/create-node-key.js +7 -7
  37. package/tsOutputs/build-scanner/js_diff/dry-run-files-mapping.js +23 -23
  38. package/tsOutputs/build-scanner/js_diff/dry-run-files-mapping.js.map +1 -1
  39. package/tsOutputs/build-scanner/js_diff/file-signature.js +234 -231
  40. package/tsOutputs/build-scanner/js_diff/file-signature.js.map +1 -1
  41. package/tsOutputs/build-scanner/js_diff/files-mapping.js +460 -473
  42. package/tsOutputs/build-scanner/js_diff/files-mapping.js.map +1 -1
  43. package/tsOutputs/build-scanner/js_diff/generated-file-signature.js +143 -143
  44. package/tsOutputs/build-scanner/js_diff/generated-file-signature.js.map +1 -1
  45. package/tsOutputs/build-scanner/js_diff/globalMethodIndexer.js +26 -26
  46. package/tsOutputs/build-scanner/js_diff/guess-method-location.js +100 -97
  47. package/tsOutputs/build-scanner/js_diff/guess-method-location.js.map +1 -1
  48. package/tsOutputs/build-scanner/js_diff/guess-method-name.js +54 -54
  49. package/tsOutputs/build-scanner/js_diff/method-signature.js +142 -140
  50. package/tsOutputs/build-scanner/js_diff/method-signature.js.map +1 -1
  51. package/tsOutputs/build-scanner/js_diff/sl-mapper.js +136 -75
  52. package/tsOutputs/build-scanner/js_diff/sl-mapper.js.map +1 -1
  53. package/tsOutputs/build-scanner/js_diff/source-data-enricher.js +89 -89
  54. package/tsOutputs/build-scanner/js_diff/source-data-enricher.js.map +1 -1
  55. package/tsOutputs/build-scanner/js_diff/source-files-notifier.js +31 -31
  56. package/tsOutputs/build-scanner/js_diff/source-position-mapper.js +29 -29
  57. package/tsOutputs/build-scanner/mappings/contracts.js +3 -0
  58. package/tsOutputs/build-scanner/mappings/contracts.js.map +1 -0
  59. package/tsOutputs/build-scanner/mappings/ensure-files-handler.service.js +214 -0
  60. package/tsOutputs/build-scanner/mappings/ensure-files-handler.service.js.map +1 -0
  61. package/tsOutputs/build-scanner/mappings/file-element-utils.js +47 -0
  62. package/tsOutputs/build-scanner/mappings/file-element-utils.js.map +1 -0
  63. package/tsOutputs/build-scanner/mappings/file-enricher.js +205 -0
  64. package/tsOutputs/build-scanner/mappings/file-enricher.js.map +1 -0
  65. package/tsOutputs/build-scanner/mappings/files-data-container.js +52 -0
  66. package/tsOutputs/build-scanner/mappings/files-data-container.js.map +1 -0
  67. package/tsOutputs/build-scanner/mappings/scm-file-fixer.js +78 -0
  68. package/tsOutputs/build-scanner/mappings/scm-file-fixer.js.map +1 -0
  69. package/tsOutputs/build-scanner/markup-files-parser.js +71 -71
  70. package/tsOutputs/build-scanner/nopt-types.js +19 -19
  71. package/tsOutputs/build-scanner/nopt-usage-2.js +56 -56
  72. package/tsOutputs/build-scanner/polyfills.js +6 -6
  73. package/tsOutputs/build-scanner/scm/parse-log.js +5 -5
  74. package/tsOutputs/build-scanner/scm/scm-files-container.js +49 -49
  75. package/tsOutputs/build-scanner/sl-config-cia-cli.js +175 -175
  76. package/tsOutputs/build-scanner/utils.js +91 -91
  77. package/tsOutputs/cli-parse/agent-instance-data.d.ts +2 -2
  78. package/tsOutputs/cli-parse/agent-instance-data.js +6 -6
  79. package/tsOutputs/cli-parse/child-process-wrapper.js +82 -82
  80. package/tsOutputs/cli-parse/child-process-wrapper.js.map +1 -1
  81. package/tsOutputs/cli-parse/cli.js +509 -509
  82. package/tsOutputs/cli-parse/constants/constants.js +55 -56
  83. package/tsOutputs/cli-parse/constants/constants.js.map +1 -1
  84. package/tsOutputs/cli-parse/constants/third-parties.js +10 -10
  85. package/tsOutputs/cli-parse/contracts.js +2 -2
  86. package/tsOutputs/cli-parse/custom-commander.js +44 -44
  87. package/tsOutputs/cli-parse/executors/base-executor.js +263 -254
  88. package/tsOutputs/cli-parse/executors/base-executor.js.map +1 -1
  89. package/tsOutputs/cli-parse/executors/build-args-dto.js +55 -55
  90. package/tsOutputs/cli-parse/executors/build-end-executor.js +115 -117
  91. package/tsOutputs/cli-parse/executors/build-end-executor.js.map +1 -1
  92. package/tsOutputs/cli-parse/executors/build-executor.js +147 -149
  93. package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
  94. package/tsOutputs/cli-parse/executors/config-executor.js +112 -114
  95. package/tsOutputs/cli-parse/executors/config-executor.js.map +1 -1
  96. package/tsOutputs/cli-parse/executors/dry-run/base-data.js +55 -55
  97. package/tsOutputs/cli-parse/executors/dry-run/base-data.js.map +1 -1
  98. package/tsOutputs/cli-parse/executors/dry-run/build-mapping-data.js +228 -230
  99. package/tsOutputs/cli-parse/executors/dry-run/build-mapping-data.js.map +1 -1
  100. package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js +277 -277
  101. package/tsOutputs/cli-parse/executors/dry-run/dry-run-executor.js.map +1 -1
  102. package/tsOutputs/cli-parse/executors/dry-run/dry-run-validation.js +120 -122
  103. package/tsOutputs/cli-parse/executors/dry-run/dry-run-validation.js.map +1 -1
  104. package/tsOutputs/cli-parse/executors/dry-run/footprints-data.js +130 -72
  105. package/tsOutputs/cli-parse/executors/dry-run/footprints-data.js.map +1 -1
  106. package/tsOutputs/cli-parse/executors/dry-run/helper-methods.js +104 -99
  107. package/tsOutputs/cli-parse/executors/dry-run/helper-methods.js.map +1 -1
  108. package/tsOutputs/cli-parse/executors/end-execution-executor.js +88 -90
  109. package/tsOutputs/cli-parse/executors/end-execution-executor.js.map +1 -1
  110. package/tsOutputs/cli-parse/executors/integration-build-components-executor.js +132 -134
  111. package/tsOutputs/cli-parse/executors/integration-build-components-executor.js.map +1 -1
  112. package/tsOutputs/cli-parse/executors/integration-build-delete-components-executor.js +73 -75
  113. package/tsOutputs/cli-parse/executors/integration-build-delete-components-executor.js.map +1 -1
  114. package/tsOutputs/cli-parse/executors/integration-build-update-components-executor.js +71 -73
  115. package/tsOutputs/cli-parse/executors/integration-build-update-components-executor.js.map +1 -1
  116. package/tsOutputs/cli-parse/executors/mocha-executor.js +122 -124
  117. package/tsOutputs/cli-parse/executors/mocha-executor.js.map +1 -1
  118. package/tsOutputs/cli-parse/executors/nyc-report-executor.js +104 -106
  119. package/tsOutputs/cli-parse/executors/nyc-report-executor.js.map +1 -1
  120. package/tsOutputs/cli-parse/executors/pr-config-executor.js +83 -85
  121. package/tsOutputs/cli-parse/executors/pr-config-executor.js.map +1 -1
  122. package/tsOutputs/cli-parse/executors/run-executor.js +93 -95
  123. package/tsOutputs/cli-parse/executors/run-executor.js.map +1 -1
  124. package/tsOutputs/cli-parse/executors/start-execution-executor.js +91 -93
  125. package/tsOutputs/cli-parse/executors/start-execution-executor.js.map +1 -1
  126. package/tsOutputs/cli-parse/executors/test-executions-executor.js +75 -77
  127. package/tsOutputs/cli-parse/executors/test-executions-executor.js.map +1 -1
  128. package/tsOutputs/cli-parse/executors/test-listener-executor.js +149 -151
  129. package/tsOutputs/cli-parse/executors/test-listener-executor.js.map +1 -1
  130. package/tsOutputs/cli-parse/executors/test-runner-build-session-data-builder.js +75 -77
  131. package/tsOutputs/cli-parse/executors/test-runner-build-session-data-builder.js.map +1 -1
  132. package/tsOutputs/cli-parse/executors/upload-report-executor.js +116 -118
  133. package/tsOutputs/cli-parse/executors/upload-report-executor.js.map +1 -1
  134. package/tsOutputs/cli-parse/utils.js +32 -32
  135. package/tsOutputs/cli-parse/utils.js.map +1 -1
  136. package/tsOutputs/common/agent-events/agent-events-conracts.d.ts +123 -123
  137. package/tsOutputs/common/agent-events/agent-events-conracts.js +56 -56
  138. package/tsOutputs/common/agent-events/agent-events-controller.d.ts +45 -45
  139. package/tsOutputs/common/agent-events/agent-events-controller.js +301 -301
  140. package/tsOutputs/common/agent-events/agent-events-controller.js.map +1 -1
  141. package/tsOutputs/common/agent-events/agent-instance-info-builder.d.ts +22 -22
  142. package/tsOutputs/common/agent-events/agent-instance-info-builder.js +63 -63
  143. package/tsOutputs/common/agent-events/agent-instance-info-builder.js.map +1 -1
  144. package/tsOutputs/common/agent-events/agent-start-info-builder.d.ts +14 -14
  145. package/tsOutputs/common/agent-events/agent-start-info-builder.js +23 -23
  146. package/tsOutputs/common/agent-events/ci-info-builder.d.ts +7 -7
  147. package/tsOutputs/common/agent-events/ci-info-builder.js +30 -30
  148. package/tsOutputs/common/agent-events/cockpit-notifier.d.ts +26 -26
  149. package/tsOutputs/common/agent-events/cockpit-notifier.js +119 -119
  150. package/tsOutputs/common/agent-events/dry-run-agent-events-controller.d.ts +7 -7
  151. package/tsOutputs/common/agent-events/dry-run-agent-events-controller.js +31 -33
  152. package/tsOutputs/common/agent-events/dry-run-agent-events-controller.js.map +1 -1
  153. package/tsOutputs/common/agent-events/machine-info-builder.d.ts +7 -7
  154. package/tsOutputs/common/agent-events/machine-info-builder.js +35 -35
  155. package/tsOutputs/common/agent-events/machine-info-builder.js.map +1 -1
  156. package/tsOutputs/common/agent-events/nodejs-env-info-builder.d.ts +8 -8
  157. package/tsOutputs/common/agent-events/nodejs-env-info-builder.js +19 -19
  158. package/tsOutputs/common/agent-events/sensitive-data-filter.d.ts +2 -2
  159. package/tsOutputs/common/agent-events/sensitive-data-filter.js +54 -54
  160. package/tsOutputs/common/agent-instance-data.d.ts +10 -10
  161. package/tsOutputs/common/agent-instance-data.js +39 -39
  162. package/tsOutputs/common/agent-instance-data.js.map +1 -1
  163. package/tsOutputs/common/config-process/config-loader.d.ts +8 -8
  164. package/tsOutputs/common/config-process/config-loader.js +86 -86
  165. package/tsOutputs/common/config-process/config-system.d.ts +88 -88
  166. package/tsOutputs/common/config-process/config-system.js +293 -293
  167. package/tsOutputs/common/config-process/config.d.ts +60 -60
  168. package/tsOutputs/common/config-process/config.js +90 -92
  169. package/tsOutputs/common/config-process/config.js.map +1 -1
  170. package/tsOutputs/common/config-process/index.d.ts +21 -21
  171. package/tsOutputs/common/config-process/index.js +125 -127
  172. package/tsOutputs/common/config-process/index.js.map +1 -1
  173. package/tsOutputs/common/constants/constants.d.ts +18 -18
  174. package/tsOutputs/common/constants/constants.js +29 -29
  175. package/tsOutputs/common/constants/sl-env-vars.d.ts +52 -52
  176. package/tsOutputs/common/constants/sl-env-vars.js +122 -122
  177. package/tsOutputs/common/contracts.d.ts +123 -123
  178. package/tsOutputs/common/contracts.js +2 -2
  179. package/tsOutputs/common/coverage-elements/contracts.d.ts +25 -25
  180. package/tsOutputs/common/coverage-elements/contracts.js +8 -8
  181. package/tsOutputs/common/coverage-elements/file-element.d.ts +35 -35
  182. package/tsOutputs/common/coverage-elements/file-element.js +158 -158
  183. package/tsOutputs/common/coverage-elements/istanbul-unique-id-converter.d.ts +12 -12
  184. package/tsOutputs/common/coverage-elements/istanbul-unique-id-converter.js +95 -97
  185. package/tsOutputs/common/coverage-elements/istanbul-unique-id-converter.js.map +1 -1
  186. package/tsOutputs/common/coverage-elements/new-id-resolver.d.ts +3 -3
  187. package/tsOutputs/common/coverage-elements/new-id-resolver.js +45 -45
  188. package/tsOutputs/common/coverage-elements/new-id-resolver.js.map +1 -1
  189. package/tsOutputs/common/coverage-elements/original-module-loader.d.ts +41 -41
  190. package/tsOutputs/common/coverage-elements/original-module-loader.js +189 -189
  191. package/tsOutputs/common/coverage-elements/unique-id-converter.d.ts +32 -32
  192. package/tsOutputs/common/coverage-elements/unique-id-converter.js +234 -234
  193. package/tsOutputs/common/environment-data-service.d.ts +15 -15
  194. package/tsOutputs/common/environment-data-service.js +60 -60
  195. package/tsOutputs/common/events-process/events-contracts.d.ts +52 -52
  196. package/tsOutputs/common/events-process/events-contracts.js +19 -19
  197. package/tsOutputs/common/events-process/events-creator.js +42 -40
  198. package/tsOutputs/common/events-process/events-creator.js.map +1 -1
  199. package/tsOutputs/common/events-process/index.d.ts +42 -42
  200. package/tsOutputs/common/events-process/index.js +265 -266
  201. package/tsOutputs/common/events-process/index.js.map +1 -1
  202. package/tsOutputs/common/footprints-process/collection-interval.d.ts +10 -10
  203. package/tsOutputs/common/footprints-process/collection-interval.js +27 -27
  204. package/tsOutputs/common/footprints-process/collection-interval.js.map +1 -1
  205. package/tsOutputs/common/footprints-process/footprints-service-proxy.d.ts +12 -12
  206. package/tsOutputs/common/footprints-process/footprints-service-proxy.js +51 -51
  207. package/tsOutputs/common/footprints-process/index.d.ts +71 -71
  208. package/tsOutputs/common/footprints-process/index.js +264 -264
  209. package/tsOutputs/common/footprints-process/index.js.map +1 -1
  210. package/tsOutputs/common/footprints-process/istanbul-to-footprints-contract.d.ts +98 -98
  211. package/tsOutputs/common/footprints-process/istanbul-to-footprints-contract.js +9 -9
  212. package/tsOutputs/common/footprints-process/istanbul-to-footprints.d.ts +47 -47
  213. package/tsOutputs/common/footprints-process/istanbul-to-footprints.js +421 -421
  214. package/tsOutputs/common/footprints-process/istanbul-to-footprints.js.map +1 -1
  215. package/tsOutputs/common/footprints-process/production-footprints-handler.d.ts +54 -54
  216. package/tsOutputs/common/footprints-process/production-footprints-handler.js +308 -308
  217. package/tsOutputs/common/footprints-process/production-footprints-handler.js.map +1 -1
  218. package/tsOutputs/common/footprints-process-v6/base-browser-hits-converter.d.ts +20 -20
  219. package/tsOutputs/common/footprints-process-v6/base-browser-hits-converter.js +63 -65
  220. package/tsOutputs/common/footprints-process-v6/base-browser-hits-converter.js.map +1 -1
  221. package/tsOutputs/common/footprints-process-v6/buffer-size-helper.d.ts +15 -15
  222. package/tsOutputs/common/footprints-process-v6/buffer-size-helper.js +40 -40
  223. package/tsOutputs/common/footprints-process-v6/contracts.d.ts +184 -181
  224. package/tsOutputs/common/footprints-process-v6/contracts.js +9 -9
  225. package/tsOutputs/common/footprints-process-v6/footprints-buffer.d.ts +36 -34
  226. package/tsOutputs/common/footprints-process-v6/footprints-buffer.js +147 -135
  227. package/tsOutputs/common/footprints-process-v6/footprints-buffer.js.map +1 -1
  228. package/tsOutputs/common/footprints-process-v6/hits-collector.d.ts +24 -24
  229. package/tsOutputs/common/footprints-process-v6/hits-collector.js +168 -168
  230. package/tsOutputs/common/footprints-process-v6/hits-converter.d.ts +30 -28
  231. package/tsOutputs/common/footprints-process-v6/hits-converter.js +135 -105
  232. package/tsOutputs/common/footprints-process-v6/hits-converter.js.map +1 -1
  233. package/tsOutputs/common/footprints-process-v6/index.d.ts +41 -40
  234. package/tsOutputs/common/footprints-process-v6/index.js +304 -258
  235. package/tsOutputs/common/footprints-process-v6/index.js.map +1 -1
  236. package/tsOutputs/common/footprints-process-v6/location-formatter.d.ts +6 -6
  237. package/tsOutputs/common/footprints-process-v6/location-formatter.js +25 -25
  238. package/tsOutputs/common/footprints-process-v6/relative-path-resolver.d.ts +8 -8
  239. package/tsOutputs/common/footprints-process-v6/relative-path-resolver.js +28 -28
  240. package/tsOutputs/common/footprints-process-v6/remote-browser-hits-converter.d.ts +9 -9
  241. package/tsOutputs/common/footprints-process-v6/remote-browser-hits-converter.js +38 -40
  242. package/tsOutputs/common/footprints-process-v6/remote-browser-hits-converter.js.map +1 -1
  243. package/tsOutputs/common/footprints-process-v6/remote-footprints-process.d.ts +8 -8
  244. package/tsOutputs/common/footprints-process-v6/remote-footprints-process.js +32 -34
  245. package/tsOutputs/common/footprints-process-v6/remote-footprints-process.js.map +1 -1
  246. package/tsOutputs/common/footprints-process-v6/remote-hits-collector.d.ts +14 -14
  247. package/tsOutputs/common/footprints-process-v6/remote-hits-collector.js +39 -41
  248. package/tsOutputs/common/footprints-process-v6/remote-hits-collector.js.map +1 -1
  249. package/tsOutputs/common/footprints-process-v6/source-map-data.d.ts +9 -9
  250. package/tsOutputs/common/footprints-process-v6/source-map-data.js +32 -32
  251. package/tsOutputs/common/footprints-process-v6/source-map-data.js.map +1 -1
  252. package/tsOutputs/common/http/backend-proxy-interface.d.ts +33 -33
  253. package/tsOutputs/common/http/backend-proxy-interface.js +2 -2
  254. package/tsOutputs/common/http/backend-proxy.d.ts +54 -53
  255. package/tsOutputs/common/http/backend-proxy.js +408 -398
  256. package/tsOutputs/common/http/backend-proxy.js.map +1 -1
  257. package/tsOutputs/common/http/contracts.d.ts +280 -203
  258. package/tsOutputs/common/http/contracts.js +156 -158
  259. package/tsOutputs/common/http/contracts.js.map +1 -1
  260. package/tsOutputs/common/http/dry-run-proxy.js +106 -106
  261. package/tsOutputs/common/http/entities-mapper.d.ts +4 -4
  262. package/tsOutputs/common/http/entities-mapper.js +17 -17
  263. package/tsOutputs/common/http/http-client.d.ts +21 -21
  264. package/tsOutputs/common/http/http-client.js +195 -191
  265. package/tsOutputs/common/http/http-client.js.map +1 -1
  266. package/tsOutputs/common/http/http-verb.d.ts +6 -6
  267. package/tsOutputs/common/http/http-verb.js +10 -10
  268. package/tsOutputs/common/http/sl-routes.d.ts +70 -70
  269. package/tsOutputs/common/http/sl-routes.js +218 -218
  270. package/tsOutputs/common/ignored-files-handler.js +122 -122
  271. package/tsOutputs/common/ignored-files-handler.js.map +1 -1
  272. package/tsOutputs/common/logger.d.ts +40 -40
  273. package/tsOutputs/common/logger.js +188 -190
  274. package/tsOutputs/common/logger.js.map +1 -1
  275. package/tsOutputs/common/messages-formatter.d.ts +6 -6
  276. package/tsOutputs/common/messages-formatter.js +21 -21
  277. package/tsOutputs/common/queue.d.ts +19 -19
  278. package/tsOutputs/common/queue.js +55 -57
  279. package/tsOutputs/common/queue.js.map +1 -1
  280. package/tsOutputs/common/scm/contracts.js +2 -2
  281. package/tsOutputs/common/scm/git-cloner.js +138 -0
  282. package/tsOutputs/common/scm/git-cloner.js.map +1 -0
  283. package/tsOutputs/common/scm/git-format-builder.js +72 -72
  284. package/tsOutputs/common/scm/git.js +411 -411
  285. package/tsOutputs/common/scm/git.js.map +1 -1
  286. package/tsOutputs/common/scm/none.js +115 -115
  287. package/tsOutputs/common/scm/scm-factory.js +21 -21
  288. package/tsOutputs/common/short-name-to-file-mapper.js +79 -79
  289. package/tsOutputs/common/source-map-handler.d.ts +58 -58
  290. package/tsOutputs/common/source-map-handler.js +197 -197
  291. package/tsOutputs/common/source-map-reader.js +84 -84
  292. package/tsOutputs/common/source-maps-utils.d.ts +3 -3
  293. package/tsOutputs/common/source-maps-utils.js +39 -39
  294. package/tsOutputs/common/state-tracker-fpv6.d.ts +6 -6
  295. package/tsOutputs/common/state-tracker-fpv6.js +42 -44
  296. package/tsOutputs/common/state-tracker-fpv6.js.map +1 -1
  297. package/tsOutputs/common/state-tracker.d.ts +49 -49
  298. package/tsOutputs/common/state-tracker.js +299 -304
  299. package/tsOutputs/common/state-tracker.js.map +1 -1
  300. package/tsOutputs/common/system-date.d.ts +2 -2
  301. package/tsOutputs/common/system-date.js +21 -21
  302. package/tsOutputs/common/utils/abstract-data-builder.d.ts +10 -10
  303. package/tsOutputs/common/utils/abstract-data-builder.js +24 -24
  304. package/tsOutputs/common/utils/abstract-data-builder.js.map +1 -1
  305. package/tsOutputs/common/utils/build-session-data-builder.d.ts +18 -18
  306. package/tsOutputs/common/utils/build-session-data-builder.js +135 -137
  307. package/tsOutputs/common/utils/build-session-data-builder.js.map +1 -1
  308. package/tsOutputs/common/utils/dependency-utils.js +69 -69
  309. package/tsOutputs/common/utils/files-utils.d.ts +6 -5
  310. package/tsOutputs/common/utils/files-utils.js +45 -36
  311. package/tsOutputs/common/utils/files-utils.js.map +1 -1
  312. package/tsOutputs/common/utils/parsing-utils.d.ts +4 -4
  313. package/tsOutputs/common/utils/parsing-utils.js +29 -29
  314. package/tsOutputs/common/utils/test-utils/mock-server-utils/contracts.js +10 -10
  315. package/tsOutputs/common/utils/test-utils/mock-server-utils/mock-server-proxy.js +248 -248
  316. package/tsOutputs/common/utils/timer-utils.d.ts +3 -3
  317. package/tsOutputs/common/utils/timer-utils.js +12 -12
  318. package/tsOutputs/common/utils/token-data-builder.d.ts +21 -21
  319. package/tsOutputs/common/utils/token-data-builder.js +95 -97
  320. package/tsOutputs/common/utils/token-data-builder.js.map +1 -1
  321. package/tsOutputs/common/utils/validation-utils.d.ts +3 -3
  322. package/tsOutputs/common/utils/validation-utils.js +18 -18
  323. package/tsOutputs/common/uuid.js +23 -23
  324. package/tsOutputs/common/watchdog.d.ts +96 -96
  325. package/tsOutputs/common/watchdog.js +149 -151
  326. package/tsOutputs/common/watchdog.js.map +1 -1
  327. package/tsOutputs/mocha-reporter/constants.js +27 -27
  328. package/tsOutputs/mocha-reporter/end-execution.js +22 -22
  329. package/tsOutputs/mocha-reporter/index.js +323 -323
  330. package/tsOutputs/test-listener/IConsoleLogger.js +5 -5
  331. package/tsOutputs/test-listener/SlNodeJsProxy.js +96 -96
  332. package/tsOutputs/test-listener/UserMessageHelper.js +47 -47
  333. package/tsOutputs/test-listener/agent-loader.js +58 -58
  334. package/tsOutputs/test-listener/agent.d.ts +53 -53
  335. package/tsOutputs/test-listener/agent.js +273 -273
  336. package/tsOutputs/test-listener/agent.js.map +1 -1
  337. package/tsOutputs/test-listener/api.js +157 -157
  338. package/tsOutputs/test-listener/base-proxy.d.ts +15 -15
  339. package/tsOutputs/test-listener/base-proxy.js +133 -133
  340. package/tsOutputs/test-listener/bootstrap.js +16 -16
  341. package/tsOutputs/test-listener/child-process-patcher.js +136 -136
  342. package/tsOutputs/test-listener/child-process-patcher.js.map +1 -1
  343. package/tsOutputs/test-listener/cli.js +64 -64
  344. package/tsOutputs/test-listener/coloring/http-coloring.d.ts +15 -15
  345. package/tsOutputs/test-listener/coloring/http-coloring.js +188 -188
  346. package/tsOutputs/test-listener/coloring/icoloring-provider.d.ts +10 -10
  347. package/tsOutputs/test-listener/coloring/icoloring-provider.js +2 -2
  348. package/tsOutputs/test-listener/coloring/listening-port.d.ts +20 -20
  349. package/tsOutputs/test-listener/coloring/listening-port.js +48 -48
  350. package/tsOutputs/test-listener/command-line-arg-parser.js +91 -91
  351. package/tsOutputs/test-listener/config-process/config-loader.js +104 -104
  352. package/tsOutputs/test-listener/config-process/config-system.d.ts +88 -88
  353. package/tsOutputs/test-listener/config-process/config-system.js +285 -285
  354. package/tsOutputs/test-listener/config-process/index.js +126 -128
  355. package/tsOutputs/test-listener/config-process/index.js.map +1 -1
  356. package/tsOutputs/test-listener/config.d.ts +50 -50
  357. package/tsOutputs/test-listener/config.js +80 -82
  358. package/tsOutputs/test-listener/config.js.map +1 -1
  359. package/tsOutputs/test-listener/contracts.d.ts +72 -72
  360. package/tsOutputs/test-listener/contracts.js +2 -2
  361. package/tsOutputs/test-listener/entities/BasicConfigurationData.js +72 -72
  362. package/tsOutputs/test-listener/entities/build-scanner/ConfigModeData.js +48 -50
  363. package/tsOutputs/test-listener/entities/build-scanner/ConfigModeData.js.map +1 -1
  364. package/tsOutputs/test-listener/entities/build-scanner/ScanModeData.js +51 -53
  365. package/tsOutputs/test-listener/entities/build-scanner/ScanModeData.js.map +1 -1
  366. package/tsOutputs/test-listener/environment-data-service.d.ts +11 -11
  367. package/tsOutputs/test-listener/environment-data-service.js +60 -60
  368. package/tsOutputs/test-listener/execution-process/contracts.js +5 -5
  369. package/tsOutputs/test-listener/execution-process/entities-mapper.js +49 -49
  370. package/tsOutputs/test-listener/execution-process/execution-service-proxy.js +205 -207
  371. package/tsOutputs/test-listener/execution-process/execution-service-proxy.js.map +1 -1
  372. package/tsOutputs/test-listener/execution-process/index.js +163 -163
  373. package/tsOutputs/test-listener/factory.d.ts +87 -87
  374. package/tsOutputs/test-listener/factory.js +285 -285
  375. package/tsOutputs/test-listener/footprints-process/footprints-service-proxy.js +50 -52
  376. package/tsOutputs/test-listener/footprints-process/footprints-service-proxy.js.map +1 -1
  377. package/tsOutputs/test-listener/footprints-process/index.js +230 -230
  378. package/tsOutputs/test-listener/footprints-process/index.js.map +1 -1
  379. package/tsOutputs/test-listener/footprints-process/istanbul-to-footprints-base.js +130 -130
  380. package/tsOutputs/test-listener/footprints-process/istanbul-to-footprints-contract.js +2 -2
  381. package/tsOutputs/test-listener/footprints-process/istanbul-to-footprints-v3.js +288 -290
  382. package/tsOutputs/test-listener/footprints-process/istanbul-to-footprints-v3.js.map +1 -1
  383. package/tsOutputs/test-listener/integrations/SlGulp.js +104 -104
  384. package/tsOutputs/test-listener/logs-process/index.d.ts +48 -48
  385. package/tsOutputs/test-listener/logs-process/index.js +142 -142
  386. package/tsOutputs/test-listener/logs-process/index.js.map +1 -1
  387. package/tsOutputs/test-listener/logs-process/log-service-proxy.d.ts +9 -9
  388. package/tsOutputs/test-listener/logs-process/log-service-proxy.js +29 -31
  389. package/tsOutputs/test-listener/logs-process/log-service-proxy.js.map +1 -1
  390. package/tsOutputs/test-listener/nyc-report-executor-fpv6.js +143 -136
  391. package/tsOutputs/test-listener/nyc-report-executor-fpv6.js.map +1 -1
  392. package/tsOutputs/test-listener/nyc-report-executor.js +144 -144
  393. package/tsOutputs/test-listener/nyc-report-executor.js.map +1 -1
  394. package/tsOutputs/test-listener/queue.js +55 -57
  395. package/tsOutputs/test-listener/queue.js.map +1 -1
  396. package/tsOutputs/test-listener/remote-agent.d.ts +42 -42
  397. package/tsOutputs/test-listener/remote-agent.js +200 -200
  398. package/tsOutputs/test-listener/remote-agent.js.map +1 -1
  399. package/tsOutputs/test-listener/resolvers/AppNameResolver.js +32 -34
  400. package/tsOutputs/test-listener/resolvers/AppNameResolver.js.map +1 -1
  401. package/tsOutputs/test-listener/resolvers/ArgumentResolver.js +64 -64
  402. package/tsOutputs/test-listener/resolvers/ArgumentResolver.js.map +1 -1
  403. package/tsOutputs/test-listener/resolvers/BuildResolver.js +31 -33
  404. package/tsOutputs/test-listener/resolvers/BuildResolver.js.map +1 -1
  405. package/tsOutputs/test-listener/resolvers/BuildSessionIdFileResolver.js +31 -33
  406. package/tsOutputs/test-listener/resolvers/BuildSessionIdFileResolver.js.map +1 -1
  407. package/tsOutputs/test-listener/resolvers/BuildSessionIdResolver.js +34 -36
  408. package/tsOutputs/test-listener/resolvers/BuildSessionIdResolver.js.map +1 -1
  409. package/tsOutputs/test-listener/resolvers/ProxyResolver.js +31 -33
  410. package/tsOutputs/test-listener/resolvers/ProxyResolver.js.map +1 -1
  411. package/tsOutputs/test-listener/resolvers/TokenResolver.js +31 -33
  412. package/tsOutputs/test-listener/resolvers/TokenResolver.js.map +1 -1
  413. package/tsOutputs/test-listener/state-tracker-process/index.js +160 -162
  414. package/tsOutputs/test-listener/state-tracker-process/index.js.map +1 -1
  415. package/tsOutputs/test-listener/state-tracker-process/state-tracker-proxy.d.ts +8 -8
  416. package/tsOutputs/test-listener/state-tracker-process/state-tracker-proxy.js +69 -71
  417. package/tsOutputs/test-listener/state-tracker-process/state-tracker-proxy.js.map +1 -1
  418. package/tsOutputs/test-listener/test-recommendation-handler.d.ts +29 -29
  419. package/tsOutputs/test-listener/test-recommendation-handler.js +161 -161
  420. package/tsOutputs/test-listener/upload-report-handler.js +96 -96
  421. package/tsOutputs/test-listener/utils.js +68 -68
  422. package/tsOutputs/test-listener/uuid.d.ts +3 -3
  423. package/tsOutputs/test-listener/uuid.js +23 -23
  424. package/tsOutputs/test-listener/wait-for-multiple-callbacks.d.ts +22 -22
  425. package/tsOutputs/test-listener/wait-for-multiple-callbacks.js +60 -60
  426. package/tsOutputs/test-listener/watchdog.d.ts +89 -89
  427. package/tsOutputs/test-listener/watchdog.js +144 -146
  428. package/tsOutputs/test-listener/watchdog.js.map +1 -1
  429. package/browser-agent/dist/browser-agent-all.js +0 -101140
  430. package/browser-agent/dist/browser-agent-all.min.js +0 -57
  431. package/browser-agent/package.json +0 -44
@@ -1,302 +1,302 @@
1
- "use strict";
2
- var __assign = (this && this.__assign) || function () {
3
- __assign = Object.assign || function(t) {
4
- for (var s, i = 1, n = arguments.length; i < n; i++) {
5
- s = arguments[i];
6
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
- t[p] = s[p];
8
- }
9
- return t;
10
- };
11
- return __assign.apply(this, arguments);
12
- };
13
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15
- return new (P || (P = Promise))(function (resolve, reject) {
16
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19
- step((generator = generator.apply(thisArg, _arguments || [])).next());
20
- });
21
- };
22
- var __generator = (this && this.__generator) || function (thisArg, body) {
23
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25
- function verb(n) { return function (v) { return step([n, v]); }; }
26
- function step(op) {
27
- if (f) throw new TypeError("Generator is already executing.");
28
- while (_) try {
29
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
30
- if (y = 0, t) op = [op[0] & 2, t.value];
31
- switch (op[0]) {
32
- case 0: case 1: t = op; break;
33
- case 4: _.label++; return { value: op[1], done: false };
34
- case 5: _.label++; y = op[1]; op = [0]; continue;
35
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
36
- default:
37
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41
- if (t[2]) _.ops.pop();
42
- _.trys.pop(); continue;
43
- }
44
- op = body.call(thisArg, _);
45
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47
- }
48
- };
49
- Object.defineProperty(exports, "__esModule", { value: true });
50
- exports.AgentEventsController = void 0;
51
- var agent_events_conracts_1 = require("./agent-events-conracts");
52
- var agent_instance_info_builder_1 = require("./agent-instance-info-builder");
53
- var machine_info_builder_1 = require("./machine-info-builder");
54
- var nodejs_env_info_builder_1 = require("./nodejs-env-info-builder");
55
- var agent_start_info_builder_1 = require("./agent-start-info-builder");
56
- var ci_info_builder_1 = require("./ci-info-builder");
57
- var backend_proxy_1 = require("../http/backend-proxy");
58
- var validation_utils_1 = require("../utils/validation-utils");
59
- var watchdog_1 = require("../watchdog");
60
- var system_date_1 = require("../system-date");
61
- var AgentEventsController = /** @class */ (function () {
62
- function AgentEventsController(agentConfig, agentInstanceData, logger, backendProxy, tool) {
63
- validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(agentConfig, 'agentConfig');
64
- validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(agentInstanceData, 'agentInstanceData');
65
- validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(logger, 'logger');
66
- this._agentConfig = agentConfig;
67
- this._logger = logger;
68
- this._agentInstanceData = agentInstanceData;
69
- this.shutDownRetries = 0;
70
- this.backendProxy = backendProxy || this.createBackendProxy();
71
- this.addTool(tool);
72
- this.initWatchdog();
73
- this.submittedEventsMap = new Map();
74
- }
75
- AgentEventsController.prototype.submitAgentStartedEvent = function (packageJsonFile) {
76
- return __awaiter(this, void 0, void 0, function () {
77
- var event, result;
78
- return __generator(this, function (_a) {
79
- switch (_a.label) {
80
- case 0:
81
- this.startRequestStatus = StartRequestStatus.PENDING;
82
- event = this.buildAgentStartEvent(packageJsonFile || {});
83
- return [4 /*yield*/, this.submitAgentEventRequest(event)];
84
- case 1:
85
- result = _a.sent();
86
- this.startRequestStatus = result ? StartRequestStatus.SUCCEED : StartRequestStatus.FAILED;
87
- if (this.startRequestStatus !== StartRequestStatus.SUCCEED) {
88
- this._logger.info('Agent start event failed to submit - ping events will not be sent');
89
- }
90
- else {
91
- this._pingWatchdog.start();
92
- }
93
- return [2 /*return*/];
94
- }
95
- });
96
- });
97
- };
98
- AgentEventsController.prototype.submitAgentEventRequest = function (event) {
99
- return __awaiter(this, void 0, void 0, function () {
100
- var request, e_1;
101
- return __generator(this, function (_a) {
102
- switch (_a.label) {
103
- case 0:
104
- request = {
105
- agentId: this._agentInstanceData.agentId,
106
- events: Array.isArray(event) ? event : [event],
107
- appName: this._agentConfig.appName.value,
108
- buildSessionId: this._agentConfig.buildSessionId.value
109
- };
110
- _a.label = 1;
111
- case 1:
112
- _a.trys.push([1, 3, , 4]);
113
- return [4 /*yield*/, this.backendProxy.submitAgentEvent(request)];
114
- case 2:
115
- _a.sent();
116
- this._logger.info("Submitted '" + request.events.length + "' events successfully");
117
- return [2 /*return*/, true];
118
- case 3:
119
- e_1 = _a.sent();
120
- this._logger.warn("Failed to submit '" + request.events.length + "' events. Error " + e_1);
121
- return [2 /*return*/, false];
122
- case 4: return [2 /*return*/];
123
- }
124
- });
125
- });
126
- };
127
- AgentEventsController.prototype.buildAgentStartEvent = function (packageJsonFile) {
128
- var agentInstanceInfoBuilder = new agent_instance_info_builder_1.AgentInstanceInfoBuilder(this);
129
- var machineInfoBuilder = new machine_info_builder_1.MachineInfoBuilder();
130
- var dependencies = __assign(__assign({}, packageJsonFile.dependencies), packageJsonFile.devDependencies);
131
- var nodejsEnvInfoBuilder = new nodejs_env_info_builder_1.NodejsEnvInfoBuilder(dependencies);
132
- var ciInfoBuilder = new ci_info_builder_1.CiInfoBuilder();
133
- var agentStartInfoBuilder = new agent_start_info_builder_1.AgentStartInfoBuilder(agentInstanceInfoBuilder, machineInfoBuilder, nodejsEnvInfoBuilder, ciInfoBuilder);
134
- var agentStartInfo = agentStartInfoBuilder.build();
135
- return this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_STARTED, agentStartInfo);
136
- };
137
- AgentEventsController.prototype.buildAgentShutdownEvent = function () {
138
- return this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_SHUTDOWN);
139
- };
140
- AgentEventsController.prototype.submitAgentShutdownEvent = function () {
141
- return __awaiter(this, void 0, void 0, function () {
142
- var event;
143
- var _this = this;
144
- return __generator(this, function (_a) {
145
- this.shutDownRetries++;
146
- if (this.startRequestStatus == StartRequestStatus.FAILED) {
147
- this._logger.debug('Agent start not submitted - not sending shut down events');
148
- return [2 /*return*/];
149
- }
150
- if (this.shutDownRetries > AgentEventsController.MAX_SHUTDOWN_RETRIES) {
151
- this._logger.debug('Stop trying to send shutdown event after 60 seconds ');
152
- return [2 /*return*/];
153
- }
154
- this._pingWatchdog.stop();
155
- event = this.buildAgentShutdownEvent();
156
- if (this.startRequestStatus == StartRequestStatus.PENDING) {
157
- setTimeout(function () { return _this.submitAgentShutdownEvent.call(_this); }, 1000);
158
- }
159
- else {
160
- return [2 /*return*/, this.submitAgentEventRequest(event)];
161
- }
162
- return [2 /*return*/];
163
- });
164
- });
165
- };
166
- // Not happens if start event failed to submit
167
- AgentEventsController.prototype.submitPingEvent = function () {
168
- return this.submitEvent(agent_events_conracts_1.AgentEventCode.AGENT_PING);
169
- };
170
- AgentEventsController.prototype.submitEvent = function (code) {
171
- var _this = this;
172
- this.submittedEventsMap.set(code, true);
173
- this._logger.debug("About to send event with code '" + code + "', current time: " + (0, system_date_1.getSystemDateValueOf)());
174
- var event = this.buildEvent(code);
175
- this.submitAgentEventRequest(event).then(function () {
176
- return _this._logger.debug("Event with code '" + code + "' submitted successfully");
177
- });
178
- };
179
- AgentEventsController.prototype.submitEventOnce = function (code) {
180
- if (!this.submittedEventsMap.get(code)) {
181
- this.submitEvent(code);
182
- }
183
- };
184
- // Not happens if start event failed to submit
185
- AgentEventsController.prototype.submitGenericMessage = function (message) {
186
- this.sendMessage(message, agent_events_conracts_1.AgentEventCode.GENERIC_MESSAGE);
187
- };
188
- AgentEventsController.prototype.submitWarning = function (message) {
189
- this.sendMessage(message, agent_events_conracts_1.AgentEventCode.WARN);
190
- };
191
- AgentEventsController.prototype.submitError = function (message) {
192
- this.sendMessage(message, agent_events_conracts_1.AgentEventCode.GENERIC_ERROR);
193
- };
194
- AgentEventsController.prototype.submitErrorsBatch = function (messages) {
195
- var _this = this;
196
- if (!messages || !messages.length) {
197
- return;
198
- }
199
- var events = messages.map(function (msg) { return _this.buildEvent(agent_events_conracts_1.AgentEventCode.GENERIC_ERROR, msg); });
200
- this.submitAgentEventRequest(events).then(function () { return _this.logger.debug("'" + events.length + "' events were submitted successfully"); });
201
- };
202
- AgentEventsController.prototype.sendMessage = function (message, code) {
203
- var _this = this;
204
- this.logger.debug("About to send message '" + message + "' with code '" + code + "', current time: " + (0, system_date_1.getSystemDateValueOf)());
205
- var messageEvent = this.buildEvent(code, message);
206
- this.submitAgentEventRequest(messageEvent).then(function () {
207
- return _this.logger.debug('Message submitted successfully');
208
- });
209
- };
210
- AgentEventsController.prototype.submitConfigChanged = function () {
211
- var _this = this;
212
- var messageEvent = this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_CONFIG_CHANGED, this._agentConfig.toJsonObject());
213
- this.submitAgentEventRequest(messageEvent).then(function () {
214
- return _this.logger.debug('Config changed event submitted successfully');
215
- });
216
- };
217
- Object.defineProperty(AgentEventsController.prototype, "watchdog", {
218
- get: function () {
219
- return this._pingWatchdog;
220
- },
221
- enumerable: false,
222
- configurable: true
223
- });
224
- Object.defineProperty(AgentEventsController.prototype, "agentConfig", {
225
- get: function () {
226
- return this._agentConfig;
227
- },
228
- enumerable: false,
229
- configurable: true
230
- });
231
- Object.defineProperty(AgentEventsController.prototype, "logger", {
232
- get: function () {
233
- return this._logger;
234
- },
235
- enumerable: false,
236
- configurable: true
237
- });
238
- Object.defineProperty(AgentEventsController.prototype, "tools", {
239
- get: function () {
240
- return this._tools;
241
- },
242
- enumerable: false,
243
- configurable: true
244
- });
245
- AgentEventsController.prototype.resolveTags = function () {
246
- return [];
247
- };
248
- AgentEventsController.prototype.addTool = function (tollInfo) {
249
- if (!tollInfo)
250
- return;
251
- this._tools = this._tools || [];
252
- this._tools.push(tollInfo);
253
- };
254
- AgentEventsController.prototype.createBackendProxy = function () {
255
- var httpConfig = {
256
- token: this._agentConfig.token.value,
257
- proxy: this._agentConfig.proxy.value,
258
- server: this._agentConfig.server.value,
259
- compressRequests: this._agentConfig.gzip.value
260
- };
261
- return new backend_proxy_1.BackendProxy(this._agentInstanceData, httpConfig, this._logger);
262
- };
263
- AgentEventsController.prototype.initWatchdog = function () {
264
- var watchdogOptions = { interval: AgentEventsController.PING_INTERVAL, name: 'AgentEventsWatchdog', autoReset: true, unref: true };
265
- var timers = this.getTimers();
266
- this._pingWatchdog = new watchdog_1.Watchdog(watchdogOptions, timers);
267
- this._pingWatchdog.on('alarm', this.submitPingEvent.bind(this));
268
- };
269
- AgentEventsController.prototype.getTimers = function () {
270
- if (this._agentInstanceData.technology === agent_events_conracts_1.Technology.BROWSER) {
271
- return { setTimeout: setTimeout.bind(window), clearTimeout: clearTimeout.bind(window) };
272
- }
273
- else {
274
- return { setTimeout: setTimeout, clearTimeout: clearTimeout };
275
- }
276
- };
277
- AgentEventsController.prototype.buildEvent = function (type, data) {
278
- return {
279
- type: type,
280
- utcTimestamp_ms: (0, system_date_1.getSystemDateValueOf)(),
281
- data: data
282
- };
283
- };
284
- Object.defineProperty(AgentEventsController.prototype, "agentInstanceData", {
285
- get: function () {
286
- return this._agentInstanceData;
287
- },
288
- enumerable: false,
289
- configurable: true
290
- });
291
- AgentEventsController.PING_INTERVAL = 2 * 60 * 1000; // 2 Minutes.
292
- AgentEventsController.MAX_SHUTDOWN_RETRIES = 60;
293
- return AgentEventsController;
294
- }());
295
- exports.AgentEventsController = AgentEventsController;
296
- var StartRequestStatus;
297
- (function (StartRequestStatus) {
298
- StartRequestStatus["FAILED"] = "failed";
299
- StartRequestStatus["SUCCEED"] = "succeed";
300
- StartRequestStatus["PENDING"] = "pending";
301
- })(StartRequestStatus || (StartRequestStatus = {}));
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15
+ return new (P || (P = Promise))(function (resolve, reject) {
16
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
20
+ });
21
+ };
22
+ var __generator = (this && this.__generator) || function (thisArg, body) {
23
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25
+ function verb(n) { return function (v) { return step([n, v]); }; }
26
+ function step(op) {
27
+ if (f) throw new TypeError("Generator is already executing.");
28
+ while (_) try {
29
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
30
+ if (y = 0, t) op = [op[0] & 2, t.value];
31
+ switch (op[0]) {
32
+ case 0: case 1: t = op; break;
33
+ case 4: _.label++; return { value: op[1], done: false };
34
+ case 5: _.label++; y = op[1]; op = [0]; continue;
35
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
36
+ default:
37
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41
+ if (t[2]) _.ops.pop();
42
+ _.trys.pop(); continue;
43
+ }
44
+ op = body.call(thisArg, _);
45
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47
+ }
48
+ };
49
+ Object.defineProperty(exports, "__esModule", { value: true });
50
+ exports.AgentEventsController = void 0;
51
+ var agent_events_conracts_1 = require("./agent-events-conracts");
52
+ var agent_instance_info_builder_1 = require("./agent-instance-info-builder");
53
+ var machine_info_builder_1 = require("./machine-info-builder");
54
+ var nodejs_env_info_builder_1 = require("./nodejs-env-info-builder");
55
+ var agent_start_info_builder_1 = require("./agent-start-info-builder");
56
+ var ci_info_builder_1 = require("./ci-info-builder");
57
+ var backend_proxy_1 = require("../http/backend-proxy");
58
+ var validation_utils_1 = require("../utils/validation-utils");
59
+ var watchdog_1 = require("../watchdog");
60
+ var system_date_1 = require("../system-date");
61
+ var AgentEventsController = /** @class */ (function () {
62
+ function AgentEventsController(agentConfig, agentInstanceData, logger, backendProxy, tool) {
63
+ validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(agentConfig, 'agentConfig');
64
+ validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(agentInstanceData, 'agentInstanceData');
65
+ validation_utils_1.ValidationUtils.verifyNotNullOrEmpty(logger, 'logger');
66
+ this._agentConfig = agentConfig;
67
+ this._logger = logger;
68
+ this._agentInstanceData = agentInstanceData;
69
+ this.shutDownRetries = 0;
70
+ this.backendProxy = backendProxy || this.createBackendProxy();
71
+ this.addTool(tool);
72
+ this.initWatchdog();
73
+ this.submittedEventsMap = new Map();
74
+ }
75
+ AgentEventsController.prototype.submitAgentStartedEvent = function (packageJsonFile) {
76
+ return __awaiter(this, void 0, void 0, function () {
77
+ var event, result;
78
+ return __generator(this, function (_a) {
79
+ switch (_a.label) {
80
+ case 0:
81
+ this.startRequestStatus = StartRequestStatus.PENDING;
82
+ event = this.buildAgentStartEvent(packageJsonFile || {});
83
+ return [4 /*yield*/, this.submitAgentEventRequest(event)];
84
+ case 1:
85
+ result = _a.sent();
86
+ this.startRequestStatus = result ? StartRequestStatus.SUCCEED : StartRequestStatus.FAILED;
87
+ if (this.startRequestStatus !== StartRequestStatus.SUCCEED) {
88
+ this._logger.info('Agent start event failed to submit - ping events will not be sent');
89
+ }
90
+ else {
91
+ this._pingWatchdog.start();
92
+ }
93
+ return [2 /*return*/];
94
+ }
95
+ });
96
+ });
97
+ };
98
+ AgentEventsController.prototype.submitAgentEventRequest = function (event) {
99
+ return __awaiter(this, void 0, void 0, function () {
100
+ var request, e_1;
101
+ return __generator(this, function (_a) {
102
+ switch (_a.label) {
103
+ case 0:
104
+ request = {
105
+ agentId: this._agentInstanceData.agentId,
106
+ events: Array.isArray(event) ? event : [event],
107
+ appName: this._agentConfig.appName.value,
108
+ buildSessionId: this._agentConfig.buildSessionId.value
109
+ };
110
+ _a.label = 1;
111
+ case 1:
112
+ _a.trys.push([1, 3, , 4]);
113
+ return [4 /*yield*/, this.backendProxy.submitAgentEvent(request)];
114
+ case 2:
115
+ _a.sent();
116
+ this._logger.info("Submitted '" + request.events.length + "' events successfully");
117
+ return [2 /*return*/, true];
118
+ case 3:
119
+ e_1 = _a.sent();
120
+ this._logger.warn("Failed to submit '" + request.events.length + "' events. Error " + e_1);
121
+ return [2 /*return*/, false];
122
+ case 4: return [2 /*return*/];
123
+ }
124
+ });
125
+ });
126
+ };
127
+ AgentEventsController.prototype.buildAgentStartEvent = function (packageJsonFile) {
128
+ var agentInstanceInfoBuilder = new agent_instance_info_builder_1.AgentInstanceInfoBuilder(this);
129
+ var machineInfoBuilder = new machine_info_builder_1.MachineInfoBuilder();
130
+ var dependencies = __assign(__assign({}, packageJsonFile.dependencies), packageJsonFile.devDependencies);
131
+ var nodejsEnvInfoBuilder = new nodejs_env_info_builder_1.NodejsEnvInfoBuilder(dependencies);
132
+ var ciInfoBuilder = new ci_info_builder_1.CiInfoBuilder();
133
+ var agentStartInfoBuilder = new agent_start_info_builder_1.AgentStartInfoBuilder(agentInstanceInfoBuilder, machineInfoBuilder, nodejsEnvInfoBuilder, ciInfoBuilder);
134
+ var agentStartInfo = agentStartInfoBuilder.build();
135
+ return this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_STARTED, agentStartInfo);
136
+ };
137
+ AgentEventsController.prototype.buildAgentShutdownEvent = function () {
138
+ return this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_SHUTDOWN);
139
+ };
140
+ AgentEventsController.prototype.submitAgentShutdownEvent = function () {
141
+ return __awaiter(this, void 0, void 0, function () {
142
+ var event;
143
+ var _this = this;
144
+ return __generator(this, function (_a) {
145
+ this.shutDownRetries++;
146
+ if (this.startRequestStatus == StartRequestStatus.FAILED) {
147
+ this._logger.debug('Agent start not submitted - not sending shut down events');
148
+ return [2 /*return*/];
149
+ }
150
+ if (this.shutDownRetries > AgentEventsController.MAX_SHUTDOWN_RETRIES) {
151
+ this._logger.debug('Stop trying to send shutdown event after 60 seconds ');
152
+ return [2 /*return*/];
153
+ }
154
+ this._pingWatchdog.stop();
155
+ event = this.buildAgentShutdownEvent();
156
+ if (this.startRequestStatus == StartRequestStatus.PENDING) {
157
+ setTimeout(function () { return _this.submitAgentShutdownEvent.call(_this); }, 1000);
158
+ }
159
+ else {
160
+ return [2 /*return*/, this.submitAgentEventRequest(event)];
161
+ }
162
+ return [2 /*return*/];
163
+ });
164
+ });
165
+ };
166
+ // Not happens if start event failed to submit
167
+ AgentEventsController.prototype.submitPingEvent = function () {
168
+ return this.submitEvent(agent_events_conracts_1.AgentEventCode.AGENT_PING);
169
+ };
170
+ AgentEventsController.prototype.submitEvent = function (code) {
171
+ var _this = this;
172
+ this.submittedEventsMap.set(code, true);
173
+ this._logger.debug("About to send event with code '" + code + "', current time: " + system_date_1.getSystemDateValueOf());
174
+ var event = this.buildEvent(code);
175
+ this.submitAgentEventRequest(event).then(function () {
176
+ return _this._logger.debug("Event with code '" + code + "' submitted successfully");
177
+ });
178
+ };
179
+ AgentEventsController.prototype.submitEventOnce = function (code) {
180
+ if (!this.submittedEventsMap.get(code)) {
181
+ this.submitEvent(code);
182
+ }
183
+ };
184
+ // Not happens if start event failed to submit
185
+ AgentEventsController.prototype.submitGenericMessage = function (message) {
186
+ this.sendMessage(message, agent_events_conracts_1.AgentEventCode.GENERIC_MESSAGE);
187
+ };
188
+ AgentEventsController.prototype.submitWarning = function (message) {
189
+ this.sendMessage(message, agent_events_conracts_1.AgentEventCode.WARN);
190
+ };
191
+ AgentEventsController.prototype.submitError = function (message) {
192
+ this.sendMessage(message, agent_events_conracts_1.AgentEventCode.GENERIC_ERROR);
193
+ };
194
+ AgentEventsController.prototype.submitErrorsBatch = function (messages) {
195
+ var _this = this;
196
+ if (!messages || !messages.length) {
197
+ return;
198
+ }
199
+ var events = messages.map(function (msg) { return _this.buildEvent(agent_events_conracts_1.AgentEventCode.GENERIC_ERROR, msg); });
200
+ this.submitAgentEventRequest(events).then(function () { return _this.logger.debug("'" + events.length + "' events were submitted successfully"); });
201
+ };
202
+ AgentEventsController.prototype.sendMessage = function (message, code) {
203
+ var _this = this;
204
+ this.logger.debug("About to send message '" + message + "' with code '" + code + "', current time: " + system_date_1.getSystemDateValueOf());
205
+ var messageEvent = this.buildEvent(code, message);
206
+ this.submitAgentEventRequest(messageEvent).then(function () {
207
+ return _this.logger.debug('Message submitted successfully');
208
+ });
209
+ };
210
+ AgentEventsController.prototype.submitConfigChanged = function () {
211
+ var _this = this;
212
+ var messageEvent = this.buildEvent(agent_events_conracts_1.AgentEventCode.AGENT_CONFIG_CHANGED, this._agentConfig.toJsonObject());
213
+ this.submitAgentEventRequest(messageEvent).then(function () {
214
+ return _this.logger.debug('Config changed event submitted successfully');
215
+ });
216
+ };
217
+ Object.defineProperty(AgentEventsController.prototype, "watchdog", {
218
+ get: function () {
219
+ return this._pingWatchdog;
220
+ },
221
+ enumerable: false,
222
+ configurable: true
223
+ });
224
+ Object.defineProperty(AgentEventsController.prototype, "agentConfig", {
225
+ get: function () {
226
+ return this._agentConfig;
227
+ },
228
+ enumerable: false,
229
+ configurable: true
230
+ });
231
+ Object.defineProperty(AgentEventsController.prototype, "logger", {
232
+ get: function () {
233
+ return this._logger;
234
+ },
235
+ enumerable: false,
236
+ configurable: true
237
+ });
238
+ Object.defineProperty(AgentEventsController.prototype, "tools", {
239
+ get: function () {
240
+ return this._tools;
241
+ },
242
+ enumerable: false,
243
+ configurable: true
244
+ });
245
+ AgentEventsController.prototype.resolveTags = function () {
246
+ return [];
247
+ };
248
+ AgentEventsController.prototype.addTool = function (tollInfo) {
249
+ if (!tollInfo)
250
+ return;
251
+ this._tools = this._tools || [];
252
+ this._tools.push(tollInfo);
253
+ };
254
+ AgentEventsController.prototype.createBackendProxy = function () {
255
+ var httpConfig = {
256
+ token: this._agentConfig.token.value,
257
+ proxy: this._agentConfig.proxy.value,
258
+ server: this._agentConfig.server.value,
259
+ compressRequests: this._agentConfig.gzip.value
260
+ };
261
+ return new backend_proxy_1.BackendProxy(this._agentInstanceData, httpConfig, this._logger);
262
+ };
263
+ AgentEventsController.prototype.initWatchdog = function () {
264
+ var watchdogOptions = { interval: AgentEventsController.PING_INTERVAL, name: 'AgentEventsWatchdog', autoReset: true, unref: true };
265
+ var timers = this.getTimers();
266
+ this._pingWatchdog = new watchdog_1.Watchdog(watchdogOptions, timers);
267
+ this._pingWatchdog.on('alarm', this.submitPingEvent.bind(this));
268
+ };
269
+ AgentEventsController.prototype.getTimers = function () {
270
+ if (this._agentInstanceData.technology === agent_events_conracts_1.Technology.BROWSER) {
271
+ return { setTimeout: setTimeout.bind(window), clearTimeout: clearTimeout.bind(window) };
272
+ }
273
+ else {
274
+ return { setTimeout: setTimeout, clearTimeout: clearTimeout };
275
+ }
276
+ };
277
+ AgentEventsController.prototype.buildEvent = function (type, data) {
278
+ return {
279
+ type: type,
280
+ utcTimestamp_ms: system_date_1.getSystemDateValueOf(),
281
+ data: data
282
+ };
283
+ };
284
+ Object.defineProperty(AgentEventsController.prototype, "agentInstanceData", {
285
+ get: function () {
286
+ return this._agentInstanceData;
287
+ },
288
+ enumerable: false,
289
+ configurable: true
290
+ });
291
+ AgentEventsController.PING_INTERVAL = 2 * 60 * 1000; // 2 Minutes.
292
+ AgentEventsController.MAX_SHUTDOWN_RETRIES = 60;
293
+ return AgentEventsController;
294
+ }());
295
+ exports.AgentEventsController = AgentEventsController;
296
+ var StartRequestStatus;
297
+ (function (StartRequestStatus) {
298
+ StartRequestStatus["FAILED"] = "failed";
299
+ StartRequestStatus["SUCCEED"] = "succeed";
300
+ StartRequestStatus["PENDING"] = "pending";
301
+ })(StartRequestStatus || (StartRequestStatus = {}));
302
302
  //# sourceMappingURL=agent-events-controller.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"agent-events-controller.js","sourceRoot":"","sources":["../../../common/agent-events/agent-events-controller.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"agent-events-controller.js","sourceRoot":"","sources":["../../../common/agent-events/agent-events-controller.ts"],"names":[],"mappings":"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"}