blob: fa784ea5efa8f7e99ffc8148a2459641e03ecb67 [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
Dmitry Ukovb2aa6db2017-10-23 12:30:31 +040013 * APT_REPOSITORY
14 * APT_REPOSITORY_GPG
Jakub Josef83379312017-03-29 18:12:34 +020015 */
16
Jakub Josefc5a223a2017-03-01 14:40:08 +010017def gerrit = new com.mirantis.mk.Gerrit()
Filip Pytloun38005aa2017-03-06 10:26:38 +010018def ssh = new com.mirantis.mk.Ssh()
19def git = new com.mirantis.mk.Git()
Jakub Josefc5a223a2017-03-01 14:40:08 +010020
chnyda3dcf0bd2017-11-30 11:49:24 +010021def config_node_name_pattern
chnyda64b73582017-07-19 12:01:32 +020022try {
23 config_node_name_pattern = CONFIG_NODE_NAME_PATTERN
24} catch (MissingPropertyException e) {
25 config_node_name_pattern = "cfg01"
26}
27
Filip Pytloun19376a82017-03-07 12:29:00 +010028def gerritRef
29try {
30 gerritRef = GERRIT_REFSPEC
31} catch (MissingPropertyException e) {
32 gerritRef = null
33}
34
Mykyta Karpinc0758f32017-06-23 18:10:24 +030035def formulasSource
36try {
37 formulasSource = FORMULAS_SOURCE
38} catch (MissingPropertyException e) {
39 formulasSource = "pkg"
40}
41
Jakub Josef83379312017-03-29 18:12:34 +020042def defaultGitRef, defaultGitUrl
Filip Pytloun19376a82017-03-07 12:29:00 +010043try {
Jakub Josef83379312017-03-29 18:12:34 +020044 defaultGitRef = DEFAULT_GIT_REF
45 defaultGitUrl = DEFAULT_GIT_URL
Filip Pytloun19376a82017-03-07 12:29:00 +010046} catch (MissingPropertyException e) {
Jakub Josef83379312017-03-29 18:12:34 +020047 defaultGitRef = null
48 defaultGitUrl = null
Filip Pytloun19376a82017-03-07 12:29:00 +010049}
chnyda400babe2017-10-23 10:35:45 +020050
Jakub Josef83379312017-03-29 18:12:34 +020051def checkouted = false
chnyda400babe2017-10-23 10:35:45 +020052futureNodes = []
chnyda3dcf0bd2017-11-30 11:49:24 +010053failedNodes = false
chnyda400babe2017-10-23 10:35:45 +020054common = new com.mirantis.mk.Common()
chnydafa674a02017-10-19 11:49:22 +020055
chnyda400babe2017-10-23 10:35:45 +020056def setupRunner() {
chnydafa674a02017-10-19 11:49:22 +020057
chnyda400babe2017-10-23 10:35:45 +020058 def branches = [:]
59 for (int i = 0; i < PARALLEL_NODE_GROUP_SIZE.toInteger() && i < futureNodes.size(); i++) {
60 branches["Runner ${i}"] = {
chnyda3dcf0bd2017-11-30 11:49:24 +010061 while (futureNodes && !failedNodes) {
chnyda400babe2017-10-23 10:35:45 +020062 def currentNode = futureNodes[0] ? futureNodes[0] : null
63 if (!currentNode) {
64 continue
65 }
66
67 def clusterName = currentNode[2]
68 futureNodes.remove(currentNode)
69 try {
70 triggerTestNodeJob(currentNode[0], currentNode[1], currentNode[2], currentNode[3], currentNode[4])
71 } catch (Exception e) {
chnyda3dcf0bd2017-11-30 11:49:24 +010072 if (e.getMessage().contains("completed with status ABORTED")) {
73 common.warningMsg("Test of ${clusterName} failed because the test was aborted : ${e}")
74 futureNodes << currentNode
75 } else {
76 common.warningMsg("Test of ${clusterName} failed : ${e}")
77 failedNodes = true
78 }
chnyda400babe2017-10-23 10:35:45 +020079 }
80 }
81 }
82 }
chnyda3dcf0bd2017-11-30 11:49:24 +010083
chnyda400babe2017-10-23 10:35:45 +020084 if (branches) {
85 parallel branches
86 }
87}
chnydafa674a02017-10-19 11:49:22 +020088
89def triggerTestNodeJob(defaultGitUrl, defaultGitRef, clusterName, testTarget, formulasSource) {
chnyda400babe2017-10-23 10:35:45 +020090 common.infoMsg("Test of ${clusterName} starts")
chnydafa674a02017-10-19 11:49:22 +020091 build job: "test-salt-model-node", parameters: [
92 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: defaultGitUrl],
93 [$class: 'StringParameterValue', name: 'DEFAULT_GIT_REF', value: defaultGitRef],
94 [$class: 'StringParameterValue', name: 'CLUSTER_NAME', value: clusterName],
95 [$class: 'StringParameterValue', name: 'NODE_TARGET', value: testTarget],
96 [$class: 'StringParameterValue', name: 'FORMULAS_SOURCE', value: formulasSource],
97 [$class: 'StringParameterValue', name: 'EXTRA_FORMULAS', value: EXTRA_FORMULAS],
98 [$class: 'StringParameterValue', name: 'FORMULAS_REVISION', value: FORMULAS_REVISION],
99 [$class: 'StringParameterValue', name: 'CREDENTIALS_ID', value: CREDENTIALS_ID],
100 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_URL', value: SYSTEM_GIT_URL],
101 [$class: 'StringParameterValue', name: 'MAX_CPU_PER_JOB', value: MAX_CPU_PER_JOB],
102 [$class: 'StringParameterValue', name: 'SYSTEM_GIT_REF', value: SYSTEM_GIT_REF],
103 [$class: 'BooleanParameterValue', name: 'LEGACY_TEST_MODE', value: LEGACY_TEST_MODE.toBoolean()],
Dmitry Ukovb2aa6db2017-10-23 12:30:31 +0400104 [$class: 'BooleanParameterValue', name: 'RECLASS_IGNORE_CLASS_NOTFOUND', value: RECLASS_IGNORE_CLASS_NOTFOUND.toBoolean()],
105 [$class: 'StringParameterValue', name: 'APT_REPOSITORY', value: APT_REPOSITORY],
106 [$class: 'StringParameterValue', name: 'APT_REPOSITORY_GPG', value: APT_REPOSITORY_GPG]
chnydafa674a02017-10-19 11:49:22 +0200107 ]
108}
109
Jakub Josef3e77eb72018-01-15 14:21:53 +0100110def _clusterTestEnabled(infraYMLConfig){
111 if(infraYMLConfig["parameters"].containsKey("_jenkins")){
112 if(infraYMLConfig["parameters"]["_jenkins"].containsKey("tests_enabled")){
113 return infraYMLConfig["parameters"]["_jenkins"]["tests_enabled"];
114 }
115 }
116 // ci tests are enabled by default
117 return true;
118}
119
Jakub Josefa63f9862018-01-11 17:58:38 +0100120timeout(time: 12, unit: 'HOURS') {
121 node("python") {
122 try{
123 stage("checkout") {
chnyda32c6d9d2017-09-27 10:18:09 +0200124 if (gerritRef) {
Jakub Josefa63f9862018-01-11 17:58:38 +0100125 // job is triggered by Gerrit
126 // test if change aren't already merged
127 def gerritChange = gerrit.getGerritChange(GERRIT_NAME, GERRIT_HOST, GERRIT_CHANGE_NUMBER, CREDENTIALS_ID, true)
128 // test if gerrit change is already Verified
129 if(gerrit.patchsetHasApproval(gerritChange.currentPatchSet,"Verified", "+")){
130 common.successMsg("Gerrit change ${GERRIT_CHANGE_NUMBER} patchset ${GERRIT_PATCHSET_NUMBER} already has Verified, skipping tests") // do nothing
131 // test WIP contains in commit message
132 }else if (gerritChange.commitMessage.contains("WIP")) {
133 common.successMsg("Commit message contains WIP, skipping tests") // do nothing
134 } else {
135 def merged = gerritChange.status == "MERGED"
136 if(!merged){
137 checkouted = gerrit.gerritPatchsetCheckout ([
138 credentialsId : CREDENTIALS_ID
139 ])
140 } else{
141 common.successMsg("Change ${GERRIT_CHANGE_NUMBER} is already merged, no need to test them")
142 }
chnyda32c6d9d2017-09-27 10:18:09 +0200143 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100144 // defaultGitUrl is passed to the triggered job
145 defaultGitUrl = "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}"
146 defaultGitRef = GERRIT_REFSPEC
147 } else if(defaultGitRef && defaultGitUrl) {
148 checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID)
149 } else {
150 throw new Exception("Cannot checkout gerrit patchset, GERRIT_REFSPEC and DEFAULT_GIT_REF is null")
chnyda3bf82d82017-10-19 14:01:53 +0200151 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100152 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100153
154 stage("Check YAML") {
155 sh("git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD | grep .yml | xargs -I {} python -c \"import yaml; yaml.load(open('{}', 'r'))\" \\;")
156 }
157
158 stage("test-nodes") {
159 if(checkouted) {
160 def modifiedClusters = null
Jakub Joseff1c4e442018-01-18 14:35:31 +0100161 def checkChange = sh(script: "git diff-tree --no-commit-id --name-only -r HEAD | grep -v classes/cluster", returnStatus: true)
162 if (checkChange == 1) {
163 modifiedClusters = sh(script: "git diff-tree --no-commit-id --name-only -r HEAD | grep classes/cluster/ | awk -F/ '{print \$3}' | uniq", returnStdout: true).tokenize()
Jakub Josefa63f9862018-01-11 17:58:38 +0100164 }
165
166 def infraYMLs = sh(script: "find ./classes/ -regex '.*cluster/[-_a-zA-Z0-9]*/[infra/]*init\\.yml' -exec grep -il 'cluster_name' {} \\;", returnStdout: true).tokenize()
167 def clusterDirectories = sh(script: "ls -d ./classes/cluster/*/ | awk -F/ '{print \$4}'", returnStdout: true).tokenize()
168
169 // create a list of cluster names present in cluster folder
170 def infraList = []
171 for (elt in infraYMLs) {
172 infraList << elt.tokenize('/')[3]
173 }
174
175 // verify we have all valid clusters loaded
176 def commonList = infraList.intersect(clusterDirectories)
177 def differenceList = infraList.plus(clusterDirectories)
178 differenceList.removeAll(commonList)
179
180 if(!differenceList.isEmpty()){
181 common.warningMsg("The following clusters are not valid : ${differenceList} - That means we cannot found cluster_name in init.yml or infra/init.yml")
182 }
183 if (modifiedClusters) {
184 infraYMLs.removeAll { !modifiedClusters.contains(it.tokenize('/')[3]) }
185 common.infoMsg("Testing only modified clusters: ${infraYMLs}")
186 }
187
188 for (int i = 0; i < infraYMLs.size(); i++) {
189 def infraYMLConfig = readYaml(file: infraYMLs[i])
Jakub Josef3e77eb72018-01-15 14:21:53 +0100190 if(_clusterTestEnabled(infraYMLConfig)){
191 if(!infraYMLConfig["parameters"].containsKey("_param")){
192 common.warningMsg("ERROR: Cannot find soft params (_param) in file " + infraYMLs[i] + " for obtain a cluster info. Skipping test.")
193 continue
194 }
195 def infraParams = infraYMLConfig["parameters"]["_param"];
196 if(!infraParams.containsKey("infra_config_hostname") || !infraParams.containsKey("cluster_name") || !infraParams.containsKey("cluster_domain")){
197 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.")
198 continue
199 }
200 def clusterName = infraParams["cluster_name"]
201 def clusterDomain = infraParams["cluster_domain"]
202 def configHostname = infraParams["infra_config_hostname"]
203 def testTarget = String.format("%s.%s", configHostname, clusterDomain)
Jakub Josefa63f9862018-01-11 17:58:38 +0100204
Jakub Josef3e77eb72018-01-15 14:21:53 +0100205 futureNodes << [defaultGitUrl, defaultGitRef, clusterName, testTarget, formulasSource]
206 }
Jakub Josefa63f9862018-01-11 17:58:38 +0100207 }
208
209 setupRunner()
210
211 if (failedNodes) {
212 currentBuild.result = "FAILURE"
213 }
214 }
215 }
216 } catch (Throwable e) {
217 currentBuild.result = "FAILURE"
218 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
219 throw e
220 } finally {
221 common.sendNotification(currentBuild.result,"",["slack"])
chnyda51b03142017-05-10 17:15:27 +0200222 }
Jakub Josefc5a223a2017-03-01 14:40:08 +0100223 }
Tomáš Kukrál500c0182017-05-11 13:46:19 +0200224}