blob: fbd04dbb37fbcf4b95d7924de8f287e39e05b672 [file] [log] [blame]
Hardik Windlassdd1a9a12021-02-23 15:34:50 +00001# 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*** Settings ***
16Documentation Test ONOS Apps Software Upgrade
17Suite Setup Setup Suite
18Test Setup Setup
19Test Teardown Teardown
20Suite Teardown Teardown Suite
21Library Collections
22Library String
23Library OperatingSystem
24Library XML
25Library RequestsLibrary
26Library ../../libraries/DependencyLibrary.py
27Resource ../../libraries/onos.robot
28Resource ../../libraries/voltctl.robot
29Resource ../../libraries/voltha.robot
30Resource ../../libraries/utils.robot
31Resource ../../libraries/k8s.robot
32Resource ../../variables/variables.robot
33Resource ../../libraries/power_switch.robot
34
35*** Variables ***
36${POD_NAME} flex-ocp-cord
37${KUBERNETES_CONF} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
38${KUBERNETES_CONFIGS_DIR} ~/pod-configs/kubernetes-configs
39#${KUBERNETES_CONFIGS_DIR} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.conf
40${KUBERNETES_YAML} ${KUBERNETES_CONFIGS_DIR}/${POD_NAME}.yml
41${HELM_CHARTS_DIR} ~/helm-charts
42${VOLTHA_POD_NUM} 8
43${NAMESPACE} voltha
44# For below variable value, using deployment name as using grep for
45# parsing radius pod name, we can also use full radius pod name
46${RESTART_POD_NAME} radius
47${timeout} 60s
48${of_id} 0
49${logical_id} 0
50${uprate} 0
51${dnrate} 0
52${has_dataplane} True
53${teardown_device} False
54${scripts} ../../scripts
55
56# Per-test logging on failure is turned off by default; set this variable to enable
57${container_log_dir} ${None}
58
59# ONOS Apps to Test for Software Upgrade need to be passed in the following variable in format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +000060# <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000061# Example: org.opencord.aaa,2.3.0.SNAPSHOT,
Hardik Windlassdc2610f2021-03-09 07:33:51 +000062# https://oss.sonatype.org/content/groups/public/org/opencord/aaa-app/2.3.0-SNAPSHOT/aaa-app-2.3.0-20201210.223737-1.oar*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000063${onos_apps_under_test} ${EMPTY}
64
65*** Test Cases ***
66Test ONOS App Minor Version Upgrade
67 [Documentation] Validates the ONOS App Minor Version Upgrade doesn't affect the system functionality
68 ... Performs the sanity and verifies all the ONUs are authenticated/DHCP/pingable
69 ... Requirement: Apps to test needs to be passed in robot command variable 'onos_apps_under_test' in the format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +000070 ... <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000071 ... Check [VOL-3844] for more details
72 [Tags] functional ONOSAppMinorVerUpgrade
73 [Setup] Run Keywords Start Logging ONOSAppMinorVerUpgrade
74 ... AND Setup
75 [Teardown] Run Keywords Collect Logs
76 ... AND Stop Logging ONOSAppMinorVerUpgrade
77 ... AND Delete All Devices and Verify
78 Run Keyword If ${has_dataplane} Clean Up Linux
79 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
80 ${onos_url}= Set Variable http://karaf:karaf@${ONOS_REST_IP}:${ONOS_REST_PORT}
81 ${num_apps_under_test}= Get Length ${list_onos_apps_under_test}
Hardik Windlassf7a7b1e2021-03-16 07:55:20 +000082 # Set log level to DEBUG for all apps under test
83 FOR ${J} IN RANGE 0 ${num_apps_under_test}
84 ${app_ut}= Set Variable ${list_onos_apps_under_test}[${J}][app]
85 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
TorstenThieme731a7592021-07-01 14:26:54 +000086 ... Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
Hardik Windlassf7a7b1e2021-03-16 07:55:20 +000087 ... log:set DEBUG ${app_ut}
88 END
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000089 FOR ${I} IN RANGE 0 ${num_apps_under_test}
90 ${app}= Set Variable ${list_onos_apps_under_test}[${I}][app]
91 ${version}= Set Variable ${list_onos_apps_under_test}[${I}][version]
92 ${url}= Set Variable ${list_onos_apps_under_test}[${I}][url]
93 ${oar_file}= Set Variable ${CURDIR}/../../tests/data/onos-files/${app}-${version}.oar
94 Download App OAR File ${url} ${oar_file}
Hardik Windlassdc2610f2021-03-09 07:33:51 +000095 ${app_details} Get ONOS App Details ${onos_url} ${app}
96 Log ${app}: before upgrade: ${app_details}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000097 Delete ONOS App ${onos_url} ${app}
Andrea Campanella01d40cb2021-03-24 20:19:58 +010098 Sleep 10s
Hardik Windlassdd1a9a12021-02-23 15:34:50 +000099 Verify ONOS Apps Active Except App Under Test ${onos_url} ${app}
100 Install And Activate ONOS App ${onos_url} ${oar_file}
101 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
102 ... Verify ONOS App Active ${onos_url} ${app} ${version}
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000103 ${app_details_1} Get ONOS App Details ${onos_url} ${app}
104 Log ${app}: after upgrade: ${app_details_1}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000105 Verify ONOS Pod Restart False
106 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test True
107 END
108 # Additional Verification
109 Wait Until Keyword Succeeds ${timeout} 2s Delete All Devices and Verify
110 Setup
111 Run Keyword If ${has_dataplane} Clean Up Linux
112 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
113
114*** Keywords ***
115Setup Suite
116 [Documentation] Set up the test suite
117 Common Test Suite Setup
118 Create ONOS Apps Under Test List
Hardik Windlassf7a7b1e2021-03-16 07:55:20 +0000119
120Teardown Suite
121 [Documentation] Replaces the Suite Teardown in utils.robot.
122 ... Cleans up and checks all ONU ports disabled in ONOS.
123 Close All ONOS SSH Connections
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000124
125Verify ONOS Apps Active Except App Under Test
126 [Documentation] Verifies all the apps defined in input yaml are active except for the app under test
127 [Arguments] ${onos_url} ${app_under_test}
128 ${num_onos_apps}= Get Length ${onos_apps}
129 FOR ${I} IN RANGE 0 ${num_onos_apps}
130 Continue For Loop If '${app_under_test}'=='${onos_apps}[${I}]'
131 Verify ONOS App Active ${onos_url} ${onos_apps}[${I}]
132 END
133
134Download App OAR File
135 [Documentation] This keyword downloads the app oar file from the given url to the specified location
136 [Arguments] ${oar_url} ${oar_file}
Matteo Scandolo2769d2b2021-04-14 10:29:24 -0700137 ${rc} Run And Return Rc curl --fail -sSL ${oar_url} > ${oar_file}
138 Should Be Equal As Integers ${rc} 0 Can't download ONOS app from ${oar_url}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000139
140Create ONOS Apps Under Test List
141 [Documentation] Creates a list of ONOS Apps to Test from the input variable string
142 ... The input string is expected to be in format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000143 ... <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000144 ${list_onos_apps_under_test} Create List
145 @{apps_under_test_arr}= Split String ${onos_apps_under_test} *
146 ${num_apps_under_test}= Get Length ${apps_under_test_arr}
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000147 FOR ${I} IN RANGE 0 ${num_apps_under_test}-1
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000148 @{app_under_test_arr}= Split String ${apps_under_test_arr[${I}]} ,
149 ${app}= Set Variable ${app_under_test_arr[0]}
150 ${version}= Set Variable ${app_under_test_arr[1]}
151 ${url}= Set Variable ${app_under_test_arr[2]}
152 ${app_under_test} Create Dictionary app ${app} version ${version} url ${url}
153 Append To List ${list_onos_apps_under_test} ${app_under_test}
154 END
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000155 Log ${list_onos_apps_under_test}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000156 Set Suite Variable ${list_onos_apps_under_test}