blob: 4ef0450b6fe08e9e3f3e86e4cdfac3171fe8788c [file] [log] [blame]
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -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: 90, unit: 'MINUTES')
27 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
32 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
33 }
34
35 stages {
36 stage ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070039 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070040 script {
41 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.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}",
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070048 manifestBranch: "${params.branch}",
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070049 currentBranch: true,
50 destinationDir: 'voltha',
51 forceSync: true,
52 resetFirst: true,
53 quiet: true,
54 jobs: 4,
55 showAllChanges: true]
56 )
57 sh returnStdout: false, script: """
58 cd voltha
59 git clone -b ${branch} ${cordRepoUrl}/cord-tester
60 mkdir -p $WORKSPACE/bin
61 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
62 cd $WORKSPACE
63 git clone https://github.com/ciena/kind-voltha.git
64
65 VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
66 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
67 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
68 if [ \$HOSTARCH == "x86_64" ]; then
69 HOSTARCH="amd64"
70 fi
71 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH}
72 chmod 755 $WORKSPACE/bin/voltctl
73 voltctl version --clientonly
74 """
75 }
76 }
77
78 stage('Functional Tests') {
79 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -070080 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070081 ROBOT_FILE="Voltha_DT_PODTests.robot"
82 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow"
83 }
84 steps {
85 sh """
86 cd $WORKSPACE/kind-voltha/scripts
87 ./log-collector.sh > /dev/null &
88 ./log-combine.sh > /dev/null &
89
90 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070091 export ROBOT_MISC_ARGS="--removekeywords wuks -i sanityDt -i functionalDt -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 Vemuri8d180ab2020-03-12 17:38:24 -070092 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
93 """
94 }
95 }
96 }
97 post {
98 always {
99 sh returnStdout: false, script: '''
100 set +e
101 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
102 kubectl get nodes -o wide
103 kubectl get pods -n voltha -o wide
104
105 sleep 60 # Wait for log-collector and log-combine to complete
106
107 # Clean up "announcer" pod used by the tests if present
108 kubectl delete pod announcer || true
109
110 ## Pull out errors from log files
111 extract_errors_go() {
112 echo
113 echo "Error summary for $1:"
114 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
115 echo
116 }
117
118 extract_errors_python() {
119 echo
120 echo "Error summary for $1:"
121 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
122 echo
123 }
124
125 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
126 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
127 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
128 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
129 extract_errors_python onos >> $WORKSPACE/error-report.log
130
131 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
132 tar czf $WORKSPACE/container-logs.tgz *
133
134 cd $WORKSPACE
135 gzip *-combined.log || true
136 '''
137 script {
138 deployment_config.olts.each { olt ->
139 sh returnStdout: false, script: """
140 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
141 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
142 """
143 }
144 }
145 step([$class: 'RobotPublisher',
146 disableArchiveOutput: false,
147 logFileName: '**/log*.html',
148 otherFiles: '',
149 outputFileName: '**/output*.xml',
150 outputPath: 'RobotLogs',
151 passThreshold: 100,
152 reportFileName: '**/report*.html',
153 unstableThreshold: 0
154 ]);
155 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
156 }
157 unstable {
158 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
159 }
160 }
161}