blob: 434654c026c249cdf2b8d0c441d0e1f6e78bffed [file] [log] [blame]
Jakub Josef83379312017-03-29 18:12:34 +02001/**
2 * Test salt formulas pipeline
3 * DEFAULT_GIT_REF
4 * DEFAULT_GIT_URL
5 * CREDENTIALS_ID
Cedric Hnydac87fc6c2017-09-22 13:12:36 +00006 * KITCHEN_TESTS_PARALLEL
Sergey Otpuschennikove5a14742018-05-08 11:42:26 +04007 * SMOKE_TEST_DOCKER_IMG Docker image for run test (default "ubuntu:16.04")
Jakub Josef83379312017-03-29 18:12:34 +02008 */
chnyda85ea22d2017-10-23 13:05:16 +02009common = new com.mirantis.mk.Common()
Jakub Josefc5a223a2017-03-01 14:40:08 +010010def gerrit = new com.mirantis.mk.Gerrit()
Jakub Joseff64c6392017-05-03 13:18:25 +020011def ruby = new com.mirantis.mk.Ruby()
Jakub Josef83379312017-03-29 18:12:34 +020012
azvyagintsevc2628ed2018-08-16 11:24:10 +030013def gerritRef = env.GERRIT_REFSPEC ?: null
14def defaultGitRef = env.DEFAULT_GIT_REF ?: null
15def defaultGitUrl = env.DEFAULT_GIT_URL ?: null
16def slaveNode = env.SLAVE_NODE ?: 'python&&docker'
17def saltVersion = env.SALT_VERSION ?: ""
18def dockerLib = new com.mirantis.mk.Docker()
19def img = dockerLib.getImage(env.SMOKE_TEST_DOCKER_IMG, "ubuntu:16.04")
Jakub Josef83379312017-03-29 18:12:34 +020020
Jakub Josefbcd2e902017-06-13 14:40:41 +020021def checkouted = false
Jakub Josef83379312017-03-29 18:12:34 +020022
chnyda85ea22d2017-10-23 13:05:16 +020023futureFormulas = []
24failedFormulas = []
25
26def setupRunner(defaultGitRef, defaultGitUrl) {
27 def branches = [:]
28 for (int i = 0; i < PARALLEL_GROUP_SIZE.toInteger() && i < futureFormulas.size(); i++) {
29 branches["Runner ${i}"] = {
30 while (futureFormulas && !failedFormulas) {
31 def currentFormula = futureFormulas[0] ? futureFormulas[0] : null
32 if (!currentFormula) {
33 continue
34 }
35 futureFormulas.remove(currentFormula)
36 try {
37 triggerTestFormulaJob(currentFormula, defaultGitRef, defaultGitUrl)
38 } catch (Exception e) {
chnyda0513b572018-01-23 13:40:57 +010039 if (e.getMessage().contains("completed with status ABORTED")) {
40 common.warningMsg("Test of ${currentFormula} was aborted and will be retriggered")
41 futureFormulas << currentFormula
42 } else {
43 failedFormulas << currentFormula
44 common.warningMsg("Test of ${currentFormula} failed : ${e}")
45 }
chnyda85ea22d2017-10-23 13:05:16 +020046 }
47 }
48 }
49 }
50 parallel branches
51}
52
53def triggerTestFormulaJob(testEnv, defaultGitRef, defaultGitUrl) {
54 common.infoMsg("Test of ${testEnv} starts")
55 build job: "test-salt-formulas-env", parameters: [
56 [$class: 'StringParameterValue', name: 'CREDENTIALS_ID', value: CREDENTIALS_ID],
57 [$class: 'StringParameterValue', name: 'KITCHEN_ENV', value: testEnv],
58 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_REF', value: defaultGitRef],
59 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: defaultGitUrl],
60 [$class: 'StringParameterValue', name: 'SALT_OPTS', value: SALT_OPTS],
61 [$class: 'StringParameterValue', name: 'SALT_VERSION', value: SALT_VERSION]
62 ]
63}
Martin Polreichc0995dc2018-11-05 14:40:02 +010064
azvyagintsevc2628ed2018-08-16 11:24:10 +030065timeout(time: 2, unit: 'HOURS') {
66 node(slaveNode) {
Jakub Josefa63f9862018-01-11 17:58:38 +010067 try {
azvyagintsevc2628ed2018-08-16 11:24:10 +030068 if (fileExists("tests/build")) {
69 common.infoMsg('Cleaning test env')
70 sh ("sudo rm -rf tests/build")
71 }
Jakub Josefa63f9862018-01-11 17:58:38 +010072 stage("checkout") {
73 if (gerritRef) {
74 // job is triggered by Gerrit
75 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID, true)
76 // test if gerrit change is already Verified
77 if (gerrit.patchsetHasApproval(gerritChange.currentPatchSet, "Verified", "+")) {
78 common.successMsg("Gerrit change ${GERRIT_CHANGE_NUMBER} patchset ${GERRIT_PATCHSET_NUMBER} already has Verified, skipping tests") // do nothing
79 // test WIP contains in commit message
80 } else if (gerritChange.commitMessage.contains("WIP")) {
81 common.successMsg("Commit message contains WIP, skipping tests") // do nothing
Martin Polreicha3e30122017-08-22 12:43:55 +020082 } else {
Jakub Josefa63f9862018-01-11 17:58:38 +010083 // test if change aren't already merged
84 def merged = gerritChange.status == "MERGED"
85 if (!merged) {
86 checkouted = gerrit.gerritPatchsetCheckout([
87 credentialsId: CREDENTIALS_ID
88 ])
89 } else {
90 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to test them")
91 }
Jakub Josefbcd2e902017-06-13 14:40:41 +020092 }
Jakub Josefa63f9862018-01-11 17:58:38 +010093 defaultGitUrl = "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}"
94 defaultGitRef = GERRIT_REFSPEC
95 } else if (defaultGitRef && defaultGitUrl) {
96 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
97 } else {
98 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
Jakub Josef740a7882017-06-01 14:54:01 +020099 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100100 }
azvyagintsevc2628ed2018-08-16 11:24:10 +0300101 stage("test") {
102 if (checkouted) {
103 try {
104 // TODO add try\finally for image-stuck case. (copy-paste from SaltModelTesting)
105 withEnv(["SALT_VERSION=${saltVersion}"]) {
106 img.inside("-v ${env.WORKSPACE}/:/formula/ -u root:root --cpus=4 --ulimit nofile=4096:8192") {
107 sh('''#!/bin/bash -xe
108 cd /etc/apt/
109 echo "deb [arch=amd64] http://cz.archive.ubuntu.com/ubuntu xenial main restricted universe" > sources.list
110 echo "deb [arch=amd64] http://cz.archive.ubuntu.com/ubuntu xenial-updates main restricted universe" >> sources.list
111 echo 'Acquire::Languages "none";' > apt.conf.d/docker-no-languages
112 echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > apt.conf.d/docker-gzip-indexes
113 echo 'APT::Get::Install-Recommends "false"; APT::Get::Install-Suggests "false";' > apt.conf.d/docker-recommends
114 apt-get update
115 apt-get install -y git-core wget curl apt-transport-https
116 apt-get install -y python-pip python3-pip python-virtualenv python3-virtualenv python-yaml autoconf build-essential
117 cd /formula/
118 make clean
119 make test
120 make clean
121 ''')
122 }
Sergey Otpuschennikove5a14742018-05-08 11:42:26 +0400123 }
azvyagintsevc2628ed2018-08-16 11:24:10 +0300124 }
125 finally {
126 if (fileExists("tests/build")) {
127 common.infoMsg('Cleaning test env')
128 sh ("sudo rm -rf tests/build")
129 }
Sergey Otpuschennikove5a14742018-05-08 11:42:26 +0400130 }
azvyagintsev3a2e0352018-01-10 12:41:29 +0200131 }
azvyagintsevc2628ed2018-08-16 11:24:10 +0300132
Jakub Josefc5a223a2017-03-01 14:40:08 +0100133 }
Jakub Joseff64c6392017-05-03 13:18:25 +0200134 stage("kitchen") {
Jakub Josefa63f9862018-01-11 17:58:38 +0100135 if (checkouted) {
Martin Polreichc0995dc2018-11-05 14:40:02 +0100136 if (fileExists(".kitchen.yml") || fileExists(".kitchen.openstack.yml")) {
137 if (fileExists(".kitchen.openstack.yml")) {
138 common.infoMsg("Openstack Kitchen test configuration found, running Openstack kitchen tests.")
139 if (fileExists(".kitchen.yml")) {
140 common.infoMsg("Ignoring the docker Kitchen test configuration file.")
141 }
142 } else {
143 common.infoMsg("Docker Kitchen test configuration found, running Docker kitchen tests.")
144 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100145 def kitchenEnvs = []
146 def filteredEnvs = []
147 if (fileExists(".travis.yml")) {
148 common.infoMsg(".travis.yml file found.")
149 def kitchenConfigYML = readYaml(file: ".travis.yml")
150 if (kitchenConfigYML.containsKey("env")) {
151 kitchenEnvs = kitchenConfigYML["env"]
152 }
153 } else {
154 common.warningMsg(".travis.yml file not found, suites must be passed via CUSTOM_KITCHEN_ENVS parameter.")
Ruslan Kamaldinov310ffc02017-08-08 16:07:42 +0400155 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100156 common.infoMsg("Running kitchen testing in parallel mode")
157 if (CUSTOM_KITCHEN_ENVS != null && CUSTOM_KITCHEN_ENVS != '') {
158 kitchenEnvs = CUSTOM_KITCHEN_ENVS.tokenize('\n')
159 common.infoMsg("CUSTOM_KITCHEN_ENVS not empty. Running with custom enviroments: ${kitchenEnvs}")
Martin Polreicha3e30122017-08-22 12:43:55 +0200160 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100161 if (kitchenEnvs != null && kitchenEnvs != '') {
162 def acc = 0
163 common.infoMsg("Found " + kitchenEnvs.size() + " environment(s)")
164 for (int i = 0; i < kitchenEnvs.size(); i++) {
165 futureFormulas << kitchenEnvs[i]
166 }
167 setupRunner(defaultGitRef, defaultGitUrl)
168 } else {
169 common.warningMsg(".kitchen.yml file not found, no kitchen tests triggered.")
170 }
Martin Polreicha3e30122017-08-22 12:43:55 +0200171 }
Jakub Joseff64c6392017-05-03 13:18:25 +0200172 }
Jakub Joseff64c6392017-05-03 13:18:25 +0200173 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100174 if (failedFormulas) {
175 currentBuild.result = "FAILURE"
176 common.warningMsg("The following tests failed: ${failedFormulas}")
177 }
178 } catch (Throwable e) {
179 // If there was an error or exception thrown, the build failed
chnyda85ea22d2017-10-23 13:05:16 +0200180 currentBuild.result = "FAILURE"
Jakub Josefa63f9862018-01-11 17:58:38 +0100181 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
182 throw e
183 } finally {
184 if (currentBuild.result == "FAILURE" && fileExists(".kitchen/logs/kitchen.log")) {
185 common.errorMsg("----------------KITCHEN LOG:---------------")
186 println readFile(".kitchen/logs/kitchen.log")
187 }
chnyda85ea22d2017-10-23 13:05:16 +0200188 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100189 }
azvyagintsev3a2e0352018-01-10 12:41:29 +0200190}