blob: ebacea82f318091c04a4f16576a5863d081a844c [file] [log] [blame]
Matteo Scandolo075740f2021-04-22 14:52:29 -07001// Copyright 2021-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
15// voltha-2.x e2e tests for openonu-go
16// uses bbsim to simulate OLT/ONUs
17
18library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
23
24def clusterName = "kind-ci"
25
Matteo Scandoloa57b0972021-05-03 14:04:58 -070026def execute_test(testTarget, workflow, teardown, testSpecificHelmFlags = "") {
Matteo Scandolo075740f2021-04-22 14:52:29 -070027 def infraNamespace = "default"
28 def volthaNamespace = "voltha"
29 def robotLogsDir = "RobotLogs"
30 stage('Cleanup') {
Matteo Scandoloa57b0972021-05-03 14:04:58 -070031 if (teardown) {
32 timeout(15) {
33 script {
34 helmTeardown(["default", infraNamespace, volthaNamespace])
35 }
36 timeout(1) {
37 sh returnStdout: false, script: '''
38 # remove orphaned port-forward from different namespaces
39 ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9
40 '''
41 }
Matteo Scandolo075740f2021-04-22 14:52:29 -070042 }
Matteo Scandolo075740f2021-04-22 14:52:29 -070043 }
44 }
45 stage('Deploy Voltha') {
Matteo Scandoloa57b0972021-05-03 14:04:58 -070046 if (teardown) {
47 timeout(20) {
48 script {
Matteo Scandolo075740f2021-04-22 14:52:29 -070049
Matteo Scandolo0d04af82021-05-06 08:36:34 -070050 sh """
51 mkdir -p $WORKSPACE/${testTarget}-components
52 _TAG=kail-startup kail -n infra -n voltha > $WORKSPACE/${testTarget}-components/onos-voltha-startup-combined.log &
53 """
54
Matteo Scandoloa57b0972021-05-03 14:04:58 -070055 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
56 def localCharts = false
57 if (volthaHelmChartsChange != "") {
58 localCharts = true
59 }
60
61 // NOTE temporary workaround expose ONOS node ports
Hardik Windlass696002d2021-05-07 11:38:28 +000062 def localHelmFlags = extraHelmFlags + " --set global.log_level=${logLevel.toUpperCase()} " +
63 " --set onos-classic.onosSshPort=30115 " +
Matteo Scandoloa57b0972021-05-03 14:04:58 -070064 " --set onos-classic.onosApiPort=30120 " +
65 " --set onos-classic.onosOfPort=31653 " +
66 " --set onos-classic.individualOpenFlowNodePorts=true " + testSpecificHelmFlags
Matteo Scandolo7ebfdfc2021-05-07 10:15:51 -070067
68 if (gerritProject != "") {
69 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
70 }
71
Matteo Scandoloa57b0972021-05-03 14:04:58 -070072 volthaDeploy([
73 infraNamespace: infraNamespace,
74 volthaNamespace: volthaNamespace,
75 workflow: workflow.toLowerCase(),
76 extraHelmFlags: localHelmFlags,
77 localCharts: localCharts,
78 bbsimReplica: olts.toInteger(),
79 dockerRegistry: registry,
80 ])
Matteo Scandolo075740f2021-04-22 14:52:29 -070081 }
Matteo Scandolo0d04af82021-05-06 08:36:34 -070082
83 // stop logging
84 sh """
85 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-startup" | grep -v grep | awk '{print \$1}')"
86 if [ -n "\$P_IDS" ]; then
87 echo \$P_IDS
88 for P_ID in \$P_IDS; do
89 kill -9 \$P_ID
90 done
91 fi
92 """
Matteo Scandolo075740f2021-04-22 14:52:29 -070093 }
Matteo Scandolo075740f2021-04-22 14:52:29 -070094 sh """
Matteo Scandoloa57b0972021-05-03 14:04:58 -070095 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-voltha-api" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${volthaNamespace} svc/voltha-voltha-api 55555:55555; done"&
96 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-infra-etcd" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-etcd 2379:2379; done"&
97 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-infra-kafka" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-kafka 9092:9092; done"&
Matteo Scandolo075740f2021-04-22 14:52:29 -070098 ps aux | grep port-forward
99 """
Matteo Scandolo075740f2021-04-22 14:52:29 -0700100 }
101 }
102 stage('Run test ' + testTarget + ' on ' + workflow + ' workFlow') {
Matteo Scandolo0d04af82021-05-06 08:36:34 -0700103 // start logging
104 sh """
105 mkdir -p $WORKSPACE/${testTarget}-components
106 _TAG=kail-${workflow} kail -n infra -n voltha > $WORKSPACE/${testTarget}-components/onos-voltha-combined.log &
107 """
Matteo Scandolo075740f2021-04-22 14:52:29 -0700108 sh """
Matteo Scandoloee626e02021-05-05 08:13:16 -0700109 mkdir -p $WORKSPACE/${robotLogsDir}/${testTarget}-robot
110 export ROBOT_MISC_ARGS="-d $WORKSPACE/${robotLogsDir}/${testTarget}-robot "
Matteo Scandoloa57b0972021-05-03 14:04:58 -0700111 ROBOT_MISC_ARGS+="-v ONOS_SSH_PORT:30115 -v ONOS_REST_PORT:30120 -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo075740f2021-04-22 14:52:29 -0700112 export KVSTOREPREFIX=voltha/voltha_voltha
113
114 make -C $WORKSPACE/voltha-system-tests ${testTarget} || true
115 """
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700116 // stop logging
117 sh """
118 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-${workflow}" | grep -v grep | awk '{print \$1}')"
119 if [ -n "\$P_IDS" ]; then
120 echo \$P_IDS
121 for P_ID in \$P_IDS; do
122 kill -9 \$P_ID
123 done
124 fi
125 """
Matteo Scandoloa57b0972021-05-03 14:04:58 -0700126 getPodsInfo("$WORKSPACE/${testTarget}-components")
Matteo Scandolo075740f2021-04-22 14:52:29 -0700127 }
128}
129
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700130def collectArtifacts(exitStatus) {
131 getPodsInfo("$WORKSPACE/${exitStatus}")
132 sh """
Matteo Scandolo0da60532021-05-06 08:59:42 -0700133 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log || true
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700134 """
135 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html'
136 sh '''
137 sync
138 pkill kail || true
139 which voltctl
140 md5sum $(which voltctl)
141 '''
142 step([$class: 'RobotPublisher',
143 disableArchiveOutput: false,
144 logFileName: "RobotLogs/*/log*.html",
145 otherFiles: '',
146 outputFileName: "RobotLogs/*/output*.xml",
147 outputPath: '.',
148 passThreshold: 100,
149 reportFileName: "RobotLogs/*/report*.html",
150 unstableThreshold: 0]);
151}
152
Matteo Scandolo075740f2021-04-22 14:52:29 -0700153pipeline {
154
155 /* no label, executor is determined by JJB */
156 agent {
157 label "${params.buildNode}"
158 }
159 options {
160 timeout(time: 130, unit: 'MINUTES')
161 }
162 environment {
163 KUBECONFIG="$HOME/.kube/kind-${clusterName}"
164 VOLTCONFIG="$HOME/.volt/config"
165 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
166 ROBOT_MISC_ARGS="-e PowerSwitch ${params.extraRobotArgs}"
167 DIAGS_PROFILE="VOLTHA_PROFILE"
168 }
169 stages {
170 stage('Download Code') {
171 steps {
172 getVolthaCode([
173 branch: "${branch}",
174 gerritProject: "${gerritProject}",
175 gerritRefspec: "${gerritRefspec}",
176 volthaSystemTestsChange: "${volthaSystemTestsChange}",
177 volthaHelmChartsChange: "${volthaHelmChartsChange}",
178 ])
179 }
180 }
Matteo Scandolo7ebfdfc2021-05-07 10:15:51 -0700181 stage('Build patch') {
182 // build the patch only if gerritProject is specified
183 when {
184 expression {
185 return !gerritProject.isEmpty()
186 }
187 }
188 steps {
189 // NOTE that the correct patch has already been checked out
190 // during the getVolthaCode step
191 buildVolthaComponent("${gerritProject}")
192 }
193 }
Matteo Scandolo075740f2021-04-22 14:52:29 -0700194 stage('Create K8s Cluster') {
195 steps {
196 script {
197 def clusterExists = sh returnStdout: true, script: """
198 kind get clusters | grep ${clusterName} | wc -l
199 """
200 if (clusterExists.trim() == "0") {
201 createKubernetesCluster([nodes: 3, name: clusterName])
202 }
203 }
204 }
205 }
Matteo Scandolo7ebfdfc2021-05-07 10:15:51 -0700206 stage('Load image in kind nodes') {
207 when {
208 expression {
209 return !gerritProject.isEmpty()
210 }
211 }
212 steps {
213 loadToKind()
214 }
215 }
Matteo Scandolo886cb8e2021-05-03 13:37:41 -0700216 stage('Parse and execute tests') {
217 steps {
218 script {
219 def tests = readYaml text: testTargets
Matteo Scandolo075740f2021-04-22 14:52:29 -0700220
Matteo Scandolo886cb8e2021-05-03 13:37:41 -0700221 for(int i = 0;i<tests.size();i++) {
222 def test = tests[i]
223 def target = test["target"]
224 def workflow = test["workflow"]
225 def flags = test["flags"]
Matteo Scandoloa57b0972021-05-03 14:04:58 -0700226 def teardown = test["teardown"].toBoolean()
Matteo Scandolo886cb8e2021-05-03 13:37:41 -0700227 println "Executing test ${target} on workflow ${workflow} with extra flags ${flags}"
Matteo Scandoloa57b0972021-05-03 14:04:58 -0700228 execute_test(target, workflow, teardown, flags)
Matteo Scandolo886cb8e2021-05-03 13:37:41 -0700229 }
230 }
Matteo Scandolo075740f2021-04-22 14:52:29 -0700231 }
Matteo Scandolo075740f2021-04-22 14:52:29 -0700232 }
233 }
234 post {
235 aborted {
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700236 collectArtifacts("aborted")
Matteo Scandolo075740f2021-04-22 14:52:29 -0700237 }
238 failure {
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700239 collectArtifacts("failed")
Matteo Scandolo075740f2021-04-22 14:52:29 -0700240 }
241 always {
Matteo Scandolo2cc5b392021-05-03 09:33:18 -0700242 collectArtifacts("always")
Matteo Scandolo075740f2021-04-22 14:52:29 -0700243 }
244 }
245}