hybrid_platforms_conductor 32.16.4 → 33.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (286) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +42 -0
  3. data/README.md +6 -3
  4. data/bin/check-node +0 -1
  5. data/bin/deploy +0 -1
  6. data/bin/get_impacted_nodes +0 -1
  7. data/bin/last_deploys +12 -8
  8. data/bin/nodes_to_deploy +6 -6
  9. data/bin/setup +6 -6
  10. data/bin/topograph +1 -1
  11. data/docs/config_dsl.md +45 -1
  12. data/docs/executables.md +6 -7
  13. data/docs/executables/check-node.md +3 -3
  14. data/docs/executables/deploy.md +3 -3
  15. data/docs/executables/dump_nodes_json.md +3 -3
  16. data/docs/executables/test.md +3 -3
  17. data/docs/executables/topograph.md +3 -3
  18. data/docs/gen/mermaid/README.md-0.png +0 -0
  19. data/docs/gen/mermaid/docs/executables/check-node.md-0.png +0 -0
  20. data/docs/gen/mermaid/docs/executables/deploy.md-0.png +0 -0
  21. data/docs/gen/mermaid/docs/executables/free_ips.md-0.png +0 -0
  22. data/docs/gen/mermaid/docs/executables/get_impacted_nodes.md-0.png +0 -0
  23. data/docs/gen/mermaid/docs/executables/last_deploys.md-0.png +0 -0
  24. data/docs/gen/mermaid/docs/executables/nodes_to_deploy.md-0.png +0 -0
  25. data/docs/gen/mermaid/docs/executables/report.md-0.png +0 -0
  26. data/docs/gen/mermaid/docs/executables/run.md-0.png +0 -0
  27. data/docs/gen/mermaid/docs/executables/ssh_config.md-0.png +0 -0
  28. data/docs/gen/mermaid/docs/executables/test.md-0.png +0 -0
  29. data/docs/plugins.md +47 -0
  30. data/docs/plugins/connector/ssh.md +1 -1
  31. data/docs/plugins/log/remote_fs.md +26 -0
  32. data/docs/plugins/secrets_reader/cli.md +31 -0
  33. data/docs/plugins/secrets_reader/thycotic.md +46 -0
  34. data/docs/plugins/test/bitbucket_conf.md +1 -1
  35. data/docs/plugins/test/check_deploy_and_idempotence.md +1 -1
  36. data/docs/plugins/test/connection.md +1 -0
  37. data/docs/plugins/test/deploy_removes_root_access.md +1 -1
  38. data/docs/plugins/test/file_system.md +1 -0
  39. data/docs/plugins/test/github_ci.md +48 -0
  40. data/docs/plugins/test/hostname.md +1 -0
  41. data/docs/plugins/test/ip.md +1 -0
  42. data/docs/plugins/test/jenkins_ci_conf.md +1 -1
  43. data/docs/plugins/test/jenkins_ci_masters_ok.md +1 -1
  44. data/docs/plugins/test/local_users.md +1 -0
  45. data/docs/plugins/test/mounts.md +1 -0
  46. data/docs/plugins/test/orphan_files.md +1 -0
  47. data/docs/plugins/test/ports.md +1 -0
  48. data/docs/plugins/test/spectre.md +1 -0
  49. data/docs/plugins/test/vulnerabilities.md +1 -0
  50. data/lib/hybrid_platforms_conductor/action.rb +4 -4
  51. data/lib/hybrid_platforms_conductor/actions_executor.rb +45 -43
  52. data/lib/hybrid_platforms_conductor/bitbucket.rb +5 -4
  53. data/lib/hybrid_platforms_conductor/cmd_runner.rb +13 -12
  54. data/lib/hybrid_platforms_conductor/cmdb.rb +2 -2
  55. data/lib/hybrid_platforms_conductor/common_config_dsl/bitbucket.rb +2 -1
  56. data/lib/hybrid_platforms_conductor/common_config_dsl/confluence.rb +2 -1
  57. data/lib/hybrid_platforms_conductor/common_config_dsl/file_system_tests.rb +5 -4
  58. data/lib/hybrid_platforms_conductor/common_config_dsl/github.rb +63 -0
  59. data/lib/hybrid_platforms_conductor/common_config_dsl/idempotence_tests.rb +2 -2
  60. data/lib/hybrid_platforms_conductor/config.rb +7 -4
  61. data/lib/hybrid_platforms_conductor/confluence.rb +1 -1
  62. data/lib/hybrid_platforms_conductor/connector.rb +5 -2
  63. data/lib/hybrid_platforms_conductor/core_extensions/symbol/zero.rb +24 -0
  64. data/lib/hybrid_platforms_conductor/credentials.rb +39 -36
  65. data/lib/hybrid_platforms_conductor/current_dir_monitor.rb +4 -1
  66. data/lib/hybrid_platforms_conductor/deployer.rb +275 -224
  67. data/lib/hybrid_platforms_conductor/executable.rb +20 -15
  68. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/config.rb +10 -7
  69. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/host_ip.rb +1 -1
  70. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/host_keys.rb +2 -2
  71. data/lib/hybrid_platforms_conductor/hpc_plugins/cmdb/platform_handlers.rb +4 -4
  72. data/lib/hybrid_platforms_conductor/hpc_plugins/connector/local.rb +2 -0
  73. data/lib/hybrid_platforms_conductor/hpc_plugins/connector/ssh.rb +45 -49
  74. data/lib/hybrid_platforms_conductor/hpc_plugins/log/my_log_plugin.rb.sample +100 -0
  75. data/lib/hybrid_platforms_conductor/hpc_plugins/log/remote_fs.rb +180 -0
  76. data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef.rb +68 -66
  77. data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/dsl_parser.rb +13 -0
  78. data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/serverless_chef/recipes_tree_builder.rb +39 -38
  79. data/lib/hybrid_platforms_conductor/hpc_plugins/platform_handler/yaml_inventory.rb +5 -4
  80. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/docker.rb +43 -45
  81. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/podman.rb +18 -20
  82. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox.rb +118 -117
  83. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox/proxmox_waiter.rb +39 -43
  84. data/lib/hybrid_platforms_conductor/hpc_plugins/provisioner/proxmox/reserve_proxmox_container +9 -13
  85. data/lib/hybrid_platforms_conductor/hpc_plugins/report/confluence.rb +2 -2
  86. data/lib/hybrid_platforms_conductor/hpc_plugins/report/mediawiki.rb +28 -21
  87. data/lib/hybrid_platforms_conductor/hpc_plugins/report/stdout.rb +26 -22
  88. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/cli.rb +77 -0
  89. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/my_secrets_reader_plugin.rb.sample +46 -0
  90. data/lib/hybrid_platforms_conductor/hpc_plugins/secrets_reader/thycotic.rb +90 -0
  91. data/lib/hybrid_platforms_conductor/hpc_plugins/test/bitbucket_conf.rb +3 -3
  92. data/lib/hybrid_platforms_conductor/hpc_plugins/test/check_deploy_and_idempotence.rb +4 -2
  93. data/lib/hybrid_platforms_conductor/hpc_plugins/test/connection.rb +3 -1
  94. data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb +7 -21
  95. data/lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_removes_root_access.rb +21 -19
  96. data/lib/hybrid_platforms_conductor/hpc_plugins/test/divergence.rb +2 -2
  97. data/lib/hybrid_platforms_conductor/hpc_plugins/test/executables.rb +2 -2
  98. data/lib/hybrid_platforms_conductor/hpc_plugins/test/file_system.rb +21 -22
  99. data/lib/hybrid_platforms_conductor/hpc_plugins/test/file_system_hdfs.rb +19 -21
  100. data/lib/hybrid_platforms_conductor/hpc_plugins/test/github_ci.rb +31 -0
  101. data/lib/hybrid_platforms_conductor/hpc_plugins/test/hostname.rb +3 -1
  102. data/lib/hybrid_platforms_conductor/hpc_plugins/test/idempotence.rb +2 -2
  103. data/lib/hybrid_platforms_conductor/hpc_plugins/test/ip.rb +4 -2
  104. data/lib/hybrid_platforms_conductor/hpc_plugins/test/jenkins_ci_conf.rb +21 -22
  105. data/lib/hybrid_platforms_conductor/hpc_plugins/test/jenkins_ci_masters_ok.rb +10 -12
  106. data/lib/hybrid_platforms_conductor/hpc_plugins/test/linear_strategy.rb +9 -9
  107. data/lib/hybrid_platforms_conductor/hpc_plugins/test/local_users.rb +5 -3
  108. data/lib/hybrid_platforms_conductor/hpc_plugins/test/mounts.rb +5 -3
  109. data/lib/hybrid_platforms_conductor/hpc_plugins/test/orphan_files.rb +13 -10
  110. data/lib/hybrid_platforms_conductor/hpc_plugins/test/ports.rb +5 -3
  111. data/lib/hybrid_platforms_conductor/hpc_plugins/test/private_ips.rb +5 -5
  112. data/lib/hybrid_platforms_conductor/hpc_plugins/test/public_ips.rb +5 -5
  113. data/lib/hybrid_platforms_conductor/hpc_plugins/test/spectre.rb +7 -7
  114. data/lib/hybrid_platforms_conductor/hpc_plugins/test/veids.rb +3 -3
  115. data/lib/hybrid_platforms_conductor/hpc_plugins/test/vulnerabilities.rb +27 -25
  116. data/lib/hybrid_platforms_conductor/hpc_plugins/test_report/confluence.rb +2 -2
  117. data/lib/hybrid_platforms_conductor/hpc_plugins/test_report/stdout.rb +8 -6
  118. data/lib/hybrid_platforms_conductor/io_router.rb +14 -13
  119. data/lib/hybrid_platforms_conductor/json_dumper.rb +2 -2
  120. data/lib/hybrid_platforms_conductor/log.rb +31 -0
  121. data/lib/hybrid_platforms_conductor/logger_helpers.rb +19 -16
  122. data/lib/hybrid_platforms_conductor/nodes_handler.rb +89 -71
  123. data/lib/hybrid_platforms_conductor/parallel_threads.rb +7 -11
  124. data/lib/hybrid_platforms_conductor/platform_handler.rb +7 -7
  125. data/lib/hybrid_platforms_conductor/platforms_handler.rb +5 -3
  126. data/lib/hybrid_platforms_conductor/plugin.rb +2 -2
  127. data/lib/hybrid_platforms_conductor/plugins.rb +14 -8
  128. data/lib/hybrid_platforms_conductor/provisioner.rb +4 -4
  129. data/lib/hybrid_platforms_conductor/report.rb +2 -2
  130. data/lib/hybrid_platforms_conductor/reports_handler.rb +3 -2
  131. data/lib/hybrid_platforms_conductor/secrets_reader.rb +31 -0
  132. data/lib/hybrid_platforms_conductor/services_handler.rb +32 -29
  133. data/lib/hybrid_platforms_conductor/test_only_remote_node.rb +18 -0
  134. data/lib/hybrid_platforms_conductor/test_report.rb +15 -18
  135. data/lib/hybrid_platforms_conductor/tests_runner.rb +116 -118
  136. data/lib/hybrid_platforms_conductor/thycotic.rb +28 -19
  137. data/lib/hybrid_platforms_conductor/topographer.rb +200 -190
  138. data/lib/hybrid_platforms_conductor/topographer/plugins/graphviz.rb +8 -8
  139. data/lib/hybrid_platforms_conductor/topographer/plugins/json.rb +4 -4
  140. data/lib/hybrid_platforms_conductor/version.rb +1 -1
  141. data/spec/hybrid_platforms_conductor_test.rb +33 -12
  142. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/bash_spec.rb +16 -11
  143. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/interactive_spec.rb +1 -1
  144. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/remote_bash_spec.rb +23 -18
  145. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/ruby_spec.rb +67 -49
  146. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions/scp_spec.rb +20 -14
  147. data/spec/hybrid_platforms_conductor_test/api/actions_executor/actions_spec.rb +63 -50
  148. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connection_spec.rb +35 -35
  149. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/connectable_nodes_spec.rb +12 -8
  150. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/local/remote_actions_spec.rb +4 -7
  151. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/cli_options_spec.rb +21 -22
  152. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/config_dsl_spec.rb +23 -24
  153. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/connectable_nodes_spec.rb +10 -6
  154. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/connections_spec.rb +73 -54
  155. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/global_helpers_spec.rb +145 -126
  156. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/node_helpers_spec.rb +3 -3
  157. data/spec/hybrid_platforms_conductor_test/api/actions_executor/connectors/ssh/remote_actions_spec.rb +29 -25
  158. data/spec/hybrid_platforms_conductor_test/api/actions_executor/logging_spec.rb +106 -91
  159. data/spec/hybrid_platforms_conductor_test/api/actions_executor/parallel_spec.rb +272 -244
  160. data/spec/hybrid_platforms_conductor_test/api/actions_executor/timeout_spec.rb +10 -12
  161. data/spec/hybrid_platforms_conductor_test/api/cmd_runner_spec.rb +36 -36
  162. data/spec/hybrid_platforms_conductor_test/api/config_spec.rb +24 -22
  163. data/spec/hybrid_platforms_conductor_test/api/deployer/check_spec.rb +4 -2
  164. data/spec/hybrid_platforms_conductor_test/api/deployer/config_dsl_spec.rb +43 -5
  165. data/spec/hybrid_platforms_conductor_test/api/deployer/deploy_spec.rb +199 -216
  166. data/spec/hybrid_platforms_conductor_test/api/deployer/log_plugins/remote_fs_spec.rb +223 -0
  167. data/spec/hybrid_platforms_conductor_test/api/deployer/parse_deploy_output_spec.rb +55 -59
  168. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioner_spec.rb +36 -62
  169. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/podman_spec.rb +17 -17
  170. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/config_dsl_spec.rb +4 -4
  171. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/create_spec.rb +44 -51
  172. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/destroy_spec.rb +3 -3
  173. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/ip_spec.rb +12 -16
  174. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/destroy_vm_spec.rb +31 -19
  175. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/expired_containers_spec.rb +324 -266
  176. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/ips_assignment_spec.rb +89 -61
  177. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/other_lxc_containers_resources_spec.rb +117 -93
  178. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/pve_node_resources_spec.rb +71 -54
  179. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/retries_spec.rb +10 -8
  180. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/reserve_proxmox_container/vm_ids_assignment_spec.rb +80 -60
  181. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/start_spec.rb +1 -1
  182. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/state_spec.rb +1 -1
  183. data/spec/hybrid_platforms_conductor_test/api/deployer/provisioners/proxmox/stop_spec.rb +1 -1
  184. data/spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/cli_spec.rb +64 -0
  185. data/spec/hybrid_platforms_conductor_test/api/deployer/secrets_reader_plugins/thycotic_spec.rb +268 -0
  186. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/config_spec.rb +8 -10
  187. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_ip_spec.rb +33 -24
  188. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/host_keys_spec.rb +64 -51
  189. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs/platform_handlers_spec.rb +3 -3
  190. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/cmdbs_plugins_api_spec.rb +50 -51
  191. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/common_spec.rb +91 -81
  192. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/config_dsl_spec.rb +14 -16
  193. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/git_diff_impacts_spec.rb +51 -75
  194. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/nodes_selectors_spec.rb +35 -26
  195. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/platform_handlers_plugins_api_spec.rb +24 -16
  196. data/spec/hybrid_platforms_conductor_test/api/nodes_handler/several_platforms_spec.rb +29 -19
  197. data/spec/hybrid_platforms_conductor_test/api/platform_handler_spec.rb +4 -4
  198. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/config_dsl_spec.rb +2 -2
  199. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/deploy_output_parsing_spec.rb +6 -6
  200. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/diff_impacts_spec.rb +57 -99
  201. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/inventory_spec.rb +4 -4
  202. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/packaging_spec.rb +32 -35
  203. data/spec/hybrid_platforms_conductor_test/api/platform_handlers/serverless_chef/services_deployment_spec.rb +10 -10
  204. data/spec/hybrid_platforms_conductor_test/api/platforms_handler_spec.rb +38 -27
  205. data/spec/hybrid_platforms_conductor_test/api/plugins_spec.rb +46 -52
  206. data/spec/hybrid_platforms_conductor_test/api/reports_handler_spec.rb +2 -2
  207. data/spec/hybrid_platforms_conductor_test/api/services_handler/actions_to_deploy_spec.rb +90 -58
  208. data/spec/hybrid_platforms_conductor_test/api/services_handler/deploy_allowed_spec.rb +38 -34
  209. data/spec/hybrid_platforms_conductor_test/api/services_handler/log_info_spec.rb +11 -9
  210. data/spec/hybrid_platforms_conductor_test/api/services_handler/package_spec.rb +193 -171
  211. data/spec/hybrid_platforms_conductor_test/api/services_handler/parse_deploy_output_spec.rb +66 -54
  212. data/spec/hybrid_platforms_conductor_test/api/services_handler/prepare_for_deploy_spec.rb +147 -133
  213. data/spec/hybrid_platforms_conductor_test/api/tests_runner/common_spec.rb +69 -49
  214. data/spec/hybrid_platforms_conductor_test/api/tests_runner/global_spec.rb +5 -4
  215. data/spec/hybrid_platforms_conductor_test/api/tests_runner/node_check_spec.rb +8 -5
  216. data/spec/hybrid_platforms_conductor_test/api/tests_runner/node_spec.rb +8 -5
  217. data/spec/hybrid_platforms_conductor_test/api/tests_runner/node_ssh_spec.rb +30 -27
  218. data/spec/hybrid_platforms_conductor_test/api/tests_runner/platform_spec.rb +12 -9
  219. data/spec/hybrid_platforms_conductor_test/api/tests_runner/reports_spec.rb +48 -47
  220. data/spec/hybrid_platforms_conductor_test/api/tests_runner/test_plugins/bitbucket_conf_spec.rb +5 -5
  221. data/spec/hybrid_platforms_conductor_test/api/tests_runner/test_plugins/github_ci_spec.rb +72 -0
  222. data/spec/hybrid_platforms_conductor_test/api/tests_runner/test_reports_plugins/confluence_spec.rb +5 -5
  223. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb.rb +9 -9
  224. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/{test_cmdb2.rb → test_cmdb_2.rb} +6 -6
  225. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/test_cmdb_others.rb +3 -3
  226. data/spec/hybrid_platforms_conductor_test/cmdb_plugins/{test_cmdb_others2.rb → test_cmdb_others_2.rb} +2 -2
  227. data/spec/hybrid_platforms_conductor_test/docs_spec.rb +1 -1
  228. data/spec/hybrid_platforms_conductor_test/executables/{check-node_spec.rb → check_node_spec.rb} +4 -6
  229. data/spec/hybrid_platforms_conductor_test/executables/deploy_spec.rb +4 -6
  230. data/spec/hybrid_platforms_conductor_test/executables/get_impacted_nodes_spec.rb +76 -77
  231. data/spec/hybrid_platforms_conductor_test/executables/last_deploys_spec.rb +159 -113
  232. data/spec/hybrid_platforms_conductor_test/executables/nodes_to_deploy_spec.rb +299 -160
  233. data/spec/hybrid_platforms_conductor_test/executables/options/actions_executor_spec.rb +4 -6
  234. data/spec/hybrid_platforms_conductor_test/executables/options/cmd_runner_spec.rb +3 -5
  235. data/spec/hybrid_platforms_conductor_test/executables/options/common_spec.rb +8 -8
  236. data/spec/hybrid_platforms_conductor_test/executables/options/deployer_spec.rb +12 -196
  237. data/spec/hybrid_platforms_conductor_test/executables/options/nodes_handler_spec.rb +9 -10
  238. data/spec/hybrid_platforms_conductor_test/executables/options/nodes_selectors_spec.rb +9 -10
  239. data/spec/hybrid_platforms_conductor_test/executables/options/reports_handler_spec.rb +1 -1
  240. data/spec/hybrid_platforms_conductor_test/executables/options/tests_runner_spec.rb +22 -22
  241. data/spec/hybrid_platforms_conductor_test/executables/report_spec.rb +22 -16
  242. data/spec/hybrid_platforms_conductor_test/executables/run_spec.rb +32 -32
  243. data/spec/hybrid_platforms_conductor_test/executables/ssh_config_spec.rb +7 -9
  244. data/spec/hybrid_platforms_conductor_test/executables/test_spec.rb +3 -5
  245. data/spec/hybrid_platforms_conductor_test/helpers/actions_executor_helpers.rb +2 -2
  246. data/spec/hybrid_platforms_conductor_test/helpers/cmd_runner_helpers.rb +4 -3
  247. data/spec/hybrid_platforms_conductor_test/helpers/cmdb_helpers.rb +2 -2
  248. data/spec/hybrid_platforms_conductor_test/helpers/config_helpers.rb +1 -1
  249. data/spec/hybrid_platforms_conductor_test/helpers/connector_ssh_helpers.rb +12 -13
  250. data/spec/hybrid_platforms_conductor_test/helpers/deployer_helpers.rb +245 -56
  251. data/spec/hybrid_platforms_conductor_test/helpers/executables_helpers.rb +11 -11
  252. data/spec/hybrid_platforms_conductor_test/helpers/nodes_handler_helpers.rb +1 -1
  253. data/spec/hybrid_platforms_conductor_test/helpers/platforms_handler_helpers.rb +39 -28
  254. data/spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb +1 -1
  255. data/spec/hybrid_platforms_conductor_test/helpers/provisioner_proxmox_helpers.rb +86 -111
  256. data/spec/hybrid_platforms_conductor_test/helpers/reports_handler_helpers.rb +1 -1
  257. data/spec/hybrid_platforms_conductor_test/helpers/serverless_chef_helpers.rb +3 -3
  258. data/spec/hybrid_platforms_conductor_test/helpers/services_handler_helpers.rb +1 -1
  259. data/spec/hybrid_platforms_conductor_test/helpers/tests_runner_helpers.rb +1 -1
  260. data/spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem/hpc_plugins/test_plugin_type/{test_plugin_id1.rb → test_plugin_id_1.rb} +0 -0
  261. data/spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem/hpc_plugins/test_plugin_type/{test_plugin_id2.rb → test_plugin_id_2.rb} +0 -0
  262. data/spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem2/sub_dir/hpc_plugins/test_plugin_type/{test_plugin_id3.rb → test_plugin_id_3.rb} +0 -0
  263. data/spec/hybrid_platforms_conductor_test/mocked_lib/my_test_gem2/sub_dir/hpc_plugins/{test_plugin_type2/test_plugin_id4.rb → test_plugin_type_2/test_plugin_id_4.rb} +0 -0
  264. data/spec/hybrid_platforms_conductor_test/platform_handler_plugins/test.rb +1 -1
  265. data/spec/hybrid_platforms_conductor_test/platform_handler_plugins/{test2.rb → test_2.rb} +0 -0
  266. data/spec/hybrid_platforms_conductor_test/rubocop_spec.rb +31 -0
  267. data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/1_node/nodes/node.json +3 -3
  268. data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/data_bags/nodes/node.json +3 -3
  269. data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/recipes/cookbooks/test_cookbook_2/libraries/default.rb +1 -0
  270. data/spec/hybrid_platforms_conductor_test/serverless_chef_repositories/several_cookbooks/other_cookbooks/test_cookbook_2/libraries/default.rb +1 -0
  271. data/spec/hybrid_platforms_conductor_test/shared_examples/deployer.rb +952 -0
  272. data/spec/hybrid_platforms_conductor_test/test_connector.rb +3 -3
  273. data/spec/hybrid_platforms_conductor_test/test_log_no_read_plugin.rb +84 -0
  274. data/spec/hybrid_platforms_conductor_test/test_log_plugin.rb +105 -0
  275. data/spec/hybrid_platforms_conductor_test/test_plugins/global.rb +1 -0
  276. data/spec/hybrid_platforms_conductor_test/test_plugins/node.rb +1 -0
  277. data/spec/hybrid_platforms_conductor_test/test_plugins/node_check.rb +1 -0
  278. data/spec/hybrid_platforms_conductor_test/test_plugins/platform.rb +1 -0
  279. data/spec/hybrid_platforms_conductor_test/test_plugins/several_checks.rb +2 -2
  280. data/spec/hybrid_platforms_conductor_test/test_secrets_reader_plugin.rb +45 -0
  281. data/spec/hybrid_platforms_conductor_test/tests_report_plugin.rb +5 -6
  282. data/spec/spec_helper.rb +17 -18
  283. data/tools/check_md +16 -20
  284. data/tools/generate_mermaid +1 -1
  285. metadata +82 -13
  286. data/spec/hybrid_platforms_conductor_test/helpers/deployer_test_helpers.rb +0 -916
@@ -38,7 +38,7 @@ module HybridPlatformsConductor
38
38
  # * *bitbucket_password* (String): Bitbucket password to be used when querying the API
39
39
  # * *logger* (Logger): Logger to be used [default = Logger.new(STDOUT)]
40
40
  # * *logger_stderr* (Logger): Logger to be used for stderr [default = Logger.new(STDERR)]
41
- def initialize(bitbucket_url, bitbucket_user_name, bitbucket_password, logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR))
41
+ def initialize(bitbucket_url, bitbucket_user_name, bitbucket_password, logger: Logger.new($stdout), logger_stderr: Logger.new($stderr))
42
42
  init_loggers(logger, logger_stderr)
43
43
  @bitbucket_url = bitbucket_url
44
44
  @bitbucket_user_name = bitbucket_user_name
@@ -106,10 +106,11 @@ module HybridPlatformsConductor
106
106
  http_response = nil
107
107
  loop do
108
108
  begin
109
- http_response = URI.open(api_url, http_basic_authentication: [@bitbucket_user_name, @bitbucket_password])
109
+ http_response = URI.parse(api_url).open(http_basic_authentication: [@bitbucket_user_name, @bitbucket_password])
110
110
  rescue
111
- raise if retries == 0
112
- log_warn "Got error #{$!} on #{@bitbucket_user_name}@#{api_url}. Will retry #{retries} times..."
111
+ raise if retries.zero?
112
+
113
+ log_warn "Got error #{$ERROR_INFO} on #{@bitbucket_user_name}@#{api_url}. Will retry #{retries} times..."
113
114
  retries -= 1
114
115
  sleep 1
115
116
  end
@@ -3,9 +3,13 @@ require 'tempfile'
3
3
  require 'tty-command'
4
4
  require 'hybrid_platforms_conductor/logger_helpers'
5
5
  require 'hybrid_platforms_conductor/io_router'
6
+ require 'hybrid_platforms_conductor/core_extensions/symbol/zero'
7
+
8
+ Symbol.include HybridPlatformsConductor::CoreExtensions::Symbol::Zero
6
9
 
7
10
  module HybridPlatformsConductor
8
11
 
12
+ # API to execute local commands, with IO control over files, stdout, timeouts, exceptions.
9
13
  class CmdRunner
10
14
 
11
15
  class UnexpectedExitCodeError < StandardError
@@ -21,7 +25,7 @@ module HybridPlatformsConductor
21
25
  # Result::
22
26
  # * String: The executable prefix
23
27
  def self.executables_prefix
24
- $0.include?('/') ? "#{File.dirname($0)}/" : ''
28
+ $PROGRAM_NAME.include?('/') ? "#{File.dirname($PROGRAM_NAME)}/" : ''
25
29
  end
26
30
 
27
31
  # Dry-run switch. When true, then commands are just printed out without being executed.
@@ -33,7 +37,7 @@ module HybridPlatformsConductor
33
37
  # Parameters::
34
38
  # * *logger* (Logger): Logger to be used [default = Logger.new(STDOUT)]
35
39
  # * *logger_stderr* (Logger): Logger to be used for stderr [default = Logger.new(STDERR)]
36
- def initialize(logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR))
40
+ def initialize(logger: Logger.new($stdout), logger_stderr: Logger.new($stderr))
37
41
  init_loggers(logger, logger_stderr)
38
42
  @dry_run = false
39
43
  end
@@ -42,8 +46,7 @@ module HybridPlatformsConductor
42
46
  #
43
47
  # Parameters::
44
48
  # * *options_parser* (OptionParser): The option parser to complete
45
- # * *parallel* (Boolean): Do we activate options regarding parallel execution? [default = true]
46
- def options_parse(options_parser, parallel: true)
49
+ def options_parse(options_parser)
47
50
  options_parser.separator ''
48
51
  options_parser.separator 'Command runner options:'
49
52
  options_parser.on('-s', '--show-commands', 'Display the commands that would be run instead of running them') do
@@ -86,7 +89,7 @@ module HybridPlatformsConductor
86
89
  expected_code = [expected_code] unless expected_code.is_a?(Array)
87
90
  if @dry_run
88
91
  out cmd
89
- return expected_code.first, '', ''
92
+ [expected_code.first, '', '']
90
93
  else
91
94
  log_debug "#{timeout.nil? ? '' : "[ Timeout #{timeout} ] - "}#{cmd.light_cyan.bold}"
92
95
  exit_status = nil
@@ -100,15 +103,13 @@ module HybridPlatformsConductor
100
103
  FileUtils.mkdir_p(File.dirname(log_to_file))
101
104
  File.open(log_to_file, 'w')
102
105
  end
103
- else
104
- nil
105
106
  end
106
107
  start_time = Time.now if log_debug?
107
108
  bash_file = nil
108
109
  if force_bash
109
110
  bash_file = Tempfile.new('hpc_bash')
110
111
  bash_file.write(cmd)
111
- bash_file.chmod 0700
112
+ bash_file.chmod 0o700
112
113
  bash_file.close
113
114
  cmd = "/bin/bash -c #{bash_file.path}"
114
115
  end
@@ -149,10 +150,10 @@ module HybridPlatformsConductor
149
150
  rescue
150
151
  exit_status = :command_error
151
152
  cmd_stdout = cmd_result_stdout
152
- cmd_stderr = "#{cmd_result_stderr.empty? ? '' : "#{cmd_result_stderr}\n"}#{$!}\n#{$!.backtrace.join("\n")}"
153
+ cmd_stderr = "#{cmd_result_stderr.empty? ? '' : "#{cmd_result_stderr}\n"}#{$ERROR_INFO}\n#{$ERROR_INFO.backtrace.join("\n")}"
153
154
  ensure
154
- file_output.close unless file_output.nil?
155
- bash_file.unlink unless bash_file.nil?
155
+ file_output&.close
156
+ bash_file&.unlink
156
157
  end
157
158
  if log_debug?
158
159
  elapsed = Time.now - start_time
@@ -169,7 +170,7 @@ module HybridPlatformsConductor
169
170
  raise exit_status == :timeout ? TimeoutError : UnexpectedExitCodeError, error_title
170
171
  end
171
172
  end
172
- return exit_status, cmd_stdout, cmd_stderr
173
+ [exit_status, cmd_stdout, cmd_stderr]
173
174
  end
174
175
  end
175
176
 
@@ -16,8 +16,8 @@ module HybridPlatformsConductor
16
16
  # * *platforms_handler* (PlatformsHandler): Platforms Handler to be used. [default: PlatformsHandler.new]
17
17
  # * *nodes_handler* (NodesHandler): Nodes Handler to be used. [default: NodesHandler.new]
18
18
  def initialize(
19
- logger: Logger.new(STDOUT),
20
- logger_stderr: Logger.new(STDERR),
19
+ logger: Logger.new($stdout),
20
+ logger_stderr: Logger.new($stderr),
21
21
  config: Config.new,
22
22
  cmd_runner: CmdRunner.new,
23
23
  platforms_handler: PlatformsHandler.new,
@@ -4,9 +4,10 @@ module HybridPlatformsConductor
4
4
 
5
5
  module CommonConfigDsl
6
6
 
7
+ # Add common Bitbucket config DSL to declare known Bitbucket repositories
7
8
  module Bitbucket
8
9
 
9
- # Initialize the DSL
10
+ # Initialize the DSL
10
11
  def init_bitbucket
11
12
  # List of Bitbucket repositories definitions
12
13
  # Array< Hash<Symbol, Object> >
@@ -2,9 +2,10 @@ module HybridPlatformsConductor
2
2
 
3
3
  module CommonConfigDsl
4
4
 
5
+ # Add common Confluence config DSL to declare known Confluence installations
5
6
  module Confluence
6
7
 
7
- # Initialize the DSL
8
+ # Initialize the DSL
8
9
  def init_confluence
9
10
  # Confluence configuration (can be nil if none)
10
11
  # Hash<Symbol, Object> or nil. See #confluence_info to know details.
@@ -19,7 +19,7 @@ module HybridPlatformsConductor
19
19
  # Array< Hash<Symbol, Object> >
20
20
  attr_reader :fs_paths_rules
21
21
 
22
- # Initialize the DSL
22
+ # Initialize the DSL
23
23
  def init_file_system_tests
24
24
  @fs_paths_rules = []
25
25
  @context = {
@@ -49,7 +49,7 @@ module HybridPlatformsConductor
49
49
  paths: paths.flatten,
50
50
  nodes_selectors_stack: current_nodes_selectors_stack,
51
51
  context: @context.clone,
52
- state: :present
52
+ state: :present
53
53
  }
54
54
  end
55
55
 
@@ -84,7 +84,7 @@ module HybridPlatformsConductor
84
84
  select_confs_for_node(node, fs_paths_rules).
85
85
  inject({}) do |merged_paths, paths_info|
86
86
  if paths_info[:context][:file_system_type] == file_system_type
87
- merged_paths.merge(Hash[paths_info[:paths].map do |path|
87
+ merged_paths.merge(paths_info[:paths].map do |path|
88
88
  [
89
89
  path,
90
90
  {
@@ -92,9 +92,10 @@ module HybridPlatformsConductor
92
92
  context: paths_info[:context]
93
93
  }
94
94
  ]
95
- end]) do |path, rule_info_1, rule_info_2|
95
+ end.to_h) do |path, rule_info_1, rule_info_2|
96
96
  # Just check that configuration is not inconsistent
97
97
  raise "Inconsistent rule for #{file_system_type} file system checks in configuration for #{node}: #{path} is marked as being both #{rule_info_1[:state]} and #{rule_info_2[:state]}" if rule_info_1[:state] != rule_info_2[:state]
98
+
98
99
  rule_info_2
99
100
  end
100
101
  else
@@ -0,0 +1,63 @@
1
+ require 'octokit'
2
+ require 'hybrid_platforms_conductor/credentials'
3
+
4
+ module HybridPlatformsConductor
5
+
6
+ module CommonConfigDsl
7
+
8
+ # Add common Github config DSL to declare known Github repositories
9
+ module Github
10
+
11
+ # Initialize the DSL
12
+ def init_github
13
+ # List of Github repositories definitions
14
+ # Array< Hash<Symbol, Object> >
15
+ # Each definition is just mapping the signature of #github_repos
16
+ @github_repos = []
17
+ end
18
+
19
+ # Register new Github repositories
20
+ #
21
+ # Parameters::
22
+ # * *user* (String): User or organization name, storing repositories
23
+ # * *url* (String): URL to the Github API [default: 'https://api.github.com']
24
+ # * *repos* (Array<String> or Symbol): List of repository names from this project, or :all for all [default: :all]
25
+ def github_repos(user:, url: 'https://api.github.com', repos: :all)
26
+ @github_repos << {
27
+ url: url,
28
+ user: user,
29
+ repos: repos
30
+ }
31
+ end
32
+
33
+ # Iterate over each Github repository
34
+ #
35
+ # Parameters::
36
+ # * Proc: Code called for each Github repository:
37
+ # * Parameters::
38
+ # * *github* (Octokit::Client): The client instance accessing the Github API
39
+ # * *repo_info* (Hash<Symbol, Object>): The repository info:
40
+ # * *name* (String): Repository name.
41
+ # * *slug* (String): Repository slug.
42
+ def for_each_github_repo
43
+ @github_repos.each do |repo_info|
44
+ Octokit.configure do |c|
45
+ c.api_endpoint = repo_info[:url]
46
+ end
47
+ Credentials.with_credentials_for(:github, @logger, @logger_stderr, url: repo_info[:url]) do |_github_user, github_token|
48
+ client = Octokit::Client.new(access_token: github_token)
49
+ (repo_info[:repos] == :all ? client.repositories(repo_info[:user]).map { |repo| repo[:name] } : repo_info[:repos]).each do |name|
50
+ yield client, {
51
+ name: name,
52
+ slug: "#{repo_info[:user]}/#{name}"
53
+ }
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ end
60
+
61
+ end
62
+
63
+ end
@@ -38,7 +38,7 @@ module HybridPlatformsConductor
38
38
  def ignore_idempotence_tasks(tasks_to_ignore)
39
39
  @ignored_idempotence_tasks << {
40
40
  ignored_tasks: tasks_to_ignore,
41
- nodes_selectors_stack: current_nodes_selectors_stack,
41
+ nodes_selectors_stack: current_nodes_selectors_stack
42
42
  }
43
43
  end
44
44
 
@@ -49,7 +49,7 @@ module HybridPlatformsConductor
49
49
  def ignore_divergent_tasks(tasks_to_ignore)
50
50
  @ignored_divergent_tasks << {
51
51
  ignored_tasks: tasks_to_ignore,
52
- nodes_selectors_stack: current_nodes_selectors_stack,
52
+ nodes_selectors_stack: current_nodes_selectors_stack
53
53
  }
54
54
  end
55
55
 
@@ -8,7 +8,8 @@ module HybridPlatformsConductor
8
8
  # Object used to access the whole configuration
9
9
  class Config
10
10
 
11
- include LoggerHelpers, Cleanroom
11
+ include Cleanroom
12
+ include LoggerHelpers
12
13
 
13
14
  class << self
14
15
 
@@ -35,6 +36,7 @@ module HybridPlatformsConductor
35
36
  # Directory of the definition of the platforms
36
37
  # String
37
38
  attr_reader :hybrid_platforms_dir
39
+
38
40
  expose :hybrid_platforms_dir
39
41
 
40
42
  # List of expected failures info. Each info has the following properties:
@@ -60,7 +62,7 @@ module HybridPlatformsConductor
60
62
  # Parameters::
61
63
  # * *logger* (Logger): Logger to be used [default = Logger.new(STDOUT)]
62
64
  # * *logger_stderr* (Logger): Logger to be used for stderr [default = Logger.new(STDERR)]
63
- def initialize(logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR))
65
+ def initialize(logger: Logger.new($stdout), logger_stderr: Logger.new($stderr))
64
66
  init_loggers(logger, logger_stderr)
65
67
  @hybrid_platforms_dir = File.expand_path(ENV['hpc_platforms'].nil? ? '.' : ENV['hpc_platforms'])
66
68
  # Stack of the nodes selectors scopes
@@ -94,7 +96,7 @@ module HybridPlatformsConductor
94
96
  end
95
97
  # Call initializers if needed
96
98
  Config.mixin_initializers.each do |mixin_init_method|
97
- self.send(mixin_init_method)
99
+ send(mixin_init_method)
98
100
  end
99
101
  include_config_from "#{@hybrid_platforms_dir}/hpc_config.rb"
100
102
  end
@@ -105,7 +107,7 @@ module HybridPlatformsConductor
105
107
  # * *dsl_file* (String): Path to the DSL file
106
108
  def include_config_from(dsl_file)
107
109
  log_debug "Include config from #{dsl_file}"
108
- self.evaluate_file(dsl_file)
110
+ evaluate_file(dsl_file)
109
111
  end
110
112
  expose :include_config_from
111
113
 
@@ -116,6 +118,7 @@ module HybridPlatformsConductor
116
118
  # * *dir* (String): Directory containing the Dockerfile defining the image
117
119
  def os_image(image, dir)
118
120
  raise "OS image #{image} already defined to #{@os_images[image]}" if @os_images.key?(image)
121
+
119
122
  @os_images[image] = dir
120
123
  end
121
124
  expose :os_image
@@ -34,7 +34,7 @@ module HybridPlatformsConductor
34
34
  # * *confluence_password* (String): Confluence password to be used when querying the API
35
35
  # * *logger* (Logger): Logger to be used [default = Logger.new(STDOUT)]
36
36
  # * *logger_stderr* (Logger): Logger to be used for stderr [default = Logger.new(STDERR)]
37
- def initialize(confluence_url, confluence_user_name, confluence_password, logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR))
37
+ def initialize(confluence_url, confluence_user_name, confluence_password, logger: Logger.new($stdout), logger_stderr: Logger.new($stderr))
38
38
  init_loggers(logger, logger_stderr)
39
39
  @confluence_url = confluence_url
40
40
  @confluence_user_name = confluence_user_name
@@ -15,8 +15,8 @@ module HybridPlatformsConductor
15
15
  # * *cmd_runner* (CmdRunner): Command executor to be used. [default: CmdRunner.new]
16
16
  # * *nodes_handler* (NodesHandler): NodesHandler to be used. [default: NodesHandler.new]
17
17
  def initialize(
18
- logger: Logger.new(STDOUT),
19
- logger_stderr: Logger.new(STDERR),
18
+ logger: Logger.new($stdout),
19
+ logger_stderr: Logger.new($stderr),
20
20
  config: Config.new,
21
21
  cmd_runner: CmdRunner.new,
22
22
  nodes_handler: NodesHandler.new
@@ -45,8 +45,10 @@ module HybridPlatformsConductor
45
45
  @stderr_io = stderr_io
46
46
  end
47
47
 
48
+ # rubocop:disable Lint/UnusedMethodArgument
48
49
  # Prepare connections to a given set of nodes.
49
50
  # Useful to prefetch metadata or open bulk connections.
51
+ # This method is supposed to be overridden by sub-classes (hence the rubocop exception).
50
52
  #
51
53
  # Parameters::
52
54
  # * *nodes* (Array<String>): Nodes to prepare the connection to
@@ -57,6 +59,7 @@ module HybridPlatformsConductor
57
59
  def with_connection_to(nodes, no_exception: false)
58
60
  yield nodes
59
61
  end
62
+ # rubocop:enable Lint/UnusedMethodArgument
60
63
 
61
64
  private
62
65
 
@@ -0,0 +1,24 @@
1
+ module HybridPlatformsConductor
2
+
3
+ module CoreExtensions
4
+
5
+ module Symbol
6
+
7
+ # As it is better to test status code 0 with zero? and as we use status codes as symbols in case of errors, make the zero? call return appropriately.
8
+ module Zero
9
+
10
+ # Does the symbol equal zero?
11
+ #
12
+ # Result::
13
+ # * false: It does not.
14
+ def zero?
15
+ false
16
+ end
17
+
18
+ end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
@@ -42,7 +42,7 @@ module HybridPlatformsConductor
42
42
  # * *url* (String or nil): The URL for which we want the credentials, or nil if not associated to a URL [default: nil]
43
43
  # * *logger* (Logger): Logger to be used [default = Logger.new(STDOUT)]
44
44
  # * *logger_stderr* (Logger): Logger to be used for stderr [default = Logger.new(STDERR)]
45
- def initialize(id, url: nil, logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR))
45
+ def initialize(id, url: nil, logger: Logger.new($stdout), logger_stderr: Logger.new($stderr))
46
46
  init_loggers(logger, logger_stderr)
47
47
  @id = id
48
48
  @url = url
@@ -54,7 +54,7 @@ module HybridPlatformsConductor
54
54
  # Provide a helper to clear password from memory for security.
55
55
  # To be used when the client knows it won't use the password anymore.
56
56
  def clear_password
57
- @password.replace('gotyou!' * 100) unless @password.nil?
57
+ @password&.replace('gotyou!' * 100)
58
58
  GC.start
59
59
  end
60
60
 
@@ -82,46 +82,49 @@ module HybridPlatformsConductor
82
82
  # Do it only once.
83
83
  # Make sure the retrieved credentials are not linked to other objects in memory, so that we can remove any other trace of secrets.
84
84
  def retrieve_credentials
85
- unless @retrieved
86
- # Check environment variables
87
- @user = ENV["hpc_user_for_#{@id}"].dup
88
- @password = ENV["hpc_password_for_#{@id}"].dup
89
- if @user.nil? || @user.empty? || @password.nil? || @password.empty?
90
- log_debug "[ Credentials for #{@id} ] - Credentials not found from environment variables."
91
- if @url.nil?
92
- log_debug "[ Credentials for #{@id} ] - No URL associated to this credentials, so .netrc can't be used."
93
- else
94
- # Check Netrc
95
- netrc = ::Netrc.read
96
- begin
97
- netrc_user, netrc_password = netrc[URI.parse(@url).host.downcase]
98
- if netrc_user.nil?
99
- log_debug "[ Credentials for #{@id} ] - No credentials retrieved from .netrc."
100
- # TODO: Add more credentials source if needed here
101
- log_warn "[ Credentials for #{@id} ] - Unable to get credentials for #{@id} (URL: #{@url})."
102
- else
103
- @user = netrc_user.dup
104
- @password = netrc_password.dup
105
- log_debug "[ Credentials for #{@id} ] - Credentials retrieved from .netrc using #{@url}."
106
- end
107
- ensure
108
- # Make sure the password does not stay in Netrc memory
109
- # Wipe out any memory trace that might contain passwords in clear
110
- netrc.instance_variable_get(:@data).each do |data_line|
111
- data_line.each do |data_string|
112
- data_string.replace('GotYou!!!' * 100)
113
- end
85
+ return if @retrieved
86
+
87
+ # Check environment variables
88
+ @user = ENV["hpc_user_for_#{@id}"].dup
89
+ @password = ENV["hpc_password_for_#{@id}"].dup
90
+ if @user.nil? || @user.empty? || @password.nil? || @password.empty?
91
+ log_debug "[ Credentials for #{@id} ] - Credentials not found from environment variables."
92
+ if @url.nil?
93
+ log_debug "[ Credentials for #{@id} ] - No URL associated to this credentials, so .netrc can't be used."
94
+ else
95
+ # Check Netrc
96
+ netrc = ::Netrc.read
97
+ begin
98
+ netrc_user, netrc_password = netrc[URI.parse(@url).host.downcase]
99
+ if netrc_user.nil?
100
+ log_debug "[ Credentials for #{@id} ] - No credentials retrieved from .netrc."
101
+ # TODO: Add more credentials source if needed here
102
+ log_warn "[ Credentials for #{@id} ] - Unable to get credentials for #{@id} (URL: #{@url})."
103
+ else
104
+ @user = netrc_user.dup
105
+ @password = netrc_password.dup
106
+ log_debug "[ Credentials for #{@id} ] - Credentials retrieved from .netrc using #{@url}."
107
+ end
108
+ ensure
109
+ # Make sure the password does not stay in Netrc memory
110
+ # Wipe out any memory trace that might contain passwords in clear
111
+ netrc.instance_variable_get(:@data).each do |data_line|
112
+ data_line.each do |data_string|
113
+ data_string.replace('GotYou!!!' * 100)
114
114
  end
115
- netrc = nil
116
115
  end
116
+ # We don this assignment on purpose so that GC can remove sensitive data later
117
+ # rubocop:disable Lint/UselessAssignment
118
+ netrc = nil
119
+ # rubocop:enable Lint/UselessAssignment
117
120
  end
118
- else
119
- log_debug "[ Credentials for #{@id} ] - Credentials retrieved from environment variables."
120
121
  end
121
- GC.start
122
+ else
123
+ log_debug "[ Credentials for #{@id} ] - Credentials retrieved from environment variables."
122
124
  end
125
+ GC.start
123
126
  end
124
127
 
125
128
  end
126
129
 
127
- end
130
+ end