blob: 199f213e857e95ccb18f3ae55be950e3aa2e6f6e [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)
34 def dockerImageName = config.get('image', "mirantis/salt:saltstack-ubuntu-xenial-salt-2017.7")
35 def dockerMaxCpus = config.get('dockerMaxCpus', 4)
36 def dockerExtraOpts = config.get('dockerExtraOpts', [])
37 def envOpts = config.get('envOpts', [])
azvyagintsevabcf42e2018-10-05 20:40:27 +030038 envOpts.add("DISTRIB_REVISION=${distribRevision}")
Denis Egorenko6fd79ac2018-09-12 13:28:21 +040039 def dockerBaseOpts = [
40 '-u root:root',
41 "--hostname=${dockerHostname}",
42 '--ulimit nofile=4096:8192',
43 "--name=${dockerContainerName}",
44 "--cpus=${dockerMaxCpus}"
45 ]
Denis Egorenko649cf7d2018-10-18 16:36:33 +040046 def dockerOptsFinal = (dockerBaseOpts + dockerExtraOpts).join(' ')
Denis Egorenko5cea1412018-10-18 16:40:11 +040047 def extraReposConfig = null
48 if (baseRepoPreConfig) {
49 // extra repo on mirror.mirantis.net, which is not supported before 2018.11.0 release
50 def extraRepoSource = "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/extra/xenial xenial main"
51 try {
52 def releaseNaming = 'yyyy.MM.dd'
53 def repoDateUsed = new Date().parse(releaseNaming, distribRevision)
54 def extraAvailableFrom = new Date().parse(releaseNaming, '2018.11.0')
55 if (repoDateUsed < extraAvailableFrom) {
56 extraRepoSource = "deb http://apt.mcp.mirantis.net:8085/xenial ${distribRevision} extra"
57 }
58 } catch (Exception e) {
59 common.warningMsg(e)
60 if ( !(distribRevision in [ 'nightly', 'proposed', 'testing' ] )) {
61 extraRepoSource = "deb http://apt.mcp.mirantis.net:8085/xenial ${distribRevision} extra"
62 }
63 }
64
65 def defaultExtraReposYaml = """
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000066---
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000067aprConfD: |-
68 APT::Get::AllowUnauthenticated 'true';
69 APT::Get::Install-Suggests 'false';
70 APT::Get::Install-Recommends 'false';
71repo:
72 mcp_saltstack:
Denis Egorenko395aa212018-10-11 15:11:28 +040073 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/saltstack-2017.7/xenial xenial main"
Denis Egorenkoe02a1b22018-10-19 17:47:53 +040074 pin:
75 - package: "libsodium18"
76 pin: "release o=SaltStack"
77 priority: 50
78 - package: "*"
79 pin: "release o=SaltStack"
80 priority: "1100"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000081 mcp_extra:
Denis Egorenko3c752a52018-10-12 12:21:29 +040082 source: "${extraRepoSource}"
Denis Egorenko395aa212018-10-11 15:11:28 +040083 mcp_saltformulas:
84 source: "deb http://apt.mcp.mirantis.net:8085/xenial ${distribRevision} salt salt-latest"
85 repo_key: "http://apt.mcp.mirantis.net:8085/public.gpg"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000086 ubuntu:
Denis Egorenko395aa212018-10-11 15:11:28 +040087 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial main restricted universe"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000088 ubuntu-upd:
Denis Egorenko395aa212018-10-11 15:11:28 +040089 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial-updates main restricted universe"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +000090 ubuntu-sec:
Denis Egorenko395aa212018-10-11 15:11:28 +040091 source: "deb [arch=amd64] http://mirror.mirantis.com/${distribRevision}/ubuntu xenial-security main restricted universe"
92"""
Denis Egorenko5cea1412018-10-18 16:40:11 +040093 // override for now
94 def extraRepoMergeStrategy = config.get('extraRepoMergeStrategy', 'override')
95 def extraRepos = config.get('extraRepos', [:])
96 def defaultRepos = readYaml text: defaultExtraReposYaml
97 if (extraRepoMergeStrategy == 'merge') {
98 extraReposConfig = common.mergeMaps(defaultRepos, extraRepos)
99 } else {
100 extraReposConfig = extraRepos ? extraRepos : defaultRepos
101 }
102 }
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400103 def img = docker.image(dockerImageName)
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000104
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400105 img.pull()
106
107 try {
108 img.inside(dockerOptsFinal) {
109 withEnv(envOpts) {
110 try {
111 // Currently, we don't have any other point to install
112 // runtime dependencies for tests.
113 if (baseRepoPreConfig) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000114 // Warning! POssible point of 'allow-downgrades' issue
115 // Probably, need to add such flag into apt.prefs
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400116 sh("""#!/bin/bash -xe
117 echo "Installing extra-deb dependencies inside docker:"
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000118 echo > /etc/apt/sources.list
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400119 rm -vf /etc/apt/sources.list.d/* || true
Denis Egorenkoe02a1b22018-10-19 17:47:53 +0400120 rm -vf /etc/apt/preferences.d/* || true
Aleksey Zvyagintsevc5453342018-10-05 15:03:59 +0000121 """)
Denis Egorenko5cea1412018-10-18 16:40:11 +0400122 common.debianExtraRepos(extraReposConfig)
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000123 sh('''#!/bin/bash -xe
124 apt-get update
Denis Egorenkoc6b24be2018-10-10 17:36:04 +0400125 apt-get install -y python-netaddr
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000126 ''')
127
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400128 }
129 runCommands.sort().each { command, body ->
130 common.warningMsg("Running command: ${command}")
131 // doCall is the closure implementation in groovy, allow to pass arguments to closure
132 body.call()
133 }
134 // If we didn't dropped for now - test has been passed.
135 TestMarkerResult = true
136 }
137 finally {
138 runFinally.sort().each { command, body ->
139 common.warningMsg("Running ${command} command.")
140 // doCall is the closure implementation in groovy, allow to pass arguments to closure
141 body.call()
142 }
143 }
144 }
145 }
146 }
147 catch (Exception er) {
148 common.warningMsg("IgnoreMe:Something wrong with img.Message:\n" + er.toString())
149 }
150
151 try {
152 common.warningMsg("IgnoreMe:Force cleanup slave.Ignore docker-daemon errors")
153 timeout(time: 10, unit: 'SECONDS') {
154 sh(script: "set -x; docker kill ${dockerContainerName} || true", returnStdout: true)
155 }
156 timeout(time: 10, unit: 'SECONDS') {
157 sh(script: "set -x; docker rm --force ${dockerContainerName} || true", returnStdout: true)
158 }
159 }
160 catch (Exception er) {
161 common.warningMsg("IgnoreMe:Timeout to delete test docker container with force!Message:\n" + er.toString())
162 }
163
164 if (TestMarkerResult) {
165 common.infoMsg("Test finished: SUCCESS")
166 } else {
167 common.warningMsg("Test finished: FAILURE")
168 }
169 return TestMarkerResult
170}
171
172/**
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000173 * Wrapper around setupDockerAndTest, to run checks against new Reclass version
174 * that current model is compatible with new Reclass.
175 *
176 * @param config - LinkedHashMap with configuration params:
177 * dockerHostname - (required) Hostname to use for Docker container.
178 * distribRevision - (optional) Revision of packages to use (default proposed).
179 * extraRepo - (optional) Extra repo to use to install new Reclass version. Has
180 * high priority on distribRevision
181 * targetNodes - (required) List nodes to check pillar data.
Denis Egorenkob090a762018-09-12 19:25:41 +0400182 */
183def compareReclassVersions(config) {
184 def common = new com.mirantis.mk.Common()
185 def salt = new com.mirantis.mk.Salt()
186 common.infoMsg("Going to test new reclass for CFG node")
187 def distribRevision = config.get('distribRevision', 'proposed')
188 def venv = config.get('venv')
189 def extraRepo = config.get('extraRepo', '')
190 def extraRepoKey = config.get('extraRepoKey', '')
191 def targetNodes = config.get('targetNodes')
192 sh "rm -rf ${env.WORKSPACE}/old ${env.WORKSPACE}/new"
193 sh "mkdir -p ${env.WORKSPACE}/old ${env.WORKSPACE}/new"
194 def configRun = [
azvyagintsevabcf42e2018-10-05 20:40:27 +0300195 'distribRevision': distribRevision,
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000196 'dockerExtraOpts' : [
Denis Egorenkob090a762018-09-12 19:25:41 +0400197 "-v /srv/salt/reclass:/srv/salt/reclass:ro",
198 "-v /etc/salt:/etc/salt:ro",
199 "-v /usr/share/salt-formulas/:/usr/share/salt-formulas/:ro"
200 ],
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000201 'envOpts' : [
Denis Egorenkob090a762018-09-12 19:25:41 +0400202 "WORKSPACE=${env.WORKSPACE}",
203 "NODES_LIST=${targetNodes.join(' ')}"
204 ],
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000205 'runCommands' : [
206 '001_Update_Reclass_package' : {
207 sh('apt-get update && apt-get install -y reclass')
Denis Egorenkob090a762018-09-12 19:25:41 +0400208 },
209 '002_Test_Reclass_Compatibility': {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000210 sh('''
Denis Egorenkob090a762018-09-12 19:25:41 +0400211 reclass-salt -b /srv/salt/reclass -t > ${WORKSPACE}/new/inventory || exit 1
212 for node in $NODES_LIST; do
213 reclass-salt -b /srv/salt/reclass -p $node > ${WORKSPACE}/new/$node || exit 1
214 done
215 ''')
216 }
217 ]
218 ]
219 if (extraRepo) {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000220 // FIXME
Denis Egorenkob090a762018-09-12 19:25:41 +0400221 configRun['runCommands']['0001_Additional_Extra_Repo_Passed'] = {
222 sh("""
223 echo "${extraRepo}" > /etc/apt/sources.list.d/mcp_extra.list
224 [ "${extraRepoKey}" ] && wget -O - ${extraRepoKey} | apt-key add -
225 """)
226 }
Denis Egorenkob090a762018-09-12 19:25:41 +0400227 }
228 if (setupDockerAndTest(configRun)) {
229 common.infoMsg("New reclass version is compatible with current model: SUCCESS")
230 def inventoryOld = salt.cmdRun(venv, "I@salt:master", "reclass-salt -b /srv/salt/reclass -t", true, null, true).get("return")[0].values()[0]
231 // [0..-31] to exclude 'echo Salt command execution success' from output
232 writeFile(file: "${env.WORKSPACE}/old/inventory", text: inventoryOld[0..-31])
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000233 for (String node in targetNodes) {
Denis Egorenkob090a762018-09-12 19:25:41 +0400234 def nodeOut = salt.cmdRun(venv, "I@salt:master", "reclass-salt -b /srv/salt/reclass -p ${node}", true, null, true).get("return")[0].values()[0]
235 writeFile(file: "${env.WORKSPACE}/old/${node}", text: nodeOut[0..-31])
236 }
237 def reclassDiff = common.comparePillars(env.WORKSPACE, env.BUILD_URL, '')
238 currentBuild.description = reclassDiff
239 if (reclassDiff != '<b>No job changes</b>') {
240 throw new RuntimeException("Pillars with new reclass version has been changed: FAILED")
241 } else {
242 common.infoMsg("Pillars not changed with new reclass version: SUCCESS")
243 }
244 } else {
245 throw new RuntimeException("New reclass version is not compatible with current model: FAILED")
246 }
247}
248
249/**
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400250 * Wrapper over setupDockerAndTest, to test CC model.
251 *
252 * @param config - dict with params:
253 * dockerHostname - (required) salt master's name
254 * clusterName - (optional) model cluster name
255 * extraFormulas - (optional) extraFormulas to install. DEPRECATED
256 * formulasSource - (optional) formulas source (git or pkg, default pkg)
257 * reclassVersion - (optional) Version of used reclass (branch, tag, ...) (optional, default master)
258 * reclassEnv - (require) directory of model
259 * ignoreClassNotfound - (optional) Ignore missing classes for reclass model (default false)
260 * aptRepoUrl - (optional) package repository with salt formulas
261 * aptRepoGPG - (optional) GPG key for apt repository with formulas
262 * testContext - (optional) Description of test
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000263 Return: true\exception
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400264 */
265
266def testNode(LinkedHashMap config) {
267 def common = new com.mirantis.mk.Common()
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400268 def dockerHostname = config.get('dockerHostname')
269 def reclassEnv = config.get('reclassEnv')
270 def clusterName = config.get('clusterName', "")
271 def formulasSource = config.get('formulasSource', 'pkg')
272 def extraFormulas = config.get('extraFormulas', 'linux')
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400273 def ignoreClassNotfound = config.get('ignoreClassNotfound', false)
274 def aptRepoUrl = config.get('aptRepoUrl', "")
275 def aptRepoGPG = config.get('aptRepoGPG', "")
276 def testContext = config.get('testContext', 'test')
277 config['envOpts'] = [
278 "RECLASS_ENV=${reclassEnv}", "SALT_STOPSTART_WAIT=5",
279 "MASTER_HOSTNAME=${dockerHostname}", "CLUSTER_NAME=${clusterName}",
280 "MINION_ID=${dockerHostname}", "FORMULAS_SOURCE=${formulasSource}",
Denis Egorenkod54f60f2018-10-10 19:38:03 +0400281 "EXTRA_FORMULAS=${extraFormulas}", "EXTRA_FORMULAS_PKG_ALL=true",
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400282 "RECLASS_IGNORE_CLASS_NOTFOUND=${ignoreClassNotfound}", "DEBUG=1",
Denis Egorenkod54f60f2018-10-10 19:38:03 +0400283 "APT_REPOSITORY=${aptRepoUrl}", "APT_REPOSITORY_GPG=${aptRepoGPG}"
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400284 ]
285
286 config['runCommands'] = [
287 '001_Clone_salt_formulas_scripts': {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000288 sh(script: 'git clone https://github.com/salt-formulas/salt-formulas-scripts /srv/salt/scripts', returnStdout: true)
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400289 },
290
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000291 '002_Prepare_something' : {
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400292 sh('''rsync -ah ${RECLASS_ENV}/* /srv/salt/reclass && echo '127.0.1.2 salt' >> /etc/hosts
293 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt-mk.mirantis.com/apt.mirantis.net:8085/g' {} \\;
294 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt.mirantis.com/apt.mirantis.net:8085/g' {} \\;
295 ''')
296 },
297
Denis Egorenkoc6b24be2018-10-10 17:36:04 +0400298 '003_Install_Reclass_package' : {
299 sh('apt-get install -y reclass')
300 },
301
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000302 '004_Run_tests' : {
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400303 def testTimeout = 40 * 60
304 timeout(time: testTimeout, unit: 'SECONDS') {
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000305 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400306 source /srv/salt/scripts/bootstrap.sh
307 cd /srv/salt/scripts
308 source_local_envs
309 configure_salt_master
310 configure_salt_minion
311 install_salt_formula_pkg
312 source /srv/salt/scripts/bootstrap.sh
313 cd /srv/salt/scripts
314 saltservice_restart''')
315
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000316 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400317 source /srv/salt/scripts/bootstrap.sh
318 cd /srv/salt/scripts
319 source_local_envs
320 saltmaster_init''')
321
Aleksey Zvyagintsevb20bd262018-10-05 15:09:06 +0000322 sh('''#!/bin/bash
Denis Egorenko6fd79ac2018-09-12 13:28:21 +0400323 source /srv/salt/scripts/bootstrap.sh
324 cd /srv/salt/scripts
325 verify_salt_minions''')
326 }
327 }
328 ]
329 config['runFinally'] = [
330 '001_Archive_artefacts': {
331 sh(script: "cd /tmp; tar -czf ${env.WORKSPACE}/nodesinfo.tar.gz *reclass*", returnStatus: true)
332 archiveArtifacts artifacts: "nodesinfo.tar.gz"
333 }
334 ]
335 testResult = setupDockerAndTest(config)
336 if (testResult) {
337 common.infoMsg("Node test for context: ${testContext} model: ${reclassEnv} finished: SUCCESS")
338 } else {
339 throw new RuntimeException("Node test for context: ${testContext} model: ${reclassEnv} finished: FAILURE")
340 }
341 return testResult
342}
343
344/**
chnydaf14ea2a2017-05-26 15:07:47 +0200345 * setup and test salt-master
346 *
azvyagintsevb4e0c442018-09-12 17:00:04 +0300347 * @param masterName salt master's name
348 * @param clusterName model cluster name
349 * @param extraFormulas extraFormulas to install. DEPRECATED
350 * @param formulasSource formulas source (git or pkg)
351 * @param reclassVersion Version of used reclass (branch, tag, ...) (optional, default master)
352 * @param testDir directory of model
353 * @param formulasSource Salt formulas source type (optional, default pkg)
354 * @param formulasRevision APT revision for formulas (optional default stable)
Petr Michalec6414aa52017-08-17 14:32:52 +0200355 * @param ignoreClassNotfound Ignore missing classes for reclass model
azvyagintsevb4e0c442018-09-12 17:00:04 +0300356 * @param dockerMaxCpus max cpus passed to docker (default 0, disabled)
357 * @param legacyTestingMode do you want to enable legacy testing mode (iterating through the nodes directory definitions instead of reading cluster models)
358 * @param aptRepoUrl package repository with salt formulas
359 * @param aptRepoGPG GPG key for apt repository with formulas
azvyagintsev28fa9d92018-06-26 14:31:49 +0300360 * Return true | false
chnydaf14ea2a2017-05-26 15:07:47 +0200361 */
362
azvyagintsevb4e0c442018-09-12 17:00:04 +0300363def setupAndTestNode(masterName, clusterName, extraFormulas = '*', testDir, formulasSource = 'pkg',
Vasyl Saienko369ed902018-07-23 11:49:32 +0000364 formulasRevision = 'stable', reclassVersion = "master", dockerMaxCpus = 0,
azvyagintsev28fa9d92018-06-26 14:31:49 +0300365 ignoreClassNotfound = false, legacyTestingMode = false, aptRepoUrl = '', aptRepoGPG = '', dockerContainerName = false) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300366 def common = new com.mirantis.mk.Common()
azvyagintsev1cecc092018-09-14 13:19:16 +0300367 // TODO
368 common.errorMsg('You are using deprecated function!Please migrate to "setupDockerAndTest".' +
369 'It would be removed after 2018.q4 release!Pushing forced 60s sleep..')
370 sh('sleep 60')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300371 // timeout for test execution (40min)
372 def testTimeout = 40 * 60
373 def TestMarkerResult = false
374 def saltOpts = "--retcode-passthrough --force-color"
375 def workspace = common.getWorkspace()
376 def img = docker.image("mirantis/salt:saltstack-ubuntu-xenial-salt-2017.7")
377 img.pull()
chnydaf14ea2a2017-05-26 15:07:47 +0200378
azvyagintsev635affb2018-09-13 13:02:54 +0300379 if (formulasSource == 'pkg') {
380 if (extraFormulas) {
381 common.warningMsg("You have passed deprecated variable:extraFormulas=${extraFormulas}. " +
382 "\n It would be ignored, and all formulas would be installed anyway")
383 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300384 }
385 if (!dockerContainerName) {
386 dockerContainerName = 'setupAndTestNode' + UUID.randomUUID().toString()
387 }
388 def dockerMaxCpusOpt = "--cpus=4"
389 if (dockerMaxCpus > 0) {
390 dockerMaxCpusOpt = "--cpus=${dockerMaxCpus}"
391 }
392 try {
393 img.inside("-u root:root --hostname=${masterName} --ulimit nofile=4096:8192 ${dockerMaxCpusOpt} --name=${dockerContainerName}") {
azvyagintsev635affb2018-09-13 13:02:54 +0300394 withEnv(["FORMULAS_SOURCE=${formulasSource}", "EXTRA_FORMULAS=${extraFormulas}", "EXTRA_FORMULAS_PKG_ALL=true",
azvyagintsevb4e0c442018-09-12 17:00:04 +0300395 "DISTRIB_REVISION=${formulasRevision}",
396 "DEBUG=1", "MASTER_HOSTNAME=${masterName}",
397 "CLUSTER_NAME=${clusterName}", "MINION_ID=${masterName}",
398 "RECLASS_VERSION=${reclassVersion}", "RECLASS_IGNORE_CLASS_NOTFOUND=${ignoreClassNotfound}",
399 "APT_REPOSITORY=${aptRepoUrl}", "SALT_STOPSTART_WAIT=5",
400 "APT_REPOSITORY_GPG=${aptRepoGPG}"]) {
401 try {
402 // Currently, we don't have any other point to install
403 // runtime dependencies for tests.
404 sh("""#!/bin/bash -xe
azvyagintsev1bfe6842018-08-09 18:40:17 +0200405 echo "Installing extra-deb dependencies inside docker:"
406 echo "APT::Get::AllowUnauthenticated 'true';" > /etc/apt/apt.conf.d/99setupAndTestNode
407 echo "APT::Get::Install-Suggests 'false';" >> /etc/apt/apt.conf.d/99setupAndTestNode
408 echo "APT::Get::Install-Recommends 'false';" >> /etc/apt/apt.conf.d/99setupAndTestNode
409 rm -vf /etc/apt/sources.list.d/* || true
410 echo 'deb [arch=amd64] http://mirror.mirantis.com/$DISTRIB_REVISION/ubuntu xenial main restricted universe' > /etc/apt/sources.list
411 echo 'deb [arch=amd64] http://mirror.mirantis.com/$DISTRIB_REVISION/ubuntu xenial-updates main restricted universe' >> /etc/apt/sources.list
412 apt-get update
413 apt-get install -y python-netaddr
414 """)
azvyagintsevb4e0c442018-09-12 17:00:04 +0300415 sh(script: "git clone https://github.com/salt-formulas/salt-formulas-scripts /srv/salt/scripts", returnStdout: true)
416 sh("""rsync -ah ${testDir}/* /srv/salt/reclass && echo '127.0.1.2 salt' >> /etc/hosts
azvyagintsev1bfe6842018-08-09 18:40:17 +0200417 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt-mk.mirantis.com/apt.mirantis.net:8085/g' {} \\;
418 cd /srv/salt && find . -type f \\( -name '*.yml' -or -name '*.sh' \\) -exec sed -i 's/apt.mirantis.com/apt.mirantis.net:8085/g' {} \\;
419 """)
azvyagintsevb4e0c442018-09-12 17:00:04 +0300420 // FIXME: should be changed to use reclass from mcp_extra_nigtly?
421 sh("""for s in \$(python -c \"import site; print(' '.join(site.getsitepackages()))\"); do
azvyagintsev1bfe6842018-08-09 18:40:17 +0200422 sudo -H pip install --install-option=\"--prefix=\" --upgrade --force-reinstall -I \
423 -t \"\$s\" git+https://github.com/salt-formulas/reclass.git@${reclassVersion};
424 done""")
azvyagintsevb4e0c442018-09-12 17:00:04 +0300425 timeout(time: testTimeout, unit: 'SECONDS') {
426 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200427 source /srv/salt/scripts/bootstrap.sh
428 cd /srv/salt/scripts
429 source_local_envs
430 configure_salt_master
431 configure_salt_minion
432 install_salt_formula_pkg
433 source /srv/salt/scripts/bootstrap.sh
434 cd /srv/salt/scripts
435 saltservice_restart''')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300436 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200437 source /srv/salt/scripts/bootstrap.sh
438 cd /srv/salt/scripts
439 source_local_envs
440 saltmaster_init''')
441
azvyagintsevb4e0c442018-09-12 17:00:04 +0300442 if (!legacyTestingMode.toBoolean()) {
443 sh('''#!/bin/bash
azvyagintsev1bfe6842018-08-09 18:40:17 +0200444 source /srv/salt/scripts/bootstrap.sh
445 cd /srv/salt/scripts
446 verify_salt_minions
447 ''')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300448 }
449 }
450 // If we didn't dropped for now - test has been passed.
451 TestMarkerResult = true
452 }
453
454 finally {
455 // Collect rendered per-node data.Those info could be simply used
456 // for diff processing. Data was generated via reclass.cli --nodeinfo,
457 /// during verify_salt_minions.
458 sh(script: "cd /tmp; tar -czf ${env.WORKSPACE}/nodesinfo.tar.gz *reclass*", returnStatus: true)
459 archiveArtifacts artifacts: "nodesinfo.tar.gz"
460 }
azvyagintsev1bfe6842018-08-09 18:40:17 +0200461 }
azvyagintsev1bfe6842018-08-09 18:40:17 +0200462 }
chnydaf14ea2a2017-05-26 15:07:47 +0200463 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300464 catch (Exception er) {
465 common.warningMsg("IgnoreMe:Something wrong with img.Message:\n" + er.toString())
466 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300467
azvyagintsevb4e0c442018-09-12 17:00:04 +0300468 if (legacyTestingMode.toBoolean()) {
469 common.infoMsg("Running legacy mode test for master hostname ${masterName}")
470 def nodes = sh(script: "find /srv/salt/reclass/nodes -name '*.yml' | grep -v 'cfg*.yml'", returnStdout: true)
471 for (minion in nodes.tokenize()) {
472 def basename = sh(script: "set +x;basename ${minion} .yml", returnStdout: true)
473 if (!basename.trim().contains(masterName)) {
474 testMinion(basename.trim())
475 }
476 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300477 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300478
azvyagintsevb4e0c442018-09-12 17:00:04 +0300479 try {
480 common.warningMsg("IgnoreMe:Force cleanup slave.Ignore docker-daemon errors")
481 timeout(time: 10, unit: 'SECONDS') {
482 sh(script: "set -x; docker kill ${dockerContainerName} || true", returnStdout: true)
483 }
484 timeout(time: 10, unit: 'SECONDS') {
485 sh(script: "set -x; docker rm --force ${dockerContainerName} || true", returnStdout: true)
486 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300487 }
azvyagintsevb4e0c442018-09-12 17:00:04 +0300488 catch (Exception er) {
489 common.warningMsg("IgnoreMe:Timeout to delete test docker container with force!Message:\n" + er.toString())
azvyagintsev28fa9d92018-06-26 14:31:49 +0300490 }
azvyagintsev28fa9d92018-06-26 14:31:49 +0300491
azvyagintsevb4e0c442018-09-12 17:00:04 +0300492 if (TestMarkerResult) {
493 common.infoMsg("Test finished: SUCCESS")
494 } else {
495 common.warningMsg("Test finished: FAILURE")
496 }
497 return TestMarkerResult
azvyagintsev28fa9d92018-06-26 14:31:49 +0300498
chnydaf14ea2a2017-05-26 15:07:47 +0200499}
500
501/**
502 * Test salt-minion
503 *
azvyagintsev28fa9d92018-06-26 14:31:49 +0300504 * @param minion salt minion
chnydaf14ea2a2017-05-26 15:07:47 +0200505 */
506
azvyagintsev28fa9d92018-06-26 14:31:49 +0300507def testMinion(minionName) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300508 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 +0200509}
azvyagintsev2b279d82018-08-07 17:22:54 +0200510
azvyagintsev2b279d82018-08-07 17:22:54 +0200511/**
512 * Wrapper over setupAndTestNode, to test exactly one CC model.
azvyagintsevb4e0c442018-09-12 17:00:04 +0300513 Whole workspace and model - should be pre-rendered and passed via MODELS_TARGZ
514 Flow: grab all data, and pass to setupAndTestNode function
515 under-modell will be directly mirrored to `model/{cfg.testReclassEnv}/* /srv/salt/reclass/*`
azvyagintsev2b279d82018-08-07 17:22:54 +0200516 *
517 * @param cfg - dict with params:
azvyagintsevb4e0c442018-09-12 17:00:04 +0300518 MODELS_TARGZ http link to arch with (models|contexts|global_reclass)
519 modelFile
520 DockerCName directly passed to setupAndTestNode
521 EXTRA_FORMULAS directly passed to setupAndTestNode
522 DISTRIB_REVISION directly passed to setupAndTestNode
523 reclassVersion directly passed to setupAndTestNode
azvyagintsev2b279d82018-08-07 17:22:54 +0200524
azvyagintsevb4e0c442018-09-12 17:00:04 +0300525 Return: true\exception
azvyagintsev2b279d82018-08-07 17:22:54 +0200526 */
527
528def testCCModel(cfg) {
azvyagintsevb4e0c442018-09-12 17:00:04 +0300529 def common = new com.mirantis.mk.Common()
azvyagintsev1cecc092018-09-14 13:19:16 +0300530 common.errorMsg('You are using deprecated function!Please migrate to "testNode".' +
531 'It would be removed after 2018.q4 release!Pushing forced 60s sleep..')
532 sh('sleep 60')
azvyagintsevb4e0c442018-09-12 17:00:04 +0300533 sh(script: 'find . -mindepth 1 -delete || true', returnStatus: true)
534 sh(script: "wget --progress=dot:mega --auth-no-challenge -O models.tar.gz ${cfg.MODELS_TARGZ}")
535 // unpack data
536 sh(script: "tar -xzf models.tar.gz ")
537 common.infoMsg("Going to test exactly one context: ${cfg.modelFile}\n, with params: ${cfg}")
538 content = readFile(file: cfg.modelFile)
539 templateContext = readYaml text: content
540 clusterName = templateContext.default_context.cluster_name
541 clusterDomain = templateContext.default_context.cluster_domain
azvyagintsev2b279d82018-08-07 17:22:54 +0200542
azvyagintsevb4e0c442018-09-12 17:00:04 +0300543 def testResult = false
544 testResult = setupAndTestNode(
545 "cfg01.${clusterDomain}",
546 clusterName,
547 '',
548 cfg.testReclassEnv, // Sync into image exactly one env
549 'pkg',
550 cfg.DISTRIB_REVISION,
551 cfg.reclassVersion,
552 0,
553 false,
554 false,
555 '',
556 '',
557 cfg.DockerCName)
558 if (testResult) {
559 common.infoMsg("testCCModel for context: ${cfg.modelFile} model: ${cfg.testReclassEnv} finished: SUCCESS")
560 } else {
561 throw new RuntimeException("testCCModel for context: ${cfg.modelFile} model: ${cfg.testReclassEnv} finished: FAILURE")
562 }
563 return testResult
azvyagintsev2b279d82018-08-07 17:22:54 +0200564}