blob: edfcb6c098acc0ffdf203de1987deb1a4e89f369 [file] [log] [blame]
Hardik Windlass19605da2022-06-30 22:05:57 +05301// 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
26def execute_test(testTarget, workflow, testLogging, teardown, testSpecificHelmFlags = "") {
27 def infraNamespace = "default"
28 def volthaNamespace = "voltha"
29 def logsDir = "$WORKSPACE/${testTarget}"
30 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 }
45 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 }
56 stage('Deploy Voltha') {
57 if (teardown) {
58 timeout(10) {
59 script {
60
61 sh """
62 mkdir -p ${logsDir}
63 _TAG=kail-startup kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
64 """
65
66 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
67 def localCharts = false
68 if (volthaHelmChartsChange != "" || gerritProject == "voltha-helm-charts") {
69 localCharts = true
70 }
71
72 // NOTE temporary workaround expose ONOS node ports
73 def localHelmFlags = extraHelmFlags.trim() + " --set global.log_level=${logLevel.toUpperCase()} " +
74 " --set onos-classic.onosSshPort=30115 " +
75 " --set onos-classic.onosApiPort=30120 " +
76 " --set onos-classic.onosOfPort=31653 " +
77 " --set onos-classic.individualOpenFlowNodePorts=true " + testSpecificHelmFlags
78
79 if (gerritProject != "") {
80 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
81 }
82
83 volthaDeploy([
84 infraNamespace: infraNamespace,
85 volthaNamespace: volthaNamespace,
86 workflow: workflow.toLowerCase(),
87 withMacLearning: enableMacLearning.toBoolean(),
88 extraHelmFlags: localHelmFlags,
89 localCharts: localCharts,
90 bbsimReplica: olts.toInteger(),
91 dockerRegistry: registry,
92 ])
93 }
94
95 // stop logging
96 sh """
97 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
104 cd ${logsDir}
105 gzip -k onos-voltha-startup-combined.log
106 rm onos-voltha-startup-combined.log
107 """
108 }
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
118 if [ ${withMonitoring} = true ] ; then
119 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"&
120 fi
121 ps aux | grep port-forward
122 """
123 // setting ONOS log level
124 script {
125 setOnosLogLevels([
126 onosNamespace: infraNamespace,
127 apps: [
128 'org.opencord.dhcpl2relay',
129 'org.opencord.olt',
130 'org.opencord.aaa',
131 'org.opencord.maclearner',
132 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager',
133 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager'
134 ],
135 logLevel: logLevel
136 ])
137 }
138 }
139 }
140 stage('Run test ' + testTarget + ' on ' + workflow + ' workFlow') {
141 sh """
142 if [ ${withMonitoring} = true ] ; then
143 mkdir -p $WORKSPACE/voltha-pods-mem-consumption-${workflow}
144 cd $WORKSPACE/voltha-system-tests
145 make vst_venv
146 source ./vst_venv/bin/activate || true
147 # Collect initial memory consumption
148 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption-${workflow} -a 0.0.0.0:31301 -n ${volthaNamespace} || true
149 fi
150 """
151 sh """
152 mkdir -p ${logsDir}
153 export ROBOT_MISC_ARGS="-d ${logsDir} ${params.extraRobotArgs} "
154 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}"
155 export KVSTOREPREFIX=voltha/voltha_voltha
156
157 make -C $WORKSPACE/voltha-system-tests ${testTarget} || true
158 """
159 getPodsInfo("${logsDir}")
160 sh """
161 set +e
162 # collect logs collected in the Robot Framework StartLogging keyword
163 cd ${logsDir}
164 gzip *-combined.log || true
165 rm *-combined.log || true
166 """
167 sh """
168 if [ ${withMonitoring} = true ] ; then
169 cd $WORKSPACE/voltha-system-tests
170 source ./vst_venv/bin/activate || true
171 # Collect memory consumption of voltha pods once all the tests are complete
172 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption-${workflow} -a 0.0.0.0:31301 -n ${volthaNamespace} || true
173 fi
174 """
175 }
176}
177
178def collectArtifacts(exitStatus) {
179 getPodsInfo("$WORKSPACE/${exitStatus}")
180 sh """
181 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log || true
182 """
183 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html,**/voltha-pods-mem-consumption-att/*,**/voltha-pods-mem-consumption-dt/*,**/voltha-pods-mem-consumption-tt/*'
184 sh '''
185 sync
186 pkill kail || true
187 which voltctl
188 md5sum $(which voltctl)
189 '''
190 step([$class: 'RobotPublisher',
191 disableArchiveOutput: false,
192 logFileName: "**/*/log*.html",
193 otherFiles: '',
194 outputFileName: "**/*/output*.xml",
195 outputPath: '.',
196 passThreshold: 100,
197 reportFileName: "**/*/report*.html",
198 unstableThreshold: 0,
199 onlyCritical: true]);
200}
201
202pipeline {
203
204 /* no label, executor is determined by JJB */
205 agent {
206 label "${params.buildNode}"
207 }
208 options {
209 timeout(time: "${timeout}", unit: 'MINUTES')
210 }
211 environment {
212 KUBECONFIG="$HOME/.kube/kind-${clusterName}"
213 VOLTCONFIG="$HOME/.volt/config"
214 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
215 DIAGS_PROFILE="VOLTHA_PROFILE"
216 SSHPASS="karaf"
217 }
218 stages {
219 stage('Download Code') {
220 steps {
221 getVolthaCode([
222 branch: "${branch}",
223 gerritProject: "${gerritProject}",
224 gerritRefspec: "${gerritRefspec}",
225 volthaSystemTestsChange: "${volthaSystemTestsChange}",
226 volthaHelmChartsChange: "${volthaHelmChartsChange}",
227 ])
228 }
229 }
230 stage('Build patch') {
231 // build the patch only if gerritProject is specified
232 when {
233 expression {
234 return !gerritProject.isEmpty()
235 }
236 }
237 steps {
238 // NOTE that the correct patch has already been checked out
239 // during the getVolthaCode step
240 buildVolthaComponent("${gerritProject}")
241 }
242 }
243 stage('Create K8s Cluster') {
244 steps {
245 script {
246 def clusterExists = sh returnStdout: true, script: """
247 kind get clusters | grep ${clusterName} | wc -l
248 """
249 if (clusterExists.trim() == "0") {
250 createKubernetesCluster([nodes: 3, name: clusterName])
251 }
252 }
253 }
254 }
255 stage('Replace voltctl') {
256 // if the project is voltctl override the downloaded one with the built one
257 when {
258 expression {
259 return gerritProject == "voltctl"
260 }
261 }
262 steps{
263 sh """
264 mv `ls $WORKSPACE/voltctl/release/voltctl-*-linux-amd*` $WORKSPACE/bin/voltctl
265 chmod +x $WORKSPACE/bin/voltctl
266 """
267 }
268 }
269 stage('Load image in kind nodes') {
270 when {
271 expression {
272 return !gerritProject.isEmpty()
273 }
274 }
275 steps {
276 loadToKind()
277 }
278 }
279 stage('Parse and execute tests') {
280 steps {
281 script {
282 def tests = readYaml text: testTargets
283
284 for(int i = 0;i<tests.size();i++) {
285 def test = tests[i]
286 def target = test["target"]
287 def workflow = test["workflow"]
288 def flags = test["flags"]
289 def teardown = test["teardown"].toBoolean()
290 def logging = test["logging"].toBoolean()
291 def testLogging = 'False'
292 if (logging) {
293 testLogging = 'True'
294 }
295 println "Executing test ${target} on workflow ${workflow} with logging ${testLogging} and extra flags ${flags}"
296 execute_test(target, workflow, testLogging, teardown, flags)
297 }
298 }
299 }
300 }
301 }
302 post {
303 aborted {
304 collectArtifacts("aborted")
305 }
306 failure {
307 collectArtifacts("failed")
308 }
309 always {
310 collectArtifacts("always")
311 }
312 }
313}