foreman_acd 0.2.1 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +107 -56
- data/app/controllers/foreman_acd/ansible_playbooks_controller.rb +199 -0
- data/app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb +72 -0
- data/app/controllers/foreman_acd/api/v2/app_definitions_controller.rb +1 -0
- data/app/controllers/foreman_acd/api/v2/app_instances_controller.rb +62 -0
- data/app/controllers/foreman_acd/app_definitions_controller.rb +19 -10
- data/app/controllers/foreman_acd/app_instances_controller.rb +111 -137
- data/app/controllers/foreman_acd/concerns/ansible_playbook_parameters.rb +23 -0
- data/app/controllers/foreman_acd/concerns/app_definition_parameters.rb +1 -1
- data/app/controllers/foreman_acd/concerns/app_instance_parameters.rb +1 -1
- data/app/controllers/foreman_acd/remote_execution_controller.rb +62 -0
- data/app/controllers/ui_acd_controller.rb +20 -3
- data/app/lib/actions/foreman_acd/deploy_all_hosts.rb +47 -0
- data/app/lib/actions/foreman_acd/run_configurator.rb +44 -0
- data/app/models/concerns/foreman_acd/host_managed_extensions.rb +51 -0
- data/app/models/foreman_acd/acd_provider.rb +36 -0
- data/app/models/foreman_acd/ansible_playbook.rb +68 -0
- data/app/models/foreman_acd/app_definition.rb +25 -0
- data/app/models/foreman_acd/app_instance.rb +42 -0
- data/app/models/foreman_acd/foreman_host.rb +23 -0
- data/app/models/foreman_acd/taxonomy_extensions.rb +17 -0
- data/app/services/foreman_acd/acd_proxy_proxy_selector.rb +17 -0
- data/app/services/foreman_acd/app_configurator.rb +98 -0
- data/app/services/foreman_acd/app_deployer.rb +157 -0
- data/app/services/foreman_acd/inventory_creator.rb +68 -0
- data/app/views/foreman_acd/ansible_playbooks/_form.html.erb +64 -0
- data/app/views/foreman_acd/ansible_playbooks/edit.html.erb +11 -0
- data/app/views/foreman_acd/ansible_playbooks/index.html.erb +30 -0
- data/app/views/foreman_acd/ansible_playbooks/new.html.erb +3 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/show.json.rabl +9 -0
- data/app/views/foreman_acd/api/v2/app_definitions/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_definitions/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_definitions/show.json.rabl +9 -0
- data/app/views/foreman_acd/api/v2/app_instances/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_instances/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_instances/show.json.rabl +5 -0
- data/app/views/foreman_acd/app_definitions/_form.html.erb +34 -12
- data/app/views/foreman_acd/app_definitions/edit.html.erb +10 -0
- data/app/views/foreman_acd/app_definitions/index.html.erb +4 -4
- data/app/views/foreman_acd/app_instances/_form.html.erb +11 -9
- data/app/views/foreman_acd/app_instances/edit.html.erb +10 -0
- data/app/views/foreman_acd/app_instances/index.html.erb +89 -10
- data/app/views/foreman_acd/app_instances/report.html.erb +6 -3
- data/app/views/templates/job/run_acd_ansible_playbook.erb +62 -0
- data/app/views/ui_acd/ansible_data.json.rabl +6 -0
- data/app/views/ui_acd/app.json.rabl +6 -2
- data/app/views/ui_acd/app_definition.json.rabl +1 -1
- data/app/views/ui_acd/{fdata.json.rabl → foreman_data.json.rabl} +1 -1
- data/config/routes.rb +32 -2
- data/db/migrate/20200916091018_create_ansible_playbooks.rb +20 -0
- data/db/migrate/20200917120220_add_ansible_playbook_id.rb +14 -0
- data/db/migrate/20201016002819_add_ansible_vars_all_to_app_definitions.rb +8 -0
- data/db/migrate/20201016104338_add_ansible_vars_all_to_app_instances.rb +8 -0
- data/db/migrate/20210112111548_add_organization_to_app_instance.rb +22 -0
- data/db/migrate/20210112113853_add_location_to_app_instance.rb +8 -0
- data/db/migrate/20210202141658_create_foreman_hosts.rb +24 -0
- data/db/migrate/20210204111306_remove_hosts_from_app_instances.rb +8 -0
- data/db/migrate/20210209091014_rename_acd_tables.rb +16 -0
- data/db/migrate/20210216083522_add_last_progress_report.rb +8 -0
- data/db/migrate/20210216091529_add_last_deploy_task.rb +8 -0
- data/db/migrate/20210316151145_add_git_commit_to_ansible_playbooks.rb +8 -0
- data/db/migrate/20210503122809_add_git_url_to_ansible_playbooks.rb +8 -0
- data/db/seeds.d/62_acd_proxy_feature.rb +4 -0
- data/db/seeds.d/75-job_templates.rb +13 -0
- data/lib/foreman_acd.rb +12 -0
- data/lib/foreman_acd/engine.rb +43 -3
- data/lib/foreman_acd/plugin.rb +88 -22
- data/lib/foreman_acd/version.rb +1 -1
- data/lib/tasks/foreman_acd_tasks.rake +0 -12
- data/locale/en/foreman_acd.edit.po +326 -0
- data/locale/en/foreman_acd.po +232 -2
- data/locale/en/foreman_acd.po.time_stamp +0 -0
- data/locale/foreman_acd.pot +343 -8
- data/package.json +9 -9
- data/test/controllers/ansible_playbooks_controller_test.rb +27 -0
- data/test/controllers/app_instances_controller_test.rb +8 -3
- data/test/controllers/ui_acd_controller_test.rb +22 -6
- data/test/factories/foreman_acd_factories.rb +18 -4
- data/test/models/acd_provider_test.rb +37 -0
- data/test/models/ansible_playbook_test.rb +11 -0
- data/test/models/app_definition_test.rb +1 -1
- data/test/models/app_instance_test.rb +2 -0
- data/test/models/concerns/host_extensions_test.rb +26 -0
- data/test/models/foreman_host_test.rb +12 -0
- data/webpack/__mocks__/foremanReact/API.js +2 -0
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +2 -0
- data/webpack/__mocks__/foremanReact/components/ForemanModal.js +7 -0
- data/webpack/__mocks__/foremanReact/components/common/forms/CommonForm.js +2 -0
- data/webpack/__mocks__/foremanReact/components/common/forms/TextInput.js +2 -0
- data/webpack/__mocks__/foremanReact/components/hosts/powerStatus.js +1 -0
- data/webpack/__snapshots__/helper.test.js.snap +14 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinition.js +159 -29
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionActions.js +106 -14
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionConstants.js +8 -2
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionHelper.js +26 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionReducer.js +143 -21
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionSelectors.js +3 -0
- data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionConfData_1.fixtures.js +288 -0
- data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionReducer.fixtures.js +79 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinition.test.js +25 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionReducer.test.js +119 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionSelectors.test.js +41 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinition.test.js.snap +200 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionReducer.test.js.snap +3033 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionSelectors.test.js.snap +299 -0
- data/webpack/components/ApplicationDefinition/components/AnsiblePlaybookSelector.js +50 -0
- data/webpack/components/ApplicationDefinition/components/__tests__/AnsiblePlaybookSelector.test.js +41 -0
- data/webpack/components/ApplicationDefinition/components/__tests__/__snapshots__/AnsiblePlaybookSelector.test.js.snap +121 -0
- data/webpack/components/ApplicationDefinition/index.js +6 -0
- data/webpack/components/ApplicationInstance/ApplicationInstance.js +151 -44
- data/webpack/components/ApplicationInstance/ApplicationInstanceActions.js +47 -10
- data/webpack/components/ApplicationInstance/ApplicationInstanceConstants.js +5 -2
- data/webpack/components/ApplicationInstance/ApplicationInstanceReducer.js +114 -28
- data/webpack/components/ApplicationInstance/ApplicationInstanceSelectors.js +3 -1
- data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceConfData_1.fixtures.js +263 -0
- data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceReducer.fixtures.js +78 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstance.test.js +23 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceReducer.test.js +119 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceSelectors.test.js +44 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstance.test.js.snap +209 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceReducer.test.js.snap +2719 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceSelectors.test.js.snap +276 -0
- data/webpack/components/ApplicationInstance/components/Service.js +1 -1
- data/webpack/components/ApplicationInstance/index.js +4 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.js +53 -60
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.scss +17 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportActions.js +7 -51
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportConstants.js +2 -4
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportReducer.js +4 -18
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportSelectors.js +0 -1
- data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportData_1.fixtures.js +349 -0
- data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportReducer.fixtures.js +20 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReport.test.js +47 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportReducer.test.js +41 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportSelectors.test.js +26 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReport.test.js.snap +130 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportReducer.test.js.snap +718 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportSelectors.test.js.snap +347 -0
- data/webpack/components/ApplicationInstanceReport/components/ReportViewer.js +1 -1
- data/webpack/components/ApplicationInstanceReport/components/__tests__/ReportViewer.test.js +24 -0
- data/webpack/components/ApplicationInstanceReport/components/__tests__/__snapshots__/ReportViewer.test.js.snap +24 -0
- data/webpack/components/ApplicationInstanceReport/index.js +0 -2
- data/webpack/components/ParameterSelection/ParameterSelection.js +85 -50
- data/webpack/components/ParameterSelection/ParameterSelectionActions.js +68 -62
- data/webpack/components/ParameterSelection/ParameterSelectionConstants.js +6 -3
- data/webpack/components/ParameterSelection/ParameterSelectionHelper.js +0 -32
- data/webpack/components/ParameterSelection/ParameterSelectionReducer.js +47 -35
- data/webpack/components/ParameterSelection/ParameterSelectionSelectors.js +2 -2
- data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionData_1.fixtures.js +116 -84
- data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionReducer.fixtures.js +10 -4
- data/webpack/components/ParameterSelection/__tests__/ParameterSelection.test.js +36 -46
- data/webpack/components/ParameterSelection/__tests__/ParameterSelectionReducer.test.js +31 -25
- data/webpack/components/ParameterSelection/__tests__/ParameterSelectionSelectors.test.js +6 -6
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelection.test.js.snap +2 -126
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionReducer.test.js.snap +1483 -872
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionSelectors.test.js.snap +117 -79
- data/webpack/components/ParameterSelection/index.js +4 -4
- data/webpack/components/SyncGitRepo/SyncGitRepo.js +210 -0
- data/webpack/components/SyncGitRepo/SyncGitRepo.scss +1 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoActions.js +124 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoConstants.js +9 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoReducer.js +80 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoSelectors.js +6 -0
- data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoConfData_1.fixtures.js +7 -0
- data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoReducer.fixtures.js +44 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepo.test.js +27 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoReducer.test.js +95 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoSelectors.test.js +32 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepo.test.js.snap +30 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoReducer.test.js.snap +137 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoSelectors.test.js.snap +13 -0
- data/webpack/components/SyncGitRepo/components/FormTextInput.js +42 -0
- data/webpack/components/SyncGitRepo/components/ScmTypeSelector.js +46 -0
- data/webpack/components/SyncGitRepo/index.js +28 -0
- data/webpack/components/common/DeleteTableEntry.js +3 -3
- data/webpack/components/common/EditTableEntry.js +50 -0
- data/webpack/components/common/ExtTextInput.js +43 -0
- data/webpack/components/common/LockTableEntry.js +60 -0
- data/webpack/components/common/__tests__/EditTableEntry.test.js +53 -0
- data/webpack/components/common/__tests__/LockTableEntry.test.js +35 -0
- data/webpack/components/common/__tests__/__snapshots__/DeleteTableEntry.test.js.snap +2 -2
- data/webpack/components/common/__tests__/__snapshots__/EditTableEntry.test.js.snap +81 -0
- data/webpack/components/common/__tests__/__snapshots__/LockTableEntry.test.js.snap +60 -0
- data/webpack/helper.js +15 -1
- data/webpack/helper.test.js +37 -0
- data/webpack/index.js +2 -0
- data/webpack/reducer.js +18 -11
- metadata +184 -10
- data/app/views/foreman_acd/app_instances/deploy.html.erb +0 -19
- data/webpack/components/common/__tests__/__snapshots__/AddParameter.test.js.snap +0 -35
- data/webpack/components/common/__tests__/__snapshots__/DeleteParameter.test.js.snap +0 -41
data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionData_1.fixtures.js
CHANGED
@@ -5,31 +5,51 @@ export const parameterSelectionData_1 = {
|
|
5
5
|
status: '',
|
6
6
|
statusText: ''
|
7
7
|
},
|
8
|
-
|
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: '
|
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:
|
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
|
-
|
62
|
+
paramDefinition: {
|
43
63
|
id: 1,
|
44
|
-
name: '
|
45
|
-
|
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: '
|
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
|
-
|
93
|
-
|
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: '
|
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
|
-
|
111
|
-
|
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
|
-
|
125
|
-
|
126
|
-
|
194
|
+
formatters: [
|
195
|
+
null
|
196
|
+
]
|
127
197
|
}
|
128
198
|
}
|
129
199
|
],
|
130
200
|
parameters: [
|
131
201
|
{
|
132
202
|
id: 1,
|
133
|
-
|
203
|
+
locked: false,
|
204
|
+
name: 'CP',
|
134
205
|
description: '',
|
135
|
-
type: '
|
136
|
-
value: '
|
206
|
+
type: 'computeprofile',
|
207
|
+
value: '1'
|
137
208
|
},
|
138
209
|
{
|
139
210
|
id: 2,
|
140
|
-
|
141
|
-
|
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: '
|
185
|
-
value: '
|
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
|
-
|
221
|
+
ip: 'IP',
|
222
|
+
ptable: 'Partition table',
|
223
|
+
puppetenv: 'Puppet environment',
|
224
|
+
password: 'Root password'
|
193
225
|
}
|
194
|
-
}
|
226
|
+
}
|
data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionReducer.fixtures.js
CHANGED
@@ -11,15 +11,21 @@ import {
|
|
11
11
|
|
12
12
|
export const successState = Immutable(parameterSelectionData_1);
|
13
13
|
|
14
|
-
const EDIT_ROW_ID =
|
14
|
+
const EDIT_ROW_ID = 2;
|
15
15
|
|
16
16
|
const editClone = parameterSelectionData_1;
|
17
17
|
const editIndex = findIndex(editClone.parameters, { id: EDIT_ROW_ID })
|
18
18
|
editClone["parameters"][editIndex].backup = cloneDeep(editClone["parameters"][editIndex]);
|
19
19
|
export const editState = Immutable(editClone);
|
20
20
|
|
21
|
+
// Payload Data
|
21
22
|
export const initParameterSelectionPayload = parameterSelectionData_1;
|
22
23
|
export const addParameterPayload = { };
|
24
|
+
export const lockParameterPayload = {
|
25
|
+
rowData: {
|
26
|
+
id: EDIT_ROW_ID,
|
27
|
+
},
|
28
|
+
};
|
23
29
|
export const deleteParameterPayload = {
|
24
30
|
rowData: {
|
25
31
|
id: EDIT_ROW_ID,
|
@@ -51,10 +57,10 @@ export const sortParameterPayload = {
|
|
51
57
|
selectedColumn: "type",
|
52
58
|
};
|
53
59
|
|
54
|
-
export const
|
60
|
+
export const loadParamDataRequestPayload = {
|
55
61
|
clearRows: false,
|
56
62
|
};
|
57
|
-
export const
|
63
|
+
export const loadParamDataSuccessPayload = {
|
58
64
|
hostgroup_id: 1,
|
59
65
|
environments: [
|
60
66
|
{
|
@@ -80,6 +86,6 @@ export const loadForemanDataSuccessPayload = {
|
|
80
86
|
}
|
81
87
|
]
|
82
88
|
};
|
83
|
-
export const
|
89
|
+
export const loadParamDataFailurePayload = {
|
84
90
|
error: "Something really bad happend",
|
85
91
|
};
|
@@ -3,65 +3,55 @@ import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
|
3
3
|
import ParameterSelection from '../ParameterSelection';
|
4
4
|
|
5
5
|
import {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
editInstance,
|
10
|
-
} from '../__fixtures__/parameterSelection.fixtures'
|
11
|
-
|
12
|
-
jest.mock('foremanReact/components/common/forms/Select');
|
6
|
+
PARAMETER_SELECTION_PARAM_TYPE_FOREMAN,
|
7
|
+
PARAMETER_SELECTION_PARAM_TYPE_ANSIBLE,
|
8
|
+
} from '../ParameterSelectionConstants';
|
13
9
|
|
14
10
|
const noop = () => {};
|
15
11
|
|
16
12
|
const fixtures = {
|
17
|
-
'should render
|
13
|
+
'should render foreman parameter selection': {
|
18
14
|
location: "Default Location",
|
19
15
|
organization: "Default Organization",
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
16
|
+
editModeCallback: noop,
|
17
|
+
paramDataUrl: "/acd/ui_acd_fdata/__id__",
|
18
|
+
paramType: PARAMETER_SELECTION_PARAM_TYPE_FOREMAN,
|
19
|
+
data: {
|
20
|
+
type: PARAMETER_SELECTION_PARAM_TYPE_FOREMAN,
|
21
|
+
parameters: [],
|
22
|
+
useDefaultValue: true,
|
23
|
+
allowRowAdjustment: true,
|
24
|
+
allowNameAdjustment: true,
|
25
|
+
allowDescriptionAdjustment: true,
|
26
|
+
},
|
26
27
|
addParameter: noop,
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
organization: "Default Organization",
|
32
|
-
loadForemanDataUrl: "/acd/ui_acd_fdata/__id__",
|
33
|
-
loading: false,
|
34
|
-
data: editDefinition,
|
35
|
-
error: { statusText: '', errorMsg: '' },
|
28
|
+
confirmEditParametre: noop,
|
29
|
+
cancelEditParameter: noop,
|
30
|
+
editModeCallback: noop,
|
31
|
+
loadParamData: noop,
|
36
32
|
initParameterSelection: noop,
|
37
|
-
loadForemanData: noop,
|
38
|
-
addParameter: noop,
|
39
|
-
deleteParameter: noop,
|
40
33
|
},
|
41
|
-
|
34
|
+
|
35
|
+
'should render ansible parameter selection': {
|
42
36
|
location: "Default Location",
|
43
37
|
organization: "Default Organization",
|
44
|
-
|
45
|
-
|
46
|
-
data:
|
47
|
-
|
48
|
-
|
49
|
-
|
38
|
+
editModeCallback: noop,
|
39
|
+
paramType: PARAMETER_SELECTION_PARAM_TYPE_ANSIBLE,
|
40
|
+
data: {
|
41
|
+
type: PARAMETER_SELECTION_PARAM_TYPE_ANSIBLE,
|
42
|
+
parameters: [],
|
43
|
+
useDefaultValue: false,
|
44
|
+
allowRowAdjustment: true,
|
45
|
+
allowNameAdjustment: true,
|
46
|
+
allowDescriptionAdjustment: true,
|
47
|
+
},
|
50
48
|
addParameter: noop,
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
organization: "Default Organization",
|
56
|
-
loading: false,
|
57
|
-
loadForemanDataUrl: "/acd/ui_acd_fdata/__id__",
|
58
|
-
data: editInstance,
|
59
|
-
error: { statusText: '', errorMsg: '' },
|
49
|
+
confirmEditParametre: noop,
|
50
|
+
cancelEditParameter: noop,
|
51
|
+
editModeCallback: noop,
|
52
|
+
loadParamData: noop,
|
60
53
|
initParameterSelection: noop,
|
61
|
-
|
62
|
-
addParameter: noop,
|
63
|
-
deleteParameter: noop,
|
64
|
-
},
|
54
|
+
}
|
65
55
|
};
|
66
56
|
|
67
57
|
describe('ParameterSelection', () =>
|
@@ -6,22 +6,21 @@ import {
|
|
6
6
|
editState,
|
7
7
|
initParameterSelectionPayload,
|
8
8
|
addParameterPayload,
|
9
|
+
lockParameterPayload,
|
9
10
|
deleteParameterPayload,
|
10
11
|
activateEditParameterPayload,
|
11
12
|
confirmEditParameterPayload,
|
12
13
|
cancelEditParameterPayload,
|
13
14
|
changeEditParameterPayload,
|
14
15
|
sortParameterPayload,
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
loadParameterSelectionRequestPayload,
|
19
|
-
loadParameterSelectionSuccessPayload,
|
20
|
-
loadParameterSelectionFailurePayload,
|
16
|
+
loadParamDataRequestPayload,
|
17
|
+
loadParamDataSuccessPayload,
|
18
|
+
loadParamDataFailurePayload,
|
21
19
|
} from '../__fixtures__/parameterSelectionReducer.fixtures';
|
22
20
|
|
23
21
|
import {
|
24
22
|
PARAMETER_SELECTION_INIT,
|
23
|
+
PARAMETER_SELECTION_LOCK,
|
25
24
|
PARAMETER_SELECTION_DELETE,
|
26
25
|
PARAMETER_SELECTION_ADD,
|
27
26
|
PARAMETER_SELECTION_EDIT_ACTIVATE,
|
@@ -29,9 +28,9 @@ import {
|
|
29
28
|
PARAMETER_SELECTION_EDIT_CHANGE,
|
30
29
|
PARAMETER_SELECTION_EDIT_CANCEL,
|
31
30
|
PARAMETER_SELECTION_SORT,
|
32
|
-
|
33
|
-
|
34
|
-
|
31
|
+
PARAMETER_SELECTION_LOAD_PARAM_DATA_REQUEST,
|
32
|
+
PARAMETER_SELECTION_LOAD_PARAM_DATA_SUCCESS,
|
33
|
+
PARAMETER_SELECTION_LOAD_PARAM_DATA_FAILURE,
|
35
34
|
} from '../ParameterSelectionConstants';
|
36
35
|
|
37
36
|
const fixtures = {
|
@@ -57,6 +56,13 @@ const fixtures = {
|
|
57
56
|
payload: addParameterPayload,
|
58
57
|
},
|
59
58
|
},
|
59
|
+
'should lock a parameter': {
|
60
|
+
state: successState,
|
61
|
+
action: {
|
62
|
+
type: PARAMETER_SELECTION_LOCK,
|
63
|
+
payload: lockParameterPayload,
|
64
|
+
},
|
65
|
+
},
|
60
66
|
'should delete a parameter': {
|
61
67
|
state: successState,
|
62
68
|
action: {
|
@@ -71,6 +77,13 @@ const fixtures = {
|
|
71
77
|
payload: activateEditParameterPayload,
|
72
78
|
},
|
73
79
|
},
|
80
|
+
'should change edit parameter': {
|
81
|
+
state: editState,
|
82
|
+
action: {
|
83
|
+
type: PARAMETER_SELECTION_EDIT_CHANGE,
|
84
|
+
payload: changeEditParameterPayload,
|
85
|
+
},
|
86
|
+
},
|
74
87
|
'should confirm edit parameter': {
|
75
88
|
state: editState,
|
76
89
|
action: {
|
@@ -85,13 +98,6 @@ const fixtures = {
|
|
85
98
|
payload: cancelEditParameterPayload,
|
86
99
|
},
|
87
100
|
},
|
88
|
-
'should change edit parameter': {
|
89
|
-
state: editState,
|
90
|
-
action: {
|
91
|
-
type: PARAMETER_SELECTION_EDIT_CHANGE,
|
92
|
-
payload: changeEditParameterPayload,
|
93
|
-
},
|
94
|
-
},
|
95
101
|
'should sort parameter': {
|
96
102
|
state: successState,
|
97
103
|
action: {
|
@@ -99,25 +105,25 @@ const fixtures = {
|
|
99
105
|
payload: sortParameterPayload,
|
100
106
|
},
|
101
107
|
},
|
102
|
-
'should request load
|
108
|
+
'should request load param data': {
|
103
109
|
state: successState,
|
104
110
|
action: {
|
105
|
-
type:
|
106
|
-
payload:
|
111
|
+
type: PARAMETER_SELECTION_LOAD_PARAM_DATA_REQUEST,
|
112
|
+
payload: loadParamDataRequestPayload,
|
107
113
|
},
|
108
114
|
},
|
109
|
-
'should load
|
115
|
+
'should load param data be successful': {
|
110
116
|
state: successState,
|
111
117
|
action: {
|
112
|
-
type:
|
113
|
-
payload:
|
118
|
+
type: PARAMETER_SELECTION_LOAD_PARAM_DATA_SUCCESS,
|
119
|
+
payload: loadParamDataSuccessPayload,
|
114
120
|
},
|
115
121
|
},
|
116
|
-
'should load
|
122
|
+
'should load param data be erroneous': {
|
117
123
|
state: successState,
|
118
124
|
action: {
|
119
|
-
type:
|
120
|
-
payload:
|
125
|
+
type: PARAMETER_SELECTION_LOAD_PARAM_DATA_FAILURE,
|
126
|
+
payload: loadParamDataFailurePayload,
|
121
127
|
},
|
122
128
|
},
|
123
129
|
};
|