blob: 9f7c802eafc486c60cb490c2d602f6570bbf1ceb [file] [log] [blame]
Kailash6f5acb62019-08-28 14:38:45 -07001# 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# onos common functions
16
17*** Settings ***
18Documentation Library for various utilities
19Library SSHLibrary
20Library HttpLibrary.HTTP
21Library String
22Library DateTime
23Library Process
24Library Collections
25Library RequestsLibrary
26Library OperatingSystem
27
28*** Keywords ***
Kailash30c418f2019-09-11 13:50:10 -070029Execute ONOS CLI Command
Kailash6f5acb62019-08-28 14:38:45 -070030 [Arguments] ${host} ${port} ${cmd}
31 [Documentation] Establishes an ssh connection to the onos contoller and executes a command
32 ${conn_id}= SSHLibrary.Open Connection ${host} port=${port} prompt=onos> timeout=300s
33 SSHLibrary.Login karaf karaf
34 ${output}= SSHLibrary.Execute Command ${cmd}
Kailashfa025ea2019-09-11 11:12:54 -070035 Log ${output}
Kailash6f5acb62019-08-28 14:38:45 -070036 SSHLibrary.Close Connection
37 [Return] ${output}
38
39Validate OLT Device in ONOS
40 [Documentation] Checks if olt has been connected to ONOS
41 [Arguments] ${serial_number}
42 ${resp}= Get Request ONOS onos/v1/devices
43 ${jsondata}= To Json ${resp.content}
44 Should Not Be Empty ${jsondata['devices']}
45 ${length}= Get Length ${jsondata['devices']}
46 @{serial_numbers}= Create List
47 : FOR ${INDEX} IN RANGE 0 ${length}
48 \ ${value}= Get From List ${jsondata['devices']} ${INDEX}
Kailash6f5acb62019-08-28 14:38:45 -070049 \ ${of_id}= Get From Dictionary ${value} id
Kailash30c418f2019-09-11 13:50:10 -070050 \ ${sn}= Get From Dictionary ${value} serial
51 \ Run Keyword If '${sn}' == '${serial_number}' Exit For Loop
Kailash6f5acb62019-08-28 14:38:45 -070052 Should Be Equal As Strings ${sn} ${serial_number}
Kailash57210eb2019-08-30 13:27:19 -070053 [Return] ${of_id}
Kailash6f5acb62019-08-28 14:38:45 -070054
Suchitra Vemuri102912a2019-09-24 00:35:42 -070055Get ONU Port in ONOS
56 [Documentation] Retrieves ONU port for the ONU in ONOS
57 [Arguments] ${onu_serial_number} ${olt_of_id}
58 ${resp}= Get Request ONOS onos/v1/devices/${olt_of_id}/ports
59 ${jsondata}= To Json ${resp.content}
60 Should Not Be Empty ${jsondata['ports']}
61 ${length}= Get Length ${jsondata['ports']}
62 @{ports}= Create List
63 : FOR ${INDEX} IN RANGE 0 ${length}
64 \ ${value}= Get From List ${jsondata['ports']} ${INDEX}
65 \ ${annotations}= Get From Dictionary ${value} annotations
66 \ ${onu_port}= Get From Dictionary ${value} port
67 \ ${portName}= Get From Dictionary ${annotations} portName
68 \ Run Keyword If '${portName}' == '${onu_serial_number}' Exit For Loop
69 Should Be Equal As Strings ${portName} ${onu_serial_number}
70 [Return] ${onu_port}
71
Kailash6f5acb62019-08-28 14:38:45 -070072Verify Eapol Flows Added
Andy Bavierb0c06232019-08-29 12:58:53 -070073 [Arguments] ${ip} ${port} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -070074 [Documentation] Matches for number of eapol flows based on number of onus
Kailash30c418f2019-09-11 13:50:10 -070075 ${eapol_flows_added}= Execute ONOS CLI Command ${ip} ${port} flows -s -f ADDED | grep eapol | grep IN_PORT | wc -l
Andy Bavierb0c06232019-08-29 12:58:53 -070076 Should Contain ${eapol_flows_added} ${expected_flows}
Kailash6f5acb62019-08-28 14:38:45 -070077
78Verify Number of AAA-Users
Kailash2b963f02019-08-28 22:46:33 -070079 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -070080 [Documentation] Matches for number of aaa-users authorized based on number of onus
Kailash57210eb2019-08-30 13:27:19 -070081 ##TODO: filter by onu serial number instead of count
Kailash30c418f2019-09-11 13:50:10 -070082 ${aaa_users}= Execute ONOS CLI Command ${ip} ${port} aaa-users | grep AUTHORIZED | wc -l
Kailash6f5acb62019-08-28 14:38:45 -070083 Should Contain ${aaa_users} ${expected_onus}
84
85Validate DHCP Allocations
Kailash2b963f02019-08-28 22:46:33 -070086 [Arguments] ${ip} ${port} ${expected_onus}
Kailash6f5acb62019-08-28 14:38:45 -070087 [Documentation] Matches for number of dhcpacks based on number of onus
Kailash57210eb2019-08-30 13:27:19 -070088 ##TODO: filter by onu serial number instead of count
Kailash30c418f2019-09-11 13:50:10 -070089 ${allocations}= Execute ONOS CLI Command ${ip} ${port} dhcpl2relay-allocations | grep DHCPACK | wc -l
Suchitra Vemuri58766c92019-09-10 11:56:47 -070090 Should Contain ${allocations} ${expected_onus}