blob: 9bfa0db3e785ad64adbb77f641212c154ff421fa [file] [log] [blame]
vnaumov33747e12020-05-04 17:35:20 +02001package com.mirantis.mk
vnaumov33747e12020-05-04 17:35:20 +02002
3/**
4 *
5 * KaaS Component Testing Utilities
6 *
7 */
8
9
10/**
azvyagintseva12230a2020-06-05 13:24:06 +030011 * Determine scope of test suite against per-commit KaaS deployment based on keywords
12 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#50
13 *
14 * Used for components team to combine test-suites and forward desired parameters to kaas/core deployment jobs
15 * Example scheme:
16 * New CR pushed in kubernetes/lcm-ansible -> parsing it's commit body and combine test-suite -> trigger deployment jobs from kaas/core
17 * manage test-suite through Jenkins Job Parameters
18 *
Владислав Наумов6c2afff2020-06-05 12:54:53 +020019 * @return (map)[
20 * deployChildEnabled: (bool) True if need to deploy child cluster during demo-run
21 * runUie2eEnabled: (bool) True if need to run ui-e2e cluster during demo-run
azvyagintseva12230a2020-06-05 13:24:06 +030022 * ]
23 */
vnaumov33747e12020-05-04 17:35:20 +020024def checkDeploymentTestSuite() {
vnaumovbdb90222020-05-04 18:25:50 +020025 def common = new com.mirantis.mk.Common()
26
vnaumov33747e12020-05-04 17:35:20 +020027 // Available triggers and its sane defaults
Владислав Наумов6c2afff2020-06-05 12:54:53 +020028 def deployChild = env.DEPLOY_CHILD_CLUSTER ? env.DEPLOY_CHILD_CLUSTER.toBoolean() : false
29 def upgradeChild = env.UPGRADE_CHILD_CLUSTER ? env.UPGRADE_CHILD_CLUSTER.toBoolean() : false
30 def upgradeMgmt = env.UPGRADE_MGMT_CLUSTER ? env.UPGRADE_MGMT_CLUSTER.toBoolean() : false
31 def runUie2e = env.RUN_UI_E2E ? env.RUN_UI_E2E.toBoolean() : false
32 def runMgmtConformance = env.RUN_MGMT_CFM ? env.RUN_MGMT_CFM.toBoolean() : false
33 def runChildConformance = env.RUN_CHILD_CFM ? env.RUN_CHILD_CFM.toBoolean() : false
34 def fetchServiceBinaries = env.FETCH_BINARIES_FROM_UPSTREAM ? env.FETCH_BINARIES_FROM_UPSTREAM.toBoolean() : false
Владислав Наумов905dd362020-06-08 16:37:01 +020035 def awsOnDemandDemo = env.ALLOW_AWS_ON_DEMAND ? env.ALLOW_AWS_ON_DEMAND.toBoolean() : false
vnaumov33747e12020-05-04 17:35:20 +020036
Владислав Наумов6c2afff2020-06-05 12:54:53 +020037 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
vnaumov33747e12020-05-04 17:35:20 +020038 if (commitMsg ==~ /(?s).*\[child-deploy\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-deploy.*/ || upgradeChild || runChildConformance) {
39 deployChild = true
40 }
41 if (commitMsg ==~ /(?s).*\[child-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-upgrade.*/) {
42 deployChild = true
43 upgradeChild = true
44 }
45 if (commitMsg ==~ /(?s).*\[mgmt-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-upgrade.*/) {
46 upgradeMgmt = true
47 }
48 if (commitMsg ==~ /(?s).*\[ui-e2e\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*ui-e2e.*/) {
49 runUie2e = true
50 }
51 if (commitMsg ==~ /(?s).*\[mgmt-cfm\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-cfm.*/) {
52 runMgmtConformance = true
53 }
54 if (commitMsg ==~ /(?s).*\[child-cfm\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-cfm.*/) {
55 runChildConformance = true
56 deployChild = true
57 }
58 if (commitMsg ==~ /(?s).*\[fetch.*binaries\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*fetch.*binaries.*/) {
59 fetchServiceBinaries = true
60 }
61 if (commitMsg ==~ /(?s).*\[aws-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*aws-demo.*/) {
62 awsOnDemandDemo = true
63 common.warningMsg('Forced running additional kaas deployment with AWS provider, triggered on patchset using custom keyword: \'aws-demo\' ')
64 }
65
66 // TODO (vnaumov) remove below condition after moving all releases to UCP
67 def ucpChildMatches = (commitMsg =~ /(\[child-ucp\s*ucp-.*?\])/)
68 if (ucpChildMatches.size() > 0) {
69 deployChild = true
70 common.warningMsg('Forced UCP based child deployment triggered on patchset using custom keyword: \'[child-ucp ucp-5-1-0-3-3-0-example]\' ')
71
72 // TODO(vnaumov) delete after ucp upgrades support
73 common.errorMsg('Child upgrade test will be skipped, UCP upgrades temporally disabled')
74 upgradeChild = false
75 }
76
77 common.infoMsg("""
78 Child cluster deployment scheduled: ${deployChild}
79 Child cluster release upgrade scheduled: ${upgradeChild}
80 Child conformance testing scheduled: ${runChildConformance}
81 Mgmt cluster release upgrade scheduled: ${upgradeMgmt}
82 Mgmt conformance testing scheduled: ${runMgmtConformance}
83 Mgmt UI e2e testing scheduled: ${runUie2e}
84 AWS provider additional deployment scheduled: ${awsOnDemandDemo}
85 Service binaries fetching scheduled: ${fetchServiceBinaries}
86 Triggers: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#50""")
87 return [
azvyagintseva12230a2020-06-05 13:24:06 +030088 deployChildEnabled : deployChild,
89 upgradeChildEnabled : upgradeChild,
90 runChildConformanceEnabled : runChildConformance,
91 upgradeMgmtEnabled : upgradeMgmt,
92 runUie2eEnabled : runUie2e,
93 runMgmtConformanceEnabled : runMgmtConformance,
vnaumov33747e12020-05-04 17:35:20 +020094 fetchServiceBinariesEnabled: fetchServiceBinaries,
azvyagintseva12230a2020-06-05 13:24:06 +030095 awsOnDemandDemoEnabled : awsOnDemandDemo]
vnaumov33747e12020-05-04 17:35:20 +020096}
97
98/**
99 * Determine if custom si tests/pipelines refspec forwarded from gerrit change request
100
101 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#59
102 * Used for components team to test component changes w/ custom SI refspecs using kaas/core deployment jobs
103 * Example scheme:
104 * New CR pushed in kubernetes/lcm-ansible -> parsing it's commit body and get custom test refspecs -> trigger deployment jobs from kaas/core
105 * manage refspecs through Jenkins Job Parameters
106 *
azvyagintseva12230a2020-06-05 13:24:06 +0300107 * @return (map)[* siTests: (string) final refspec for si-tests
vnaumov33747e12020-05-04 17:35:20 +0200108 * siPipelines: (string) final refspec for si-pipelines
109 * ]
110 */
111def checkCustomSIRefspec() {
vnaumovbdb90222020-05-04 18:25:50 +0200112 def common = new com.mirantis.mk.Common()
113
vnaumov33747e12020-05-04 17:35:20 +0200114 // Available triggers and its sane defaults
Владислав Наумов6c2afff2020-06-05 12:54:53 +0200115 def siTestsRefspec = env.SI_TESTS_REFSPEC ?: 'master'
116 def siPipelinesRefspec = env.SI_PIPELINES_REFSPEC ?: 'master'
117 def siTestsDockerImage = env.SI_TESTS_DOCKER_IMAGE ?: 'docker-dev-kaas-local.docker.mirantis.net/mirantis/kaas/si-test:master'
118 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
vnaumov33747e12020-05-04 17:35:20 +0200119
120 def siTestMatches = (commitMsg =~ /(\[si-tests-ref\s*refs\/changes\/.*?\])/)
121 def siPipelinesMatches = (commitMsg =~ /(\[si-pipelines-ref\s*refs\/changes\/.*?\])/)
122
123 if (siTestMatches.size() > 0) {
124 siTestsRefspec = siTestMatches[0][0].split('si-tests-ref')[1].replaceAll('[\\[\\]]', '').trim()
azvyagintseva12230a2020-06-05 13:24:06 +0300125 siTestsDockerImage = "docker-dev-local.docker.mirantis.net/review/" +
126 "kaas-si-test-${siTestsRefspec.split('/')[-2]}:${siTestsRefspec.split('/')[-1]}"
vnaumov33747e12020-05-04 17:35:20 +0200127 }
128 if (siPipelinesMatches.size() > 0) {
129 siPipelinesRefspec = siPipelinesMatches[0][0].split('si-pipelines-ref')[1].replaceAll('[\\[\\]]', '').trim()
130 }
131
132 common.infoMsg("""
133 kaas/si-pipelines will be fetched from: ${siPipelinesRefspec}
134 kaas/si-tests will be fetched from: ${siTestsRefspec}
azvyagintseva12230a2020-06-05 13:24:06 +0300135 kaas/si-tests as dockerImage will be fetched from: ${siTestsDockerImage}
vnaumov33747e12020-05-04 17:35:20 +0200136 Keywords: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#59""")
azvyagintseva12230a2020-06-05 13:24:06 +0300137 return [siTests: siTestsRefspec, siPipelines: siPipelinesRefspec, siTestsDockerImage: siTestsDockerImage]
vnaumov33747e12020-05-04 17:35:20 +0200138}
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200139
Владислав Наумов9080f372020-06-08 13:57:16 +0200140/**
141 * Determine if custom kaas core/pipelines refspec forwarded from gerrit change request
142
143 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#59
144 * Used for components team to test component changes w/ custom Core refspecs using kaas/core deployment jobs
145 * Example scheme:
146 * New CR pushed in kubernetes/lcm-ansible -> parsing it's commit body and get custom test refspecs -> trigger deployment jobs from kaas/core
147 * manage refspecs through Jenkins Job Parameters
148 *
149 * @return (map)[ core: (string) final refspec for kaas/core
150 * corePipelines: (string) final refspec for pipelines in kaas/core
151 * ]
152 */
153def checkCustomCoreRefspec() {
154 def common = new com.mirantis.mk.Common()
155
156 // Available triggers and its sane defaults
157 def coreRefspec = env.KAAS_CORE_REFSPEC ?: 'master'
158 // by default using value of GERRIT_REFSPEC parameter in *kaas/core jobs*
159 def corePipelinesRefspec = env.KAAS_PIPELINE_REFSPEC ?: '\$GERRIT_REFSPEC'
160 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
161
162 def coreMatches = (commitMsg =~ /(\[core-ref\s*refs\/changes\/.*?\])/)
163 def corePipelinesMatches = (commitMsg =~ /(\[core-pipelines-ref\s*refs\/changes\/.*?\])/)
164
165 if (coreMatches.size() > 0) {
166 coreRefspec = coreMatches[0][0].split('core-ref')[1].replaceAll('[\\[\\]]', '').trim()
167 }
168 if (corePipelinesMatches.size() > 0) {
169 corePipelinesRefspec = corePipelinesMatches[0][0].split('core-pipelines-ref')[1].replaceAll('[\\[\\]]', '').trim()
170 }
171
172 common.infoMsg("""
173 kaas/core will be fetched from: ${coreRefspec}
174 kaas/core pipelines will be fetched from: ${corePipelinesRefspec}
175 Keywords: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#59""")
176 return [core: coreRefspec, corePipelines: corePipelinesRefspec]
177}
178
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200179
180/**
181 * Trigger KaaS demo jobs based on AWS/OS providers with customized test suite, parsed from external sources (gerrit commit/jj vars)
182 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template
183 * Used for components team to test component changes w/ customized SI tests/refspecs using kaas/core deployment jobs
184 *
185 * @param: (string) component name [iam, lcm, stacklight]
186 * @param: (string) Patch for kaas/cluster releases in json format
187 */
188def triggerPatchedComponentDemo(component, patchSpec) {
189 def common = new com.mirantis.mk.Common()
190 // Determine if custom trigger keywords forwarded from gerrit
191 def triggers = checkDeploymentTestSuite()
192 // Determine SI refspecs
193 def siRefspec = checkCustomSIRefspec()
Владислав Наумов9080f372020-06-08 13:57:16 +0200194 // Determine Core refspecs
195 def coreRefspec = checkCustomCoreRefspec()
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200196
197 def jobs = [:]
198 // TODO manage SI_TESTS_FEATURE_FLAGS through checkCustomSIRefspec()
199 //string(name: "SI_TESTS_FEATURE_FLAGS", value: env.SI_TESTS_FEATURE_FLAGS),
200 def parameters = [
Владислав Наумов9080f372020-06-08 13:57:16 +0200201 string(name: 'GERRIT_REFSPEC', value: coreRefspec.core),
202 string(name: 'KAAS_PIPELINE_REFSPEC', value: coreRefspec.corePipelines),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200203 string(name: 'SI_TESTS_REFSPEC', value: siRefspec.siTests),
Владислав Наумов4a5c3242020-06-08 14:36:11 +0200204 string(name: 'SI_PIPELINES_REFSPEC', value: siRefspec.siPipelines),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200205 string(name: 'CUSTOM_RELEASE_PATCH_SPEC', value: patchSpec),
206 booleanParam(name: 'UPGRADE_MGMT', value: triggers.upgradeMgmtEnabled),
207 booleanParam(name: 'RUN_UI_E2E', value: triggers.runUie2eEnabled),
208 booleanParam(name: 'RUN_MGMT_CONFORMANCE', value: triggers.runMgmtConformanceEnabled),
209 booleanParam(name: 'DEPLOY_CHILD', value: triggers.deployChildEnabled),
210 booleanParam(name: 'UPGRADE_CHILD', value: triggers.upgradeChildEnabled),
211 booleanParam(name: 'RUN_CHILD_CONFORMANCE', value: triggers.runChildConformanceEnabled),
Владислав Наумов905dd362020-06-08 16:37:01 +0200212 booleanParam(name: 'ALLOW_AWS_ON_DEMAND', value: triggers.awsOnDemandDemoEnabled),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200213 ]
214
215 jobs["kaas-core-openstack-patched-${component}"] = {
216 try {
217 common.infoMsg('Deploy: patched KaaS demo with Openstack provider')
Владислав Наумов4a5c3242020-06-08 14:36:11 +0200218 job_info = build job: "kaas-testing-core-openstack-workflow-${component}", parameters: parameters, wait: true
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200219 build_description = job_info.getDescription()
220 if (build_description) {
221 currentBuild.description += build_description
222 }
223 } finally {
224 common.infoMsg('Finished: patched KaaS demo with Openstack provider')
225 }
226 }
227 if (triggers.awsOnDemandDemoEnabled) {
228 jobs["kaas-core-aws-patched-${component}"] = {
229 try {
230 common.infoMsg('Deploy: patched KaaS demo with AWS provider')
Владислав Наумов4a5c3242020-06-08 14:36:11 +0200231 job_info = build job: "kaas-testing-core-aws-workflow-${component}", parameters: parameters, wait: true
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200232 build_description = job_info.getDescription()
233 if (build_description) {
234 currentBuild.description += build_description
235 }
236 } finally {
237 common.infoMsg('Finished: patched KaaS demo with AWS provider')
238 }
239 }
240 }
241
242 common.infoMsg('Trigger KaaS demo deployments according to defined provider set')
243 // Limit build concurency workaround examples: https://issues.jenkins-ci.org/browse/JENKINS-44085
244 parallel jobs
245}