blob: 709995491b5e7cde3a743fb18d1d7aec1c6edbbb [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
Jakub Josef27424bc2017-05-22 16:56:27 +02007 * EXTRA_FORMULAS
chnydad66d6fa2017-06-22 09:34:43 +02008 * SYSTEM_GIT_URL
9 * SYSTEM_GIT_REF
chnydabb6d2a62017-07-31 14:09:16 +020010 * MAX_CPU_PER_JOB
Jakub Josef83379312017-03-29 18:12:34 +020011 */
12
Jakub Josefc5a223a2017-03-01 14:40:08 +010013def common = new com.mirantis.mk.Common()
14def gerrit = new com.mirantis.mk.Gerrit()
Filip Pytloun38005aa2017-03-06 10:26:38 +010015def ssh = new com.mirantis.mk.Ssh()
16def git = new com.mirantis.mk.Git()
Jakub Josefc5a223a2017-03-01 14:40:08 +010017
chnyda64b73582017-07-19 12:01:32 +020018def config_node_name_pattern
19try {
20 config_node_name_pattern = CONFIG_NODE_NAME_PATTERN
21} catch (MissingPropertyException e) {
22 config_node_name_pattern = "cfg01"
23}
24
Filip Pytloun19376a82017-03-07 12:29:00 +010025def gerritRef
26try {
27 gerritRef = GERRIT_REFSPEC
28} catch (MissingPropertyException e) {
29 gerritRef = null
30}
31
Mykyta Karpinc0758f32017-06-23 18:10:24 +030032def formulasSource
33try {
34 formulasSource = FORMULAS_SOURCE
35} catch (MissingPropertyException e) {
36 formulasSource = "pkg"
37}
38
Jakub Josef83379312017-03-29 18:12:34 +020039def defaultGitRef, defaultGitUrl
Filip Pytloun19376a82017-03-07 12:29:00 +010040try {
Jakub Josef83379312017-03-29 18:12:34 +020041 defaultGitRef = DEFAULT_GIT_REF
42 defaultGitUrl = DEFAULT_GIT_URL
Filip Pytloun19376a82017-03-07 12:29:00 +010043} catch (MissingPropertyException e) {
Jakub Josef83379312017-03-29 18:12:34 +020044 defaultGitRef = null
45 defaultGitUrl = null
Filip Pytloun19376a82017-03-07 12:29:00 +010046}
Jakub Josef83379312017-03-29 18:12:34 +020047def checkouted = false
chnyda3b1d2a62017-06-13 10:08:12 +020048node("python") {
Jakub Josefc5a223a2017-03-01 14:40:08 +010049 try{
50 stage("checkout") {
Filip Pytloun19376a82017-03-07 12:29:00 +010051 if (gerritRef) {
Jakub Josef83379312017-03-29 18:12:34 +020052 // job is triggered by Gerrit
Jakub Joseffcb615e2017-04-10 14:34:40 +020053 // test if change aren't already merged
Jakub Josefb2235902017-06-16 12:49:16 +020054 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID, true)
55 // test if gerrit change is already Verified
Jakub Josef2ed50812017-06-16 14:56:58 +020056 if(gerrit.patchsetHasApproval(gerritChange.currentPatchSet,"Verified", "+")){
Jakub Josef894f1e32017-06-19 16:24:19 +000057 common.successMsg("Gerrit change ${GERRIT_CHANGE_NUMBER} patchset ${GERRIT_PATCHSET_NUMBER} already has Verified, skipping tests") // do nothing
Jakub Josefbcd2e902017-06-13 14:40:41 +020058 // test WIP contains in commit message
Jakub Josefb2235902017-06-16 12:49:16 +020059 }else if (gerritChange.commitMessage.contains("WIP")) {
Jakub Josef894f1e32017-06-19 16:24:19 +000060 common.successMsg("Commit message contains WIP, skipping tests") // do nothing
Jakub Josefbcd2e902017-06-13 14:40:41 +020061 } else {
62 def merged = gerritChange.status == "MERGED"
63 if(!merged){
64 checkouted = gerrit.gerritPatchsetCheckout ([
65 credentialsId : CREDENTIALS_ID
66 ])
67 } else{
68 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to test them")
69 }
Jakub Joseffcb615e2017-04-10 14:34:40 +020070 }
chnydad66d6fa2017-06-22 09:34:43 +020071 // defaultGitUrl is passed to the triggered job
72 defaultGitUrl = "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}"
73 defaultGitRef = GERRIT_REFSPEC
Jakub Josef83379312017-03-29 18:12:34 +020074 } else if(defaultGitRef && defaultGitUrl) {
Jakub Josefe1407ac2017-03-30 14:10:19 +020075 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
Jakub Josefbcd2e902017-06-13 14:40:41 +020076 } else {
77 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
Filip Pytloun19376a82017-03-07 12:29:00 +010078 }
Jakub Josefc5a223a2017-03-01 14:40:08 +010079 }
chnydaa9c88702017-05-09 16:51:07 +020080
chnyda14e44292017-05-13 19:00:06 +020081 stage("test-nodes") {
Jakub Josefbcd2e902017-06-13 14:40:41 +020082 if(checkouted) {
Jakub Josef990013b2017-09-22 00:42:59 +020083 def infraYMLs = sh(script: "find ./classes/ -regex '.*cluster/[-_a-zA-Z0-9]*/[infra/]*init\\.yml' -exec grep -il 'cluster_name' {} \\;", returnStdout: true).tokenize()
chnydad66d6fa2017-06-22 09:34:43 +020084 def branches = [:]
Jakub Josef990013b2017-09-22 00:42:59 +020085 for (int i = 0; i < infraYMLs.size(); i++) {
86 def infraYMLConfig = readYaml(file: infraYMLs[i])
87 if(!infraYMLConfig["parameters"].containsKey("_param")){
88 common.warningMsg("ERROR: Cannot find soft params (_param) in file " + infraYMLs[i] + " for obtain a cluster info. Skipping test.")
89 continue
90 }
91 def infraParams = infraYMLConfig["parameters"]["_param"];
92 if(!infraParams.containsKey("infra_config_hostname") || !infraParams.containsKey("cluster_name") || !infraParams.containsKey("cluster_domain")){
93 common.warningMsg("ERROR: Cannot find _param:infra_config_hostname or _param:cluster_name or _param:cluster_domain in file " + infraYMLs[i] + " for obtain a cluster info. Skipping test.")
94 continue
95 }
96 def clusterName = infraParams["cluster_name"]
97 def clusterDomain = infraParams["cluster_domain"]
98 def configHostname = infraParams["infra_config_hostname"]
99 def testTarget = String.format("%s.%s", configHostname, clusterDomain)
chnyda1186a9c2017-06-26 13:13:32 +0200100
101 branches[testTarget] = {
102 build job: "test-salt-model-node", parameters: [
103 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: defaultGitUrl],
104 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_REF', value: defaultGitRef],
Jakub Josef107769c2017-08-17 13:38:15 +0200105 [$class: 'StringParameterValue', name: 'CLUSTER_NAME', value: clusterName],
chnyda1186a9c2017-06-26 13:13:32 +0200106 [$class: 'StringParameterValue', name: 'NODE_TARGET', value: testTarget],
chnydaab82fd42017-06-26 13:30:02 +0200107 [$class: 'StringParameterValue', name: 'FORMULAS_SOURCE', value: formulasSource],
chnyda1186a9c2017-06-26 13:13:32 +0200108 [$class: 'StringParameterValue', name: 'EXTRA_FORMULAS', value: EXTRA_FORMULAS],
Jakub Josef09251c92017-06-27 11:49:33 +0200109 [$class: 'StringParameterValue', name: 'FORMULAS_REVISION', value: FORMULAS_REVISION],
chnyda1186a9c2017-06-26 13:13:32 +0200110 [$class: 'StringParameterValue', name: 'CREDENTIALS_ID', value: CREDENTIALS_ID],
111 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_URL', value: SYSTEM_GIT_URL],
chnydabb6d2a62017-07-31 14:09:16 +0200112 [$class: 'StringParameterValue', name: 'MAX_CPU_PER_JOB', value: MAX_CPU_PER_JOB],
chnyda1186a9c2017-06-26 13:13:32 +0200113 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_REF', value: SYSTEM_GIT_REF]
114 ]}
chnyda81ae93d2017-06-22 15:49:52 +0200115 }
chnyda134ac922017-09-22 13:26:21 +0200116 parallel branches
Jakub Josefc5a223a2017-03-01 14:40:08 +0100117 }
chnyda51b03142017-05-10 17:15:27 +0200118 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100119 } catch (Throwable e) {
Jakub Josefc5a223a2017-03-01 14:40:08 +0100120 currentBuild.result = "FAILURE"
Jakub Josefd2efd7d2017-08-22 17:49:57 +0200121 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
Jakub Josefc5a223a2017-03-01 14:40:08 +0100122 throw e
123 } finally {
124 common.sendNotification(currentBuild.result,"",["slack"])
125 }
Tomáš Kukrál500c0182017-05-11 13:46:19 +0200126}
Jakub Josef8d024772017-05-15 18:07:45 +0200127