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
@@ -0,0 +1 @@
|
|
1
|
+
@import '~@theforeman/vendor/scss/variables';
|
@@ -0,0 +1,124 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { API, actionTypeGenerator } from 'foremanReact/redux/API';
|
3
|
+
import { sprintf, translate as __ } from 'foremanReact/common/I18n';
|
4
|
+
import { addToast } from 'foremanReact/redux/actions/toasts';
|
5
|
+
|
6
|
+
import {
|
7
|
+
SYNC_GIT_REPO_INIT,
|
8
|
+
SYNC_GIT_REPO_LOAD_SCM_TYPE,
|
9
|
+
SYNC_GIT_REPO_LOAD_PATH,
|
10
|
+
SYNC_GIT_REPO_LOAD_GIT_COMMIT,
|
11
|
+
SYNC_GIT_REPO_LOAD_GIT_URL,
|
12
|
+
SYNC_GIT_REPO_REQUEST,
|
13
|
+
SYNC_GIT_REPO_FAILURE,
|
14
|
+
SYNC_GIT_REPO_SUCCESS,
|
15
|
+
SYNC_GIT_REPOSITORY,
|
16
|
+
} from './SyncGitRepoConstants';
|
17
|
+
|
18
|
+
export const initSyncGitRepo = (
|
19
|
+
scmType,
|
20
|
+
path,
|
21
|
+
gitCommit,
|
22
|
+
gitUrl,
|
23
|
+
) => dispatch => {
|
24
|
+
const initialState = {};
|
25
|
+
|
26
|
+
initialState.scmType = scmType;
|
27
|
+
initialState.path = path;
|
28
|
+
initialState.gitCommit = gitCommit;
|
29
|
+
initialState.gitUrl = gitUrl;
|
30
|
+
|
31
|
+
dispatch({
|
32
|
+
type: SYNC_GIT_REPO_INIT,
|
33
|
+
payload: initialState,
|
34
|
+
});
|
35
|
+
};
|
36
|
+
|
37
|
+
const errorHandler = (msg, err) => {
|
38
|
+
const error = {
|
39
|
+
errorMsg: 'Failed to fetch data from server.',
|
40
|
+
statusText: err,
|
41
|
+
};
|
42
|
+
return { type: msg, payload: { error } };
|
43
|
+
};
|
44
|
+
|
45
|
+
export const handleGitRepoSync = (
|
46
|
+
gitUrl, gitCommit, scmType, e,
|
47
|
+
) => async dispatch => {
|
48
|
+
e.preventDefault();
|
49
|
+
//const { REQUEST, SUCCESS, FAILURE } = actionTypeGenerator(SYNC_GIT_REPOSITORY);
|
50
|
+
dispatch({
|
51
|
+
type: SYNC_GIT_REPO_REQUEST,
|
52
|
+
payload: {
|
53
|
+
git_commit: gitCommit,
|
54
|
+
scm_type: scmType,
|
55
|
+
git_url: gitUrl,
|
56
|
+
}});
|
57
|
+
try {
|
58
|
+
const { data } = await API.post(
|
59
|
+
'/acd/ansible_playbooks/sync_git_repo', {"ansible_playbook": {"git_commit":gitCommit, "scm_type":scmType, "git_url":gitUrl}}
|
60
|
+
);
|
61
|
+
dispatch(
|
62
|
+
addToast({
|
63
|
+
type: 'success',
|
64
|
+
message: sprintf(
|
65
|
+
__('Sucessfully synced git repository ')
|
66
|
+
),
|
67
|
+
key: SYNC_GIT_REPO_SUCCESS,
|
68
|
+
})
|
69
|
+
);
|
70
|
+
return dispatch({
|
71
|
+
type: SYNC_GIT_REPO_SUCCESS,
|
72
|
+
payload: {
|
73
|
+
git_commit: gitCommit,
|
74
|
+
git_url: gitUrl,
|
75
|
+
scm_type: scmType,
|
76
|
+
},
|
77
|
+
response: data,
|
78
|
+
});
|
79
|
+
} catch (error) {
|
80
|
+
dispatch(
|
81
|
+
addToast({
|
82
|
+
type: 'error',
|
83
|
+
message: sprintf(__('Error occurred while syncing git repository: %s'), error.response.data.message),
|
84
|
+
key: SYNC_GIT_REPO_FAILURE,
|
85
|
+
})
|
86
|
+
);
|
87
|
+
return dispatch({
|
88
|
+
type: SYNC_GIT_REPO_FAILURE,
|
89
|
+
payload: {
|
90
|
+
error: error,
|
91
|
+
},
|
92
|
+
response: error,
|
93
|
+
});
|
94
|
+
}
|
95
|
+
};
|
96
|
+
|
97
|
+
|
98
|
+
export const loadScmType = (scmType) => {
|
99
|
+
return ({
|
100
|
+
type: SYNC_GIT_REPO_LOAD_SCM_TYPE,
|
101
|
+
scmType: scmType,
|
102
|
+
})
|
103
|
+
};
|
104
|
+
|
105
|
+
export const loadPath = (path) => {
|
106
|
+
return ({
|
107
|
+
type: SYNC_GIT_REPO_LOAD_PATH,
|
108
|
+
path: path,
|
109
|
+
})
|
110
|
+
};
|
111
|
+
|
112
|
+
export const loadGitCommit = (gitCommit) => {
|
113
|
+
return ({
|
114
|
+
type: SYNC_GIT_REPO_LOAD_GIT_COMMIT,
|
115
|
+
gitCommit: gitCommit,
|
116
|
+
})
|
117
|
+
};
|
118
|
+
|
119
|
+
export const loadGitUrl = (gitUrl) => {
|
120
|
+
return ({
|
121
|
+
type: SYNC_GIT_REPO_LOAD_GIT_URL,
|
122
|
+
gitUrl: gitUrl,
|
123
|
+
})
|
124
|
+
};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
export const SYNC_GIT_REPO_INIT = 'SYNC_GIT_REPO_INIT';
|
2
|
+
export const SYNC_GIT_REPO_LOAD_PATH = 'SYNC_GIT_REPO_LOAD_PATH';
|
3
|
+
export const SYNC_GIT_REPO_LOAD_SCM_TYPE = 'SYNC_GIT_REPO_LOAD_SCM_TYPE';
|
4
|
+
export const SYNC_GIT_REPO_LOAD_GIT_COMMIT = 'SYNC_GIT_REPO_LOAD_GIT_COMMIT';
|
5
|
+
export const SYNC_GIT_REPO_LOAD_GIT_URL = 'SYNC_GIT_REPO_LOAD_GIT_URL';
|
6
|
+
export const SYNC_GIT_REPO_REQUEST = 'SYNC_GIT_REPO_REQUEST';
|
7
|
+
export const SYNC_GIT_REPO_SUCCESS = 'SYNC_GIT_REPO_SUCCESS';
|
8
|
+
export const SYNC_GIT_REPO_FAILURE = 'SYNC_GIT_REPO_FAILURE';
|
9
|
+
export const SYNC_GIT_REPOSITORY = 'ANSIBLE_PLAYBOOK_SYNC_GIT_REPOSITORY';
|
@@ -0,0 +1,80 @@
|
|
1
|
+
import Immutable from 'seamless-immutable';
|
2
|
+
|
3
|
+
import {
|
4
|
+
SYNC_GIT_REPO_INIT,
|
5
|
+
SYNC_GIT_REPO_LOAD_SCM_TYPE,
|
6
|
+
SYNC_GIT_REPO_LOAD_PATH,
|
7
|
+
SYNC_GIT_REPO_LOAD_GIT_COMMIT,
|
8
|
+
SYNC_GIT_REPO_LOAD_GIT_URL,
|
9
|
+
SYNC_GIT_REPO_FAILURE,
|
10
|
+
SYNC_GIT_REPO_REQUEST,
|
11
|
+
SYNC_GIT_REPO_SUCCESS,
|
12
|
+
} from './SyncGitRepoConstants';
|
13
|
+
|
14
|
+
export const initialState = Immutable({
|
15
|
+
loading: false,
|
16
|
+
});
|
17
|
+
|
18
|
+
const syncGitRepoConf = (state = initialState, action) => {
|
19
|
+
const { payload } = action;
|
20
|
+
|
21
|
+
switch (action.type) {
|
22
|
+
case SYNC_GIT_REPO_INIT: {
|
23
|
+
return state.merge(payload);
|
24
|
+
}
|
25
|
+
case SYNC_GIT_REPO_LOAD_SCM_TYPE: {
|
26
|
+
let newState = {};
|
27
|
+
const scmType = action.scmType;
|
28
|
+
|
29
|
+
newState = {
|
30
|
+
scmType: scmType,
|
31
|
+
};
|
32
|
+
|
33
|
+
return state.merge(newState);
|
34
|
+
}
|
35
|
+
case SYNC_GIT_REPO_LOAD_PATH: {
|
36
|
+
let newState = {};
|
37
|
+
const path = action.path;
|
38
|
+
|
39
|
+
newState = {
|
40
|
+
path: path,
|
41
|
+
};
|
42
|
+
|
43
|
+
return state.merge(newState);
|
44
|
+
}
|
45
|
+
case SYNC_GIT_REPO_LOAD_GIT_COMMIT: {
|
46
|
+
let newState = {};
|
47
|
+
const gitCommit = action.gitCommit;
|
48
|
+
|
49
|
+
newState = {
|
50
|
+
gitCommit: gitCommit,
|
51
|
+
};
|
52
|
+
|
53
|
+
return state.merge(newState);
|
54
|
+
}
|
55
|
+
case SYNC_GIT_REPO_LOAD_GIT_URL: {
|
56
|
+
let newState = {};
|
57
|
+
const gitUrl = action.gitUrl;
|
58
|
+
|
59
|
+
newState = {
|
60
|
+
gitUrl: gitUrl,
|
61
|
+
};
|
62
|
+
|
63
|
+
return state.merge(newState);
|
64
|
+
}
|
65
|
+
case SYNC_GIT_REPO_FAILURE: {
|
66
|
+
return state.merge({ error: payload.error, loading: false });
|
67
|
+
}
|
68
|
+
case SYNC_GIT_REPO_REQUEST: {
|
69
|
+
return state.set('loading', true);
|
70
|
+
}
|
71
|
+
case SYNC_GIT_REPO_SUCCESS: {
|
72
|
+
let newState = {};
|
73
|
+
return state.merge(newState);
|
74
|
+
}
|
75
|
+
default:
|
76
|
+
return state;
|
77
|
+
}
|
78
|
+
};
|
79
|
+
|
80
|
+
export default syncGitRepoConf;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
const syncGitRepoConf = state => state.foremanAcd.syncGitRepoConf;
|
2
|
+
|
3
|
+
export const selectScmType = state => syncGitRepoConf(state).scmType;
|
4
|
+
export const selectPath = state => syncGitRepoConf(state).path;
|
5
|
+
export const selectGitCommit = state => syncGitRepoConf(state).gitCommit;
|
6
|
+
export const selectGitUrl = state => syncGitRepoConf(state).gitUrl;
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import Immutable from 'seamless-immutable';
|
2
|
+
import {
|
3
|
+
cloneDeep,
|
4
|
+
findIndex,
|
5
|
+
findLastIndex,
|
6
|
+
} from 'lodash';
|
7
|
+
|
8
|
+
import {
|
9
|
+
syncGitRepoConfData_1,
|
10
|
+
} from '../__fixtures__/syncGitRepoConfData_1.fixtures';
|
11
|
+
|
12
|
+
export const successState = Immutable(syncGitRepoConfData_1);
|
13
|
+
|
14
|
+
// Payload Data
|
15
|
+
export const initSyncGitRepoPayload = syncGitRepoConfData_1;
|
16
|
+
|
17
|
+
export const loadPathPayload = {
|
18
|
+
path: 'https://example.com'
|
19
|
+
};
|
20
|
+
|
21
|
+
export const loadGitCommitPayload = {
|
22
|
+
gitCommit: 'master'
|
23
|
+
};
|
24
|
+
|
25
|
+
export const loadGitUrlPayload = {
|
26
|
+
gitUrl: 'https://github.com/alpha.git'
|
27
|
+
};
|
28
|
+
|
29
|
+
export const loadScmTypePayload = {
|
30
|
+
scmType: {
|
31
|
+
git: "git",
|
32
|
+
}
|
33
|
+
};
|
34
|
+
|
35
|
+
export const handleGitRepoSyncRequestPayload = {
|
36
|
+
clearRows: false,
|
37
|
+
};
|
38
|
+
|
39
|
+
export const handleGitRepoSyncSuccessPayload = {
|
40
|
+
};
|
41
|
+
|
42
|
+
export const handleGitRepoSyncFailurePayload = {
|
43
|
+
error: "Something really bad happend",
|
44
|
+
};
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { testComponentSnapshotsWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import SyncGitRepo from '../SyncGitRepo';
|
4
|
+
|
5
|
+
const noop = () => {};
|
6
|
+
|
7
|
+
const fixtures = {
|
8
|
+
'should render ansible playbook': {
|
9
|
+
data: {
|
10
|
+
scmType: "",
|
11
|
+
path: "",
|
12
|
+
gitCommit: "",
|
13
|
+
appDefinitions: "",
|
14
|
+
gitUrl: "",
|
15
|
+
scmTypes: {},
|
16
|
+
},
|
17
|
+
initSyncGitRepo: noop,
|
18
|
+
loadScmType: noop,
|
19
|
+
loadPath: noop,
|
20
|
+
loadGitCommit: noop,
|
21
|
+
loadGitUrl: noop,
|
22
|
+
handleGitRepoSync: noop,
|
23
|
+
},
|
24
|
+
};
|
25
|
+
|
26
|
+
describe('SyncGitRepo', () =>
|
27
|
+
testComponentSnapshotsWithFixtures(SyncGitRepo, fixtures));
|
@@ -0,0 +1,95 @@
|
|
1
|
+
import { testReducerSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
import reducer, { initialState } from '../SyncGitRepoReducer';
|
3
|
+
|
4
|
+
import {
|
5
|
+
successState,
|
6
|
+
initSyncGitRepoPayload,
|
7
|
+
loadPathPayload,
|
8
|
+
loadGitCommitPayload,
|
9
|
+
loadScmTypePayload,
|
10
|
+
loadGitUrlPayload,
|
11
|
+
handleGitRepoSyncRequestPayload,
|
12
|
+
handleGitRepoSyncSuccessPayload,
|
13
|
+
handleGitRepoSyncFailurePayload,
|
14
|
+
} from '../__fixtures__/syncGitRepoReducer.fixtures';
|
15
|
+
|
16
|
+
import {
|
17
|
+
SYNC_GIT_REPO_INIT,
|
18
|
+
SYNC_GIT_REPO_LOAD_SCM_TYPE,
|
19
|
+
SYNC_GIT_REPO_LOAD_PATH,
|
20
|
+
SYNC_GIT_REPO_LOAD_GIT_COMMIT,
|
21
|
+
SYNC_GIT_REPO_LOAD_GIT_URL,
|
22
|
+
SYNC_GIT_REPO_REQUEST,
|
23
|
+
SYNC_GIT_REPO_FAILURE,
|
24
|
+
SYNC_GIT_REPO_SUCCESS,
|
25
|
+
} from '../SyncGitRepoConstants';
|
26
|
+
|
27
|
+
const fixtures = {
|
28
|
+
'should return initial state': {
|
29
|
+
state: initialState,
|
30
|
+
action: {
|
31
|
+
type: undefined,
|
32
|
+
payload: {},
|
33
|
+
},
|
34
|
+
},
|
35
|
+
|
36
|
+
'should initialize component': {
|
37
|
+
state: initialState,
|
38
|
+
action: {
|
39
|
+
type: SYNC_GIT_REPO_INIT,
|
40
|
+
payload: initSyncGitRepoPayload,
|
41
|
+
},
|
42
|
+
},
|
43
|
+
'should load path': {
|
44
|
+
state: successState,
|
45
|
+
action: {
|
46
|
+
type: SYNC_GIT_REPO_LOAD_PATH,
|
47
|
+
path: loadPathPayload,
|
48
|
+
},
|
49
|
+
},
|
50
|
+
'should load git commit': {
|
51
|
+
state: successState,
|
52
|
+
action: {
|
53
|
+
type: SYNC_GIT_REPO_LOAD_GIT_COMMIT,
|
54
|
+
gitCommit: loadGitCommitPayload,
|
55
|
+
},
|
56
|
+
},
|
57
|
+
'should load git url': {
|
58
|
+
state: successState,
|
59
|
+
action: {
|
60
|
+
type: SYNC_GIT_REPO_LOAD_GIT_URL,
|
61
|
+
gitCommit: loadGitUrlPayload,
|
62
|
+
},
|
63
|
+
},
|
64
|
+
'should load scm_type': {
|
65
|
+
state: successState,
|
66
|
+
action: {
|
67
|
+
type: SYNC_GIT_REPO_LOAD_SCM_TYPE,
|
68
|
+
scmType: loadScmTypePayload,
|
69
|
+
},
|
70
|
+
},
|
71
|
+
'should request handle git repo sync': {
|
72
|
+
state: successState,
|
73
|
+
action: {
|
74
|
+
type: SYNC_GIT_REPO_REQUEST,
|
75
|
+
payload: handleGitRepoSyncRequestPayload,
|
76
|
+
},
|
77
|
+
},
|
78
|
+
'should handle git repo sync be successful': {
|
79
|
+
state: successState,
|
80
|
+
action: {
|
81
|
+
type: SYNC_GIT_REPO_SUCCESS,
|
82
|
+
payload: handleGitRepoSyncSuccessPayload,
|
83
|
+
},
|
84
|
+
},
|
85
|
+
'should handle git repo sync be erroneous': {
|
86
|
+
state: successState,
|
87
|
+
action: {
|
88
|
+
type: SYNC_GIT_REPO_FAILURE,
|
89
|
+
payload: handleGitRepoSyncFailurePayload,
|
90
|
+
},
|
91
|
+
},
|
92
|
+
};
|
93
|
+
|
94
|
+
describe('SyncGitRepoReducer', () =>
|
95
|
+
testReducerSnapshotWithFixtures(reducer, fixtures));
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { testSelectorsSnapshotWithFixtures } from 'react-redux-test-utils';
|
2
|
+
|
3
|
+
import {
|
4
|
+
selectScmType,
|
5
|
+
selectPath,
|
6
|
+
selectGitCommit,
|
7
|
+
selectGitUrl,
|
8
|
+
} from '../SyncGitRepoSelectors';
|
9
|
+
|
10
|
+
import {
|
11
|
+
syncGitRepoConfData_1,
|
12
|
+
} from '../__fixtures__/syncGitRepoConfData_1.fixtures';
|
13
|
+
|
14
|
+
const stateFactory = obj => ({
|
15
|
+
foremanAcd: {
|
16
|
+
syncGitRepoConf: obj,
|
17
|
+
},
|
18
|
+
});
|
19
|
+
|
20
|
+
const fixtures = {
|
21
|
+
'should return scmType from syncGitRepoConfData_1 fixtures': () =>
|
22
|
+
selectScmType(stateFactory(syncGitRepoConfData_1)),
|
23
|
+
'should return path from syncGitRepoConfData_1 fixtures': () =>
|
24
|
+
selectPath(stateFactory(syncGitRepoConfData_1)),
|
25
|
+
'should return gitCommit from syncGitRepoConfData_1 fixtures': () =>
|
26
|
+
selectGitCommit(stateFactory(syncGitRepoConfData_1)),
|
27
|
+
'should return gitUrl from syncGitRepoConfData_1 fixtures': () =>
|
28
|
+
selectGitUrl(stateFactory(syncGitRepoConfData_1)),
|
29
|
+
};
|
30
|
+
|
31
|
+
describe('SyncGitRepoSelectors', () =>
|
32
|
+
testSelectorsSnapshotWithFixtures(fixtures));
|
@@ -0,0 +1,30 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`SyncGitRepo should render ansible playbook 1`] = `
|
4
|
+
<span>
|
5
|
+
<div>
|
6
|
+
<ScmTypeSelector
|
7
|
+
editable={true}
|
8
|
+
label="SCM Type *"
|
9
|
+
onChange={[Function]}
|
10
|
+
options={Object {}}
|
11
|
+
selectValue=""
|
12
|
+
/>
|
13
|
+
<div />
|
14
|
+
<div
|
15
|
+
className="form-group"
|
16
|
+
>
|
17
|
+
<div
|
18
|
+
className="col-md-2"
|
19
|
+
/>
|
20
|
+
<div
|
21
|
+
className="col-md-4"
|
22
|
+
>
|
23
|
+
<pre>
|
24
|
+
SCM Type cannot be blank
|
25
|
+
</pre>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</span>
|
30
|
+
`;
|