blob: dc639ec3ee5b1bb4aa5df9ee8f2610200d5c4af1 [file] [log] [blame]
chnydaf14ea2a2017-05-26 15:07:47 +02001package com.mirantis.mk
2
3/**
Denis Egorenko6fd79ac2018-09-12 13:28:21 +04004 * Setup Docker to run some tests. Returns true/false based on
5 were tests successful or not.
6 * @param config - LinkedHashMap with configuration params:
7 * dockerHostname - (required) Hostname to use for Docker container.
azvyagintsevabcf42e2018-10-05 20:40:27 +03008 * distribRevision - (optional) Revision of packages to use (default proposed).
Denis Egorenko6fd79ac2018-09-12 13:28:21 +04009 * runCommands - (optional) Dict with closure structure of body required tests. For example:
10 * [ '001_Test': { sh("./run-some-test") }, '002_Test': { sh("./run-another-test") } ]
11 * Before execution runCommands will be sorted by key names. Alpabetical order is preferred.
12 * runFinally - (optional) Dict with closure structure of body required commands, which should be
13 * executed in any case of test results. Same format as for runCommands
14 * updateRepo - (optional) Whether to run common repo update step.
15 * dockerContainerName - (optional) Docker container name.
16 * dockerImageName - (optional) Docker image name
17 * dockerMaxCpus - (optional) Number of CPUS to use in Docker.
18 * dockerExtraOpts - (optional) Array of Docker extra opts for container
19 * envOpts - (optional) Array of variables that should be passed as ENV vars to Docker container.
20 * Return true | false
21 */
22
23def setupDockerAndTest(LinkedHashMap config) {
24 def common = new com.mirantis.mk.Common()
25 def TestMarkerResult = false
26 // setup options
27 def defaultContainerName = 'test-' + UUID.randomUUID().toString()
28 def dockerHostname = config.get('dockerHostname', defaultContainerName)
azvyagintsevabcf42e2018-10-05 20:40:27 +030029 def distribRevision = config.get('distribRevision', 'proposed')
Denis Egorenko6fd79ac2018-09-12 13:28:21 +040030 def runCommands = config.get('runCommands', [:])
31 def runFinally = config.get('runFinally', [:])
32 def baseRepoPreConfig = config.get('baseRepoPreConfig', true)
33 def dockerContainerName = config.get('dockerContainerName', defaultContainerName)
azvyagintseve716a452018-11-25 13:41:52 +020034 // def dockerImageName = config.get('image', "mirantis/salt:saltstack-ubuntu-xenial-salt-2017.7")
35 // FIXME /PROD-25244
Denis Egorenkoc2a88522019-05-17 16:44:44 +040036 def dockerImageName = config.get('image', "docker-prod-local.artifactory.mirantis.com/mirantis/salt:saltstack-ubuntu-xenial-salt-2017.7")
Denis Egorenko6fd79ac2018-09-12 13:28:21 +040037 def dockerMaxCpus = config.get('dockerMaxCpus', 4)
38 def dockerExtraOpts = config.get('dockerExtraOpts', [])
39 def envOpts = config.get('envOpts', [])
azvyagintsevabcf42e2018-10-05 20:40:27 +030040 envOpts.add("DISTRIB_REVISION=${distribRevision}")
Denis Egorenko6fd79ac2018-09-12 13:28:21 +040041 def dockerBaseOpts = [
42 '-u root:root',
43 "--hostname=${dockerHostname}",
44 '--ulimit nofile=4096:8192',
45 "--name=${dockerContainerName}",
46 "--cpus=${dockerMaxCpus}"
47 ]
Denis Egorenko649cf7d2018-10-18 16:36:33 +040048 def dockerOptsFinal = (dockerBaseOpts + dockerExtraOpts).join(' ')
Denis Egorenko5cea1412018-10-18 16:40:11 +040049 def extraReposConfig = null
50 if (baseRepoPreConfig) {
51 // extra repo on mirror.mirantis.net, which is not supported before 2018.11.0 release
52 def extraRepoSource = "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/extra/xenial xenial main"
Denis Egorenko7269cf32019-03-27 19:12:06 +040053 def releaseVersionQ4 = '2018.11.0'
54 def oldRelease = false
Denis Egorenko5cea1412018-10-18 16:40:11 +040055 try {
56 def releaseNaming = 'yyyy.MM.dd'
57 def repoDateUsed = new Date().parse(releaseNaming, distribRevision)
Denis Egorenko7269cf32019-03-27 19:12:06 +040058 def extraAvailableFrom = new Date().parse(releaseNaming, releaseVersionQ4)
Denis Egorenko5cea1412018-10-18 16:40:11 +040059 if (repoDateUsed < extraAvailableFrom) {
azvyagintsevb9afd232019-02-11 14:22:31 +020060 extraRepoSource = "deb http://apt.mcp.mirantis.net/xenial ${distribRevision} extra"
Denis Egorenko7269cf32019-03-27 19:12:06 +040061 oldRelease = true
Denis Egorenko5cea1412018-10-18 16:40:11 +040062 }
63 } catch (Exception e) {
64 common.warningMsg(e)
azvyagintsevb9afd232019-02-11 14:22:31 +020065 if (!(distribRevision in ['nightly', 'proposed', 'testing'])) {
azvyagintsev62c97742019-01-02 17:53:54 +020066 extraRepoSource = "deb [arch=amd64] http://apt.mcp.mirantis.net/xenial ${distribRevision} extra"
Denis Egorenko7269cf32019-03-27 19:12:06 +040067 oldRelease = true
Denis Egorenko5cea1412018-10-18 16:40:11 +040068 }
69 }
70
71 def defaultExtraReposYaml = """
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000072---
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000073aprConfD: |-
74 APT::Get::AllowUnauthenticated 'true';
75 APT::Get::Install-Suggests 'false';
76 APT::Get::Install-Recommends 'false';
77repo:
78 mcp_saltstack:
Denis Egorenko395aa212018-10-11 15:11:28 +040079 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/saltstack-2017.7/xenial xenial main"
Denis Egorenkoe02a1b22018-10-19 17:47:53 +040080 pin:
81 - package: "libsodium18"
82 pin: "release o=SaltStack"
83 priority: 50
84 - package: "*"
85 pin: "release o=SaltStack"
86 priority: "1100"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000087 mcp_extra:
Denis Egorenko3c752a52018-10-12 12:21:29 +040088 source: "${extraRepoSource}"
Denis Egorenko395aa212018-10-11 15:11:28 +040089 mcp_saltformulas:
azvyagintsev058c1f42018-12-14 18:32:33 +020090 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/salt-formulas/xenial xenial main"
91 repo_key: "http://mirror.mirantis.com/${distribRevision}/salt-formulas/xenial/archive-salt-formulas.key"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000092 ubuntu:
Denis Egorenko395aa212018-10-11 15:11:28 +040093 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial main restricted universe"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000094 ubuntu-upd:
Denis Egorenko395aa212018-10-11 15:11:28 +040095 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial-updates main restricted universe"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000096 ubuntu-sec:
Denis Egorenko395aa212018-10-11 15:11:28 +040097 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial-security main restricted universe"
98"""
Denis Egorenko5cea1412018-10-18 16:40:11 +040099 // override for now
100 def extraRepoMergeStrategy = config.get('extraRepoMergeStrategy', 'override')
101 def extraRepos = config.get('extraRepos', [:])
azvyagintsev561ec872019-05-15 16:07:26 +0300102 def updateSaltFormulas = config.get('updateSaltFormulas', true).toBoolean()
Denis Egorenko5cea1412018-10-18 16:40:11 +0400103 def defaultRepos = readYaml text: defaultExtraReposYaml
azvyagintsev561ec872019-05-15 16:07:26 +0300104 // Don't check for magic, if set explicitly
105 if (updateSaltFormulas) {
106 if (!oldRelease && distribRevision != releaseVersionQ4) {
107 defaultRepos['repo']['mcp_saltformulas_update'] = [
108 'source' : "deb [arch=amd64] http://mirror.mirantis.com/update/${distribRevision}/salt-formulas/xenial xenial main",
109 'repo_key': "http://mirror.mirantis.com/update/${distribRevision}/salt-formulas/xenial/archive-salt-formulas.key"
110 ]
111 }
Denis Egorenko7269cf32019-03-27 19:12:06 +0400112 }
Denis Egorenko5cea1412018-10-18 16:40:11 +0400113 if (extraRepoMergeStrategy == 'merge') {
114 extraReposConfig = common.mergeMaps(defaultRepos, extraRepos)
115 } else {
116 extraReposConfig = extraRepos ? extraRepos : defaultRepos
117 }
118 }
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400119 def img = docker.image(dockerImageName)
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000120
Oleksii Zhurbaed8709c2019-07-18 10:50:04 -0500121 def pull_enabled = config.get('dockerPull', true)
122
123 if ( pull_enabled ) {
124 img.pull()
125 }
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400126
127 try {
128 img.inside(dockerOptsFinal) {
129 withEnv(envOpts) {
130 try {
azvyagintsev4a8ccfa2019-04-08 16:25:08 +0300131 sh('printenv |sort -u')
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400132 // Currently, we don't have any other point to install
133 // runtime dependencies for tests.
134 if (baseRepoPreConfig) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000135 // Warning! POssible point of 'allow-downgrades' issue
136 // Probably, need to add such flag into apt.prefs
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400137 sh("""#!/bin/bash -xe
138 echo "Installing extra-deb dependencies inside docker:"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000139 echo > /etc/apt/sources.list
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400140 rm -vf /etc/apt/sources.list.d/* || true
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400141 rm -vf /etc/apt/preferences.d/* || true
Aleksey Zvyagintsevc5453342018-10-05 15:03:59 +0000142 """)
Denis Egorenko5cea1412018-10-18 16:40:11 +0400143 common.debianExtraRepos(extraReposConfig)
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000144 sh('''#!/bin/bash -xe
145 apt-get update
Denis Egorenkoc6b24be2018-10-10 17:36:04 +0400146 apt-get install -y python-netaddr
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000147 ''')
148
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400149 }
150 runCommands.sort().each { command, body ->
151 common.warningMsg("Running command: ${command}")
152 // doCall is the closure implementation in groovy, allow to pass arguments to closure
153 body.call()
154 }
155 // If we didn't dropped for now - test has been passed.
156 TestMarkerResult = true
157 }
158 finally {
159 runFinally.sort().each { command, body ->
160 common.warningMsg("Running ${command} command.")
161 // doCall is the closure implementation in groovy, allow to pass arguments to closure
162 body.call()
163 }
164 }
165 }
166 }
167 }
168 catch (Exception er) {
169 common.warningMsg("IgnoreMe:Something wrong with img.Message:\n" + er.toString())
170 }
171
172 try {
Hanna Arhipovae0bcfbc2019-11-15 19:54:09 +0200173 timeout(time: 30, unit: 'SECONDS') {
174 if (sh(script: "docker inspect ${dockerContainerName}", returnStatus: true) == 0) {
175 common.warningMsg("Verify that container is not running. Ignore further docker-daemon errors")
176 sh(script: "set -x; test \$(docker inspect -f '{{.State.Running}}' ${dockerContainerName} 2>/dev/null) = 'true' && docker kill ${dockerContainerName}", returnStdout: true)
177 sh(script: "set -x; docker rm --force ${dockerContainerName} || true", returnStdout: true)
178 }
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400179 }
180 }
181 catch (Exception er) {
Hanna Arhipovae0bcfbc2019-11-15 19:54:09 +0200182 common.warningMsg("IgnoreMe:Timeout to delete test docker container with force! Message:\n" + er.toString())
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400183 }
184
185 if (TestMarkerResult) {
186 common.infoMsg("Test finished: SUCCESS")
187 } else {
188 common.warningMsg("Test finished: FAILURE")
189 }
190 return TestMarkerResult
191}
192
193/**
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000194 * Wrapper around setupDockerAndTest, to run checks against new Reclass version
195 * that current model is compatible with new Reclass.
196 *
197 * @param config - LinkedHashMap with configuration params:
198 * dockerHostname - (required) Hostname to use for Docker container.
199 * distribRevision - (optional) Revision of packages to use (default proposed).
200 * extraRepo - (optional) Extra repo to use to install new Reclass version. Has
201 * high priority on distribRevision
202 * targetNodes - (required) List nodes to check pillar data.
Denis Egorenkob090a762018-09-12 19:25:41 +0400203 */
204def compareReclassVersions(config) {
205 def common = new com.mirantis.mk.Common()
206 def salt = new com.mirantis.mk.Salt()
207 common.infoMsg("Going to test new reclass for CFG node")
208 def distribRevision = config.get('distribRevision', 'proposed')
209 def venv = config.get('venv')
210 def extraRepo = config.get('extraRepo', '')
211 def extraRepoKey = config.get('extraRepoKey', '')
212 def targetNodes = config.get('targetNodes')
213 sh "rm -rf ${env.WORKSPACE}/old ${env.WORKSPACE}/new"
214 sh "mkdir -p ${env.WORKSPACE}/old ${env.WORKSPACE}/new"
215 def configRun = [
azvyagintsevabcf42e2018-10-05 20:40:27 +0300216 'distribRevision': distribRevision,
azvyagintsevb9afd232019-02-11 14:22:31 +0200217 'dockerExtraOpts': [
Denis Egorenkob090a762018-09-12 19:25:41 +0400218 "-v /srv/salt/reclass:/srv/salt/reclass:ro",
219 "-v /etc/salt:/etc/salt:ro",
220 "-v /usr/share/salt-formulas/:/usr/share/salt-formulas/:ro"
221 ],
azvyagintsevb9afd232019-02-11 14:22:31 +0200222 'envOpts' : [
Denis Egorenkob090a762018-09-12 19:25:41 +0400223 "WORKSPACE=${env.WORKSPACE}",
224 "NODES_LIST=${targetNodes.join(' ')}"
225 ],
azvyagintsevb9afd232019-02-11 14:22:31 +0200226 'runCommands' : [
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000227 '001_Update_Reclass_package' : {
228 sh('apt-get update && apt-get install -y reclass')
Denis Egorenkob090a762018-09-12 19:25:41 +0400229 },
230 '002_Test_Reclass_Compatibility': {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000231 sh('''
Denis Egorenkob090a762018-09-12 19:25:41 +0400232 reclass-salt -b /srv/salt/reclass -t > ${WORKSPACE}/new/inventory || exit 1
233 for node in $NODES_LIST; do
234 reclass-salt -b /srv/salt/reclass -p $node > ${WORKSPACE}/new/$node || exit 1
235 done
236 ''')
237 }
238 ]
239 ]
240 if (extraRepo) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000241 // FIXME
Denis Egorenkob090a762018-09-12 19:25:41 +0400242 configRun['runCommands']['0001_Additional_Extra_Repo_Passed'] = {
243 sh("""
244 echo "${extraRepo}" > /etc/apt/sources.list.d/mcp_extra.list
245 [ "${extraRepoKey}" ] && wget -O - ${extraRepoKey} | apt-key add -
246 """)
247 }
Denis Egorenkob090a762018-09-12 19:25:41 +0400248 }
249 if (setupDockerAndTest(configRun)) {
250 common.infoMsg("New reclass version is compatible with current model: SUCCESS")
251 def inventoryOld = salt.cmdRun(venv, "I@salt:master", "reclass-salt -b /srv/salt/reclass -t", true, null, true).get("return")[0].values()[0]
252 // [0..-31] to exclude 'echo Salt command execution success' from output
253 writeFile(file: "${env.WORKSPACE}/old/inventory", text: inventoryOld[0..-31])
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000254 for (String node in targetNodes) {
Denis Egorenkob090a762018-09-12 19:25:41 +0400255 def nodeOut = salt.cmdRun(venv, "I@salt:master", "reclass-salt -b /srv/salt/reclass -p ${node}", true, null, true).get("return")[0].values()[0]
256 writeFile(file: "${env.WORKSPACE}/old/${node}", text: nodeOut[0..-31])
257 }
258 def reclassDiff = common.comparePillars(env.WORKSPACE, env.BUILD_URL, '')
259 currentBuild.description = reclassDiff
260 if (reclassDiff != '<b>No job changes</b>') {
261 throw new RuntimeException("Pillars with new reclass version has been changed: FAILED")
262 } else {
263 common.infoMsg("Pillars not changed with new reclass version: SUCCESS")
264 }
265 } else {
266 throw new RuntimeException("New reclass version is not compatible with current model: FAILED")
267 }
268}
269
270/**
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400271 * Wrapper over setupDockerAndTest, to test CC model.
272 *
273 * @param config - dict with params:
274 * dockerHostname - (required) salt master's name
275 * clusterName - (optional) model cluster name
276 * extraFormulas - (optional) extraFormulas to install. DEPRECATED
277 * formulasSource - (optional) formulas source (git or pkg, default pkg)
278 * reclassVersion - (optional) Version of used reclass (branch, tag, ...) (optional, default master)
279 * reclassEnv - (require) directory of model
280 * ignoreClassNotfound - (optional) Ignore missing classes for reclass model (default false)
281 * aptRepoUrl - (optional) package repository with salt formulas
282 * aptRepoGPG - (optional) GPG key for apt repository with formulas
283 * testContext - (optional) Description of test
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000284 Return: true\exception
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400285 */
286
287def testNode(LinkedHashMap config) {
288 def common = new com.mirantis.mk.Common()
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400289 def dockerHostname = config.get('dockerHostname')
Denis Egorenkoe3509c12019-02-19 14:06:26 +0400290 def domain = config.get('domain')
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400291 def reclassEnv = config.get('reclassEnv')
292 def clusterName = config.get('clusterName', "")
293 def formulasSource = config.get('formulasSource', 'pkg')
294 def extraFormulas = config.get('extraFormulas', 'linux')
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400295 def ignoreClassNotfound = config.get('ignoreClassNotfound', false)
296 def aptRepoUrl = config.get('aptRepoUrl', "")
297 def aptRepoGPG = config.get('aptRepoGPG', "")
298 def testContext = config.get('testContext', 'test')
Denis Egorenko66876fc2019-03-07 15:57:56 +0400299 def nodegenerator = config.get('nodegenerator', false)
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400300 config['envOpts'] = [
301 "RECLASS_ENV=${reclassEnv}", "SALT_STOPSTART_WAIT=5",
Denis Egorenkoe3509c12019-02-19 14:06:26 +0400302 "HOSTNAME=${dockerHostname}", "CLUSTER_NAME=${clusterName}",
303 "DOMAIN=${domain}", "FORMULAS_SOURCE=${formulasSource}",
Denis Egorenkod54f60f2018-10-10 19:38:03 +0400304 "EXTRA_FORMULAS=${extraFormulas}", "EXTRA_FORMULAS_PKG_ALL=true",
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400305 "RECLASS_IGNORE_CLASS_NOTFOUND=${ignoreClassNotfound}", "DEBUG=1",
Denis Egorenkod54f60f2018-10-10 19:38:03 +0400306 "APT_REPOSITORY=${aptRepoUrl}", "APT_REPOSITORY_GPG=${aptRepoGPG}"
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400307 ]
308
309 config['runCommands'] = [
310 '001_Clone_salt_formulas_scripts': {
azvyagintsev62c97742019-01-02 17:53:54 +0200311 sh(script: 'git clone http://gerrit.mcp.mirantis.com/salt-formulas/salt-formulas-scripts /srv/salt/scripts', returnStdout: true)
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400312 },
313
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000314 '002_Prepare_something' : {
azvyagintsevb9afd232019-02-11 14:22:31 +0200315 sh('''#!/bin/bash -x
316 rsync -ah ${RECLASS_ENV}/* /srv/salt/reclass && echo '127.0.1.2 salt' >> /etc/hosts
Denis Egorenkoe3509c12019-02-19 14:06:26 +0400317 echo "127.0.0.1 ${HOSTNAME}.${DOMAIN}" >> /etc/hosts
azvyagintsevb9afd232019-02-11 14:22:31 +0200318 if [ -f '/srv/salt/reclass/salt_master_pillar.asc' ] ; then
319 mkdir -p /etc/salt/gpgkeys
320 chmod 700 /etc/salt/gpgkeys
321 GNUPGHOME=/etc/salt/gpgkeys gpg --import /srv/salt/reclass/salt_master_pillar.asc
322 fi
Alexander Evseev4983dec2018-10-25 15:49:39 +0200323 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt-mk.mirantis.com/apt.mcp.mirantis.net/g' {} \\;
324 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt.mirantis.com/apt.mcp.mirantis.net/g' {} \\;
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400325 ''')
326 },
327
Denis Egorenkoc6b24be2018-10-10 17:36:04 +0400328 '003_Install_Reclass_package' : {
329 sh('apt-get install -y reclass')
330 },
331
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000332 '004_Run_tests' : {
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400333 def testTimeout = 40 * 60
334 timeout(time: testTimeout, unit: 'SECONDS') {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000335 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400336 source /srv/salt/scripts/bootstrap.sh
337 cd /srv/salt/scripts
338 source_local_envs
339 configure_salt_master
340 configure_salt_minion
341 install_salt_formula_pkg
342 source /srv/salt/scripts/bootstrap.sh
343 cd /srv/salt/scripts
344 saltservice_restart''')
345
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000346 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400347 source /srv/salt/scripts/bootstrap.sh
348 cd /srv/salt/scripts
349 source_local_envs
350 saltmaster_init''')
351
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000352 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400353 source /srv/salt/scripts/bootstrap.sh
354 cd /srv/salt/scripts
355 verify_salt_minions''')
356 }
357 }
358 ]
359 config['runFinally'] = [
360 '001_Archive_artefacts': {
361 sh(script: "cd /tmp; tar -czf ${env.WORKSPACE}/nodesinfo.tar.gz *reclass*", returnStatus: true)
362 archiveArtifacts artifacts: "nodesinfo.tar.gz"
363 }
364 ]
Denis Egorenko66876fc2019-03-07 15:57:56 +0400365 // this tool should be tested in master branch only
366 // and not for all jobs, as pilot will be used cc-reclass-chunk
367 if (nodegenerator) {
368 config['runCommands']['005_Test_new_nodegenerator'] = {
369 try {
370 sh('''#!/bin/bash
371 new_generated_dir=/srv/salt/_new_generated
372 mkdir -p ${new_generated_dir}
373 nodegenerator -b /srv/salt/reclass/classes/ -o ${new_generated_dir} ${CLUSTER_NAME}
374 diff -r /srv/salt/reclass/nodes/_generated ${new_generated_dir} > /tmp/nodegenerator.diff
375 tar -czf /tmp/_generated.tar.gz /srv/salt/reclass/nodes/_generated/
376 tar -czf /tmp/_new_generated.tar.gz ${new_generated_dir}/
377 tar -czf /tmp/_model.tar.gz /srv/salt/reclass/classes/cluster/*
378 ''')
379 } catch (Exception e) {
380 print "Test new nodegenerator tool is failed: ${e}"
381 }
382 }
383 config['runFinally']['002_Archive_nodegenerator_artefact'] = {
384 sh(script: "cd /tmp; [ -f nodegenerator.diff ] && tar -czf ${env.WORKSPACE}/nodegenerator.tar.gz nodegenerator.diff _generated.tar.gz _new_generated.tar.gz _model.tar.gz", returnStatus: true)
385 if (fileExists('nodegenerator.tar.gz')) {
386 archiveArtifacts artifacts: "nodegenerator.tar.gz"
387 }
388 }
389 }
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400390 testResult = setupDockerAndTest(config)
391 if (testResult) {
392 common.infoMsg("Node test for context: ${testContext} model: ${reclassEnv} finished: SUCCESS")
393 } else {
394 throw new RuntimeException("Node test for context: ${testContext} model: ${reclassEnv} finished: FAILURE")
395 }
396 return testResult
397}
398
399/**
chnydaf14ea2a2017-05-26 15:07:47 +0200400 * setup and test salt-master
401 *
azvyagintsevb4e0c442018-09-12 17:00:04 +0300402 * @param masterName salt master's name
403 * @param clusterName model cluster name
404 * @param extraFormulas extraFormulas to install. DEPRECATED
405 * @param formulasSource formulas source (git or pkg)
406 * @param reclassVersion Version of used reclass (branch, tag, ...) (optional, default master)
407 * @param testDir directory of model
408 * @param formulasSource Salt formulas source type (optional, default pkg)
409 * @param formulasRevision APT revision for formulas (optional default stable)
Petr Michalec6414aa52017-08-17 14:32:52 +0200410 * @param ignoreClassNotfound Ignore missing classes for reclass model
azvyagintsevb4e0c442018-09-12 17:00:04 +0300411 * @param dockerMaxCpus max cpus passed to docker (default 0, disabled)
412 * @param legacyTestingMode do you want to enable legacy testing mode (iterating through the nodes directory definitions instead of reading cluster models)
413 * @param aptRepoUrl package repository with salt formulas
414 * @param aptRepoGPG GPG key for apt repository with formulas
azvyagintsev28fa9d92018-06-26 14:31:49 +0300415 * Return true | false
chnydaf14ea2a2017-05-26 15:07:47 +0200416 */
417
azvyagintsevb4e0c442018-09-12 17:00:04 +0300418def setupAndTestNode(masterName, clusterName, extraFormulas = '*', testDir, formulasSource = 'pkg',
Vasyl Saienko369ed902018-07-23 11:49:32 +0000419 formulasRevision = 'stable', reclassVersion = "master", dockerMaxCpus = 0,
azvyagintsev28fa9d92018-06-26 14:31:49 +0300420 ignoreClassNotfound = false, legacyTestingMode = false, aptRepoUrl = '', aptRepoGPG = '', dockerContainerName = false) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300421 def common = new com.mirantis.mk.Common()
azvyagintsev1cecc092018-09-14 13:19:16 +0300422 // TODO
423 common.errorMsg('You are using deprecated function!Please migrate to "setupDockerAndTest".' +
424 'It would be removed after 2018.q4 release!Pushing forced 60s sleep..')
425 sh('sleep 60')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300426 // timeout for test execution (40min)
427 def testTimeout = 40 * 60
428 def TestMarkerResult = false
429 def saltOpts = "--retcode-passthrough --force-color"
430 def workspace = common.getWorkspace()
431 def img = docker.image("mirantis/salt:saltstack-ubuntu-xenial-salt-2017.7")
432 img.pull()
chnydaf14ea2a2017-05-26 15:07:47 +0200433
azvyagintsev635affb2018-09-13 13:02:54 +0300434 if (formulasSource == 'pkg') {
435 if (extraFormulas) {
436 common.warningMsg("You have passed deprecated variable:extraFormulas=${extraFormulas}. " +
437 "\n It would be ignored, and all formulas would be installed anyway")
438 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300439 }
440 if (!dockerContainerName) {
441 dockerContainerName = 'setupAndTestNode' + UUID.randomUUID().toString()
442 }
443 def dockerMaxCpusOpt = "--cpus=4"
444 if (dockerMaxCpus > 0) {
445 dockerMaxCpusOpt = "--cpus=${dockerMaxCpus}"
446 }
447 try {
448 img.inside("-u root:root --hostname=${masterName} --ulimit nofile=4096:8192 ${dockerMaxCpusOpt} --name=${dockerContainerName}") {
azvyagintsev635affb2018-09-13 13:02:54 +0300449 withEnv(["FORMULAS_SOURCE=${formulasSource}", "EXTRA_FORMULAS=${extraFormulas}", "EXTRA_FORMULAS_PKG_ALL=true",
azvyagintsevb4e0c442018-09-12 17:00:04 +0300450 "DISTRIB_REVISION=${formulasRevision}",
451 "DEBUG=1", "MASTER_HOSTNAME=${masterName}",
452 "CLUSTER_NAME=${clusterName}", "MINION_ID=${masterName}",
453 "RECLASS_VERSION=${reclassVersion}", "RECLASS_IGNORE_CLASS_NOTFOUND=${ignoreClassNotfound}",
454 "APT_REPOSITORY=${aptRepoUrl}", "SALT_STOPSTART_WAIT=5",
455 "APT_REPOSITORY_GPG=${aptRepoGPG}"]) {
456 try {
457 // Currently, we don't have any other point to install
458 // runtime dependencies for tests.
459 sh("""#!/bin/bash -xe
azvyagintsev1bfe6842018-08-09 18:40:17 +0200460 echo "Installing extra-deb dependencies inside docker:"
461 echo "APT::Get::AllowUnauthenticated 'true';" > /etc/apt/apt.conf.d/99setupAndTestNode
462 echo "APT::Get::Install-Suggests 'false';" >> /etc/apt/apt.conf.d/99setupAndTestNode
463 echo "APT::Get::Install-Recommends 'false';" >> /etc/apt/apt.conf.d/99setupAndTestNode
464 rm -vf /etc/apt/sources.list.d/* || true
465 echo 'deb [arch=amd64] http://mirror.mirantis.com/$DISTRIB_REVISION/ubuntu xenial main restricted universe' > /etc/apt/sources.list
466 echo 'deb [arch=amd64] http://mirror.mirantis.com/$DISTRIB_REVISION/ubuntu xenial-updates main restricted universe' >> /etc/apt/sources.list
467 apt-get update
468 apt-get install -y python-netaddr
469 """)
azvyagintsevb4e0c442018-09-12 17:00:04 +0300470 sh(script: "git clone https://github.com/salt-formulas/salt-formulas-scripts /srv/salt/scripts", returnStdout: true)
471 sh("""rsync -ah ${testDir}/* /srv/salt/reclass && echo '127.0.1.2 salt' >> /etc/hosts
Alexander Evseev4983dec2018-10-25 15:49:39 +0200472 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt-mk.mirantis.com/apt.mcp.mirantis.net/g' {} \\;
473 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt.mirantis.com/apt.mcp.mirantis.net/g' {} \\;
azvyagintsev1bfe6842018-08-09 18:40:17 +0200474 """)
azvyagintsevb4e0c442018-09-12 17:00:04 +0300475 // FIXME: should be changed to use reclass from mcp_extra_nigtly?
476 sh("""for s in \$(python -c \"import site; print(' '.join(site.getsitepackages()))\"); do
azvyagintsev1bfe6842018-08-09 18:40:17 +0200477 sudo -H pip install --install-option=\"--prefix=\" --upgrade --force-reinstall -I \
478 -t \"\$s\" git+https://github.com/salt-formulas/reclass.git@${reclassVersion};
479 done""")
azvyagintsevb4e0c442018-09-12 17:00:04 +0300480 timeout(time: testTimeout, unit: 'SECONDS') {
481 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200482 source /srv/salt/scripts/bootstrap.sh
483 cd /srv/salt/scripts
484 source_local_envs
485 configure_salt_master
486 configure_salt_minion
487 install_salt_formula_pkg
488 source /srv/salt/scripts/bootstrap.sh
489 cd /srv/salt/scripts
490 saltservice_restart''')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300491 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200492 source /srv/salt/scripts/bootstrap.sh
493 cd /srv/salt/scripts
494 source_local_envs
495 saltmaster_init''')
496
azvyagintsevb4e0c442018-09-12 17:00:04 +0300497 if (!legacyTestingMode.toBoolean()) {
498 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200499 source /srv/salt/scripts/bootstrap.sh
500 cd /srv/salt/scripts
501 verify_salt_minions
502 ''')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300503 }
504 }
505 // If we didn't dropped for now - test has been passed.
506 TestMarkerResult = true
507 }
508
509 finally {
510 // Collect rendered per-node data.Those info could be simply used
511 // for diff processing. Data was generated via reclass.cli --nodeinfo,
512 /// during verify_salt_minions.
513 sh(script: "cd /tmp; tar -czf ${env.WORKSPACE}/nodesinfo.tar.gz *reclass*", returnStatus: true)
514 archiveArtifacts artifacts: "nodesinfo.tar.gz"
515 }
azvyagintsev1bfe6842018-08-09 18:40:17 +0200516 }
azvyagintsev1bfe6842018-08-09 18:40:17 +0200517 }
chnydaf14ea2a2017-05-26 15:07:47 +0200518 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300519 catch (Exception er) {
520 common.warningMsg("IgnoreMe:Something wrong with img.Message:\n" + er.toString())
521 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300522
azvyagintsevb4e0c442018-09-12 17:00:04 +0300523 if (legacyTestingMode.toBoolean()) {
524 common.infoMsg("Running legacy mode test for master hostname ${masterName}")
525 def nodes = sh(script: "find /srv/salt/reclass/nodes -name '*.yml' | grep -v 'cfg*.yml'", returnStdout: true)
526 for (minion in nodes.tokenize()) {
527 def basename = sh(script: "set +x;basename ${minion} .yml", returnStdout: true)
528 if (!basename.trim().contains(masterName)) {
529 testMinion(basename.trim())
530 }
531 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300532 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300533
azvyagintsevb4e0c442018-09-12 17:00:04 +0300534 try {
535 common.warningMsg("IgnoreMe:Force cleanup slave.Ignore docker-daemon errors")
536 timeout(time: 10, unit: 'SECONDS') {
537 sh(script: "set -x; docker kill ${dockerContainerName} || true", returnStdout: true)
538 }
539 timeout(time: 10, unit: 'SECONDS') {
540 sh(script: "set -x; docker rm --force ${dockerContainerName} || true", returnStdout: true)
541 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300542 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300543 catch (Exception er) {
544 common.warningMsg("IgnoreMe:Timeout to delete test docker container with force!Message:\n" + er.toString())
azvyagintsev28fa9d92018-06-26 14:31:49 +0300545 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300546
azvyagintsevb4e0c442018-09-12 17:00:04 +0300547 if (TestMarkerResult) {
548 common.infoMsg("Test finished: SUCCESS")
549 } else {
550 common.warningMsg("Test finished: FAILURE")
551 }
552 return TestMarkerResult
azvyagintsev28fa9d92018-06-26 14:31:49 +0300553
chnydaf14ea2a2017-05-26 15:07:47 +0200554}
555
556/**
557 * Test salt-minion
558 *
azvyagintsev28fa9d92018-06-26 14:31:49 +0300559 * @param minion salt minion
chnydaf14ea2a2017-05-26 15:07:47 +0200560 */
561
azvyagintsev28fa9d92018-06-26 14:31:49 +0300562def testMinion(minionName) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300563 sh(script: "bash -c 'source /srv/salt/scripts/bootstrap.sh; cd /srv/salt/scripts && verify_salt_minion ${minionName}'", returnStdout: true)
Jakub Joseffa6ad8d2017-06-26 18:29:55 +0200564}
azvyagintsev2b279d82018-08-07 17:22:54 +0200565
azvyagintsev2b279d82018-08-07 17:22:54 +0200566/**
567 * Wrapper over setupAndTestNode, to test exactly one CC model.
azvyagintsevb4e0c442018-09-12 17:00:04 +0300568 Whole workspace and model - should be pre-rendered and passed via MODELS_TARGZ
569 Flow: grab all data, and pass to setupAndTestNode function
570 under-modell will be directly mirrored to `model/{cfg.testReclassEnv}/* /srv/salt/reclass/*`
azvyagintsev2b279d82018-08-07 17:22:54 +0200571 *
572 * @param cfg - dict with params:
azvyagintsevb4e0c442018-09-12 17:00:04 +0300573 MODELS_TARGZ http link to arch with (models|contexts|global_reclass)
574 modelFile
575 DockerCName directly passed to setupAndTestNode
576 EXTRA_FORMULAS directly passed to setupAndTestNode
577 DISTRIB_REVISION directly passed to setupAndTestNode
578 reclassVersion directly passed to setupAndTestNode
azvyagintsev2b279d82018-08-07 17:22:54 +0200579
azvyagintsevb4e0c442018-09-12 17:00:04 +0300580 Return: true\exception
azvyagintsev2b279d82018-08-07 17:22:54 +0200581 */
582
583def testCCModel(cfg) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300584 def common = new com.mirantis.mk.Common()
azvyagintsev1cecc092018-09-14 13:19:16 +0300585 common.errorMsg('You are using deprecated function!Please migrate to "testNode".' +
586 'It would be removed after 2018.q4 release!Pushing forced 60s sleep..')
587 sh('sleep 60')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300588 sh(script: 'find . -mindepth 1 -delete || true', returnStatus: true)
589 sh(script: "wget --progress=dot:mega --auth-no-challenge -O models.tar.gz ${cfg.MODELS_TARGZ}")
590 // unpack data
591 sh(script: "tar -xzf models.tar.gz ")
592 common.infoMsg("Going to test exactly one context: ${cfg.modelFile}\n, with params: ${cfg}")
593 content = readFile(file: cfg.modelFile)
594 templateContext = readYaml text: content
595 clusterName = templateContext.default_context.cluster_name
596 clusterDomain = templateContext.default_context.cluster_domain
azvyagintsev2b279d82018-08-07 17:22:54 +0200597
azvyagintsevb4e0c442018-09-12 17:00:04 +0300598 def testResult = false
599 testResult = setupAndTestNode(
600 "cfg01.${clusterDomain}",
601 clusterName,
602 '',
603 cfg.testReclassEnv, // Sync into image exactly one env
604 'pkg',
605 cfg.DISTRIB_REVISION,
606 cfg.reclassVersion,
607 0,
608 false,
609 false,
610 '',
611 '',
612 cfg.DockerCName)
613 if (testResult) {
614 common.infoMsg("testCCModel for context: ${cfg.modelFile} model: ${cfg.testReclassEnv} finished: SUCCESS")
615 } else {
616 throw new RuntimeException("testCCModel for context: ${cfg.modelFile} model: ${cfg.testReclassEnv} finished: FAILURE")
617 }
618 return testResult
azvyagintsev2b279d82018-08-07 17:22:54 +0200619}