blob: c86193f7bd904b9f2bfc73682b1acda80da3186a [file] [log] [blame]
Gilles Depatiec68b3ad2018-08-21 16:29:03 -04001# 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 ***
16Library Process
Kailashf8ff51a2018-11-13 13:49:53 -080017Library OperatingSystem
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040018Library ../common/auto_test.py
19Library ../common/volthaMngr.py
Gilles Depatie84cb1e72018-10-26 12:41:33 -040020Library ../common/preprovisioning.py
Gilles Depatie1be639b2018-12-06 10:51:08 -050021Library ../common/discovery.py
Gilles Depatiea85fe812019-01-23 15:55:53 -050022Library ../common/authentication.py
Gilles Depatie2e683692019-02-22 16:06:52 -050023Library ../common/dhcp.py
Gilles Depatieed99efe2019-03-12 16:12:26 -040024Library ../common/unicast.py
Gilles Depatie84cb1e72018-10-26 12:41:33 -040025Library volthaMngr.VolthaMngr
Kailash32ce8e52018-11-13 13:03:36 -080026Library preprovisioning.Preprovisioning
Gilles Depatie1be639b2018-12-06 10:51:08 -050027Library discovery.Discovery
Gilles Depatiea85fe812019-01-23 15:55:53 -050028Library authentication.Authentication
Gilles Depatie2e683692019-02-22 16:06:52 -050029Library dhcp.DHCP
Gilles Depatieed99efe2019-03-12 16:12:26 -040030Library unicast.Unicast
Gilles Depatie9651e462018-11-21 15:58:33 -050031
Gilles Depatie1be639b2018-12-06 10:51:08 -050032Suite Setup Start Voltha
33Suite Teardown Stop Voltha
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040034
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040035*** Variables ***
Gilles Depatie2e683692019-02-22 16:06:52 -050036${LOG_DIR} /tmp/voltha_test_results
37${ROOT_DIR} ${EMPTY}
38${VOLTHA_DIR} ${EMPTY}
Gilles Depatie2e683692019-02-22 16:06:52 -050039${OLT_PORT_ID} 50060
Gilles Depatieea423712019-04-12 16:39:12 -040040${OLT_TYPE} ${EMPTY}
41${ONU_TYPE} ${EMPTY}
42${OLT_HOST_IP} ${EMPTY}
43${ONU_COUNT} ${EMPTY}
Gilles Depatie493ea242019-05-21 14:38:08 -040044${SIMTYPE} ${EMPTY}
Gilles Depatie2e683692019-02-22 16:06:52 -050045${RETRY_TIMEOUT_60} 60s
46${RETRY_INTERVAL_2} 2s
Gilles Depatiec9a26cf2019-05-10 15:43:12 -040047${PROCEED_TIMEOUT_180} 180s
48
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040049
50*** Test Cases ***
Gilles Depatie1be639b2018-12-06 10:51:08 -050051Olt Pre Provisioning
52 [Documentation] Olt Pre Provisioning
Gilles Depatie84cb1e72018-10-26 12:41:33 -040053 ... This test preprovisions a ponsim-OLT with given IP address and TCP port
54 ... and then enables both it and a number of ponsim-ONUs with predefined IP/port
55 ... information. It then verifies that all the physical and logical devices are ACTIVE
56 ... and REACHEABLE
Gilles Depatie0bf31352019-02-04 13:48:41 -050057 P Set Log Dirs ${LOG_DIR}
Gilles Depatieea423712019-04-12 16:39:12 -040058 P Configure ${OLT_HOST_IP} ${OLT_PORT_ID} ${OLT_TYPE} ${ONU_TYPE} ${ONU_COUNT}
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040059 Preprovision Olt
Gilles Depatie2e683692019-02-22 16:06:52 -050060 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Query Devices Before Enabling
Gilles Depatie9651e462018-11-21 15:58:33 -050061 Status Should Be Success After Preprovision Command
62 Check Olt Fields Before Enabling
Gilles Depatiec68b3ad2018-08-21 16:29:03 -040063 Enable
Kailashf747d2c2019-05-23 11:00:48 -070064 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Validate Number of Devices
Gilles Depatiec9a26cf2019-05-10 15:43:12 -040065 Wait Until Keyword Succeeds ${PROCEED_TIMEOUT_180} ${RETRY_INTERVAL_2} Proceed
Gilles Depatieea423712019-04-12 16:39:12 -040066
Gilles Depatie1be639b2018-12-06 10:51:08 -050067Olt Onu Discovery
68 [Documentation] Olt Onu Discovery
69 ... This test covers both Onu Discovery and yet to be developped Olt Discovery
Gilles Depatie2e683692019-02-22 16:06:52 -050070 ... It aims to verify the integrity of all port fields under each discrete device, including
71 ... Logical Device.
Gilles Depatie1be639b2018-12-06 10:51:08 -050072 ... It also insures that the peers fields contains device Id entries for the corresponding
73 ... Olt or Onu device. Functionality to support multiple ONU accomodated
74 ... The extent of the flow validation is limited to checking whether number of Flows is > 0
Gilles Depatie0bf31352019-02-04 13:48:41 -050075 D Set Log Dirs ${LOG_DIR}
Gilles Depatieea423712019-04-12 16:39:12 -040076 D Configure ${OLT_HOST_IP} ${OLT_TYPE} ${ONU_TYPE} ${ONU_COUNT}
Gilles Depatie1be639b2018-12-06 10:51:08 -050077 Olt Discovery
78 Onu Discovery
Kailasha4d45742019-02-11 14:46:43 -080079 Logical Device
Gilles Depatie82dd2022019-02-19 14:31:33 -050080 Logical Device Ports Should Exist
81 Logical Device Should Have At Least One Flow
Gilles Depatie1be639b2018-12-06 10:51:08 -050082 Olt Ports Should Be Enabled and Active
83 Onu Ports Should Be Enabled and Active
84 Olt Should Have At Least One Flow
85 Onu Should Have At Least One Flow
86
Gilles Depatiea85fe812019-01-23 15:55:53 -050087Radius Authentication
88 [Documentation] Radius Authentication
Gilles Depatie493ea242019-05-21 14:38:08 -040089 ... This test attempts to perform a Radius Authentication from the RG in the case
90 ... of the 'ponsim' simtype. It uses the wpa_supplicant app to authenticate using EAPOL.
Gilles Depatiea85fe812019-01-23 15:55:53 -050091 ... We then verify the generated log file confirming all the authentication steps
Gilles Depatie493ea242019-05-21 14:38:08 -040092 ... In the case where the simtype is 'bbsim' we simply verify that all ONUs have
93 ... authenticated. We do this by executing the 'aaa-users command on onos
Gilles Depatie0bf31352019-02-04 13:48:41 -050094 A Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR}
Gilles Depatie493ea242019-05-21 14:38:08 -040095 A Configure ${ONU_COUNT}
96 Run Keyword If '${SIMTYPE}' == 'ponsim' Ponsim Authentication Steps
97 ... ELSE IF '${SIMTYPE}' == 'bbsim' BBSim Authentication Verification Step
Gilles Depatiea85fe812019-01-23 15:55:53 -050098
Gilles Depatie2e683692019-02-22 16:06:52 -050099Dhcp IP Address Assignment on RG
100 [Documentation] DHCP assigned IP Address
101 ... A DHCP server is configured and Activated on Onos. We need to change
102 ... the Firewall rules so as to allow packets to flow between RG and OLT/ONU
103 ... We also must add a second DHCP flow rule in onos in the direction from NNI
104 ... by calling 'add subscriber access' on onos. We then deassign the default
105 ... IP address granted to RG upon instantiating the RG pod. Finally we invoke
106 ... 'dhclient' on RG to request a DHCP IP address.
Gilles Depatieea423712019-04-12 16:39:12 -0400107 [Tags] ponsim
Gilles Depatie2e683692019-02-22 16:06:52 -0500108 H Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR}
Gilles Depatie2e683692019-02-22 16:06:52 -0500109 Set Firewall Rules
110 Discover Authorized Users
111 Retrieve Authorized Users Device Id And Port Number
112 Add Subscriber Access
113 Should Now Have Two Dhcp Flows
114 Add Dhcp Server Configuration Data In Onos
115 Activate Dhcp Server In Onos
116 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Query For Default Ip On Rg
117 De Assign Default Ip On Rg
118 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Assign Dhcp Ip Addr To Rg
119 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Should Have Dhcp Assigned Ip
120
Gilles Depatieed99efe2019-03-12 16:12:26 -0400121Unicast flow setup ctag/stag assignment
122 [Documentation] Unicast ctag/stag assignment
123 ... We call Ping from RG to a non-existant IP address an we ignore the
124 ... Destination Host Unreachable message. We then invoke tcpdump on 'pon1'
125 ... network looking for ARP request from RG IP address. These packets should
126 ... be double tagged with different s and c Tags but matching tag configuration
127 ... in sadis entry.
Gilles Depatieea423712019-04-12 16:39:12 -0400128 [Tags] ponsim
Gilles Depatieed99efe2019-03-12 16:12:26 -0400129 U Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR}
Gilles Depatieea423712019-04-12 16:39:12 -0400130 U Configure ${ONU_TYPE} ${ONU_COUNT}
131 Read Sadis Entries From Sadis Json
132 Retrieve Onu Serial Numbers
133 Manage Onu Testing
Gilles Depatieed99efe2019-03-12 16:12:26 -0400134
Gilles Depatiec68b3ad2018-08-21 16:29:03 -0400135*** Keywords ***
136Start Voltha
137 [Documentation] Start Voltha infrastructure to run test(s). This includes starting all
Gilles Depatie84cb1e72018-10-26 12:41:33 -0400138 ... Kubernetes Pods and start collection of logs. PonsimV2 has now been
139 ... containerized and does not need to be managed separately
Gilles Depatie493ea242019-05-21 14:38:08 -0400140 ... Initialize working DIRs as well as Simtype specific variables. We also
141 ... setup Freeradius and restart AAA app in onos in preparation for
142 ... authentication test case
Gilles Depatie0bf31352019-02-04 13:48:41 -0500143 ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} Dir Init ${LOG_DIR}
Gilles Depatiea85fe812019-01-23 15:55:53 -0500144 Set Suite Variable ${ROOT_DIR}
145 Set Suite Variable ${VOLTHA_DIR}
146 Set Suite Variable ${LOG_DIR}
Gilles Depatie0bf31352019-02-04 13:48:41 -0500147 V Set Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR}
Gilles Depatie493ea242019-05-21 14:38:08 -0400148 ${OLT_TYPE} ${ONU_TYPE} ${OLT_HOST_IP} ${ONU_COUNT} Simtype Init ${SIMTYPE}
Gilles Depatieea423712019-04-12 16:39:12 -0400149 Set Suite Variable ${OLT_TYPE}
150 Set Suite Variable ${ONU_TYPE}
151 Set Suite Variable ${OLT_HOST_IP}
152 Set Suite Variable ${ONU_COUNT}
Gilles Depatiec68b3ad2018-08-21 16:29:03 -0400153 Stop Voltha
Gilles Depatie493ea242019-05-21 14:38:08 -0400154 Start All Pods ${SIMTYPE}
Kailash2da848e2018-11-13 10:58:53 -0800155 Sleep 60
Gilles Depatieea423712019-04-12 16:39:12 -0400156 ${pod_status} Run kubectl get pods --all-namespaces
157 Log To Console \n${pod_status}\n
Gilles Depatie0bf31352019-02-04 13:48:41 -0500158 Alter Onos Net Cfg
Gilles Depatiec9a26cf2019-05-10 15:43:12 -0400159 Discover Freeradius Pod Name
160 Discover Freeradius Ip Addr
161 Prepare Current Freeradius Ip
162 Alter Freeradius Ip In Onos AAA Application Configuration
Gilles Depatie493ea242019-05-21 14:38:08 -0400163 Deactivate Aaa App In Onos
164 Sleep 5
165 Activate Aaa App In Onos
Gilles Depatiec9a26cf2019-05-10 15:43:12 -0400166
Gilles Depatiec68b3ad2018-08-21 16:29:03 -0400167Stop Voltha
Gilles Depatie0bf31352019-02-04 13:48:41 -0500168 [Documentation] Stop Voltha infrastructure. This includes clearing all installation milestones
Kailash32ce8e52018-11-13 13:03:36 -0800169 ... files and stopping all Kubernetes pods
Kailash8ae83ac2019-02-11 12:23:52 -0800170 Collect Pod Logs
Gilles Depatie493ea242019-05-21 14:38:08 -0400171 Stop All Pods ${SIMTYPE}
172 Reset Kube Adm ${SIMTYPE}
173
174Ponsim Authentication Steps
175 [Documentation] List of steps required to run manual Authentication from RG
176 Execute Authentication On RG
177 Authentication Should Have Started
178 Authentication Should Have Completed
179 Authentication Should Have Disconnected
180 Authentication Should Have Terminated
181
182BBSim Authentication Verification Step
183 [Documentation] List of steps to verify that all BBSim ONUs have successfully authenticated
Kailashf747d2c2019-05-23 11:00:48 -0700184 Wait Until Keyword Succeeds ${RETRY_TIMEOUT_60} ${RETRY_INTERVAL_2} Should Have All Onus Authenticated
185
186Validate Number of Devices
187 [Documentation] Validate the number of expected onus to be activated
188 Query Devices After Enabling
189 Status Should Be Success After Enable Command
190 Check Olt Fields After Enabling
191 Check Onu Fields After Enabling