blob: 73bd509e612993864976df56d34d45b5ca0b5b9a [file] [log] [blame]
Hardik Windlassec9341b2021-06-07 11:58:29 +00001// Copyright 2021-present Open Networking Foundation
Matteo Scandolo42f6e572021-01-25 15:11:34 -08002//
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
Hardik Windlassec9341b2021-06-07 11:58:29 +000015// voltha-2.x e2e tests for openonu-go
Matteo Scandolo42f6e572021-01-25 15:11:34 -080016// uses bbsim to simulate OLT/ONUs
17
Matteo Scandoloa156b572021-02-04 11:52:18 -080018library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
23
Hardik Windlassec9341b2021-06-07 11:58:29 +000024def clusterName = "kind-ci"
25
Hardik Windlass60fc0da2021-10-14 07:02:40 +000026def execute_test(testTarget, workflow, testLogging, teardown, testSpecificHelmFlags = "") {
Hardik Windlassec9341b2021-06-07 11:58:29 +000027 def infraNamespace = "default"
28 def volthaNamespace = "voltha"
Matteo Scandolo9c230bb2021-10-22 12:48:39 -070029 def logsDir = "$WORKSPACE/${testTarget}"
Hardik Windlassec9341b2021-06-07 11:58:29 +000030 stage('Cleanup') {
31 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 || true
40 '''
41 }
42 }
43 }
44 }
Hardik Windlasse1660492022-03-14 15:12:46 +000045 stage('Deploy common infrastructure') {
46 sh '''
47 helm repo add onf https://charts.opencord.org
48 helm repo update
49 if [ ${withMonitoring} = true ] ; then
50 helm install nem-monitoring onf/nem-monitoring \
51 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
52 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
53 fi
54 '''
55 }
Hardik Windlassec9341b2021-06-07 11:58:29 +000056 stage('Deploy Voltha') {
57 if (teardown) {
Matteo Scandoloea6348e2021-06-10 18:44:58 +020058 timeout(10) {
Hardik Windlassec9341b2021-06-07 11:58:29 +000059 script {
60
61 sh """
Matteo Scandolo9c230bb2021-10-22 12:48:39 -070062 mkdir -p ${logsDir}
63 _TAG=kail-startup kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
Hardik Windlassec9341b2021-06-07 11:58:29 +000064 """
65
66 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
67 def localCharts = false
Matteo Scandoloea6348e2021-06-10 18:44:58 +020068 if (volthaHelmChartsChange != "" || gerritProject == "voltha-helm-charts") {
Hardik Windlassec9341b2021-06-07 11:58:29 +000069 localCharts = true
70 }
71
72 // NOTE temporary workaround expose ONOS node ports
Andrea Campanella9e41a602021-09-14 14:45:11 +020073 def localHelmFlags = extraHelmFlags.trim() + " --set global.log_level=${logLevel.toUpperCase()} " +
Matteo Scandolo9114c892021-05-20 11:41:55 -070074 " --set onos-classic.onosSshPort=30115 " +
Hardik Windlassec9341b2021-06-07 11:58:29 +000075 " --set onos-classic.onosApiPort=30120 " +
76 " --set onos-classic.onosOfPort=31653 " +
77 " --set onos-classic.individualOpenFlowNodePorts=true " + testSpecificHelmFlags
Matteo Scandolo42f6e572021-01-25 15:11:34 -080078
Hardik Windlassec9341b2021-06-07 11:58:29 +000079 if (gerritProject != "") {
80 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
81 }
82
83 volthaDeploy([
84 infraNamespace: infraNamespace,
85 volthaNamespace: volthaNamespace,
86 workflow: workflow.toLowerCase(),
Hardik Windlass2b164342022-02-28 03:50:48 +000087 withMacLearning: enableMacLearning.toBoolean(),
Hardik Windlassec9341b2021-06-07 11:58:29 +000088 extraHelmFlags: localHelmFlags,
89 localCharts: localCharts,
90 bbsimReplica: olts.toInteger(),
91 dockerRegistry: registry,
92 ])
Matteo Scandolod17de3a2021-04-09 15:47:52 -070093 }
Matteo Scandolofcfc60d2021-02-24 09:06:48 -080094
Hardik Windlassec9341b2021-06-07 11:58:29 +000095 // stop logging
Matteo Scandolod17de3a2021-04-09 15:47:52 -070096 sh """
Hardik Windlassec9341b2021-06-07 11:58:29 +000097 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-startup" | grep -v grep | awk '{print \$1}')"
98 if [ -n "\$P_IDS" ]; then
99 echo \$P_IDS
100 for P_ID in \$P_IDS; do
101 kill -9 \$P_ID
102 done
103 fi
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700104 cd ${logsDir}
Hardik Windlassec9341b2021-06-07 11:58:29 +0000105 gzip -k onos-voltha-startup-combined.log
106 rm onos-voltha-startup-combined.log
Matteo Scandolod17de3a2021-04-09 15:47:52 -0700107 """
Hardik Windlassec9341b2021-06-07 11:58:29 +0000108 }
109 sh """
110 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"&
111 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"&
112 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"&
113 bbsimDmiPortFwd=50075
114 for i in {0..${olts.toInteger() - 1}}; do
115 JENKINS_NODE_COOKIE="dontKillMe" _TAG="bbsim\${i}" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${volthaNamespace} svc/bbsim\${i} \${bbsimDmiPortFwd}:50075; done"&
116 ((bbsimDmiPortFwd++))
117 done
Hardik Windlasse1660492022-03-14 15:12:46 +0000118 JENKINS_NODE_COOKIE="dontKillMe" _TAG="nem-monitoring-prometheus-server" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n default svc/nem-monitoring-prometheus-server 31301:80; done"&
Hardik Windlassec9341b2021-06-07 11:58:29 +0000119 ps aux | grep port-forward
120 """
Matteo Scandolo35ac7822021-10-28 18:08:54 -0700121 // setting ONOS log level
Matteo Scandolo9e8ba502021-11-17 13:56:56 -0800122 script {
123 setOnosLogLevels([
124 onosNamespace: infraNamespace,
125 apps: [
126 'org.opencord.dhcpl2relay',
127 'org.opencord.olt',
128 'org.opencord.aaa',
Andrea Campanellac0762392022-03-11 15:01:13 +0100129 'org.opencord.maclearner',
Matteo Scandolo9e8ba502021-11-17 13:56:56 -0800130 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager',
131 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager'
132 ],
133 logLevel: logLevel
134 ])
135 }
Matteo Scandolod17de3a2021-04-09 15:47:52 -0700136 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800137 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000138 stage('Run test ' + testTarget + ' on ' + workflow + ' workFlow') {
Hardik Windlass72947302021-06-14 10:36:57 +0000139 sh """
Hardik Windlasse1660492022-03-14 15:12:46 +0000140 mkdir -p $WORKSPACE/voltha-pods-mem-consumption
141 cd $WORKSPACE/voltha-system-tests
142 make vst_venv
143 source ./vst_venv/bin/activate || true
144 # Collect initial memory consumption
145 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption -a 0.0.0.0:31301 -n ${volthaNamespace} || true
146 """
147 sh """
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700148 mkdir -p ${logsDir}
Hardik Windlassd62442d2021-11-30 10:51:20 +0000149 export ROBOT_MISC_ARGS="-d ${logsDir} ${params.extraRobotArgs} "
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700150 ROBOT_MISC_ARGS+="-v ONOS_SSH_PORT:30115 -v ONOS_REST_PORT:30120 -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace} -v container_log_dir:${logsDir} -v logging:${testLogging}"
Hardik Windlass72947302021-06-14 10:36:57 +0000151 export KVSTOREPREFIX=voltha/voltha_voltha
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800152
Hardik Windlass72947302021-06-14 10:36:57 +0000153 make -C $WORKSPACE/voltha-system-tests ${testTarget} || true
154 """
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700155 getPodsInfo("${logsDir}")
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000156 sh """
157 set +e
158 # collect logs collected in the Robot Framework StartLogging keyword
159 cd ${logsDir}
160 gzip *-combined.log || true
161 rm *-combined.log || true
162 """
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800163 }
164}
165
Hardik Windlassec9341b2021-06-07 11:58:29 +0000166def collectArtifacts(exitStatus) {
167 getPodsInfo("$WORKSPACE/${exitStatus}")
168 sh """
169 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log || true
170 """
Hardik Windlasse1660492022-03-14 15:12:46 +0000171 sh """
172 cd $WORKSPACE/voltha-system-tests
173 source ./vst_venv/bin/activate || true
174 # Collect memory consumption of voltha pods once all the tests are complete
175 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption -a 0.0.0.0:31301 -n voltha || true
176 """
177 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html,**/voltha-pods-mem-consumption/*'
Hardik Windlassec9341b2021-06-07 11:58:29 +0000178 sh '''
179 sync
180 pkill kail || true
181 which voltctl
182 md5sum $(which voltctl)
183 '''
184 step([$class: 'RobotPublisher',
185 disableArchiveOutput: false,
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700186 logFileName: "**/*/log*.html",
Hardik Windlassec9341b2021-06-07 11:58:29 +0000187 otherFiles: '',
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700188 outputFileName: "**/*/output*.xml",
Hardik Windlassec9341b2021-06-07 11:58:29 +0000189 outputPath: '.',
190 passThreshold: 100,
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700191 reportFileName: "**/*/report*.html",
Andrea Campanellaabc09772021-06-16 12:08:57 +0200192 unstableThreshold: 0,
193 onlyCritical: true]);
Hardik Windlassec9341b2021-06-07 11:58:29 +0000194}
195
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800196pipeline {
197
198 /* no label, executor is determined by JJB */
199 agent {
200 label "${params.buildNode}"
201 }
202 options {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000203 timeout(time: "${timeout}", unit: 'MINUTES')
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800204 }
205 environment {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000206 KUBECONFIG="$HOME/.kube/kind-${clusterName}"
207 VOLTCONFIG="$HOME/.volt/config"
208 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Hardik Windlassec9341b2021-06-07 11:58:29 +0000209 DIAGS_PROFILE="VOLTHA_PROFILE"
Matteo Scandolo35ac7822021-10-28 18:08:54 -0700210 SSHPASS="karaf"
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800211 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000212 stages {
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800213 stage('Download Code') {
214 steps {
215 getVolthaCode([
216 branch: "${branch}",
217 gerritProject: "${gerritProject}",
218 gerritRefspec: "${gerritRefspec}",
219 volthaSystemTestsChange: "${volthaSystemTestsChange}",
220 volthaHelmChartsChange: "${volthaHelmChartsChange}",
221 ])
222 }
223 }
224 stage('Build patch') {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000225 // build the patch only if gerritProject is specified
226 when {
227 expression {
228 return !gerritProject.isEmpty()
229 }
230 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800231 steps {
232 // NOTE that the correct patch has already been checked out
233 // during the getVolthaCode step
234 buildVolthaComponent("${gerritProject}")
235 }
236 }
237 stage('Create K8s Cluster') {
238 steps {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000239 script {
240 def clusterExists = sh returnStdout: true, script: """
241 kind get clusters | grep ${clusterName} | wc -l
242 """
243 if (clusterExists.trim() == "0") {
244 createKubernetesCluster([nodes: 3, name: clusterName])
245 }
246 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800247 }
248 }
Hardik Windlassc6ba23e2021-06-08 08:19:52 +0000249 stage('Replace voltctl') {
250 // if the project is voltctl override the downloaded one with the built one
251 when {
252 expression {
253 return gerritProject == "voltctl"
254 }
255 }
256 steps{
257 sh """
258 mv `ls $WORKSPACE/voltctl/release/voltctl-*-linux-amd*` $WORKSPACE/bin/voltctl
259 chmod +x $WORKSPACE/bin/voltctl
260 """
261 }
262 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800263 stage('Load image in kind nodes') {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000264 when {
265 expression {
266 return !gerritProject.isEmpty()
267 }
268 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800269 steps {
270 loadToKind()
271 }
272 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000273 stage('Parse and execute tests') {
274 steps {
275 script {
276 def tests = readYaml text: testTargets
277
278 for(int i = 0;i<tests.size();i++) {
279 def test = tests[i]
280 def target = test["target"]
281 def workflow = test["workflow"]
282 def flags = test["flags"]
283 def teardown = test["teardown"].toBoolean()
Hardik Windlass24e275f2021-10-19 08:19:06 +0000284 def logging = test["logging"].toBoolean()
285 def testLogging = 'False'
286 if (logging) {
287 testLogging = 'True'
288 }
289 println "Executing test ${target} on workflow ${workflow} with logging ${testLogging} and extra flags ${flags}"
290 execute_test(target, workflow, testLogging, teardown, flags)
Hardik Windlassec9341b2021-06-07 11:58:29 +0000291 }
292 }
Matteo Scandolo29597f02021-02-12 10:53:57 -0800293 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800294 }
295 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800296 post {
Matteo Scandoloe543c4c2021-03-09 07:34:29 -0800297 aborted {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000298 collectArtifacts("aborted")
Matteo Scandoloe543c4c2021-03-09 07:34:29 -0800299 }
300 failure {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000301 collectArtifacts("failed")
Matteo Scandoloe543c4c2021-03-09 07:34:29 -0800302 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800303 always {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000304 collectArtifacts("always")
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800305 }
306 }
307}