blob: 51eb413094361936ea0870871efda6292ecbacc6 [file] [log] [blame]
Andy Bavier358aa0b2019-11-22 11:55:39 -07001// Copyright 2017-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15node {
16 // Need this so that deployment_config has global scope when it's read later
17 deployment_config = null
18}
19
20pipeline {
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.buildNode}"
24 }
25 options {
Suchitra Vemuri08a63122020-02-10 15:35:44 -080026 timeout(time: 90, unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070027 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
Andy Bavier4af02722020-01-15 10:24:24 -070032 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070033 }
34
35 stages {
36 stage ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
hwchiu1f0b0fe2019-12-06 11:45:23 -080039 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070040 script {
41 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
42 }
43 // This checkout is just so that we can show changes in Jenkins
44 checkout(changelog: true,
45 poll: false,
46 scm: [$class: 'RepoScm',
47 manifestRepositoryUrl: "${params.manifestUrl}",
48 manifestBranch: "${params.manifestBranch}",
49 currentBranch: true,
50 destinationDir: 'voltha',
51 forceSync: true,
52 resetFirst: true,
53 quiet: true,
54 jobs: 4,
55 showAllChanges: true]
56 )
hwchiu1f0b0fe2019-12-06 11:45:23 -080057 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -070058 cd voltha
59 git clone -b ${branch} ${cordRepoUrl}/cord-tester
Andy Bavier4af02722020-01-15 10:24:24 -070060 mkdir -p $WORKSPACE/bin
61 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -070062 cd $WORKSPACE
Andy Bavier8d8c9a32020-02-12 19:41:08 -070063 git clone https://github.com/ciena/kind-voltha.git
Andy Bavier358aa0b2019-11-22 11:55:39 -070064 """
65 }
66 }
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -080067 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -070068 environment {
69 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -070070 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -070071 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -070072 }
73 steps {
74 sh """
Andy Bavier3c1ccca2020-02-12 16:50:04 -070075 cd $WORKSPACE/kind-voltha/scripts
76 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -070077 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -070078
Andy Bavierfed57db2020-01-22 16:28:50 -070079 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080080 if ( ${released} ); then
Andy Bavierd3be2bf2020-02-07 17:02:21 -070081 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -i sanity -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080082 else
Andy Bavierd3be2bf2020-02-07 17:02:21 -070083 export ROBOT_MISC_ARGS="--removekeywords wuks -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080084 fi
Andy Bavierfed57db2020-01-22 16:28:50 -070085 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
86 """
87 }
88 }
89
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080090 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -070091 environment {
92 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080093 ROBOT_FILE="Voltha_FailureScenarios.robot"
94 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -070095 }
96 steps {
97 sh """
98 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuriacb05782020-02-20 14:26:33 -080099 if ( ${released} ); then
100 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
101 elif ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800102 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -i PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800103 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800104 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -e PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800105 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700106 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
107 """
108 }
109 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700110
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800111 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800112 environment {
113 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800114 ROBOT_FILE="Voltha_ErrorScenarios.robot"
115 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800116 }
117 steps {
118 sh """
119 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuriacb05782020-02-20 14:26:33 -0800120 if ( ${released} ); then
121 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
122 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800123 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemuri462a9af2020-02-20 20:56:26 -0800124 fi
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800125 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
126 """
127 }
128 }
129 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700130 post {
131 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700132 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700133 set +e
134 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
135 kubectl get nodes -o wide
136 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700137
Andy Bavier7afb11c2020-02-13 11:25:20 -0700138 sleep 60 # Wait for log-collector and log-combine to complete
139
140 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
141 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700142
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700143 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700144 gzip *-combined.log || true
Andy Bavier4af02722020-01-15 10:24:24 -0700145 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700146 script {
147 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800148 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700149 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
150 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
151 """
152 }
153 }
154 step([$class: 'RobotPublisher',
155 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700156 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700157 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700158 outputFileName: '**/output*.xml',
159 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700160 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700161 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700162 unstableThreshold: 0
163 ]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700164 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700165 }
166 unstable {
167 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
168 }
169 }
170}