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 @@
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,7 @@
1
+ export const syncGitRepoConfData_1 = {
2
+ path: 'https://example.com',
3
+ gitCommit: 'master',
4
+ scmType: { git: "git" },
5
+ scmTypes: { git: "git", directory: "directory"},
6
+ gitUrl: 'https://github.com/alpha.git'
7
+ }
@@ -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
+ `;