blob: f4ca0839ac1fb0c6989f05ae4a6f873fc92e40f8 [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 Bavier358aa0b2019-11-22 11:55:39 -070062 """
63 }
64 }
65 stage('Subscriber Validation and Ping Tests') {
66 environment {
67 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -070068 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -070069 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -070070 }
71 steps {
72 sh """
Andy Bavier0c2d3482020-02-04 15:03:25 -070073 kail -n voltha -n default --since=20m > $WORKSPACE/Functional_onos-voltha-combined.log &
Andy Bavierfed57db2020-01-22 16:28:50 -070074 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080075 if ( ${released} ); then
Andy Bavierd3be2bf2020-02-07 17:02:21 -070076 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 -080077 else
Andy Bavierd3be2bf2020-02-07 17:02:21 -070078 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 -080079 fi
Andy Bavierfed57db2020-01-22 16:28:50 -070080 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
Andy Bavier0c2d3482020-02-04 15:03:25 -070081 sync
82 pkill kail || true
Andy Bavierfed57db2020-01-22 16:28:50 -070083 """
84 }
85 }
86
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080087 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -070088 when {
89 expression { ! params.released }
90 }
91 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 """
Andy Bavier0c2d3482020-02-04 15:03:25 -070098 kail -n voltha -n default > $WORKSPACE/FailureScenarios_onos-voltha-combined.log &
Andy Bavierfed57db2020-01-22 16:28:50 -070099 mkdir -p $ROBOT_LOGS_DIR
Andy Bavierd3be2bf2020-02-07 17:02:21 -0700100 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700101 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
Andy Bavier0c2d3482020-02-04 15:03:25 -0700102 sync
103 pkill kail || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700104 """
105 }
106 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700107
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800108 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800109 when {
110 expression { ! params.released }
111 }
112 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 """
Andy Bavier0c2d3482020-02-04 15:03:25 -0700119 kail -n voltha -n default > $WORKSPACE/ErrorScenarios_onos-voltha-combined.log &
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800120 mkdir -p $ROBOT_LOGS_DIR
Andy Bavierd3be2bf2020-02-07 17:02:21 -0700121 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800122 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
Andy Bavier0c2d3482020-02-04 15:03:25 -0700123 sync
124 pkill kail || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800125 """
126 }
127 }
128 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700129 post {
130 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700131 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700132 set +e
133 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
134 kubectl get nodes -o wide
135 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700136
137 sync
138 pkill kail || true
139
140 ## Pull out errors from log files
141 extract_errors_go() {
142 echo
143 echo "Error summary for $1:"
Andy Bavier0c2d3482020-02-04 15:03:25 -0700144 grep $1 $WORKSPACE/*onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg'
Andy Bavier4af02722020-01-15 10:24:24 -0700145 echo
146 }
147
148 extract_errors_python() {
149 echo
150 echo "Error summary for $1:"
Andy Bavier0c2d3482020-02-04 15:03:25 -0700151 grep $1 $WORKSPACE/*onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2-
Andy Bavier4af02722020-01-15 10:24:24 -0700152 echo
153 }
154
155 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
156 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
157 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
158 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
Andy Bavier2178d102020-02-06 16:22:11 -0700159
160 gzip $WORKSPACE/*onos-voltha-combined.log
161
Andy Bavier4af02722020-01-15 10:24:24 -0700162 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700163 script {
164 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800165 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700166 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
167 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
168 """
169 }
170 }
171 step([$class: 'RobotPublisher',
172 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700173 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700174 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700175 outputFileName: '**/output*.xml',
176 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700177 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700178 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700179 unstableThreshold: 0
180 ]);
Andy Bavier2178d102020-02-06 16:22:11 -0700181 archiveArtifacts artifacts: '*.log,*.gz'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700182 }
183 unstable {
184 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
185 }
186 }
187}