Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 1 | # Copyright 2017-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 *** |
| 16 | Library Process |
Kailash | f8ff51a | 2018-11-13 13:49:53 -0800 | [diff] [blame] | 17 | Library OperatingSystem |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 18 | Library ../common/auto_test.py |
| 19 | Library ../common/volthaMngr.py |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 20 | Library ../common/preprovisioning.py |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 21 | Library ../common/discovery.py |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 22 | Library ../common/authentication.py |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 23 | Library ../common/dhcp.py |
Gilles Depatie | ed99efe | 2019-03-12 16:12:26 -0400 | [diff] [blame] | 24 | Library ../common/unicast.py |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 25 | Library volthaMngr.VolthaMngr |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 26 | Library preprovisioning.Preprovisioning |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 27 | Library discovery.Discovery |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 28 | Library authentication.Authentication |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 29 | Library dhcp.DHCP |
Gilles Depatie | ed99efe | 2019-03-12 16:12:26 -0400 | [diff] [blame] | 30 | Library unicast.Unicast |
Gilles Depatie | 9651e46 | 2018-11-21 15:58:33 -0500 | [diff] [blame] | 31 | |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 32 | Suite Setup Start Voltha |
| 33 | Suite Teardown Stop Voltha |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 34 | |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 35 | *** Variables *** |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 36 | ${LOG_DIR} /tmp/voltha_test_results |
| 37 | ${ROOT_DIR} ${EMPTY} |
| 38 | ${VOLTHA_DIR} ${EMPTY} |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 39 | ${OLT_PORT_ID} 50060 |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 40 | ${OLT_TYPE} ${EMPTY} |
| 41 | ${ONU_TYPE} ${EMPTY} |
| 42 | ${OLT_HOST_IP} ${EMPTY} |
| 43 | ${ONU_COUNT} ${EMPTY} |
| 44 | ${ADAPTER} ${EMPTY} |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 45 | ${RETRY_TIMEOUT_60} 60s |
| 46 | ${RETRY_INTERVAL_2} 2s |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 47 | |
| 48 | *** Test Cases *** |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 49 | Olt Pre Provisioning |
| 50 | [Documentation] Olt Pre Provisioning |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 51 | ... This test preprovisions a ponsim-OLT with given IP address and TCP port |
| 52 | ... and then enables both it and a number of ponsim-ONUs with predefined IP/port |
| 53 | ... information. It then verifies that all the physical and logical devices are ACTIVE |
| 54 | ... and REACHEABLE |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 55 | P Set Log Dirs ${LOG_DIR} |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 56 | P Configure ${OLT_HOST_IP} ${OLT_PORT_ID} ${OLT_TYPE} ${ONU_TYPE} ${ONU_COUNT} |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 57 | Preprovision Olt |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 58 | Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Query Devices Before Enabling |
Gilles Depatie | 9651e46 | 2018-11-21 15:58:33 -0500 | [diff] [blame] | 59 | Status Should Be Success After Preprovision Command |
| 60 | Check Olt Fields Before Enabling |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 61 | Enable |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 62 | Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Query Devices After Enabling |
Gilles Depatie | 9651e46 | 2018-11-21 15:58:33 -0500 | [diff] [blame] | 63 | Status Should Be Success After Enable Command |
| 64 | Check Olt Fields After Enabling |
| 65 | Check Onu Fields After Enabling |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 66 | Sleep 60 |
| 67 | |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 68 | Olt Onu Discovery |
| 69 | [Documentation] Olt Onu Discovery |
| 70 | ... This test covers both Onu Discovery and yet to be developped Olt Discovery |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 71 | ... It aims to verify the integrity of all port fields under each discrete device, including |
| 72 | ... Logical Device. |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 73 | ... It also insures that the peers fields contains device Id entries for the corresponding |
| 74 | ... Olt or Onu device. Functionality to support multiple ONU accomodated |
| 75 | ... The extent of the flow validation is limited to checking whether number of Flows is > 0 |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 76 | D Set Log Dirs ${LOG_DIR} |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 77 | D Configure ${OLT_HOST_IP} ${OLT_TYPE} ${ONU_TYPE} ${ONU_COUNT} |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 78 | Olt Discovery |
| 79 | Onu Discovery |
Kailash | a4d4574 | 2019-02-11 14:46:43 -0800 | [diff] [blame] | 80 | Logical Device |
Gilles Depatie | 82dd202 | 2019-02-19 14:31:33 -0500 | [diff] [blame] | 81 | Logical Device Ports Should Exist |
| 82 | Logical Device Should Have At Least One Flow |
Gilles Depatie | 1be639b | 2018-12-06 10:51:08 -0500 | [diff] [blame] | 83 | Olt Ports Should Be Enabled and Active |
| 84 | Onu Ports Should Be Enabled and Active |
| 85 | Olt Should Have At Least One Flow |
| 86 | Onu Should Have At Least One Flow |
| 87 | |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 88 | Radius Authentication |
| 89 | [Documentation] Radius Authentication |
| 90 | ... This test attempts to perform a Radius Authentication from the RG |
| 91 | ... It uses the wpa_supplicant app to authenticate using EAPOL. |
| 92 | ... We then verify the generated log file confirming all the authentication steps |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 93 | [Tags] ponsim |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 94 | A Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 95 | Discover Freeradius Pod Name |
| 96 | Discover Freeradius Ip Addr |
| 97 | Set Current Freeradius Ip In AAA Json |
| 98 | Alter AAA Application Configuration In Onos Using AAA Json |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 99 | Execute Authentication On RG |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 100 | Verify Authentication Should Have Started |
| 101 | Verify Authentication Should Have Completed |
| 102 | Verify Authentication Should Have Disconnected |
| 103 | Verify Authentication Should Have Terminated |
| 104 | |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 105 | Dhcp IP Address Assignment on RG |
| 106 | [Documentation] DHCP assigned IP Address |
| 107 | ... A DHCP server is configured and Activated on Onos. We need to change |
| 108 | ... the Firewall rules so as to allow packets to flow between RG and OLT/ONU |
| 109 | ... We also must add a second DHCP flow rule in onos in the direction from NNI |
| 110 | ... by calling 'add subscriber access' on onos. We then deassign the default |
| 111 | ... IP address granted to RG upon instantiating the RG pod. Finally we invoke |
| 112 | ... 'dhclient' on RG to request a DHCP IP address. |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 113 | [Tags] ponsim |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 114 | H Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} |
Gilles Depatie | 2e68369 | 2019-02-22 16:06:52 -0500 | [diff] [blame] | 115 | Set Firewall Rules |
| 116 | Discover Authorized Users |
| 117 | Retrieve Authorized Users Device Id And Port Number |
| 118 | Add Subscriber Access |
| 119 | Should Now Have Two Dhcp Flows |
| 120 | Add Dhcp Server Configuration Data In Onos |
| 121 | Activate Dhcp Server In Onos |
| 122 | Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Query For Default Ip On Rg |
| 123 | De Assign Default Ip On Rg |
| 124 | Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Assign Dhcp Ip Addr To Rg |
| 125 | Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Should Have Dhcp Assigned Ip |
| 126 | |
Gilles Depatie | ed99efe | 2019-03-12 16:12:26 -0400 | [diff] [blame] | 127 | Unicast flow setup ctag/stag assignment |
| 128 | [Documentation] Unicast ctag/stag assignment |
| 129 | ... We call Ping from RG to a non-existant IP address an we ignore the |
| 130 | ... Destination Host Unreachable message. We then invoke tcpdump on 'pon1' |
| 131 | ... network looking for ARP request from RG IP address. These packets should |
| 132 | ... be double tagged with different s and c Tags but matching tag configuration |
| 133 | ... in sadis entry. |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 134 | [Tags] ponsim |
Gilles Depatie | ed99efe | 2019-03-12 16:12:26 -0400 | [diff] [blame] | 135 | U Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 136 | U Configure ${ONU_TYPE} ${ONU_COUNT} |
| 137 | Read Sadis Entries From Sadis Json |
| 138 | Retrieve Onu Serial Numbers |
| 139 | Manage Onu Testing |
Gilles Depatie | ed99efe | 2019-03-12 16:12:26 -0400 | [diff] [blame] | 140 | |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 141 | *** Keywords *** |
| 142 | Start Voltha |
| 143 | [Documentation] Start Voltha infrastructure to run test(s). This includes starting all |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 144 | ... Kubernetes Pods and start collection of logs. PonsimV2 has now been |
| 145 | ... containerized and does not need to be managed separately |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 146 | ... Initialize working DIRs as well as Adapter specific variables |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 147 | ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} Dir Init ${LOG_DIR} |
Gilles Depatie | a85fe81 | 2019-01-23 15:55:53 -0500 | [diff] [blame] | 148 | Set Suite Variable ${ROOT_DIR} |
| 149 | Set Suite Variable ${VOLTHA_DIR} |
| 150 | Set Suite Variable ${LOG_DIR} |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 151 | V Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 152 | ${OLT_TYPE} ${ONU_TYPE} ${OLT_HOST_IP} ${ONU_COUNT} Adapter Init ${ADAPTER} |
| 153 | Set Suite Variable ${OLT_TYPE} |
| 154 | Set Suite Variable ${ONU_TYPE} |
| 155 | Set Suite Variable ${OLT_HOST_IP} |
| 156 | Set Suite Variable ${ONU_COUNT} |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 157 | Stop Voltha |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 158 | Start All Pods ${ADAPTER} |
Kailash | 2da848e | 2018-11-13 10:58:53 -0800 | [diff] [blame] | 159 | Sleep 60 |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 160 | ${pod_status} Run kubectl get pods --all-namespaces |
| 161 | Log To Console \n${pod_status}\n |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 162 | Alter Onos Net Cfg |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 163 | |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 164 | Stop Voltha |
Gilles Depatie | 0bf3135 | 2019-02-04 13:48:41 -0500 | [diff] [blame] | 165 | [Documentation] Stop Voltha infrastructure. This includes clearing all installation milestones |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 166 | ... files and stopping all Kubernetes pods |
Kailash | 8ae83ac | 2019-02-11 12:23:52 -0800 | [diff] [blame] | 167 | Collect Pod Logs |
Gilles Depatie | ea42371 | 2019-04-12 16:39:12 -0400 | [diff] [blame^] | 168 | Stop All Pods ${ADAPTER} |
| 169 | Reset Kube Adm ${ADAPTER} |