blob: 622b86ab53893278dc5ab15292079bbf105a5549 [file] [log] [blame]
Jakub Josef83379312017-03-29 18:12:34 +02001
2/**
3 * Test salt models pipeline
4 * DEFAULT_GIT_REF
5 * DEFAULT_GIT_URL
6 * CREDENTIALS_ID
7 */
8
Jakub Josefc5a223a2017-03-01 14:40:08 +01009def common = new com.mirantis.mk.Common()
10def gerrit = new com.mirantis.mk.Gerrit()
Filip Pytloun38005aa2017-03-06 10:26:38 +010011def ssh = new com.mirantis.mk.Ssh()
12def git = new com.mirantis.mk.Git()
Jakub Josefc5a223a2017-03-01 14:40:08 +010013
Filip Pytloun19376a82017-03-07 12:29:00 +010014def gerritRef
15try {
16 gerritRef = GERRIT_REFSPEC
17} catch (MissingPropertyException e) {
18 gerritRef = null
19}
20
Jakub Josef83379312017-03-29 18:12:34 +020021def defaultGitRef, defaultGitUrl
Filip Pytloun19376a82017-03-07 12:29:00 +010022try {
Jakub Josef83379312017-03-29 18:12:34 +020023 defaultGitRef = DEFAULT_GIT_REF
24 defaultGitUrl = DEFAULT_GIT_URL
Filip Pytloun19376a82017-03-07 12:29:00 +010025} catch (MissingPropertyException e) {
Jakub Josef83379312017-03-29 18:12:34 +020026 defaultGitRef = null
27 defaultGitUrl = null
Filip Pytloun19376a82017-03-07 12:29:00 +010028}
Jakub Josef83379312017-03-29 18:12:34 +020029def checkouted = false
Jakub Joseffcb615e2017-04-10 14:34:40 +020030def merged = false
chnydafa4b0ec2017-05-05 15:49:27 +020031node("python&&docker") {
Jakub Josefc5a223a2017-03-01 14:40:08 +010032 try{
33 stage("checkout") {
Filip Pytloun19376a82017-03-07 12:29:00 +010034 if (gerritRef) {
Jakub Josef83379312017-03-29 18:12:34 +020035 // job is triggered by Gerrit
Jakub Joseffcb615e2017-04-10 14:34:40 +020036 // test if change aren't already merged
37 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID)
38 merged = gerritChange.status == "MERGED"
39 if(!merged){
40 checkouted = gerrit.gerritPatchsetCheckout ([
41 credentialsId : CREDENTIALS_ID
42 ])
chnydaa9c88702017-05-09 16:51:07 +020043 } else{
44 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to gate them")
Jakub Joseffcb615e2017-04-10 14:34:40 +020045 }
Jakub Josef83379312017-03-29 18:12:34 +020046 } else if(defaultGitRef && defaultGitUrl) {
Jakub Josefe1407ac2017-03-30 14:10:19 +020047 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
Filip Pytloun19376a82017-03-07 12:29:00 +010048 }
Jakub Josef83379312017-03-29 18:12:34 +020049 if(checkouted){
50 if (fileExists('classes/system')) {
51 ssh.prepareSshAgentKey(CREDENTIALS_ID)
Filip Pytloun19376a82017-03-07 12:29:00 +010052 dir('classes/system') {
Jakub Josef83379312017-03-29 18:12:34 +020053 remoteUrl = git.getGitRemote()
54 ssh.ensureKnownHosts(remoteUrl)
Filip Pytloun19376a82017-03-07 12:29:00 +010055 }
Jakub Josef83379312017-03-29 18:12:34 +020056 ssh.agentSh("git submodule init; git submodule sync; git submodule update --recursive")
Filip Pytloun19376a82017-03-07 12:29:00 +010057 }
Jakub Joseffcb615e2017-04-10 14:34:40 +020058 }else if(!merged){
Jakub Josef5ce6a362017-03-31 13:41:17 +020059 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
Filip Pytloun38005aa2017-03-06 10:26:38 +010060 }
Jakub Josefc5a223a2017-03-01 14:40:08 +010061 }
chnydaa9c88702017-05-09 16:51:07 +020062
chnyda14e44292017-05-13 19:00:06 +020063 stage("test-nodes") {
chnydab098e562017-05-16 10:31:26 +020064 def nodes = sh script: "find ./nodes -type f -name 'cfg*.yml'", returnStdout: true
65 def buildSteps = [:]
66 def partitions = common.partitionList(nodes.tokenize(), 3)
67 for (int i=0; i< partitions.size();i++) {
68 def partition = partitions[i]
69 buildSteps.put("partition-${i}", new HashMap<String,org.jenkinsci.plugins.workflow.cps.CpsClosure2>())
70 for(int k=0; k < partition.size;k++){
71 def basename = sh(script: "basename ${partition[k]} .yml", returnStdout: true).trim()
72 buildSteps.get("partition-${i}").put(basename, { setupAndTestNode(basename) })
Jakub Josef8d024772017-05-15 18:07:45 +020073 }
Jakub Josefc5a223a2017-03-01 14:40:08 +010074 }
chnydab098e562017-05-16 10:31:26 +020075 common.serial(buildSteps)
chnyda51b03142017-05-10 17:15:27 +020076 }
chnyda14e44292017-05-13 19:00:06 +020077
Jakub Josefc5a223a2017-03-01 14:40:08 +010078 } catch (Throwable e) {
79 // If there was an error or exception thrown, the build failed
80 currentBuild.result = "FAILURE"
81 throw e
82 } finally {
83 common.sendNotification(currentBuild.result,"",["slack"])
84 }
Tomáš Kukrál500c0182017-05-11 13:46:19 +020085}
Jakub Josef8d024772017-05-15 18:07:45 +020086
87def setupAndTestNode(masterName) {
88 def img = docker.image("ubuntu:latest")
89 def saltOpts = "--retcode-passthrough --force-color"
90 def common = new com.mirantis.mk.Common()
91 def workspace = common.getWorkspace()
92
93 img.inside("-u root:root --hostname=${masterName}") {
94 wrap([$class: 'AnsiColorBuildWrapper']) {
95 sh("mkdir -p /srv/salt/ || true")
96 sh("cp -r ${workspace} /srv/salt/reclass")
97 sh("apt-get update && apt-get install -y curl subversion git python-pip sudo python-pip python-dev zlib1g-dev git")
98 sh("svn export --force https://github.com/salt-formulas/salt-formulas/trunk/deploy/scripts /srv/salt/scripts")
99 sh("git config --global user.email || git config --global user.email 'ci@ci.local'")
100 sh("git config --global user.name || git config --global user.name 'CI'")
101 sh("pip install git+https://github.com/epcim/reclass.git@pr/fix/fix_raise_UndefinedVariableError")
102 sh("ls -lRa /srv/salt/reclass")
103
104 // setup iniot and verify salt master and minions
105 withEnv(["FORMULAS_SOURCE=pkg", "DEBUG=1", "MASTER_HOSTNAME=${masterName}", "MINION_ID=${masterName}", "HOSTNAME=cfg01", "DOMAIN=mk-ci.local"]){
106 sh("bash -c 'echo $MASTER_HOSTNAME'")
107 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; cd /srv/salt/scripts && system_config'")
108 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; cd /srv/salt/scripts && saltmaster_bootstrap'")
109 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; cd /srv/salt/scripts && saltmaster_init'")
110 }
111 sh("ls -lRa /srv/salt/reclass/classes/service/")
112
113 def nodes
114 if (DEFAULT_GIT_URL.contains("mk-ci")) {
115 nodes = sh script: "find /srv/salt/reclass/nodes -name '*.yml' | grep -v 'cfg*.yml'", returnStdout: true
116 } else {
117 nodes = sh script:"find /srv/salt/reclass/nodes/_generated -name '*.yml' | grep -v 'cfg*.yml'", returnStdout: true
118 }
119 for (minion in nodes.tokenize()) {
120 def basename = sh script: "basename ${minion} .yml", returnStdout: true
121 if (!basename.trim().contains(masterName)) {
122 testMinion(basename.trim())
123 }
124 }
125 }
126 }
127}
128
129def testMinion(minionName)
130{
131 sh("service salt-master restart && service salt-minion restart && sleep 5 && bash -c 'source /srv/salt/scripts/salt-master-init.sh; cd /srv/salt/scripts && verify_salt_minion ${minionName}'")
132}