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 |
| 21 | Library volthaMngr.VolthaMngr |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 22 | Library preprovisioning.Preprovisioning |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 23 | Test Setup Start Voltha |
| 24 | Test Teardown Stop Voltha |
| 25 | |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 26 | *** Variables *** |
| 27 | ${LOG_DIR} /tmp/voltha_test_results |
| 28 | ${ROOT_DIR} ${EMPTY} |
| 29 | ${VOLTHA_DIR} ${EMPTY} |
| 30 | ${PONSIM_PID} ${EMPTY} |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 31 | ${ONOS_SSH_PORT} 8101 |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 32 | ${OLT_IP_ADDR} olt.voltha.svc |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 33 | ${OLT_PORT_ID} 50060 |
| 34 | |
| 35 | |
| 36 | *** Test Cases *** |
| 37 | Provisioning |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 38 | [Documentation] VOLTHA Pre-provisioning |
| 39 | ... This test preprovisions a ponsim-OLT with given IP address and TCP port |
| 40 | ... and then enables both it and a number of ponsim-ONUs with predefined IP/port |
| 41 | ... information. It then verifies that all the physical and logical devices are ACTIVE |
| 42 | ... and REACHEABLE |
| 43 | PSet Log Dirs ${LOG_DIR} |
| 44 | Configure ${OLT_IP_ADDR} ${OLT_PORT_ID} |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 45 | Preprovision Olt |
Kailash | 2da848e | 2018-11-13 10:58:53 -0800 | [diff] [blame] | 46 | Wait Until Keyword Succeeds 60s 2s Query Devices Before Enable |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 47 | Enable |
Kailash | 2da848e | 2018-11-13 10:58:53 -0800 | [diff] [blame] | 48 | Wait Until Keyword Succeeds 60s 2s Query Devices After Enable |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 49 | |
| 50 | |
| 51 | *** Keywords *** |
| 52 | Start Voltha |
| 53 | [Documentation] Start Voltha infrastructure to run test(s). This includes starting all |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 54 | ... Kubernetes Pods and start collection of logs. PonsimV2 has now been |
| 55 | ... containerized and does not need to be managed separately |
| 56 | ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} Dir Init ${LOG_DIR} |
| 57 | VSet Log Dirs ${ROOT_DIR} ${VOLTHA_DIR} ${LOG_DIR} |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 58 | Stop Voltha |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 59 | Start All Pods |
Kailash | 2da848e | 2018-11-13 10:58:53 -0800 | [diff] [blame] | 60 | Sleep 60 |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 61 | Collect Pod Logs |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 62 | ${pod_status} Run kubectl get pods --all-namespaces |
| 63 | Log To Console \n ${pod_status} |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 64 | Alter Onos NetCfg |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 65 | |
Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 66 | Stop Voltha |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 67 | [Documentation] Stop Voltha infrastucture. This includes clearing all installation milestones |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 68 | ... files and stopping all Kubernetes pods |
Gilles Depatie | 84cb1e7 | 2018-10-26 12:41:33 -0400 | [diff] [blame] | 69 | Stop All Pods |
Kailash | 32ce8e5 | 2018-11-13 13:03:36 -0800 | [diff] [blame] | 70 | Reset Kube Adm |