blob: 1f3645aa3b7d595441568323e6fd3a26b59b4856 [file] [log] [blame]
TorstenThiemed4f48962020-12-08 12:17:19 +00001# Copyright 2020 - 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
TorstenThieme840380b2020-10-02 09:31:56 +000015*** Settings ***
16Documentation Test Template handling of ONU Go adapter with BBSIM controlledActivation: only-onu only!
17... Values.yaml must contain 'onu: 2' and 'controlledActivation: only-onu' under BBSIM!
18... Run robot with bbsim-kind-2x2.yaml
19Suite Setup Setup Suite
20Suite Teardown Teardown Suite
21Test Setup Setup
22Test Teardown Teardown
23Library Collections
24Library String
25Library OperatingSystem
26Library XML
27Library RequestsLibrary
28Library ../../libraries/DependencyLibrary.py
29Resource ../../libraries/onos.robot
30Resource ../../libraries/voltctl.robot
31Resource ../../libraries/voltha.robot
32Resource ../../libraries/utils.robot
33Resource ../../libraries/k8s.robot
TorstenThieme440b7c02020-12-18 15:42:57 +000034Resource ../../libraries/onu_utilities.robot
TorstenThieme840380b2020-10-02 09:31:56 +000035Resource ../../variables/variables.robot
36
37*** Variables ***
TorstenThieme440b7c02020-12-18 15:42:57 +000038${namespace} voltha
TorstenThiemed4f48962020-12-08 12:17:19 +000039${timeout} 60s
TorstenThieme840380b2020-10-02 09:31:56 +000040${of_id} 0
41${logical_id} 0
42${has_dataplane} True
43${external_libs} True
44${teardown_device} True
45${scripts} ../../scripts
46# Per-test logging on failure is turned off by default; set this variable to enable
47${container_log_dir} ${None}
48
49# flag debugmode is used, if true timeout calculation various, can be passed via the command line too
50# example: -v debugmode:True
51${debugmode} False
52# logging flag to enable Collect Logs, can be passed via the command line too
53# example: -v logging:True
54${logging} False
55# if True execution will be paused before clean up
56# example: -v pausebeforecleanup:True
57${pausebeforecleanup} False
58${data_dir} ../data
59
60
61*** Test Cases ***
62ONU MIB Template Data Test
63 [Documentation] Validates ONU Go adapter storage of MIB Template Data in etcd and checks the usage
64 ... - setup one ONU
65 ... - request MIB-Upload-Data by ONU via OMCI
66 ... - storage MIB-Upload-Data in etcd
67 ... - store setup duration of ONU
TorstenThiemed4f48962020-12-08 12:17:19 +000068 ... - check Template-Data in etcd stored (service/%{NAME}/omci_mibs/go_templates/)
TorstenThieme840380b2020-10-02 09:31:56 +000069 ... - setup second ONU
70 ... - collect setup durationof second ONU
71 ... - compare both duration
72 ... - duration of second ONU should be at least 10 times faster than the first one
73 ... - MIB-Upload-Data should not requested via OMCI by second ONU
74 ... - MIB-Upload-Data should read from etcd
TorstenThieme66c91a82020-10-19 13:37:53 +000075 [Tags] functionalOnuGo MibTemplateOnuGo
TorstenThieme840380b2020-10-02 09:31:56 +000076 [Setup] Run Keywords Start Logging ONUMibTemplateTest
77 ... AND Setup
78 Perform ONU MIB Template Data Test
79 [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs
80 ... AND Stop Logging ONUMibTemplateTest
81
82
83*** Keywords ***
84Setup Suite
85 [Documentation] Set up the test suite
86 ${LogInfo}= Catenate
87 ... \r\nPassed arguments:
88 ... debugmode:${debugmode}, logging:${logging}, pausebeforecleanup:${pausebeforecleanup},
89 Log ${LogInfo} console=yes
90 Common Test Suite Setup
91 ${onos_ssh_connection} Open ONOS SSH Connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT}
92 Set Suite Variable ${onos_ssh_connection}
93 # delete etcd MIB Template Data
94 Delete MIB Template Data
95
96Teardown Suite
97 [Documentation] Replaces the Suite Teardown in utils.robot.
98 ... Cleans up and checks all ONU ports disabled in ONOS.
99 ... Furthermore gives the possibility to pause the execution.
100 Run Keyword If ${pausebeforecleanup} Import Library Dialogs
101 Run Keyword If ${pausebeforecleanup} Pause Execution Press OK to continue with clean up!
102 Run Keyword If ${pausebeforecleanup} Log Teardown will be continued... console=yes
103 Run Keyword If ${teardown_device} Delete All Devices and Verify
TorstenThiemed4f48962020-12-08 12:17:19 +0000104 Wait for Ports in ONOS for all OLTs ${onos_ssh_connection} 0 BBSM
TorstenThieme840380b2020-10-02 09:31:56 +0000105 # delete etcd MIB Template Data (for repeating test)
106 Delete MIB Template Data
TorstenThieme440b7c02020-12-18 15:42:57 +0000107 Close All ONOS SSH Connections
TorstenThieme840380b2020-10-02 09:31:56 +0000108
109Perform ONU MIB Template Data Test
110 [Documentation] This keyword performs ONU MIB Template Data Test
TorstenThieme66c91a82020-10-19 13:37:53 +0000111 ${firstonu}= Set Variable 0
112 ${secondonu}= Set Variable 1
113 ${state2test}= Set Variable omci-flows-pushed
TorstenThieme840380b2020-10-02 09:31:56 +0000114 Set Global Variable ${state2test}
115 Run Keyword If ${has_dataplane} Clean Up Linux
116 # Start first Onu
TorstenThieme66c91a82020-10-19 13:37:53 +0000117 ${src}= Set Variable ${hosts.src[${0}]}
118 Log \r\nONU ${src['onu']}: startup with MIB upload cycle and storage of template data to etcd. console=yes
TorstenThieme440b7c02020-12-18 15:42:57 +0000119 ${result}= Exec Pod In Kube ${namespace} bbsim bbsimctl onu poweron ${src['onu']}
TorstenThieme66c91a82020-10-19 13:37:53 +0000120 Should Contain ${result} successfully msg=Can not poweron ${src['onu']} values=False
TorstenThieme840380b2020-10-02 09:31:56 +0000121 ${timeStart}= Get Current Date
122 ${firstonustartup}= Get ONU Startup Duration ${firstonu} ${timeStart}
123 # check MIB Template data stored in etcd
124 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 3s
125 ... Verify MIB Template Data Available
126 # Start second Onu
TorstenThieme66c91a82020-10-19 13:37:53 +0000127 ${src}= Set Variable ${hosts.src[${1}]}
128 Log ONU ${src['onu']}: startup without MIB upload cycle by using of template data of etcd. console=yes
TorstenThieme440b7c02020-12-18 15:42:57 +0000129 ${result}= Exec Pod In Kube ${namespace} bbsim bbsimctl onu poweron ${src['onu']}
TorstenThieme66c91a82020-10-19 13:37:53 +0000130 Should Contain ${result} successfully msg=Can not poweron ${src['onu']} values=False
TorstenThieme840380b2020-10-02 09:31:56 +0000131 ${timeStart}= Get Current Date
132 ${secondonustartup}= Get ONU Startup Duration ${secondonu} ${timeStart}
133 # compare both durations, second onu should be at least 3 times faster
134 ${status} Evaluate ${firstonustartup}>=${secondonustartup}*3
135 Should Be True ${status}
136 ... Startup durations (${firstonustartup} and ${secondonustartup}) do not full fill the requirements of 1/10.
137
138Get ONU Startup Duration
139 [Documentation] This keyword delivers startup duration of onu
140 [Arguments] ${onu} ${starttime}
141 ${src}= Set Variable ${hosts.src[${onu}]}
TorstenThieme66c91a82020-10-19 13:37:53 +0000142 ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}=
143 ... Map State ${state2test}
TorstenThieme840380b2020-10-02 09:31:56 +0000144 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms
145 ... Validate Device ${admin_state} ${oper_status} ${connect_status}
146 ... ${src['onu']} onu=True onu_reason=${onu_state}
147 ${timeCurrent} = Get Current Date
148 ${timeTotalMs} = Subtract Date From Date ${timeCurrent} ${startTime} result_format=number
149 Log ONU ${src['onu']}: reached the state ${onu_state} after ${timeTotalMs} sec. console=yes
150 [Return] ${timeTotalMs}