blob: 6d544a5ec5ba2e378bafc1cf66e6f33e8f58db17 [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 Josef05664542017-10-06 14:35:37 +020011 * LEGACY_TEST_MODE
12 * RECLASS_IGNORE_CLASS_NOTFOUND
Jakub Josef83379312017-03-29 18:12:34 +020013 */
14
Jakub Josefc5a223a2017-03-01 14:40:08 +010015def common = new com.mirantis.mk.Common()
16def gerrit = new com.mirantis.mk.Gerrit()
Filip Pytloun38005aa2017-03-06 10:26:38 +010017def ssh = new com.mirantis.mk.Ssh()
18def git = new com.mirantis.mk.Git()
Jakub Josefc5a223a2017-03-01 14:40:08 +010019
chnyda64b73582017-07-19 12:01:32 +020020def config_node_name_pattern
21try {
22 config_node_name_pattern = CONFIG_NODE_NAME_PATTERN
23} catch (MissingPropertyException e) {
24 config_node_name_pattern = "cfg01"
25}
26
Filip Pytloun19376a82017-03-07 12:29:00 +010027def gerritRef
28try {
29 gerritRef = GERRIT_REFSPEC
30} catch (MissingPropertyException e) {
31 gerritRef = null
32}
33
Mykyta Karpinc0758f32017-06-23 18:10:24 +030034def formulasSource
35try {
36 formulasSource = FORMULAS_SOURCE
37} catch (MissingPropertyException e) {
38 formulasSource = "pkg"
39}
40
Jakub Josef83379312017-03-29 18:12:34 +020041def defaultGitRef, defaultGitUrl
Filip Pytloun19376a82017-03-07 12:29:00 +010042try {
Jakub Josef83379312017-03-29 18:12:34 +020043 defaultGitRef = DEFAULT_GIT_REF
44 defaultGitUrl = DEFAULT_GIT_URL
Filip Pytloun19376a82017-03-07 12:29:00 +010045} catch (MissingPropertyException e) {
Jakub Josef83379312017-03-29 18:12:34 +020046 defaultGitRef = null
47 defaultGitUrl = null
Filip Pytloun19376a82017-03-07 12:29:00 +010048}
Jakub Josef83379312017-03-29 18:12:34 +020049def checkouted = false
chnyda3b1d2a62017-06-13 10:08:12 +020050node("python") {
Jakub Josefc5a223a2017-03-01 14:40:08 +010051 try{
52 stage("checkout") {
Filip Pytloun19376a82017-03-07 12:29:00 +010053 if (gerritRef) {
Jakub Josef83379312017-03-29 18:12:34 +020054 // job is triggered by Gerrit
Jakub Joseffcb615e2017-04-10 14:34:40 +020055 // test if change aren't already merged
Jakub Josefb2235902017-06-16 12:49:16 +020056 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID, true)
57 // test if gerrit change is already Verified
Jakub Josef2ed50812017-06-16 14:56:58 +020058 if(gerrit.patchsetHasApproval(gerritChange.currentPatchSet,"Verified", "+")){
Jakub Josef894f1e32017-06-19 16:24:19 +000059 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 +020060 // test WIP contains in commit message
Jakub Josefb2235902017-06-16 12:49:16 +020061 }else if (gerritChange.commitMessage.contains("WIP")) {
Jakub Josef894f1e32017-06-19 16:24:19 +000062 common.successMsg("Commit message contains WIP, skipping tests") // do nothing
Jakub Josefbcd2e902017-06-13 14:40:41 +020063 } else {
64 def merged = gerritChange.status == "MERGED"
65 if(!merged){
66 checkouted = gerrit.gerritPatchsetCheckout ([
67 credentialsId : CREDENTIALS_ID
68 ])
69 } else{
70 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to test them")
71 }
Jakub Joseffcb615e2017-04-10 14:34:40 +020072 }
chnydad66d6fa2017-06-22 09:34:43 +020073 // defaultGitUrl is passed to the triggered job
74 defaultGitUrl = "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}"
75 defaultGitRef = GERRIT_REFSPEC
Jakub Josef83379312017-03-29 18:12:34 +020076 } else if(defaultGitRef && defaultGitUrl) {
Jakub Josefe1407ac2017-03-30 14:10:19 +020077 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
Jakub Josefbcd2e902017-06-13 14:40:41 +020078 } else {
79 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
Filip Pytloun19376a82017-03-07 12:29:00 +010080 }
Jakub Josefc5a223a2017-03-01 14:40:08 +010081 }
chnydaa9c88702017-05-09 16:51:07 +020082
chnyda14e44292017-05-13 19:00:06 +020083 stage("test-nodes") {
Jakub Josefbcd2e902017-06-13 14:40:41 +020084 if(checkouted) {
chnyda32c6d9d2017-09-27 10:18:09 +020085 def modifiedClusters = null
chnydae6572452017-09-27 14:40:15 +020086
chnyda32c6d9d2017-09-27 10:18:09 +020087 if (gerritRef) {
88 checkChange = sh(script: "git diff-tree --no-commit-id --name-only -r HEAD | grep -v classes/cluster", returnStatus: true)
89 if (checkChange == 1) {
90 modifiedClusters = sh(script: "git diff-tree --no-commit-id --name-only -r HEAD | grep classes/cluster/ | awk -F/ '{print \$3}' | uniq", returnStdout: true).tokenize()
91 }
92 }
93
chnydae6572452017-09-27 14:40:15 +020094 def infraYMLs = sh(script: "find ./classes/ -regex '.*cluster/[-_a-zA-Z0-9]*/[infra/]*init\\.yml' -exec grep -il 'cluster_name' {} \\;", returnStdout: true).tokenize()
chnydac06539e2017-10-02 12:36:50 +020095 def clusterDirectories = sh(script: "ls -d ./classes/cluster/*/ | awk -F/ '{print \$4}'", returnStdout: true).tokenize()
chnyda0b077cb2017-09-27 16:51:46 +020096
Jakub Josef6fb10432017-09-27 17:46:01 +020097 // create a list of cluster names present in cluster folder
chnyda0b077cb2017-09-27 16:51:46 +020098 def infraList = []
99 for (elt in infraYMLs) {
100 infraList << elt.tokenize('/')[3]
101 }
102
Jakub Josef6fb10432017-09-27 17:46:01 +0200103 // verify we have all valid clusters loaded
chnyda0b077cb2017-09-27 16:51:46 +0200104 def commonList = infraList.intersect(clusterDirectories)
105 def differenceList = infraList.plus(clusterDirectories)
106 differenceList.removeAll(commonList)
chnydac06539e2017-10-02 12:36:50 +0200107
Jakub Josef6fb10432017-09-27 17:46:01 +0200108 if(!differenceList.isEmpty()){
109 common.warningMsg("The following clusters are not valid : ${differenceList} - That means we cannot found cluster_name in init.yml or infra/init.yml")
110 }
chnydae6572452017-09-27 14:40:15 +0200111 if (modifiedClusters) {
112 infraYMLs.removeAll { !modifiedClusters.contains(it.tokenize('/')[3]) }
113 common.infoMsg("Testing only modified clusters: ${infraYMLs}")
114 }
115
116 def branches = [:]
117 def acc = 0
118
Jakub Josef990013b2017-09-22 00:42:59 +0200119 for (int i = 0; i < infraYMLs.size(); i++) {
120 def infraYMLConfig = readYaml(file: infraYMLs[i])
121 if(!infraYMLConfig["parameters"].containsKey("_param")){
122 common.warningMsg("ERROR: Cannot find soft params (_param) in file " + infraYMLs[i] + " for obtain a cluster info. Skipping test.")
123 continue
124 }
125 def infraParams = infraYMLConfig["parameters"]["_param"];
126 if(!infraParams.containsKey("infra_config_hostname") || !infraParams.containsKey("cluster_name") || !infraParams.containsKey("cluster_domain")){
127 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.")
128 continue
129 }
130 def clusterName = infraParams["cluster_name"]
131 def clusterDomain = infraParams["cluster_domain"]
132 def configHostname = infraParams["infra_config_hostname"]
133 def testTarget = String.format("%s.%s", configHostname, clusterDomain)
Cedric Hnydac87fc6c2017-09-22 13:12:36 +0000134 if (acc >= PARALLEL_NODE_GROUP_SIZE.toInteger()) {
135 parallel branches
136 branches = [:]
137 acc = 0
138 }
chnyda1186a9c2017-06-26 13:13:32 +0200139
Jakub Josef3b52adc2017-09-28 20:11:12 +0200140 branches[clusterName] = {
chnyda1186a9c2017-06-26 13:13:32 +0200141 build job: "test-salt-model-node", parameters: [
142 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: defaultGitUrl],
143 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_REF', value: defaultGitRef],
Jakub Josef107769c2017-08-17 13:38:15 +0200144 [$class: 'StringParameterValue', name: 'CLUSTER_NAME', value: clusterName],
chnyda1186a9c2017-06-26 13:13:32 +0200145 [$class: 'StringParameterValue', name: 'NODE_TARGET', value: testTarget],
chnydaab82fd42017-06-26 13:30:02 +0200146 [$class: 'StringParameterValue', name: 'FORMULAS_SOURCE', value: formulasSource],
chnyda1186a9c2017-06-26 13:13:32 +0200147 [$class: 'StringParameterValue', name: 'EXTRA_FORMULAS', value: EXTRA_FORMULAS],
Jakub Josef09251c92017-06-27 11:49:33 +0200148 [$class: 'StringParameterValue', name: 'FORMULAS_REVISION', value: FORMULAS_REVISION],
chnyda1186a9c2017-06-26 13:13:32 +0200149 [$class: 'StringParameterValue', name: 'CREDENTIALS_ID', value: CREDENTIALS_ID],
150 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_URL', value: SYSTEM_GIT_URL],
chnydabb6d2a62017-07-31 14:09:16 +0200151 [$class: 'StringParameterValue', name: 'MAX_CPU_PER_JOB', value: MAX_CPU_PER_JOB],
Jakub Josefe50d1bd2017-10-04 14:14:57 +0200152 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_REF', value: SYSTEM_GIT_REF],
Jakub Josef05664542017-10-06 14:35:37 +0200153 [$class: 'BooleanParameterValue', name: 'LEGACY_TEST_MODE', value: LEGACY_TEST_MODE.toBoolean()],
154 [$class: 'BooleanParameterValue', name: 'RECLASS_IGNORE_CLASS_NOTFOUND', value: RECLASS_IGNORE_CLASS_NOTFOUND.toBoolean()]
chnyda1186a9c2017-06-26 13:13:32 +0200155 ]}
Cedric Hnydac87fc6c2017-09-22 13:12:36 +0000156 acc++;
chnyda81ae93d2017-06-22 15:49:52 +0200157 }
Cedric Hnydac87fc6c2017-09-22 13:12:36 +0000158 if (acc != 0) {
159 parallel branches
160 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100161 }
chnyda51b03142017-05-10 17:15:27 +0200162 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100163 } catch (Throwable e) {
Jakub Josefc5a223a2017-03-01 14:40:08 +0100164 currentBuild.result = "FAILURE"
Jakub Josefd2efd7d2017-08-22 17:49:57 +0200165 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
Jakub Josefc5a223a2017-03-01 14:40:08 +0100166 throw e
167 } finally {
168 common.sendNotification(currentBuild.result,"",["slack"])
169 }
Tomáš Kukrál500c0182017-05-11 13:46:19 +0200170}