blob: 2398b6007d28710ff90b28e9bc322a3c6a9280a4 [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
Filip Pytloun19376a82017-03-07 12:29:00 +010031
chnyda51b03142017-05-10 17:15:27 +020032def testMinion(minion, saltOpts)
33{
chnyda17d877c2017-05-11 09:49:45 +020034 sh("""bash -c 'source /srv/salt/scripts/salt-master-init.sh;
chnyda6c509b82017-05-11 08:41:12 +020035 export SUDO=sudo;
36 export DEBUG=1;
chnyda6c509b82017-05-11 08:41:12 +020037 export MASTER_HOSTNAME=${master}; reclass-salt -p ${minion} > /tmp/${minion}.pillar_verify'""")
chnydaa9c88702017-05-09 16:51:07 +020038}
39
chnyda51b03142017-05-10 17:15:27 +020040def setupandtest(master) {
41 def img = docker.image("ubuntu:trusty")
chnydaa9c88702017-05-09 16:51:07 +020042 def saltOpts = "--retcode-passthrough --force-color"
chnyda6c509b82017-05-11 08:41:12 +020043 def common = new com.mirantis.mk.Common()
44 def workspace = common.getWorkspace()
chnydaa9c88702017-05-09 16:51:07 +020045
chnydac0016dc2017-05-11 11:08:37 +020046//
chnyda6c509b82017-05-11 08:41:12 +020047 img.inside("-u root:root -v ${workspace}:/srv/salt/reclass") {
48 wrap([$class: 'AnsiColorBuildWrapper']) {
Tomáš Kukrál500c0182017-05-11 13:46:19 +020049 sh("apt-get update && apt-get install software-properties-common python-software-properties -y")
chnyda6c509b82017-05-11 08:41:12 +020050 sh("add-apt-repository ppa:saltstack/salt -y")
Tomáš Kukrál500c0182017-05-11 13:46:19 +020051 sh("apt-get update && apt-get install -y curl subversion git python-pip sudo python-pip python-dev zlib1g-dev reclass git")
chnydac0016dc2017-05-11 11:08:37 +020052 sh("sudo apt-get install -y salt-common salt-master salt-minion salt-ssh salt-cloud salt-doc")
chnyda6c509b82017-05-11 08:41:12 +020053 sh("svn export --force https://github.com/chnyda/salt-formulas/trunk/deploy/scripts /srv/salt/scripts")
54 //configure git
55 sh("git config --global user.email || git config --global user.email 'ci@ci.local'")
Tomáš Kukrál500c0182017-05-11 13:46:19 +020056 sh("git config --global user.name || git config --global user.name 'CI'")
chnyda6c509b82017-05-11 08:41:12 +020057 //
58 sh("cd /srv/salt/reclass; test ! -e .gitmodules || git submodule update --init --recursive")
59 sh("cd /srv/salt/reclass; git commit -am 'Fake branch update' || true")
chnydac0016dc2017-05-11 11:08:37 +020060 sh("ls -lRa /srv/salt/reclass")
chnydaa9c88702017-05-09 16:51:07 +020061
chnyda6c509b82017-05-11 08:41:12 +020062 // setup iniot and verify salt master and minions
63 withEnv(["SUDO=sudo","DEBUG=1", "MASTER_HOSTNAME=${master}"]){
chnyda17d877c2017-05-11 09:49:45 +020064 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; system_config'")
65 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; saltmaster_bootstrap'")
chnydac0016dc2017-05-11 11:08:37 +020066 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; saltmaster_init'")
chnyda17d877c2017-05-11 09:49:45 +020067 sh("bash -c 'source /srv/salt/scripts/salt-master-init.sh; verify_salt_master'")
chnyda6c509b82017-05-11 08:41:12 +020068 }
chnydaa9c88702017-05-09 16:51:07 +020069
chnyda6c509b82017-05-11 08:41:12 +020070 testSteps = [:]
71 nodes = sh script:"ls /srv/salt/reclass/nodes/_generated"
72 for (minion in nodes.tokenize()) {
73 def basename = sh script: "basename ${minion} .yml", returnStdout: true
74 testSteps = { testMinion(basename.trim())}
75 }
76 parallel testSteps
chnydaa9c88702017-05-09 16:51:07 +020077 }
chnydaa9c88702017-05-09 16:51:07 +020078
79 }
80
81}
82
chnydafa4b0ec2017-05-05 15:49:27 +020083node("python&&docker") {
Jakub Josefc5a223a2017-03-01 14:40:08 +010084 try{
85 stage("checkout") {
Filip Pytloun19376a82017-03-07 12:29:00 +010086 if (gerritRef) {
Jakub Josef83379312017-03-29 18:12:34 +020087 // job is triggered by Gerrit
Jakub Joseffcb615e2017-04-10 14:34:40 +020088 // test if change aren't already merged
89 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID)
90 merged = gerritChange.status == "MERGED"
91 if(!merged){
92 checkouted = gerrit.gerritPatchsetCheckout ([
93 credentialsId : CREDENTIALS_ID
94 ])
chnydaa9c88702017-05-09 16:51:07 +020095 } else{
96 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to gate them")
Jakub Joseffcb615e2017-04-10 14:34:40 +020097 }
Jakub Josef83379312017-03-29 18:12:34 +020098 } else if(defaultGitRef && defaultGitUrl) {
Jakub Josefe1407ac2017-03-30 14:10:19 +020099 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
Filip Pytloun19376a82017-03-07 12:29:00 +0100100 }
Jakub Josef83379312017-03-29 18:12:34 +0200101 if(checkouted){
102 if (fileExists('classes/system')) {
103 ssh.prepareSshAgentKey(CREDENTIALS_ID)
Filip Pytloun19376a82017-03-07 12:29:00 +0100104 dir('classes/system') {
Jakub Josef83379312017-03-29 18:12:34 +0200105 remoteUrl = git.getGitRemote()
106 ssh.ensureKnownHosts(remoteUrl)
Filip Pytloun19376a82017-03-07 12:29:00 +0100107 }
Jakub Josef83379312017-03-29 18:12:34 +0200108 ssh.agentSh("git submodule init; git submodule sync; git submodule update --recursive")
Filip Pytloun19376a82017-03-07 12:29:00 +0100109 }
Jakub Joseffcb615e2017-04-10 14:34:40 +0200110 }else if(!merged){
Jakub Josef5ce6a362017-03-31 13:41:17 +0200111 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
Filip Pytloun38005aa2017-03-06 10:26:38 +0100112 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100113 }
chnydaa9c88702017-05-09 16:51:07 +0200114
115 def nodes
116 dir ('nodes') {
Tomáš Kukrál500c0182017-05-11 13:46:19 +0200117 nodes = sh script: "find ./ -type f -name 'cfg*.yml'", returnStdout: true
chnydaa9c88702017-05-09 16:51:07 +0200118 }
119
Jakub Josef62218bb2017-05-09 18:31:00 +0200120 stage("test") {
chnyda51b03142017-05-10 17:15:27 +0200121 for (masterNode in nodes.tokenize()) {
122 basename = sh script: "basename ${masterNode} .yml", returnStdout: true
chnyda6c509b82017-05-11 08:41:12 +0200123 setupandtest(basename.trim())
Jakub Josefc5a223a2017-03-01 14:40:08 +0100124 }
chnydaa9c88702017-05-09 16:51:07 +0200125
chnyda51b03142017-05-10 17:15:27 +0200126 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100127 } catch (Throwable e) {
128 // If there was an error or exception thrown, the build failed
129 currentBuild.result = "FAILURE"
130 throw e
131 } finally {
132 common.sendNotification(currentBuild.result,"",["slack"])
133 }
Tomáš Kukrál500c0182017-05-11 13:46:19 +0200134}