blob: 05b6a9039458d726c6e30f7efdf3e4e84c463dad [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 {
26 timeout(time: 60, unit: 'MINUTES')
27 }
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 Bavierfed57db2020-01-22 16:28:50 -070062 kail -n voltha -n default --since=20m > $WORKSPACE/onos-voltha-combined.log &
Andy Bavier358aa0b2019-11-22 11:55:39 -070063 """
64 }
65 }
66 stage('Subscriber Validation and Ping Tests') {
67 environment {
68 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -070069 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -070070 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -070071 }
72 steps {
73 sh """
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 Bavierfed57db2020-01-22 16:28:50 -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}"
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080077 else
Andy Bavierfed57db2020-01-22 16:28:50 -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}"
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
81 """
82 }
83 }
84
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080085 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -070086 when {
87 expression { ! params.released }
88 }
89 environment {
90 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080091 ROBOT_FILE="Voltha_FailureScenarios.robot"
92 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -070093 }
94 steps {
95 sh """
96 mkdir -p $ROBOT_LOGS_DIR
97 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}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070098 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
99 """
100 }
101 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700102
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800103 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800104 when {
105 expression { ! params.released }
106 }
107 environment {
108 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800109 ROBOT_FILE="Voltha_ErrorScenarios.robot"
110 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800111 }
112 steps {
113 sh """
114 mkdir -p $ROBOT_LOGS_DIR
115 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}"
116 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
117 """
118 }
119 }
120 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700121 post {
122 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700123 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700124 set +e
125 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
126 kubectl get nodes -o wide
127 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700128
129 sync
130 pkill kail || true
131
132 ## Pull out errors from log files
133 extract_errors_go() {
134 echo
135 echo "Error summary for $1:"
136 grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg'
137 echo
138 }
139
140 extract_errors_python() {
141 echo
142 echo "Error summary for $1:"
143 grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2-
144 echo
145 }
146
147 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
148 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
149 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
150 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
151 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700152 script {
153 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800154 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700155 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
156 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
157 """
158 }
159 }
160 step([$class: 'RobotPublisher',
161 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700162 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700163 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700164 outputFileName: '**/output*.xml',
165 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700166 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700167 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700168 unstableThreshold: 0
169 ]);
170 archiveArtifacts artifacts: '*.log'
171 }
172 unstable {
173 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
174 }
175 }
176}