blob: 67b3ea3e4c0707097cc5552f8329278461b42a42 [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
86 ... Execute ONOS CLI Command on open connection ${onos_ssh_connection}
87 ... 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}
98 Verify ONOS Apps Active Except App Under Test ${onos_url} ${app}
99 Install And Activate ONOS App ${onos_url} ${oar_file}
100 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 2s
101 ... Verify ONOS App Active ${onos_url} ${app} ${version}
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000102 ${app_details_1} Get ONOS App Details ${onos_url} ${app}
103 Log ${app}: after upgrade: ${app_details_1}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000104 Verify ONOS Pod Restart False
105 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test True
106 END
107 # Additional Verification
108 Wait Until Keyword Succeeds ${timeout} 2s Delete All Devices and Verify
109 Setup
110 Run Keyword If ${has_dataplane} Clean Up Linux
111 Wait Until Keyword Succeeds ${timeout} 2s Perform Sanity Test
112
113*** Keywords ***
114Setup Suite
115 [Documentation] Set up the test suite
116 Common Test Suite Setup
117 Create ONOS Apps Under Test List
Hardik Windlassf7a7b1e2021-03-16 07:55:20 +0000118 ${onos_ssh_connection} Open ONOS SSH Connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
119 Set Suite Variable ${onos_ssh_connection}
120
121Teardown Suite
122 [Documentation] Replaces the Suite Teardown in utils.robot.
123 ... Cleans up and checks all ONU ports disabled in ONOS.
124 Close All ONOS SSH Connections
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000125
126Verify ONOS Apps Active Except App Under Test
127 [Documentation] Verifies all the apps defined in input yaml are active except for the app under test
128 [Arguments] ${onos_url} ${app_under_test}
129 ${num_onos_apps}= Get Length ${onos_apps}
130 FOR ${I} IN RANGE 0 ${num_onos_apps}
131 Continue For Loop If '${app_under_test}'=='${onos_apps}[${I}]'
132 Verify ONOS App Active ${onos_url} ${onos_apps}[${I}]
133 END
134
135Download App OAR File
136 [Documentation] This keyword downloads the app oar file from the given url to the specified location
137 [Arguments] ${oar_url} ${oar_file}
138 ${rc} Run And Return Rc curl -L ${oar_url} > ${oar_file}
139 Should Be Equal As Integers ${rc} 0
140
141Create ONOS Apps Under Test List
142 [Documentation] Creates a list of ONOS Apps to Test from the input variable string
143 ... The input string is expected to be in format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000144 ... <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000145 ${list_onos_apps_under_test} Create List
146 @{apps_under_test_arr}= Split String ${onos_apps_under_test} *
147 ${num_apps_under_test}= Get Length ${apps_under_test_arr}
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000148 FOR ${I} IN RANGE 0 ${num_apps_under_test}-1
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000149 @{app_under_test_arr}= Split String ${apps_under_test_arr[${I}]} ,
150 ${app}= Set Variable ${app_under_test_arr[0]}
151 ${version}= Set Variable ${app_under_test_arr[1]}
152 ${url}= Set Variable ${app_under_test_arr[2]}
153 ${app_under_test} Create Dictionary app ${app} version ${version} url ${url}
154 Append To List ${list_onos_apps_under_test} ${app_under_test}
155 END
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000156 Log ${list_onos_apps_under_test}
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000157 Set Suite Variable ${list_onos_apps_under_test}