chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 1 | |
| 2 | /** |
| 3 | * Test salt models pipeline |
| 4 | * DEFAULT_GIT_REF |
| 5 | * DEFAULT_GIT_URL |
| 6 | * CREDENTIALS_ID |
| 7 | * EXTRA_FORMULAS |
Jakub Josef | 107769c | 2017-08-17 13:38:15 +0200 | [diff] [blame] | 8 | * CLUSTER_NAME |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 9 | * NODE_TARGET |
| 10 | * SYSTEM_GIT_URL |
| 11 | * SYSTEM_GIT_REF |
Mykyta Karpin | c0758f3 | 2017-06-23 18:10:24 +0300 | [diff] [blame] | 12 | * FORMULAS_SOURCE |
Jakub Josef | e40bbf9 | 2018-03-22 15:02:46 +0100 | [diff] [blame] | 13 | * RECLASS_VERSION |
chnyda | bb6d2a6 | 2017-07-31 14:09:16 +0200 | [diff] [blame] | 14 | * MAX_CPU_PER_JOB |
Jakub Josef | 6e4a09d | 2017-10-05 16:53:02 +0200 | [diff] [blame] | 15 | * LEGACY_TEST_MODE |
Jakub Josef | b1c8163 | 2017-10-05 17:19:53 +0200 | [diff] [blame] | 16 | * RECLASS_IGNORE_CLASS_NOTFOUND |
Dmitry Ukov | b2aa6db | 2017-10-23 12:30:31 +0400 | [diff] [blame] | 17 | * APT_REPOSITORY |
| 18 | * APT_REPOSITORY_GPG |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | def common = new com.mirantis.mk.Common() |
| 22 | def gerrit = new com.mirantis.mk.Gerrit() |
chnyda | 4ed3c27 | 2017-06-22 14:50:09 +0200 | [diff] [blame] | 23 | def git = new com.mirantis.mk.Git() |
chnyda | c6092a2 | 2017-06-22 14:47:10 +0200 | [diff] [blame] | 24 | def ssh = new com.mirantis.mk.Ssh() |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 25 | def saltModelTesting = new com.mirantis.mk.SaltModelTesting() |
| 26 | |
| 27 | def defaultGitRef = DEFAULT_GIT_REF |
| 28 | def defaultGitUrl = DEFAULT_GIT_URL |
| 29 | |
| 30 | def checkouted = false |
chnyda | 03f3ad4 | 2017-09-19 14:41:07 +0200 | [diff] [blame] | 31 | |
Vasyl Saienko | 772e123 | 2018-07-23 14:42:24 +0300 | [diff] [blame^] | 32 | def reclassVersion = '1.5.4' |
| 33 | if (common.validInputParam('RECLASS_VERSION')) { |
| 34 | reclassVersion = RECLASS_VERSION |
| 35 | } |
| 36 | |
chnyda | 03f3ad4 | 2017-09-19 14:41:07 +0200 | [diff] [blame] | 37 | throttle(['test-model']) { |
Jakub Josef | db3ddd8 | 2018-01-23 13:30:47 +0100 | [diff] [blame] | 38 | timeout(time: 1, unit: 'HOURS') { |
Jakub Josef | 22815b0 | 2018-01-30 16:05:26 +0100 | [diff] [blame] | 39 | node("python&&docker") { |
Jakub Josef | a63f986 | 2018-01-11 17:58:38 +0100 | [diff] [blame] | 40 | try{ |
| 41 | stage("checkout") { |
| 42 | if(defaultGitRef != "" && defaultGitUrl != "") { |
| 43 | checkouted = gerrit.gerritPatchsetCheckout(defaultGitUrl, defaultGitRef, "HEAD", CREDENTIALS_ID) |
| 44 | } else { |
| 45 | throw new Exception("Cannot checkout gerrit patchset, DEFAULT_GIT_URL or DEFAULT_GIT_REF is null") |
| 46 | } |
| 47 | if(checkouted) { |
| 48 | if (fileExists('classes/system')) { |
| 49 | if (SYSTEM_GIT_URL == "") { |
| 50 | ssh.prepareSshAgentKey(CREDENTIALS_ID) |
| 51 | dir('classes/system') { |
| 52 | remoteUrl = git.getGitRemote() |
| 53 | ssh.ensureKnownHosts(remoteUrl) |
| 54 | } |
| 55 | ssh.agentSh("git submodule init; git submodule sync; git submodule update --recursive") |
| 56 | } else { |
| 57 | dir('classes/system') { |
| 58 | if (!gerrit.gerritPatchsetCheckout(SYSTEM_GIT_URL, SYSTEM_GIT_REF, "HEAD", CREDENTIALS_ID)) { |
| 59 | common.errorMsg("Failed to obtain system reclass with url: ${SYSTEM_GIT_URL} and ${SYSTEM_GIT_REF}") |
| 60 | } |
chnyda | 03f3ad4 | 2017-09-19 14:41:07 +0200 | [diff] [blame] | 61 | } |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | } |
| 65 | } |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 66 | |
Jakub Josef | a63f986 | 2018-01-11 17:58:38 +0100 | [diff] [blame] | 67 | stage("test node") { |
| 68 | if (checkouted) { |
| 69 | def workspace = common.getWorkspace() |
azvyagintsev | 7c4a3cf | 2018-07-08 08:43:33 +0300 | [diff] [blame] | 70 | def testResult = false |
Jakub Josef | a63f986 | 2018-01-11 17:58:38 +0100 | [diff] [blame] | 71 | common.infoMsg("Running salt model test for node ${NODE_TARGET} in cluster ${CLUSTER_NAME}") |
| 72 | try { |
Kirill Mashchenko | 18071f6 | 2018-06-29 12:42:16 +0300 | [diff] [blame] | 73 | def DockerCName = "${env.JOB_NAME.toLowerCase()}_${env.BUILD_TAG.toLowerCase()}" |
azvyagintsev | 7c4a3cf | 2018-07-08 08:43:33 +0300 | [diff] [blame] | 74 | testResult = saltModelTesting.setupAndTestNode( |
azvyagintsev | 1c9801f | 2018-07-07 23:02:53 +0300 | [diff] [blame] | 75 | NODE_TARGET, |
| 76 | CLUSTER_NAME, |
| 77 | EXTRA_FORMULAS, |
| 78 | workspace, |
| 79 | FORMULAS_SOURCE, |
| 80 | FORMULAS_REVISION, |
Vasyl Saienko | 772e123 | 2018-07-23 14:42:24 +0300 | [diff] [blame^] | 81 | reclassVerstion, |
azvyagintsev | 1c9801f | 2018-07-07 23:02:53 +0300 | [diff] [blame] | 82 | MAX_CPU_PER_JOB.toInteger(), |
| 83 | RECLASS_IGNORE_CLASS_NOTFOUND, |
| 84 | LEGACY_TEST_MODE, |
| 85 | APT_REPOSITORY, |
| 86 | APT_REPOSITORY_GPG, |
| 87 | DockerCName) |
Jakub Josef | a63f986 | 2018-01-11 17:58:38 +0100 | [diff] [blame] | 88 | } catch (Exception e) { |
| 89 | if (e.getMessage() == "script returned exit code 124") { |
| 90 | common.errorMsg("Impossible to test node due to timeout of salt-master, ABORTING BUILD") |
| 91 | currentBuild.result = "ABORTED" |
| 92 | } else { |
| 93 | throw e |
| 94 | } |
chnyda | 3dcf0bd | 2017-11-30 11:49:24 +0100 | [diff] [blame] | 95 | } |
azvyagintsev | 7c4a3cf | 2018-07-08 08:43:33 +0300 | [diff] [blame] | 96 | if (testResult) { |
azvyagintsev | 1c9801f | 2018-07-07 23:02:53 +0300 | [diff] [blame] | 97 | common.infoMsg("Test finished: SUCCESS") |
| 98 | } else { |
azvyagintsev | 3ed704f | 2018-07-09 15:49:27 +0300 | [diff] [blame] | 99 | error('Test node finished: FAILURE') |
| 100 | throw new RuntimeException('Test node stage finished: FAILURE') |
azvyagintsev | 1c9801f | 2018-07-07 23:02:53 +0300 | [diff] [blame] | 101 | } |
chnyda | 3dcf0bd | 2017-11-30 11:49:24 +0100 | [diff] [blame] | 102 | } |
chnyda | 03f3ad4 | 2017-09-19 14:41:07 +0200 | [diff] [blame] | 103 | } |
Jakub Josef | a63f986 | 2018-01-11 17:58:38 +0100 | [diff] [blame] | 104 | } catch (Throwable e) { |
azvyagintsev | 1c9801f | 2018-07-07 23:02:53 +0300 | [diff] [blame] | 105 | // If there was an error or exception thrown, the build failed |
| 106 | currentBuild.result = "FAILURE" |
| 107 | currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message |
| 108 | throw e |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 109 | } |
| 110 | } |
chnyda | d66d6fa | 2017-06-22 09:34:43 +0200 | [diff] [blame] | 111 | } |
| 112 | } |