TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 1 | # 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 | # FIXME Can we use the same test against BBSim and Hardware? |
| 15 | |
| 16 | *** Settings *** |
| 17 | Documentation Test of open ONU go adapter Flows |
| 18 | Suite Setup Setup Suite |
| 19 | Test Setup Setup |
| 20 | Test Teardown Teardown |
| 21 | Suite Teardown Teardown Suite |
| 22 | Library Collections |
| 23 | Library String |
| 24 | Library OperatingSystem |
| 25 | Library XML |
| 26 | Library RequestsLibrary |
| 27 | Library ../../libraries/DependencyLibrary.py |
| 28 | Resource ../../libraries/onos.robot |
| 29 | Resource ../../libraries/voltctl.robot |
| 30 | Resource ../../libraries/voltha.robot |
| 31 | Resource ../../libraries/utils.robot |
| 32 | Resource ../../libraries/k8s.robot |
| 33 | Resource ../../variables/variables.robot |
| 34 | Resource ../../libraries/power_switch.robot |
| 35 | Resource ../../libraries/onu_utilities.robot |
| 36 | |
| 37 | *** Variables *** |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 38 | ${NAMESPACE} voltha |
| 39 | ${INFRA_NAMESPACE} default |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 40 | ${timeout} 60s |
| 41 | ${of_id} 0 |
| 42 | ${logical_id} 0 |
| 43 | ${has_dataplane} True |
| 44 | ${external_libs} True |
| 45 | ${teardown_device} True |
| 46 | ${scripts} ../../scripts |
| 47 | # Per-test logging on failure is turned off by default; set this variable to enable |
| 48 | ${container_log_dir} ${None} |
TorstenThieme | 54ba3c6 | 2021-07-29 06:54:08 +0000 | [diff] [blame] | 49 | # KV Store Prefix |
| 50 | # example: -v kvstoreprefix:voltha_voltha |
| 51 | ${kvstoreprefix} voltha_voltha |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 52 | # determines the environment workflow: DT, TT or ATT (default) |
| 53 | # example: -v workflow:DT |
| 54 | ${workflow} ATT |
| 55 | # logging flag to enable Collect Logs, can be passed via the command line too |
| 56 | # example: -v logging:True |
| 57 | ${logging} False |
| 58 | # used tech profile, can be passed via the command line too, valid values: default (=1T1GEM), 1T4GEM, 1T8GEM |
| 59 | # example: -v techprofile:1T4GEM |
| 60 | ${techprofile} default |
| 61 | # if True execution will be paused before clean up, only use in case of manual testing, do not use in ci pipeline! |
| 62 | # example: -v pausebeforecleanup:True |
| 63 | ${pausebeforecleanup} False |
| 64 | ${data_dir} ../data |
| 65 | |
| 66 | *** Test Cases *** |
| 67 | Flows Test |
| 68 | [Documentation] Validates onu vlan rules in etcd: |
| 69 | [Tags] functionalOnuGo FlowsTest |
| 70 | [Setup] Start Logging FlowsTest |
| 71 | ${onu_tags_dict}= Collect Tags Per ONU |
| 72 | # Check and store vlan rules |
| 73 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure |
| 74 | ... Validate Etcd Vlan Rules Added Subscriber ${onu_tags_dict} defaultkvstoreprefix=${kvstoreprefix} |
| 75 | #log flows for verification |
| 76 | ${flowsresult}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s |
| 77 | log ${flowsresult} |
| 78 | FOR ${J} IN RANGE 0 ${num_olts} |
| 79 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 80 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 81 | ... ${olt_serial_number} |
| 82 | # Remove subscriber |
| 83 | Do Onu Subscriber Remove Per OLT ${of_id} ${olt_serial_number} |
| 84 | END |
| 85 | #log flows for verification |
| 86 | ${flowsresult}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s |
| 87 | log ${flowsresult} |
| 88 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure Run Keyword And Continue On Failure |
| 89 | ... Validate Etcd Vlan Rules Removed Subscriber defaultkvstoreprefix=${kvstoreprefix} |
| 90 | FOR ${J} IN RANGE 0 ${num_olts} |
| 91 | ${olt_serial_number}= Set Variable ${list_olts}[${J}][sn] |
| 92 | ${of_id}= Wait Until Keyword Succeeds ${timeout} 15s Validate OLT Device in ONOS |
| 93 | ... ${olt_serial_number} |
| 94 | Do Onu Subscriber Add Per OLT ${of_id} ${olt_serial_number} |
| 95 | END |
| 96 | #log flows for verification |
| 97 | ${flowsresult}= Execute ONOS CLI Command use single connection ${ONOS_SSH_IP} ${ONOS_SSH_PORT} flows -s |
| 98 | log ${flowsresult} |
| 99 | Wait Until Keyword Succeeds ${timeout} 2s Run Keyword And Continue On Failure Run Keyword And Continue On Failure |
| 100 | ... Validate Etcd Vlan Rules Added Subscriber ${onu_tags_dict} defaultkvstoreprefix=${kvstoreprefix} |
| 101 | [Teardown] Run Keywords Run Keyword If ${logging} Collect Logs |
| 102 | ... AND Stop Logging FlowsTest |
| 103 | |
| 104 | *** Keywords *** |
| 105 | Setup Suite |
| 106 | [Documentation] Set up the test suite inclusive enable device and sanity test of given workflow |
| 107 | Common Test Suite Setup |
| 108 | ${techprofile}= Set Variable If "${techprofile}"=="1T1GEM" default ${techprofile} |
| 109 | Set Suite Variable ${techprofile} |
| 110 | Run Keyword If "${techprofile}"=="default" Log To Console \nTechProfile:default (1T1GEM) |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 111 | ... ELSE IF "${techprofile}"=="1T4GEM" Set Tech Profile 1T4GEM ${INFRA_NAMESPACE} |
| 112 | ... ELSE IF "${techprofile}"=="1T8GEM" Set Tech Profile 1T8GEM ${INFRA_NAMESPACE} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 113 | ... ELSE Fail The TechProfile (${techprofile}) is not valid! |
| 114 | ${switch_type}= Get Variable Value ${web_power_switch.type} |
| 115 | Run Keyword If "${switch_type}"!="" Set Global Variable ${powerswitch_type} ${switch_type} |
| 116 | Setup |
| 117 | Run Keyword If ${has_dataplane} Clean Up Linux |
| 118 | Run Keyword If "${workflow}"=="DT" Perform Sanity Test DT |
| 119 | ... ELSE IF "${workflow}"=="TT" Perform Sanity Tests TT |
| 120 | ... ELSE Perform Sanity Test |
| 121 | |
| 122 | Teardown Suite |
| 123 | [Documentation] Replaces the Suite Teardown in utils.robot. |
| 124 | ... Cleans up and checks all ONU ports disabled in ONOS. |
| 125 | ... Furthermore gives the possibility to pause the execution. |
| 126 | Run Keyword If ${pausebeforecleanup} Import Library Dialogs |
| 127 | Run Keyword If ${pausebeforecleanup} Pause Execution Press OK to continue with clean up! |
| 128 | Run Keyword If ${pausebeforecleanup} Log Teardown will be continued... console=yes |
| 129 | Run Keyword If ${teardown_device} Delete All Devices and Verify |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 130 | Wait Until Keyword Succeeds ${timeout} 1s Validate Onu Data In Etcd ${INFRA_NAMESPACE} 0 ${kvstoreprefix} |
| 131 | ... without_pm_data=False |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 132 | Wait for Ports in ONOS for all OLTs ${ONOS_SSH_IP} ${ONOS_SSH_PORT} 0 BBSM ${timeout} |
| 133 | Close All ONOS SSH Connections |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 134 | Remove Tech Profile ${INFRA_NAMESPACE} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 135 | |
| 136 | Validate Etcd Vlan Rules Added Subscriber |
| 137 | [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data stored in etcd. |
| 138 | ... It checks the match_vid (=4096) and set_vid when subscriber are added. |
| 139 | [Arguments] ${onu_tags_dict} ${reqmatchvid}=4096 ${defaultkvstoreprefix}=voltha_voltha |
| 140 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 141 | ${etcddata}= Get ONU Go Adapter ETCD Data ${INFRA_NAMESPACE} ${kvstoreprefix} True True |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 142 | #prepare result for json convert |
| 143 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 144 | ${jsondata}= To Json ${result} |
| 145 | ${length}= Get Length ${jsondata} |
| 146 | log ${jsondata} |
TorstenThieme | 54ba3c6 | 2021-07-29 06:54:08 +0000 | [diff] [blame] | 147 | Should Not Be Empty ${jsondata} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 148 | FOR ${INDEX} IN RANGE 0 ${length} |
| 149 | ${value}= Get From List ${jsondata} ${INDEX} |
| 150 | ${flowparams}= Get From Dictionary ${value['uni_config'][0]} flow_params |
| 151 | ${onu}= Get From Dictionary ${value} serial_number |
| 152 | Validate Flow Params Vlan Rules ${flowparams} ${onu_tags_dict} ${onu} ${reqmatchvid} |
| 153 | END |
| 154 | |
| 155 | Validate Flow Params Vlan Rules |
| 156 | [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data iterating over passed flow params. |
| 157 | ... It checks the match_vid (=4096) and set_vid when subscriber are added. |
| 158 | [Arguments] ${flowparams} ${onu_tags_dict} ${onu} ${reqmatchvid}=4096 |
| 159 | ${length}= Get Length ${flowparams} |
| 160 | ${nbofexpectedrules}= Set Variable If |
| 161 | ... "${workflow}"=="TT" and ${has_dataplane} 4 |
| 162 | ... "${workflow}"=="TT" and not ${has_dataplane} 3 |
| 163 | ... "${workflow}"=="DT" or "${workflow}"=="ATT" 1 |
| 164 | Should Be Equal As Numbers ${length} ${nbofexpectedrules} |
| 165 | ... msg=wrong number of vlan rules (${length} != ${nbofexpectedrules})! |
| 166 | FOR ${INDEX} IN RANGE 0 ${length} |
| 167 | ${value}= Get From List ${flowparams} ${INDEX} |
| 168 | ${matchvid}= Get From Dictionary ${value['vlan_rule_params']} |
| 169 | ... match_vid |
| 170 | Should Be Equal As Integers ${matchvid} ${reqmatchvid} |
| 171 | ${setvid}= Get From Dictionary ${value['vlan_rule_params']} |
| 172 | ... set_vid |
| 173 | ${c_tags_list}= Get From Dictionary ${onu_tags_dict['${onu}']} c_tags |
| 174 | ${tagindex}= Get Index From List ${c_tags_list} ${setvid} |
| 175 | Should Not Be Equal As Integers ${tagindex} -1 msg=set_vid out of range (${setvid})! |
| 176 | END |
| 177 | |
| 178 | Validate Etcd Vlan Rules Removed Subscriber |
| 179 | [Documentation] This keyword validates Vlan rules of openonu-go-adapter Data stored in etcd. |
| 180 | ... It checks the match_vid (=4096) and set_vid when subscriber are removed. |
| 181 | [Arguments] ${reqmatchvid}=4096 ${defaultkvstoreprefix}=voltha_voltha |
| 182 | ${kvstoreprefix}= Get Kv Store Prefix ${defaultkvstoreprefix} |
Hardik Windlass | 4288c6a | 2021-09-28 07:22:06 +0000 | [diff] [blame] | 183 | ${etcddata}= Get ONU Go Adapter ETCD Data ${INFRA_NAMESPACE} ${kvstoreprefix} True True |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 184 | #prepare result for json convert |
| 185 | ${result}= Prepare ONU Go Adapter ETCD Data For Json ${etcddata} |
| 186 | ${jsondata}= To Json ${result} |
| 187 | ${length}= Get Length ${jsondata} |
| 188 | log ${jsondata} |
TorstenThieme | 54ba3c6 | 2021-07-29 06:54:08 +0000 | [diff] [blame] | 189 | Should Not Be Empty ${jsondata} |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 190 | FOR ${INDEX} IN RANGE 0 ${length} |
| 191 | ${value}= Get From List ${jsondata} ${INDEX} |
| 192 | @{result_values}= Run Keyword And Ignore Error |
| 193 | ... Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} match_vid |
| 194 | ${result}= Set Variable @{result_values}[0] |
| 195 | ${matchvid}= Set Variable @{result_values}[1] |
| 196 | Run Keyword If "${workflow}"=="ATT" Should Be Equal As Integers ${matchvid} ${reqmatchvid} |
| 197 | ... ELSE Should Be Equal As Strings ${result} FAIL |
| 198 | @{result_values}= Run Keyword And Ignore Error |
| 199 | ... Get From Dictionary ${value['uni_config'][0]['flow_params'][0]['vlan_rule_params']} set_vid |
| 200 | ${result}= Set Variable @{result_values}[0] |
| 201 | ${setvid}= Set Variable @{result_values}[1] |
| 202 | ${evalresult}= Run Keyword If "${workflow}"=="ATT" Evaluate ${setvid} == 4091 |
| 203 | ... ELSE Evaluate "${result}" == "FAIL" |
| 204 | Should Be True ${evalresult} msg=set_vid out of range (${setvid})! |
| 205 | END |
| 206 | |
| 207 | Collect Tags Per ONU |
| 208 | [Documentation] This keyword collects the s- and c-tags per ONU. |
| 209 | ${onu_tags_dict}= Create Dictionary |
| 210 | FOR ${I} IN RANGE 0 ${num_all_onus} |
| 211 | ${src}= Set Variable ${hosts.src[${I}]} |
| 212 | ${onu_tags_dict}= Run Keyword If '${src['onu']}' in ${onu_tags_dict} Update ONU Tags Dict ${onu_tags_dict} |
| 213 | ... ${src['onu']} ${src['c_tag']} ${src['s_tag']} |
| 214 | ... ELSE Append To ONU Tags Dict ${onu_tags_dict} |
| 215 | ... ${src['onu']} ${src['c_tag']} ${src['s_tag']} |
| 216 | END |
| 217 | log ${onu_tags_dict} |
| 218 | [return] ${onu_tags_dict} |
| 219 | |
| 220 | Update ONU Tags Dict |
| 221 | [Documentation] This keyword update passed dictionary with the s- and c-tags for passed ONU. |
| 222 | [Arguments] ${onu_tags_dict} ${onu} ${c_tag} ${s_tag} |
| 223 | ${c_tag}= Convert To Integer ${c_tag} |
| 224 | ${s_tag}= Convert To Integer ${s_tag} |
| 225 | ${c_tags_list}= Get From Dictionary ${onu_tags_dict['${onu}']} c_tags |
| 226 | Append To List ${c_tags_list} ${c_tag} |
| 227 | ${s_tags_list}= Get From Dictionary ${onu_tags_dict['${onu}']} s_tags |
| 228 | Append To List ${s_tags_list} ${s_tag} |
| 229 | Set To Dictionary ${onu_tags_dict['${onu}']} c_tags ${c_tags_list} s_tags ${s_tags_list} |
| 230 | [return] ${onu_tags_dict} |
| 231 | |
| 232 | Append To ONU Tags Dict |
| 233 | [Documentation] This keyword append the s- and c-tags of passed ONU to passed dictionary . |
| 234 | [Arguments] ${onu_tags_dict} ${onu} ${c_tag} ${s_tag} |
| 235 | ${c_tag}= Convert To Integer ${c_tag} |
| 236 | ${s_tag}= Convert To Integer ${s_tag} |
| 237 | ${c_tags_list}= Create List ${c_tag} |
| 238 | ${s_tags_list}= Create List ${s_tag} |
| 239 | ${onu_dict}= Create Dictionary c_tags ${c_tags_list} s_tags ${s_tags_list} |
| 240 | Set To Dictionary ${onu_tags_dict} ${onu} ${onu_dict} |
| 241 | [return] ${onu_tags_dict} |