vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 1 | package com.mirantis.mk |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 2 | |
| 3 | /** |
| 4 | * |
| 5 | * KaaS Component Testing Utilities |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | /** |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 11 | * 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 | * |
Владислав Наумов | 6c2afff | 2020-06-05 12:54:53 +0200 | [diff] [blame] | 19 | * @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 |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 22 | * ] |
| 23 | */ |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 24 | def checkDeploymentTestSuite() { |
vnaumov | bdb9022 | 2020-05-04 18:25:50 +0200 | [diff] [blame] | 25 | def common = new com.mirantis.mk.Common() |
| 26 | |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 27 | // Available triggers and its sane defaults |
Владислав Наумов | 6c2afff | 2020-06-05 12:54:53 +0200 | [diff] [blame] | 28 | 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 |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 36 | |
Владислав Наумов | 6c2afff | 2020-06-05 12:54:53 +0200 | [diff] [blame] | 37 | def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : '' |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 38 | 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 [ |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 88 | deployChildEnabled : deployChild, |
| 89 | upgradeChildEnabled : upgradeChild, |
| 90 | runChildConformanceEnabled : runChildConformance, |
| 91 | upgradeMgmtEnabled : upgradeMgmt, |
| 92 | runUie2eEnabled : runUie2e, |
| 93 | runMgmtConformanceEnabled : runMgmtConformance, |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 94 | fetchServiceBinariesEnabled: fetchServiceBinaries, |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 95 | awsOnDemandDemoEnabled : awsOnDemandDemo] |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 96 | } |
| 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 | * |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 107 | * @return (map)[* siTests: (string) final refspec for si-tests |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 108 | * siPipelines: (string) final refspec for si-pipelines |
| 109 | * ] |
| 110 | */ |
| 111 | def checkCustomSIRefspec() { |
vnaumov | bdb9022 | 2020-05-04 18:25:50 +0200 | [diff] [blame] | 112 | def common = new com.mirantis.mk.Common() |
| 113 | |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 114 | // Available triggers and its sane defaults |
Владислав Наумов | 6c2afff | 2020-06-05 12:54:53 +0200 | [diff] [blame] | 115 | 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()) : '' |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 119 | |
| 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() |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 125 | siTestsDockerImage = "docker-dev-local.docker.mirantis.net/review/" + |
| 126 | "kaas-si-test-${siTestsRefspec.split('/')[-2]}:${siTestsRefspec.split('/')[-1]}" |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 127 | } |
| 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} |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 135 | kaas/si-tests as dockerImage will be fetched from: ${siTestsDockerImage} |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 136 | Keywords: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/.git-message-template#59""") |
azvyagintsev | a12230a | 2020-06-05 13:24:06 +0300 | [diff] [blame] | 137 | return [siTests: siTestsRefspec, siPipelines: siPipelinesRefspec, siTestsDockerImage: siTestsDockerImage] |
vnaumov | 33747e1 | 2020-05-04 17:35:20 +0200 | [diff] [blame] | 138 | } |
Владислав Наумов | 2a982ff | 2020-06-02 19:06:46 +0200 | [diff] [blame] | 139 | |
| 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 | */ |
| 149 | def 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 | } |