foreman_acd 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/foreman_acd/ansible_playbooks_controller.rb +75 -0
  3. data/app/controllers/foreman_acd/app_instances_controller.rb +19 -2
  4. data/app/controllers/foreman_acd/concerns/ansible_playbook_parameters.rb +1 -1
  5. data/app/controllers/foreman_acd/remote_execution_controller.rb +37 -21
  6. data/app/lib/actions/foreman_acd/deploy_all_hosts.rb +12 -7
  7. data/app/lib/actions/foreman_acd/run_configurator.rb +10 -7
  8. data/app/models/concerns/foreman_acd/host_managed_extensions.rb +2 -2
  9. data/app/models/foreman_acd/acd_provider.rb +7 -1
  10. data/app/models/foreman_acd/ansible_playbook.rb +2 -1
  11. data/app/models/foreman_acd/app_instance.rb +1 -1
  12. data/app/services/foreman_acd/acd_proxy_proxy_selector.rb +17 -0
  13. data/app/services/foreman_acd/app_configurator.rb +59 -15
  14. data/app/services/foreman_acd/app_deployer.rb +8 -2
  15. data/app/services/foreman_acd/inventory_creator.rb +14 -0
  16. data/app/views/foreman_acd/ansible_playbooks/_form.html.erb +41 -7
  17. data/app/views/foreman_acd/app_definitions/_form.html.erb +1 -1
  18. data/app/views/foreman_acd/app_instances/_form.html.erb +1 -1
  19. data/app/views/foreman_acd/app_instances/index.html.erb +5 -3
  20. data/app/views/foreman_acd/app_instances/report.html.erb +1 -1
  21. data/app/views/templates/job/run_acd_ansible_playbook.erb +1 -1
  22. data/config/routes.rb +3 -0
  23. data/db/migrate/20210316151145_add_git_commit_to_ansible_playbooks.rb +8 -0
  24. data/db/migrate/20210503122809_add_git_url_to_ansible_playbooks.rb +8 -0
  25. data/db/seeds.d/75-job_templates.rb +1 -1
  26. data/lib/foreman_acd.rb +12 -0
  27. data/lib/foreman_acd/engine.rb +26 -4
  28. data/lib/foreman_acd/plugin.rb +0 -9
  29. data/lib/foreman_acd/version.rb +1 -1
  30. data/lib/tasks/foreman_acd_tasks.rake +0 -12
  31. data/package.json +8 -8
  32. data/test/controllers/ansible_playbooks_controller_test.rb +1 -1
  33. data/test/controllers/app_instances_controller_test.rb +8 -3
  34. data/test/controllers/ui_acd_controller_test.rb +22 -6
  35. data/test/factories/foreman_acd_factories.rb +18 -4
  36. data/test/models/acd_provider_test.rb +37 -0
  37. data/test/models/ansible_playbook_test.rb +11 -0
  38. data/test/models/app_definition_test.rb +1 -1
  39. data/test/models/app_instance_test.rb +2 -0
  40. data/test/models/concerns/host_extensions_test.rb +26 -0
  41. data/test/models/foreman_host_test.rb +12 -0
  42. data/webpack/__mocks__/foremanReact/API.js +2 -0
  43. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  44. data/webpack/__mocks__/foremanReact/common/helpers.js +2 -0
  45. data/webpack/__mocks__/foremanReact/components/ForemanModal.js +7 -0
  46. data/webpack/__mocks__/foremanReact/components/common/forms/CommonForm.js +2 -0
  47. data/webpack/__mocks__/foremanReact/components/common/forms/TextInput.js +2 -0
  48. data/webpack/__mocks__/foremanReact/components/hosts/powerStatus.js +1 -0
  49. data/webpack/__snapshots__/helper.test.js.snap +14 -0
  50. data/webpack/components/ApplicationDefinition/ApplicationDefinition.js +1 -1
  51. data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionConfData_1.fixtures.js +288 -0
  52. data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionReducer.fixtures.js +79 -0
  53. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinition.test.js +25 -0
  54. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionReducer.test.js +119 -0
  55. data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionSelectors.test.js +41 -0
  56. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinition.test.js.snap +200 -0
  57. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionReducer.test.js.snap +3033 -0
  58. data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionSelectors.test.js.snap +299 -0
  59. data/webpack/components/ApplicationDefinition/components/AnsiblePlaybookSelector.js +1 -0
  60. data/webpack/components/ApplicationDefinition/components/__tests__/AnsiblePlaybookSelector.test.js +41 -0
  61. data/webpack/components/ApplicationDefinition/components/__tests__/__snapshots__/AnsiblePlaybookSelector.test.js.snap +121 -0
  62. data/webpack/components/ApplicationInstance/ApplicationInstance.js +3 -5
  63. data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceConfData_1.fixtures.js +263 -0
  64. data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceReducer.fixtures.js +78 -0
  65. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstance.test.js +23 -0
  66. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceReducer.test.js +119 -0
  67. data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceSelectors.test.js +44 -0
  68. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstance.test.js.snap +209 -0
  69. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceReducer.test.js.snap +2719 -0
  70. data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceSelectors.test.js.snap +276 -0
  71. data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportData_1.fixtures.js +349 -0
  72. data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportReducer.fixtures.js +20 -0
  73. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReport.test.js +47 -0
  74. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportReducer.test.js +41 -0
  75. data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportSelectors.test.js +26 -0
  76. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReport.test.js.snap +130 -0
  77. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportReducer.test.js.snap +718 -0
  78. data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportSelectors.test.js.snap +347 -0
  79. data/webpack/components/ApplicationInstanceReport/components/__tests__/ReportViewer.test.js +24 -0
  80. data/webpack/components/ApplicationInstanceReport/components/__tests__/__snapshots__/ReportViewer.test.js.snap +24 -0
  81. data/webpack/components/ParameterSelection/ParameterSelectionReducer.js +2 -21
  82. data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionData_1.fixtures.js +116 -84
  83. data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionReducer.fixtures.js +10 -4
  84. data/webpack/components/ParameterSelection/__tests__/ParameterSelection.test.js +36 -46
  85. data/webpack/components/ParameterSelection/__tests__/ParameterSelectionReducer.test.js +31 -25
  86. data/webpack/components/ParameterSelection/__tests__/ParameterSelectionSelectors.test.js +6 -6
  87. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelection.test.js.snap +2 -126
  88. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionReducer.test.js.snap +1483 -872
  89. data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionSelectors.test.js.snap +117 -79
  90. data/webpack/components/SyncGitRepo/SyncGitRepo.js +210 -0
  91. data/webpack/components/SyncGitRepo/SyncGitRepo.scss +1 -0
  92. data/webpack/components/SyncGitRepo/SyncGitRepoActions.js +124 -0
  93. data/webpack/components/SyncGitRepo/SyncGitRepoConstants.js +9 -0
  94. data/webpack/components/SyncGitRepo/SyncGitRepoReducer.js +80 -0
  95. data/webpack/components/SyncGitRepo/SyncGitRepoSelectors.js +6 -0
  96. data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoConfData_1.fixtures.js +7 -0
  97. data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoReducer.fixtures.js +44 -0
  98. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepo.test.js +27 -0
  99. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoReducer.test.js +95 -0
  100. data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoSelectors.test.js +32 -0
  101. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepo.test.js.snap +30 -0
  102. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoReducer.test.js.snap +137 -0
  103. data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoSelectors.test.js.snap +13 -0
  104. data/webpack/components/SyncGitRepo/components/FormTextInput.js +42 -0
  105. data/webpack/components/SyncGitRepo/components/ScmTypeSelector.js +46 -0
  106. data/webpack/components/SyncGitRepo/index.js +28 -0
  107. data/webpack/components/common/ExtTextInput.js +43 -0
  108. data/webpack/components/common/__tests__/EditTableEntry.test.js +53 -0
  109. data/webpack/components/common/__tests__/LockTableEntry.test.js +35 -0
  110. data/webpack/components/common/__tests__/__snapshots__/DeleteTableEntry.test.js.snap +2 -2
  111. data/webpack/components/common/__tests__/__snapshots__/EditTableEntry.test.js.snap +81 -0
  112. data/webpack/components/common/__tests__/__snapshots__/LockTableEntry.test.js.snap +60 -0
  113. data/webpack/helper.js +15 -1
  114. data/webpack/helper.test.js +37 -0
  115. data/webpack/index.js +2 -0
  116. data/webpack/reducer.js +4 -0
  117. metadata +92 -11
  118. data/webpack/components/common/EasyHeaderFormatter.js +0 -18
  119. data/webpack/components/common/__tests__/__snapshots__/AddParameter.test.js.snap +0 -35
  120. data/webpack/components/common/__tests__/__snapshots__/DeleteParameter.test.js.snap +0 -41
@@ -0,0 +1,347 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`ApplicationInstanceSelectors should return activeHostId from applicationInstanceReportData_1 fixtures 1`] = `undefined`;
4
+
5
+ exports[`ApplicationInstanceSelectors should return hosts from applicationInstanceReportData_1 fixtures 1`] = `
6
+ Array [
7
+ Object {
8
+ "build": false,
9
+ "hostUrl": "/hosts/great-web-app-db-1.deploy3.dev.atix",
10
+ "id": 8,
11
+ "name": "great-web-app-db-1",
12
+ "powerStatusUrl": "/api/v2/hosts/great-web-app-db-1.deploy3.dev.atix/power",
13
+ "progress_report": Array [
14
+ Object {
15
+ "created": 1615542728.8466988,
16
+ "id": "Set up compute instance great-web-app-db-1.deploy3.dev.atix",
17
+ "name": "Set up compute instance great-web-app-db-1.deploy3.dev.atix",
18
+ "priority": 3,
19
+ "status": "completed",
20
+ "timestamp": "2021-03-12T09:52:10.190Z",
21
+ },
22
+ Object {
23
+ "created": 1615542728.8474095,
24
+ "id": "Query instance details for great-web-app-db-1.deploy3.dev.atix",
25
+ "name": "Query instance details for great-web-app-db-1.deploy3.dev.atix",
26
+ "priority": 5,
27
+ "status": "completed",
28
+ "timestamp": "2021-03-12T09:52:10.385Z",
29
+ },
30
+ Object {
31
+ "created": 1615542728.0081317,
32
+ "id": "dhcp_create_192.168.171.103",
33
+ "name": "Create DHCP Settings for great-web-app-db-1.deploy3.dev.atix",
34
+ "priority": 10,
35
+ "status": "completed",
36
+ "timestamp": "2021-03-12T09:52:10.584Z",
37
+ },
38
+ Object {
39
+ "created": 1615542728.04177,
40
+ "id": "Create IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix",
41
+ "name": "Create IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix",
42
+ "priority": 10,
43
+ "status": "completed",
44
+ "timestamp": "2021-03-12T09:52:10.679Z",
45
+ },
46
+ Object {
47
+ "created": 1615542728.0424814,
48
+ "id": "Create Reverse IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix",
49
+ "name": "Create Reverse IPv4 DNS record for great-web-app-db-1.deploy3.dev.atix",
50
+ "priority": 10,
51
+ "status": "completed",
52
+ "timestamp": "2021-03-12T09:52:10.798Z",
53
+ },
54
+ Object {
55
+ "created": 1615542728.0881674,
56
+ "id": "Deploy TFTP PXELinux config for great-web-app-db-1.deploy3.dev.atix",
57
+ "name": "Deploy TFTP PXELinux config for great-web-app-db-1.deploy3.dev.atix",
58
+ "priority": 20,
59
+ "status": "completed",
60
+ "timestamp": "2021-03-12T09:52:11.178Z",
61
+ },
62
+ Object {
63
+ "created": 1615542728.0883749,
64
+ "id": "Deploy TFTP PXEGrub2 config for great-web-app-db-1.deploy3.dev.atix",
65
+ "name": "Deploy TFTP PXEGrub2 config for great-web-app-db-1.deploy3.dev.atix",
66
+ "priority": 20,
67
+ "status": "completed",
68
+ "timestamp": "2021-03-12T09:52:11.615Z",
69
+ },
70
+ Object {
71
+ "created": 1615542728.088634,
72
+ "id": "Deploy TFTP PXEGrub config for great-web-app-db-1.deploy3.dev.atix",
73
+ "name": "Deploy TFTP PXEGrub config for great-web-app-db-1.deploy3.dev.atix",
74
+ "priority": 20,
75
+ "status": "completed",
76
+ "timestamp": "2021-03-12T09:52:11.642Z",
77
+ },
78
+ Object {
79
+ "created": 1615542728.0888274,
80
+ "id": "Deploy TFTP iPXE config for great-web-app-db-1.deploy3.dev.atix",
81
+ "name": "Deploy TFTP iPXE config for great-web-app-db-1.deploy3.dev.atix",
82
+ "priority": 20,
83
+ "status": "completed",
84
+ "timestamp": "2021-03-12T09:52:11.874Z",
85
+ },
86
+ Object {
87
+ "created": 1615542728.0894718,
88
+ "id": "Fetch TFTP boot files for great-web-app-db-1.deploy3.dev.atix",
89
+ "name": "Fetch TFTP boot files for great-web-app-db-1.deploy3.dev.atix",
90
+ "priority": 25,
91
+ "status": "completed",
92
+ "timestamp": "2021-03-12T09:52:11.981Z",
93
+ },
94
+ Object {
95
+ "created": 1615542728.8482428,
96
+ "id": "Power up compute instance great-web-app-db-1.deploy3.dev.atix",
97
+ "name": "Power up compute instance great-web-app-db-1.deploy3.dev.atix",
98
+ "priority": 1000,
99
+ "status": "completed",
100
+ "timestamp": "2021-03-12T09:52:12.950Z",
101
+ },
102
+ Object {
103
+ "created": 1615542728.8508224,
104
+ "id": "Cleanup PuppetCA certificates for great-web-app-db-1.deploy3.dev.atix",
105
+ "name": "Cleanup PuppetCA certificates for great-web-app-db-1.deploy3.dev.atix",
106
+ "priority": 51,
107
+ "status": "completed",
108
+ "timestamp": "2021-03-12T09:52:13.390Z",
109
+ },
110
+ Object {
111
+ "created": 1615542728.8514216,
112
+ "id": "Enable PuppetCA autosigning for great-web-app-db-1.deploy3.dev.atix",
113
+ "name": "Enable PuppetCA autosigning for great-web-app-db-1.deploy3.dev.atix",
114
+ "priority": 55,
115
+ "status": "completed",
116
+ "timestamp": "2021-03-12T09:52:13.442Z",
117
+ },
118
+ ],
119
+ },
120
+ Object {
121
+ "build": false,
122
+ "hostUrl": "/hosts/great-web-app-web-1.deploy3.dev.atix",
123
+ "id": 9,
124
+ "name": "great-web-app-web-1",
125
+ "powerStatusUrl": "/api/v2/hosts/great-web-app-web-1.deploy3.dev.atix/power",
126
+ "progress_report": Array [
127
+ Object {
128
+ "created": 1615542733.824889,
129
+ "id": "Set up compute instance great-web-app-web-1.deploy3.dev.atix",
130
+ "name": "Set up compute instance great-web-app-web-1.deploy3.dev.atix",
131
+ "priority": 3,
132
+ "status": "completed",
133
+ "timestamp": "2021-03-12T09:52:14.825Z",
134
+ },
135
+ Object {
136
+ "created": 1615542733.825672,
137
+ "id": "Query instance details for great-web-app-web-1.deploy3.dev.atix",
138
+ "name": "Query instance details for great-web-app-web-1.deploy3.dev.atix",
139
+ "priority": 5,
140
+ "status": "completed",
141
+ "timestamp": "2021-03-12T09:52:15.007Z",
142
+ },
143
+ Object {
144
+ "created": 1615542733.5710943,
145
+ "id": "dhcp_create_192.168.171.104",
146
+ "name": "Create DHCP Settings for great-web-app-web-1.deploy3.dev.atix",
147
+ "priority": 10,
148
+ "status": "completed",
149
+ "timestamp": "2021-03-12T09:52:15.181Z",
150
+ },
151
+ Object {
152
+ "created": 1615542733.599793,
153
+ "id": "Create IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix",
154
+ "name": "Create IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix",
155
+ "priority": 10,
156
+ "status": "completed",
157
+ "timestamp": "2021-03-12T09:52:15.251Z",
158
+ },
159
+ Object {
160
+ "created": 1615542733.600369,
161
+ "id": "Create Reverse IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix",
162
+ "name": "Create Reverse IPv4 DNS record for great-web-app-web-1.deploy3.dev.atix",
163
+ "priority": 10,
164
+ "status": "completed",
165
+ "timestamp": "2021-03-12T09:52:15.328Z",
166
+ },
167
+ Object {
168
+ "created": 1615542733.6356068,
169
+ "id": "Deploy TFTP PXELinux config for great-web-app-web-1.deploy3.dev.atix",
170
+ "name": "Deploy TFTP PXELinux config for great-web-app-web-1.deploy3.dev.atix",
171
+ "priority": 20,
172
+ "status": "completed",
173
+ "timestamp": "2021-03-12T09:52:15.681Z",
174
+ },
175
+ Object {
176
+ "created": 1615542733.635817,
177
+ "id": "Deploy TFTP PXEGrub2 config for great-web-app-web-1.deploy3.dev.atix",
178
+ "name": "Deploy TFTP PXEGrub2 config for great-web-app-web-1.deploy3.dev.atix",
179
+ "priority": 20,
180
+ "status": "completed",
181
+ "timestamp": "2021-03-12T09:52:16.152Z",
182
+ },
183
+ Object {
184
+ "created": 1615542733.6360064,
185
+ "id": "Deploy TFTP PXEGrub config for great-web-app-web-1.deploy3.dev.atix",
186
+ "name": "Deploy TFTP PXEGrub config for great-web-app-web-1.deploy3.dev.atix",
187
+ "priority": 20,
188
+ "status": "completed",
189
+ "timestamp": "2021-03-12T09:52:16.183Z",
190
+ },
191
+ Object {
192
+ "created": 1615542733.6362345,
193
+ "id": "Deploy TFTP iPXE config for great-web-app-web-1.deploy3.dev.atix",
194
+ "name": "Deploy TFTP iPXE config for great-web-app-web-1.deploy3.dev.atix",
195
+ "priority": 20,
196
+ "status": "completed",
197
+ "timestamp": "2021-03-12T09:52:16.417Z",
198
+ },
199
+ Object {
200
+ "created": 1615542733.6365006,
201
+ "id": "Fetch TFTP boot files for great-web-app-web-1.deploy3.dev.atix",
202
+ "name": "Fetch TFTP boot files for great-web-app-web-1.deploy3.dev.atix",
203
+ "priority": 25,
204
+ "status": "completed",
205
+ "timestamp": "2021-03-12T09:52:16.523Z",
206
+ },
207
+ Object {
208
+ "created": 1615542733.8267431,
209
+ "id": "Power up compute instance great-web-app-web-1.deploy3.dev.atix",
210
+ "name": "Power up compute instance great-web-app-web-1.deploy3.dev.atix",
211
+ "priority": 1000,
212
+ "status": "completed",
213
+ "timestamp": "2021-03-12T09:52:17.533Z",
214
+ },
215
+ Object {
216
+ "created": 1615542733.8292165,
217
+ "id": "Cleanup PuppetCA certificates for great-web-app-web-1.deploy3.dev.atix",
218
+ "name": "Cleanup PuppetCA certificates for great-web-app-web-1.deploy3.dev.atix",
219
+ "priority": 51,
220
+ "status": "completed",
221
+ "timestamp": "2021-03-12T09:52:17.944Z",
222
+ },
223
+ Object {
224
+ "created": 1615542733.8294067,
225
+ "id": "Enable PuppetCA autosigning for great-web-app-web-1.deploy3.dev.atix",
226
+ "name": "Enable PuppetCA autosigning for great-web-app-web-1.deploy3.dev.atix",
227
+ "priority": 55,
228
+ "status": "completed",
229
+ "timestamp": "2021-03-12T09:52:17.995Z",
230
+ },
231
+ ],
232
+ },
233
+ Object {
234
+ "build": false,
235
+ "hostUrl": "/hosts/great-web-app-web-2.deploy3.dev.atix",
236
+ "id": 10,
237
+ "name": "great-web-app-web-2",
238
+ "powerStatusUrl": "/api/v2/hosts/great-web-app-web-2.deploy3.dev.atix/power",
239
+ "progress_report": Array [
240
+ Object {
241
+ "created": 1615542738.3446305,
242
+ "id": "Set up compute instance great-web-app-web-2.deploy3.dev.atix",
243
+ "name": "Set up compute instance great-web-app-web-2.deploy3.dev.atix",
244
+ "priority": 3,
245
+ "status": "completed",
246
+ "timestamp": "2021-03-12T09:52:19.221Z",
247
+ },
248
+ Object {
249
+ "created": 1615542738.3449144,
250
+ "id": "Query instance details for great-web-app-web-2.deploy3.dev.atix",
251
+ "name": "Query instance details for great-web-app-web-2.deploy3.dev.atix",
252
+ "priority": 5,
253
+ "status": "completed",
254
+ "timestamp": "2021-03-12T09:52:19.419Z",
255
+ },
256
+ Object {
257
+ "created": 1615542738.1321318,
258
+ "id": "dhcp_create_192.168.171.105",
259
+ "name": "Create DHCP Settings for great-web-app-web-2.deploy3.dev.atix",
260
+ "priority": 10,
261
+ "status": "completed",
262
+ "timestamp": "2021-03-12T09:52:19.668Z",
263
+ },
264
+ Object {
265
+ "created": 1615542738.1576574,
266
+ "id": "Create IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix",
267
+ "name": "Create IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix",
268
+ "priority": 10,
269
+ "status": "completed",
270
+ "timestamp": "2021-03-12T09:52:19.749Z",
271
+ },
272
+ Object {
273
+ "created": 1615542738.1582346,
274
+ "id": "Create Reverse IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix",
275
+ "name": "Create Reverse IPv4 DNS record for great-web-app-web-2.deploy3.dev.atix",
276
+ "priority": 10,
277
+ "status": "completed",
278
+ "timestamp": "2021-03-12T09:52:19.859Z",
279
+ },
280
+ Object {
281
+ "created": 1615542738.1885784,
282
+ "id": "Deploy TFTP PXELinux config for great-web-app-web-2.deploy3.dev.atix",
283
+ "name": "Deploy TFTP PXELinux config for great-web-app-web-2.deploy3.dev.atix",
284
+ "priority": 20,
285
+ "status": "completed",
286
+ "timestamp": "2021-03-12T09:52:20.221Z",
287
+ },
288
+ Object {
289
+ "created": 1615542738.1888642,
290
+ "id": "Deploy TFTP PXEGrub2 config for great-web-app-web-2.deploy3.dev.atix",
291
+ "name": "Deploy TFTP PXEGrub2 config for great-web-app-web-2.deploy3.dev.atix",
292
+ "priority": 20,
293
+ "status": "completed",
294
+ "timestamp": "2021-03-12T09:52:20.604Z",
295
+ },
296
+ Object {
297
+ "created": 1615542738.1890883,
298
+ "id": "Deploy TFTP PXEGrub config for great-web-app-web-2.deploy3.dev.atix",
299
+ "name": "Deploy TFTP PXEGrub config for great-web-app-web-2.deploy3.dev.atix",
300
+ "priority": 20,
301
+ "status": "completed",
302
+ "timestamp": "2021-03-12T09:52:20.636Z",
303
+ },
304
+ Object {
305
+ "created": 1615542738.1892834,
306
+ "id": "Deploy TFTP iPXE config for great-web-app-web-2.deploy3.dev.atix",
307
+ "name": "Deploy TFTP iPXE config for great-web-app-web-2.deploy3.dev.atix",
308
+ "priority": 20,
309
+ "status": "completed",
310
+ "timestamp": "2021-03-12T09:52:20.895Z",
311
+ },
312
+ Object {
313
+ "created": 1615542738.1898031,
314
+ "id": "Fetch TFTP boot files for great-web-app-web-2.deploy3.dev.atix",
315
+ "name": "Fetch TFTP boot files for great-web-app-web-2.deploy3.dev.atix",
316
+ "priority": 25,
317
+ "status": "completed",
318
+ "timestamp": "2021-03-12T09:52:20.992Z",
319
+ },
320
+ Object {
321
+ "created": 1615542738.3453662,
322
+ "id": "Power up compute instance great-web-app-web-2.deploy3.dev.atix",
323
+ "name": "Power up compute instance great-web-app-web-2.deploy3.dev.atix",
324
+ "priority": 1000,
325
+ "status": "completed",
326
+ "timestamp": "2021-03-12T09:52:21.864Z",
327
+ },
328
+ Object {
329
+ "created": 1615542738.34748,
330
+ "id": "Cleanup PuppetCA certificates for great-web-app-web-2.deploy3.dev.atix",
331
+ "name": "Cleanup PuppetCA certificates for great-web-app-web-2.deploy3.dev.atix",
332
+ "priority": 51,
333
+ "status": "completed",
334
+ "timestamp": "2021-03-12T09:52:22.316Z",
335
+ },
336
+ Object {
337
+ "created": 1615542738.3476808,
338
+ "id": "Enable PuppetCA autosigning for great-web-app-web-2.deploy3.dev.atix",
339
+ "name": "Enable PuppetCA autosigning for great-web-app-web-2.deploy3.dev.atix",
340
+ "priority": 55,
341
+ "status": "completed",
342
+ "timestamp": "2021-03-12T09:52:22.368Z",
343
+ },
344
+ ],
345
+ },
346
+ ]
347
+ `;
@@ -0,0 +1,24 @@
1
+ import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
2
+
3
+ import ReportViewer from '../ReportViewer';
4
+
5
+ const noop = () => {};
6
+
7
+ const data = [
8
+ { name: 'report 1', status: 'done' },
9
+ { name: 'report 2', status: 'pending' }
10
+ ];
11
+
12
+ const fixtures = {
13
+ 'should render the report viewer': {
14
+ hidden: false,
15
+ report: data,
16
+ },
17
+ 'should render the hidden report viewer': {
18
+ hidden: true,
19
+ report: data,
20
+ },
21
+ };
22
+
23
+ describe('ReportViewer', () =>
24
+ testComponentSnapshotsWithFixtures(ReportViewer, fixtures));
@@ -0,0 +1,24 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`ReportViewer should render the hidden report viewer 1`] = `""`;
4
+
5
+ exports[`ReportViewer should render the report viewer 1`] = `
6
+ Array [
7
+ <div
8
+ className="report_task"
9
+ key="report_task_0"
10
+ >
11
+ report 1
12
+ --
13
+ done
14
+ </div>,
15
+ <div
16
+ className="report_task"
17
+ key="report_task_1"
18
+ >
19
+ report 2
20
+ --
21
+ pending
22
+ </div>,
23
+ ]
24
+ `;
@@ -23,17 +23,13 @@ import {
23
23
  PARAMETER_SELECTION_EDIT_CHANGE,
24
24
  PARAMETER_SELECTION_EDIT_CANCEL,
25
25
  PARAMETER_SELECTION_SORT,
26
- PARAMETER_SELECTION_PARAM_TYPE_FOREMAN,
27
- PARAMETER_SELECTION_PARAM_TYPE_ANSIBLE,
28
26
  PARAMETER_SELECTION_LOAD_PARAM_DATA_REQUEST,
29
27
  PARAMETER_SELECTION_LOAD_PARAM_DATA_SUCCESS,
30
28
  PARAMETER_SELECTION_LOAD_PARAM_DATA_FAILURE,
29
+ PARAMETER_SELECTION_PARAM_TYPE_FOREMAN,
30
+ PARAMETER_SELECTION_PARAM_TYPE_ANSIBLE,
31
31
  } from './ParameterSelectionConstants';
32
32
 
33
- import {
34
- APPLICATION_DEFINITION_PARAMETER_SELECTION_MODAL_CLOSE,
35
- } from '../ApplicationDefinition/ApplicationDefinitionConstants';
36
-
37
33
  export const initialState = Immutable({
38
34
  editMode: false,
39
35
  error: { errorMsg: '', status: '', statusText: '' },
@@ -184,21 +180,6 @@ const parameterSelectionParameters = (state = initialState, action) => {
184
180
 
185
181
  return state.merge(newState);
186
182
  }
187
- case APPLICATION_DEFINITION_PARAMETER_SELECTION_MODAL_CLOSE: {
188
- const parameters = cloneDeep(state.parameters);
189
-
190
- parameters.forEach((param, index) => {
191
- delete parameters[index].backup;
192
- if (parameters[index].newEntry === true) {
193
- parameters.splice(index, 1);
194
- }
195
- });
196
-
197
- return state.merge({
198
- editMode: false,
199
- parameters: parameters
200
- });
201
- }
202
183
  default:
203
184
  return state;
204
185
  }
@@ -5,31 +5,51 @@ export const parameterSelectionData_1 = {
5
5
  status: '',
6
6
  statusText: ''
7
7
  },
8
- foremanData: {
8
+ paramData: {
9
9
  hostgroup_id: 1,
10
10
  environments: [
11
11
  {
12
12
  id: 1,
13
13
  name: 'production'
14
+ }
15
+ ],
16
+ lifecycle_environments: [
17
+ {
18
+ id: 1,
19
+ name: 'Library'
20
+ }
21
+ ],
22
+ domains: [
23
+ {
24
+ id: 1,
25
+ name: 'deploy3.dev.atix'
26
+ }
27
+ ],
28
+ computeprofiles: [
29
+ {
30
+ id: 1,
31
+ name: '1-Small'
14
32
  },
15
33
  {
16
34
  id: 2,
17
- name: 'test'
35
+ name: '2-Medium'
36
+ },
37
+ {
38
+ id: 3,
39
+ name: '3-Large'
40
+ },
41
+ {
42
+ id: 4,
43
+ name: 'Orchahosts-VM'
18
44
  }
19
45
  ],
20
- lifecycle_environments: [],
21
- domains: [],
22
- computeprofiles: [],
23
46
  ptables: [
24
47
  {
25
- id: 105,
48
+ id: 125,
26
49
  name: 'Kickstart default'
27
- },
28
- {
29
- id: 104,
30
- name: 'Kickstart default thin'
31
50
  }
32
- ]
51
+ ],
52
+ dataType: 'PARAMETER_SELECTION_PARAM_TYPE_FOREMAN'
33
53
  },
34
54
  hostgroupId: 1,
35
55
  loading: false,
@@ -39,10 +59,10 @@ export const parameterSelectionData_1 = {
39
59
  position: 0
40
60
  }
41
61
  },
42
- appDefinition: {
62
+ paramDefinition: {
43
63
  id: 1,
44
- name: 'Test123',
45
- hostgroup_id: 1
64
+ name: 'web',
65
+ dataId: '1'
46
66
  },
47
67
  columns: [
48
68
  {
@@ -50,30 +70,56 @@ export const parameterSelectionData_1 = {
50
70
  header: {
51
71
  label: 'Name',
52
72
  props: {
53
- index: 0,
54
73
  sort: true,
55
74
  style: {
56
- width: '20%'
57
- }
75
+ width: '25%'
76
+ },
77
+ index: 0
58
78
  },
79
+ transforms: [
80
+ null
81
+ ],
82
+ formatters: [
83
+ null
84
+ ],
85
+ customFormatters: [
86
+ null
87
+ ]
59
88
  },
89
+ cell: {
90
+ formatters: [
91
+ null
92
+ ]
93
+ }
60
94
  },
61
95
  {
62
96
  property: 'description',
63
97
  header: {
64
98
  label: 'Description',
65
99
  props: {
66
- index: 1,
67
100
  sort: true,
68
101
  style: {
69
102
  width: '25%'
70
- }
103
+ },
104
+ index: 1
71
105
  },
106
+ transforms: [
107
+ null
108
+ ],
109
+ formatters: [
110
+ null
111
+ ],
112
+ customFormatters: [
113
+ null
114
+ ]
72
115
  },
73
116
  cell: {
74
117
  props: {
75
118
  index: 1
76
119
  },
120
+ formatters: [
121
+ null
122
+ ]
77
123
  }
78
124
  },
79
125
  {
@@ -81,17 +127,26 @@ export const parameterSelectionData_1 = {
81
127
  header: {
82
128
  label: 'Type',
83
129
  props: {
84
- index: 2,
85
130
  sort: true,
86
131
  style: {
87
132
  width: '20%'
88
- }
133
+ },
134
+ index: 2
89
135
  },
136
+ transforms: [
137
+ null
138
+ ],
139
+ formatters: [
140
+ null
141
+ ],
142
+ customFormatters: [
143
+ null
144
+ ]
90
145
  },
91
146
  cell: {
92
- props: {
93
- index: 2
94
- },
147
+ formatters: [
148
+ null
149
+ ]
95
150
  }
96
151
  },
97
152
  {
@@ -99,17 +154,26 @@ export const parameterSelectionData_1 = {
99
154
  header: {
100
155
  label: 'Default value',
101
156
  props: {
102
- index: 3,
103
157
  sort: true,
104
158
  style: {
105
- width: '25%'
106
- }
159
+ width: '20%'
160
+ },
161
+ index: 3
107
162
  },
163
+ transforms: [
164
+ null
165
+ ],
166
+ formatters: [
167
+ null
168
+ ],
169
+ customFormatters: [
170
+ null
171
+ ]
108
172
  },
109
173
  cell: {
110
- props: {
111
- index: 3
112
- },
174
+ formatters: [
175
+ null
176
+ ]
113
177
  }
114
178
  },
115
179
  {
@@ -117,78 +181,46 @@ export const parameterSelectionData_1 = {
117
181
  header: {
118
182
  label: 'Actions',
119
183
  props: {
184
+ style: {
185
+ width: '10%'
186
+ },
120
187
  index: 4
121
188
  },
189
+ formatters: [
190
+ null
191
+ ]
122
192
  },
123
193
  cell: {
124
- props: {
125
- index: 4
126
- },
194
+ formatters: [
195
+ null
196
+ ]
127
197
  }
128
198
  }
129
199
  ],
130
200
  parameters: [
131
201
  {
132
202
  id: 1,
133
- name: 'PuppetEnv',
203
+ locked: false,
204
+ name: 'CP',
134
205
  description: '',
135
- type: 'puppetenv',
136
- value: '2'
206
+ type: 'computeprofile',
207
+ value: '1'
137
208
  },
138
209
  {
139
210
  id: 2,
140
- name: 'PW',
141
- description: '',
142
- type: 'password',
143
- value: 'rooot'
144
- },
145
- {
146
- id: 3,
147
- name: 'Blub',
148
- description: '',
149
- type: 'hostparam',
150
- value: 'awesome'
151
- },
152
- {
153
- id: 4,
154
- name: '111allo',
155
- description: '',
156
- type: 'ip',
157
- value: '1.1.1.1'
158
- },
159
- {
160
- id: 5,
161
- name: '1111aasdfasf',
162
- description: '',
163
- type: 'hostname',
164
- value: 'dername'
165
- },
166
- {
167
- id: 6,
168
- name: '222nocheiner',
169
- description: '',
170
- type: 'hostparam',
171
- value: ''
172
- },
173
- {
174
- id: 7,
175
- name: 'aaaaa',
176
- description: 'aa',
177
- type: 'ptable',
178
- value: ''
179
- },
180
- {
181
- id: 8,
182
- name: 'aaa',
211
+ locked: true,
212
+ name: 'LE',
183
213
  description: '',
184
- type: 'hostparam',
185
- value: '2134234'
214
+ type: 'lifecycleenv',
215
+ value: '1'
186
216
  }
187
217
  ],
188
218
  parameterTypes: {
189
- computeprofile: 'Compute profile',
190
219
  domain: 'Domain',
191
220
  hostparam: 'Host parameter',
192
- lifecycleenv: 'Lifecycle environment'
221
+ ip: 'IP',
222
+ ptable: 'Partition table',
223
+ puppetenv: 'Puppet environment',
224
+ password: 'Root password'
193
225
  }
194
- };
226
+ }