blob: 88e0d72263d66c4b9890eae88a1288a4fa003953 [file] [log] [blame]
TorstenThiemed4f48962020-12-08 12:17:19 +00001# Copyright 2020 - present Open Networking Foundation
TorstenThiemefd7e7ba2020-11-06 13:57:57 +00002#
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.
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000014
15*** Settings ***
16Documentation Library for various openonu-go-adpter utilities
17
TorstenThiemed4f48962020-12-08 12:17:19 +000018*** Variables ***
Matteo Scandolo1c105f92021-01-22 12:08:13 -080019${defaultstackname} voltha_voltha
TorstenThiemed4f48962020-12-08 12:17:19 +000020
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000021*** Keywords ***
TorstenThieme440b7c02020-12-18 15:42:57 +000022Calculate Timeout
23 [Documentation] Calculates the timeout regarding num-onus in case of more than 4 onus
24 [Arguments] ${basetimeout}=60s
25 ${new_timeout} Fetch From Left ${basetimeout} s
26 ${new_timeout}= evaluate ${new_timeout}+((${num_all_onus}-4)*10)
27 ${new_timeout}= Set Variable If (not ${debugmode}) and (${new_timeout}>300)
28 ... 300 ${new_timeout}
29 ${new_timeout}= Catenate SEPARATOR= ${new_timeout} s
30 [Return] ${new_timeout}
31
32Power On ONU Device
33 [Documentation] This keyword turns on the power for all onus.
34 [Arguments] ${namespace}
TorstenThiemefe7099e2021-01-29 08:41:04 +000035 FOR ${J} IN RANGE 0 ${num_olts}
36 ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn]
37 ${bbsim}= Catenate SEPARATOR= bbsim ${J}
38 ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim}
39 Power On ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod}
40 END
41
42Power On ONU Device per OLT
43 [Documentation] This keyword turns on the power for all onus.
44 [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000045 FOR ${I} IN RANGE 0 ${num_all_onus}
46 ${src}= Set Variable ${hosts.src[${I}]}
TorstenThiemefe7099e2021-01-29 08:41:04 +000047 Continue For Loop If "${olt_serial_number}"!="${src['olt']}"
48 Power On ONU ${namespace} ${bbsim_pod} ${src['onu']}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000049 END
50
TorstenThieme440b7c02020-12-18 15:42:57 +000051Power Off ONU Device
TorstenThiemefe7099e2021-01-29 08:41:04 +000052 [Documentation] This keyword turns off the power for all onus per olt.
TorstenThieme440b7c02020-12-18 15:42:57 +000053 [Arguments] ${namespace}
TorstenThiemefe7099e2021-01-29 08:41:04 +000054 FOR ${J} IN RANGE 0 ${num_olts}
55 ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn]
56 ${bbsim}= Catenate SEPARATOR= bbsim ${J}
57 ${bbsim_pod}= Get Pod Name By Label ${namespace} release ${bbsim}
58 Power Off ONU Device per OLT ${namespace} ${olt_serial_number} ${bbsim_pod}
59 END
60
61Power Off ONU Device per OLT
62 [Documentation] This keyword turns off the power for all onus per olt.
63 [Arguments] ${namespace} ${olt_serial_number} ${bbsim_pod}
TorstenThieme440b7c02020-12-18 15:42:57 +000064 FOR ${I} IN RANGE 0 ${num_all_onus}
65 ${src}= Set Variable ${hosts.src[${I}]}
TorstenThiemefe7099e2021-01-29 08:41:04 +000066 Continue For Loop If "${olt_serial_number}"!="${src['olt']}"
67 Power Off ONU ${namespace} ${bbsim_pod} ${src['onu']}
TorstenThieme440b7c02020-12-18 15:42:57 +000068 END
69
70Current State Test
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000071 [Documentation] This keyword checks the passed state of the given onu.
72 [Arguments] ${state} ${onu} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY}
73 ... ${reqconnectstatus}=${EMPTY}
74 ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state}
75 ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state}
76 ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status}
77 ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus}
78 ... ${connect_status}
79 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms
80 ... Validate Device ${admin_state} ${oper_status} ${connect_status}
81 ... ${onu} onu=True onu_reason=${onu_state}
82
TorstenThieme440b7c02020-12-18 15:42:57 +000083Current State Test All Onus
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000084 [Documentation] This keyword checks the passed state of all onus.
85 ... Hint: ${timeStart} will be not evaluated here!
86 [Arguments] ${state} ${reqadminstate}=${EMPTY} ${reqoperstatus}=${EMPTY} ${reqconnectstatus}=${EMPTY}
87 ... ${alternativeonustate}=${EMPTY}
TorstenThieme440b7c02020-12-18 15:42:57 +000088 ${timeStart}= Get Current Date
TorstenThiemefd7e7ba2020-11-06 13:57:57 +000089 ${list_onus} Create List
90 Build ONU SN List ${list_onus}
91 ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Map State ${state}
92 ${admin_state}= Set Variable If '${reqadminstate}'!='${EMPTY}' ${reqadminstate} ${admin_state}
93 ${oper_status}= Set Variable If '${reqoperstatus}'!='${EMPTY}' ${reqoperstatus} ${oper_status}
94 ${connect_status}= Set Variable If '${reqconnectstatus}'!='${EMPTY}' ${reqconnectstatus}
95 ... ${connect_status}
96 Run Keyword And Continue On Failure Wait Until Keyword Succeeds ${timeout} 50ms
97 ... Validate ONU Devices With Duration
98 ... ${admin_state} ${oper_status} ${connect_status}
TorstenThieme52ef8392020-11-10 13:42:26 +000099 ... ${onu_state} ${list_onus} ${timeStart} alternate_reason=${alternativeonustate}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000100
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000101Log Ports
102 [Documentation] This keyword logs all port data available in ONOS of first port per ONU
103 [Arguments] ${onlyenabled}=False
104 ${cmd} Set Variable If ${onlyenabled} ports -e ports
105 ${onu_ports}= Execute ONOS CLI Command on open connection ${onos_ssh_connection} ${cmd}
106 ${lines} = Get Lines Matching Regexp ${onu_ports} .*portName=BBSM[0-9]{8}-1
107 Log ${lines}
108
109Kill Adaptor
110 [Documentation] This keyword kills the passed adaptor.
111 [Arguments] ${namespace} ${name}
112 ${cmd} Catenate
113 ... kubectl exec -it -n voltha $(kubectl get pods -n ${namespace} | grep ${name} | awk 'NR==1{print $1}')
114 ... -- /bin/sh -c "kill 1"
115 ${rc} ${output}= Run and Return Rc and Output ${cmd}
116 Log ${output}
117
TorstenThieme440b7c02020-12-18 15:42:57 +0000118Kill And Check Onu Adaptor
119 [Documentation] This keyword kills ONU Adaptor and waits for it to come up again
120 ... Following steps will be executed:
121 ... - kill openonu adaptor
122 ... - check openonu adaptor is ready again
123 [Arguments] ${namespace}
124 ${list_openonu_apps} Create List adapter-open-onu
125 ${adaptorname}= Set Variable open-onu
126 Kill Adaptor ${namespace} ${adaptorname}
127 Sleep 5s
128 Wait For Pods Ready ${namespace} ${list_openonu_apps}
129
130Restart And Check Onu Adaptor
131 [Documentation] This keyword restarts ONU Adaptor and waits for it to come up again
132 ... Following steps will be executed:
133 ... - restart openonu adaptor
134 ... - check openonu adaptor is ready again
135 [Arguments] ${namespace}
136 ${list_openonu_apps} Create List adapter-open-onu
137 ${adaptorname}= Set Variable open-onu
138 Restart Pod ${namespace} ${adaptorname}
139 Sleep 5s
140 Wait For Pods Ready ${namespace} ${list_openonu_apps}
141
142Disable Onu Device
143 [Documentation] This keyword disables all onus.
TorstenThieme70bc5262021-01-19 12:12:55 +0000144 ${onu_list} Create List
TorstenThieme440b7c02020-12-18 15:42:57 +0000145 FOR ${I} IN RANGE 0 ${num_all_onus}
146 ${src}= Set Variable ${hosts.src[${I}]}
147 ${onu_device_id}= Get Device ID From SN ${src['onu']}
TorstenThieme70bc5262021-01-19 12:12:55 +0000148 ${onu_id}= Get Index From List ${onu_list} ${onu_device_id}
149 Continue For Loop If -1 != ${onu_id}
150 Append To List ${onu_list} ${onu_device_id}
TorstenThieme440b7c02020-12-18 15:42:57 +0000151 Disable Device ${onu_device_id}
152 Wait Until Keyword Succeeds 20s 2s Test Devices Disabled in VOLTHA Id=${onu_device_id}
153 END
154
155Enable Onu Device
156 [Documentation] This keyword enables all onus.
TorstenThieme70bc5262021-01-19 12:12:55 +0000157 ${onu_list} Create List
TorstenThieme440b7c02020-12-18 15:42:57 +0000158 FOR ${I} IN RANGE 0 ${num_all_onus}
159 ${src}= Set Variable ${hosts.src[${I}]}
160 ${onu_device_id}= Get Device ID From SN ${src['onu']}
TorstenThieme70bc5262021-01-19 12:12:55 +0000161 ${onu_id}= Get Index From List ${onu_list} ${onu_device_id}
162 Continue For Loop If -1 != ${onu_id}
163 Append To List ${onu_list} ${onu_device_id}
TorstenThieme440b7c02020-12-18 15:42:57 +0000164 Enable Device ${onu_device_id}
165 END
166
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000167Verify MIB Template Data Available
168 [Documentation] This keyword verifies MIB Template Data stored in etcd
169 ${namespace}= Set Variable default
TorstenThiemed4f48962020-12-08 12:17:19 +0000170 ${podname}= Set Variable etcd
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000171 ${commandget} Catenate
Matteo Scandolo341b9372020-12-09 14:15:06 -0800172 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/omci_mibs/go_templates/'
Holger Hildebrandt23147742020-11-16 10:13:21 +0000173 ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000174 Should Not Be Empty ${result} No MIB Template Data stored in etcd!
175
176Delete MIB Template Data
177 [Documentation] This keyword deletes MIB Template Data stored in etcd
178 ${namespace}= Set Variable default
179 ${podname}= Set Variable etcd
180 ${commanddel} Catenate
Matteo Scandolo341b9372020-12-09 14:15:06 -0800181 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/voltha/omci_mibs/go_templates/'
Holger Hildebrandt23147742020-11-16 10:13:21 +0000182 ${result}= Exec Pod In Kube ${namespace} ${podname} ${commanddel}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000183 Sleep 3s
184 ${commandget} Catenate
Matteo Scandolo341b9372020-12-09 14:15:06 -0800185 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/omci_mibs/go_templates/'
Holger Hildebrandt23147742020-11-16 10:13:21 +0000186 ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget}
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000187 Should Be Empty ${result} Could not delete MIB Template Data stored in etcd!
188
TorstenThieme440b7c02020-12-18 15:42:57 +0000189Set Tech Profile
190 [Documentation] This keyword sets the passed TechProfile for the test
191 [Arguments] ${TechProfile}
192 Log To Console \nTechProfile:${TechProfile}
193 ${namespace}= Set Variable default
194 ${podname}= Set Variable etcd
195 ${src}= Set Variable ${data_dir}/TechProfile-${TechProfile}.json
196 ${dest}= Set Variable /tmp/flexpod.json
197 ${command} Catenate
198 ... /bin/sh -c 'cat ${dest} | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/64'
199 Copy File To Pod ${namespace} ${podname} ${src} ${dest}
200 Exec Pod In Kube ${namespace} ${podname} ${command}
201 ${commandget} Catenate
202 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64'
203 Exec Pod In Kube ${namespace} ${podname} ${commandget}
204
205Remove Tech Profile
206 [Documentation] This keyword removes TechProfile
207 Log To Console \nTechProfile:${TechProfile}
208 ${namespace}= Set Variable default
209 ${podname}= Set Variable etcd
210 ${command} Catenate
211 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl del --prefix service/voltha/technology_profiles/XGS-PON/64'
212 Exec Pod In Kube ${namespace} ${podname} ${command}
213 ${commandget} Catenate
214 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64'
215 Exec Pod In Kube ${namespace} ${podname} ${commandget}
216
TorstenThieme17756ea2020-11-11 14:09:47 +0000217Validate Onu Data In Etcd
218 [Documentation] This keyword validates openonu-go-adapter Data stored in etcd.
219 ... It checks unique of serial_number and combination of pon, onu and uni in tp_path.
220 ... Furthermore it evaluates the values of onu_id and uni_id with values read from tp_path.
221 ... Number of etcd entries has to match with the passed number.
222 [Arguments] ${nbofetcddata}=${num_all_onus}
TorstenThiemed4f48962020-12-08 12:17:19 +0000223 ${stackname}= Get Stack Name
TorstenThieme17756ea2020-11-11 14:09:47 +0000224 ${etcddata}= Get ONU Go Adapter ETCD Data
TorstenThiemed4f48962020-12-08 12:17:19 +0000225 ${etcddata}= Remove Lines Containing String ${etcddata} service/${stackname}/openonu \n
TorstenThieme17756ea2020-11-11 14:09:47 +0000226 #prepare result for json convert
227 ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata}
228 ${jsondata}= To Json ${result}
229 ${length}= Get Length ${jsondata}
230 log ${jsondata}
231 Run Keyword And Continue On Failure Should Be Equal As Integers ${length} ${nbofetcddata}
232 ... msg=Number etcd data (${length}) does not match required (${nbofetcddata})!
TorstenThiemefe7099e2021-01-29 08:41:04 +0000233 ${oltpononuuniidlist}= Create List
TorstenThieme17756ea2020-11-11 14:09:47 +0000234 ${serialnumberlist}= Create List
235 FOR ${INDEX} IN RANGE 0 ${length}
236 ${value}= Get From List ${jsondata} ${INDEX}
Girish Gowdra97f8d062020-11-17 15:48:23 -0800237 # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow.
238 # When testing multi-tcont this may need some adjustment.
239 ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64
TorstenThiemefe7099e2021-01-29 08:41:04 +0000240 ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path}
241 ${list_id}= Get Index From List ${oltpononuuniidlist} ${oltpononuuniid}
TorstenThieme17756ea2020-11-11 14:09:47 +0000242 Should Be Equal As Integers ${list_id} -1
TorstenThiemefe7099e2021-01-29 08:41:04 +0000243 ... msg=Combination of Pon, Onu and Uni (${oltpononuuniid}) exist multiple in etcd data!
244 Append To List ${oltpononuuniidlist} ${oltpononuuniid}
TorstenThieme17756ea2020-11-11 14:09:47 +0000245 Validate Onu Id ${value}
246 Validate Uni Id ${value}
247 ${serial_number}= Get From Dictionary ${value} serial_number
248 ${list_id}= Get Index From List ${serialnumberlist} ${serial_number}
249 Should Be Equal As Integers ${list_id} -1
250 ... msg=Serial number (${serial_number}) exists multiple in etcd data!
251 Append To List ${serialnumberlist} ${serial_number}
252 END
253
TorstenThieme52ef8392020-11-10 13:42:26 +0000254Validate Vlan Rules In Etcd
255 [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data stored in etcd.
256 ... It checks the given number of cookie_slice, match_vid (=4096) and set_vid.
257 ... Furthermore it returns a list of all set_vid.
258 ... In case of a passed dictionary containing set_vids these will be checked for to
259 ... current set-vid depending on setvidequal (True=equal, False=not equal).
260 [Arguments] ${nbofcookieslice}=1 ${reqmatchvid}=4096 ${prevvlanrules}=${NONE} ${setvidequal}=False
TorstenThiemed4f48962020-12-08 12:17:19 +0000261 ${stackname}= Get Stack Name
TorstenThieme52ef8392020-11-10 13:42:26 +0000262 ${etcddata}= Get ONU Go Adapter ETCD Data
TorstenThiemed4f48962020-12-08 12:17:19 +0000263 ${etcddata}= Remove Lines Containing String ${etcddata} service/${stackname}/openonu \n
TorstenThieme52ef8392020-11-10 13:42:26 +0000264 #prepare result for json convert
265 ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata}
266 ${jsondata}= To Json ${result}
267 ${length}= Get Length ${jsondata}
268 log ${jsondata}
269 ${vlan_rules}= Create Dictionary
270 FOR ${INDEX} IN RANGE 0 ${length}
271 ${value}= Get From List ${jsondata} ${INDEX}
Girish Gowdra295c1692020-11-19 10:51:53 -0800272 # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow.
273 # When testing multi-tcont this may need some adjustment.
274 ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64
TorstenThiemefe7099e2021-01-29 08:41:04 +0000275 ${oltpononuuniid}= Read Pon Onu Uni String ${tp_path}
TorstenThieme52ef8392020-11-10 13:42:26 +0000276 ${cookieslice}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]} cookie_slice
277 #@{cookieslicelist}= Split String ${cookieslice} ,
278 ${foundcookieslices}= Get Length ${cookieslice}
279 Should Be Equal As Integers ${foundcookieslices} ${nbofcookieslice}
280 ${matchvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']}
281 ... match_vid
282 Should Be Equal As Integers ${matchvid} ${reqmatchvid}
283 ${setvid}= Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']}
284 ... set_vid
285 ${evalresult}= Evaluate 2 <= ${setvid} <= 4095
286 Should Be True ${evalresult} msg=set_vid out of range (${setvid})!
TorstenThiemefe7099e2021-01-29 08:41:04 +0000287 Set To Dictionary ${vlan_rules} ${oltpononuuniid} ${setvid}
TorstenThieme52ef8392020-11-10 13:42:26 +0000288 ${oldsetvidvalid} Set Variable If ${prevvlanrules} is ${NONE} False True
TorstenThiemefe7099e2021-01-29 08:41:04 +0000289 ${prevsetvid}= Set Variable If ${oldsetvidvalid} ${prevvlanrules['${oltpononuuniid}']}
TorstenThieme52ef8392020-11-10 13:42:26 +0000290 Run Keyword If ${oldsetvidvalid} and ${setvidequal}
291 ... Should Be Equal As Integers ${prevsetvid} ${setvid}
292 ... ELSE IF ${oldsetvidvalid} and not ${setvidequal}
293 ... Should Not Be Equal As Integers ${prevsetvid} ${setvid}
294 END
TorstenThieme440b7c02020-12-18 15:42:57 +0000295 log Many ${vlan_rules}
TorstenThieme52ef8392020-11-10 13:42:26 +0000296 [Return] ${vlan_rules}
297
298Get ONU Go Adapter ETCD Data
299 [Documentation] This keyword delivers openonu-go-adapter Data stored in etcd
300 ${namespace}= Set Variable default
301 ${podname}= Set Variable etcd
TorstenThiemed4f48962020-12-08 12:17:19 +0000302 ${stackname}= Get Stack Name
TorstenThieme52ef8392020-11-10 13:42:26 +0000303 ${commandget} Catenate
TorstenThiemed4f48962020-12-08 12:17:19 +0000304 ... /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix --prefix service/${stackname}/openonu'
Holger Hildebrandt23147742020-11-16 10:13:21 +0000305 ${result}= Exec Pod In Kube ${namespace} ${podname} ${commandget}
TorstenThieme52ef8392020-11-10 13:42:26 +0000306 log ${result}
307 [Return] ${result}
308
309Prepare ONU Go Adapter ETCD Data For Json
310 [Documentation] This keyword prepares openonu-go-adapter Data stored in etcd for converting
311 ... to json
312 [Arguments] ${etcddata}
313 #prepare result for json convert
314 ${prepresult}= Replace String ${etcddata} \n ,
315 ${prepresult}= Strip String ${prepresult} mode=right characters=,
316 ${prepresult}= Set Variable [${prepresult}]
317 log ${prepresult}
318 [Return] ${prepresult}
319
320Remove Lines Containing String
321 [Documentation] This keyword deletes all lines from given string containing passed remove string
322 [Arguments] ${string} ${toremove} ${appendtoremoveline}
323 ${lines}= Get Lines Containing String ${string} ${toremove}
324 ${length}= Get Line Count ${lines}
325 ${firstline}= Set Variable False
326 FOR ${INDEX} IN RANGE 0 ${length}
327 ${String2remove} Get Line ${lines} ${INDEX}
328 ${String2remove} Set Variable ${String2remove}${appendtoremoveline}
329 ${string}= Remove String ${string} ${String2remove}
330 END
331 log ${string}
332 [Return] ${string}
333
334Read Pon Onu Uni String
TorstenThiemefe7099e2021-01-29 08:41:04 +0000335 [Documentation] This keyword builds a four digit string using Olt, Pon, Onu and Uni value of given tp-path taken
TorstenThieme52ef8392020-11-10 13:42:26 +0000336 ... taken from etcd data of onu go adapter
337 [Arguments] ${tp_path}
TorstenThieme52ef8392020-11-10 13:42:26 +0000338 ${tppathlines}= Replace String ${tp_path} / \n
TorstenThiemefe7099e2021-01-29 08:41:04 +0000339 ${olt}= Get Value Of Tp Path Element ${tppathlines} olt
TorstenThieme52ef8392020-11-10 13:42:26 +0000340 ${pon}= Get Value Of Tp Path Element ${tppathlines} pon
341 ${onu}= Get Value Of Tp Path Element ${tppathlines} onu
342 ${uni}= Get Value Of Tp Path Element ${tppathlines} uni
TorstenThiemefe7099e2021-01-29 08:41:04 +0000343 ${valuesid}= Set Variable ${olt}/${pon}/${onu}/${uni}
TorstenThieme52ef8392020-11-10 13:42:26 +0000344 log ${valuesid}
345 [Return] ${valuesid}
346
347Get Value Of Tp Path Element
TorstenThieme17756ea2020-11-11 14:09:47 +0000348 [Documentation] This keyword delivers numeric value of given tp path element.
TorstenThieme52ef8392020-11-10 13:42:26 +0000349 [Arguments] ${tp_path_lines} ${element}
350 ${value}= Get Lines Containing String ${tp_path_lines} ${element}-\{
351 ${value}= Remove String ${value} ${element}-\{
352 ${value}= Remove String ${value} \}
353 log ${value}
354 [Return] ${value}
355
TorstenThieme17756ea2020-11-11 14:09:47 +0000356Validate Onu Id
357 [Documentation] This keyword validates ONU Id of passed etcd data.
358 [Arguments] ${value}
Girish Gowdra295c1692020-11-19 10:51:53 -0800359 # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow.
360 # When testing multi-tcont this may need some adjustment.
361 ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64
TorstenThieme17756ea2020-11-11 14:09:47 +0000362 ${tppathlines}= Replace String ${tp_path} / \n
363 ${onu}= Get Value Of Tp Path Element ${tppathlines} onu
364 ${onu_id}= Get From Dictionary ${value} onu_id
365 Should Be Equal As Integers ${onu} ${onu_id}
366 ... msg=Onu-Id (${onu_id}) does not match onu (${onu}) from tp_path in etcd data!
367 Should Be True ${onu_id}>=1
368
369Validate Uni Id
370 [Documentation] This keyword validates UNI Id of passed etcd data.
371 [Arguments] ${value}
Girish Gowdra295c1692020-11-19 10:51:53 -0800372 # TODO: The TP ID is hardcoded to 64 below. It is fine when testing single-tcont workflow.
373 # When testing multi-tcont this may need some adjustment.
374 ${tp_path}= Get From Dictionary ${value['uni_config'][0]['PersTpPathMap']} 64
TorstenThieme17756ea2020-11-11 14:09:47 +0000375 ${tppathlines}= Replace String ${tp_path} / \n
376 ${uni}= Get Value Of Tp Path Element ${tppathlines} uni
377 ${uni_id}= Get From Dictionary ${value['uni_config'][0]} uni_id
378 Should Be Equal As Integers ${uni} ${uni_id}
379 ... msg=Uni-Id (${uni_id}) does not match onu (${uni}) from tp_path in etcd data!
TorstenThieme52ef8392020-11-10 13:42:26 +0000380
TorstenThiemed4f48962020-12-08 12:17:19 +0000381Get Stack Name
382 [Documentation] This keyword delivers the stack name read from environment variable NAME if present.
383 ${env_name}= Get Environment Variable NAME default=${defaultstackname}
384 # while Get Environment Variable does not work correctly, a manual correction follows
385 ${env_name}= Set Variable If "${env_name}"=="${EMPTY}" ${defaultstackname} ${env_name}
386 [Return] ${env_name}
387
388Wait for Ports in ONOS for all OLTs
TorstenThieme440b7c02020-12-18 15:42:57 +0000389 [Documentation] Waits untill a certain number of ports are enabled in all OLTs
TorstenThiemed4f48962020-12-08 12:17:19 +0000390 [Arguments] ${onos_ssh_connection} ${count} ${filter} ${max_wait_time}=10m
391 FOR ${J} IN RANGE 0 ${num_olts}
392 ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn]
393 ${onu_count}= Set Variable ${list_olts}[${J}][onucount]
394 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
395 ... ${olt_serial_number}
396 Set Global Variable ${of_id}
TorstenThiemefe7099e2021-01-29 08:41:04 +0000397 ${count2check} Set Variable If ${count}==${num_all_onus} ${onu_count} ${count}
398 Wait for Ports in ONOS ${onos_ssh_connection} ${count2check} ${of_id} BBSM ${max_wait_time}
TorstenThiemed4f48962020-12-08 12:17:19 +0000399 END
400
TorstenThieme440b7c02020-12-18 15:42:57 +0000401Wait for all ONU Ports in ONOS Disabled
402 [Documentation] Waits untill a all ONU ports are disabled in all ONOS
403 [Arguments] ${onos_ssh_connection}
404 FOR ${I} IN RANGE 0 ${num_all_onus}
405 ${src}= Set Variable ${hosts.src[${I}]}
406 ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS
407 ... ${src['olt']}
408 ${onu_port}= Wait Until Keyword Succeeds ${timeout} 2s Get ONU Port in ONOS ${src['onu']} ${of_id}
409 Wait Until Keyword Succeeds ${timeout} 2s Assert ONU Port Is Disabled ${onos_ssh_connection} ${of_id}
410 ... ${onu_port}
411 END
412
TorstenThiemefd7e7ba2020-11-06 13:57:57 +0000413Map State
414 [Documentation] This keyword converts the passed numeric value or name of a onu state to its state values.
415 [Arguments] ${state}
416 # create state lists with corresponding return values
417 # ADMIN-STATE OPER-STATUS CONNECT-STATUS ONU-STATE (number/name)
418 ${state1} Create List ENABLED ACTIVATING REACHABLE 1 activating-onu
419 ${state2} Create List ENABLED ACTIVATING REACHABLE 2 starting-openomci
420 ${state3} Create List ENABLED ACTIVATING REACHABLE 3 discovery-mibsync-complete
421 ${state4} Create List ENABLED ACTIVE REACHABLE 4 initial-mib-downloaded
422 ${state5} Create List ENABLED ACTIVE REACHABLE 5 tech-profile-config-download-success
423 ${state6} Create List ENABLED ACTIVE REACHABLE 6 omci-flows-pushed
424 ${state7} Create List DISABLED UNKNOWN REACHABLE 7 omci-admin-lock
425 ${state8} Create List ENABLED ACTIVE REACHABLE 8 onu-reenabled
426 ${state9} Create List ENABLED DISCOVERED UNREACHABLE 9 stopping-openomci
427 ${state10} Create List ENABLED DISCOVERED REACHABLE 10 rebooting
428 ${state11} Create List ENABLED DISCOVERED REACHABLE 11 omci-flows-deleted
429 ${state12} Create List DISABLED UNKNOWN REACHABLE 12 tech-profile-config-delete-success
430 ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}= Set Variable If
431 ... '${state}'=='1' or '${state}'=='activating-onu' ${state1}
432 ... '${state}'=='2' or '${state}'=='starting-openomci' ${state2}
433 ... '${state}'=='3' or '${state}'=='discovery-mibsync-complete' ${state3}
434 ... '${state}'=='4' or '${state}'=='initial-mib-downloaded' ${state4}
435 ... '${state}'=='5' or '${state}'=='tech-profile-config-download-success' ${state5}
436 ... '${state}'=='6' or '${state}'=='omci-flows-pushed' ${state6}
437 ... '${state}'=='7' or '${state}'=='omci-admin-lock' ${state7}
438 ... '${state}'=='8' or '${state}'=='onu-reenabled' ${state8}
439 ... '${state}'=='9' or '${state}'=='stopping-openomci' ${state9}
440 ... '${state}'=='10' or '${state}'=='rebooting' ${state10}
441 ... '${state}'=='11' or '${state}'=='omci-flows-deleted' ${state11}
442 ... '${state}'=='12' or '${state}'=='tech-profile-config-delete-success' ${state12}
443 [Return] ${admin_state} ${oper_status} ${connect_status} ${onu_state_nb} ${onu_state}