blob: 6810a57d1ad9275c7a56c329cc27dbbe87e065ab [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
35 def awsOnDemandDemo = env.RUN_AWS_ON_DEMAND_DEMO ? env.RUN_AWS_ON_DEMAND_DEMO.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
140
141/**
142 * Trigger KaaS demo jobs based on AWS/OS providers with customized test suite, parsed from external sources (gerrit commit/jj vars)
143 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template
144 * Used for components team to test component changes w/ customized SI tests/refspecs using kaas/core deployment jobs
145 *
146 * @param: (string) component name [iam, lcm, stacklight]
147 * @param: (string) Patch for kaas/cluster releases in json format
148 */
149def triggerPatchedComponentDemo(component, patchSpec) {
150 def common = new com.mirantis.mk.Common()
151 // Determine if custom trigger keywords forwarded from gerrit
152 def triggers = checkDeploymentTestSuite()
153 // Determine SI refspecs
154 def siRefspec = checkCustomSIRefspec()
155
156 def jobs = [:]
157 // TODO manage SI_TESTS_FEATURE_FLAGS through checkCustomSIRefspec()
158 //string(name: "SI_TESTS_FEATURE_FLAGS", value: env.SI_TESTS_FEATURE_FLAGS),
159 def parameters = [
160 string(name: 'SI_TESTS_REFSPEC', value: siRefspec.siTests),
161 string(name: 'SI_PIPELINES_REFSPEC', value: siRefspec.siTests),
162 string(name: 'CUSTOM_RELEASE_PATCH_SPEC', value: patchSpec),
163 booleanParam(name: 'UPGRADE_MGMT', value: triggers.upgradeMgmtEnabled),
164 booleanParam(name: 'RUN_UI_E2E', value: triggers.runUie2eEnabled),
165 booleanParam(name: 'RUN_MGMT_CONFORMANCE', value: triggers.runMgmtConformanceEnabled),
166 booleanParam(name: 'DEPLOY_CHILD', value: triggers.deployChildEnabled),
167 booleanParam(name: 'UPGRADE_CHILD', value: triggers.upgradeChildEnabled),
168 booleanParam(name: 'RUN_CHILD_CONFORMANCE', value: triggers.runChildConformanceEnabled),
169 ]
170
171 jobs["kaas-core-openstack-patched-${component}"] = {
172 try {
173 common.infoMsg('Deploy: patched KaaS demo with Openstack provider')
174 job_info = build job: "kaas-testing-core-openstack-workflow-${component}", parameters: parameters
175 build_description = job_info.getDescription()
176 if (build_description) {
177 currentBuild.description += build_description
178 }
179 } finally {
180 common.infoMsg('Finished: patched KaaS demo with Openstack provider')
181 }
182 }
183 if (triggers.awsOnDemandDemoEnabled) {
184 jobs["kaas-core-aws-patched-${component}"] = {
185 try {
186 common.infoMsg('Deploy: patched KaaS demo with AWS provider')
187 job_info = build job: "kaas-testing-core-aws-workflow-${component}", parameters: parameters
188 build_description = job_info.getDescription()
189 if (build_description) {
190 currentBuild.description += build_description
191 }
192 } finally {
193 common.infoMsg('Finished: patched KaaS demo with AWS provider')
194 }
195 }
196 }
197
198 common.infoMsg('Trigger KaaS demo deployments according to defined provider set')
199 // Limit build concurency workaround examples: https://issues.jenkins-ci.org/browse/JENKINS-44085
200 parallel jobs
201}