From e8c787b699661f00e8358cc711bb20b8993dc87a Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 6 Jun 2016 11:01:03 +0200 Subject: Add Tests for Honeycomb VxLAN GPE support JIRA: CSIT-131 - add tests for Honeycomb VxLAN GPE support - add keywords needed for tests Change-Id: I460ecd30835bb95140958b20946b1d41ac6d9abc Signed-off-by: Tibor Frank --- .../libraries/robot/honeycomb/vxlan_gpe.robot | 190 +++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 resources/libraries/robot/honeycomb/vxlan_gpe.robot (limited to 'resources/libraries/robot/honeycomb/vxlan_gpe.robot') diff --git a/resources/libraries/robot/honeycomb/vxlan_gpe.robot b/resources/libraries/robot/honeycomb/vxlan_gpe.robot new file mode 100644 index 0000000000..3850eb83fa --- /dev/null +++ b/resources/libraries/robot/honeycomb/vxlan_gpe.robot @@ -0,0 +1,190 @@ +# Copyright (c) 2016 Cisco and/or its affiliates. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at: +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +*** Settings *** +| Library | resources.libraries.python.InterfaceUtil +| ... | WITH NAME | interfaceCLI +| Library | resources.libraries.python.honeycomb.HcAPIKwInterfaces.InterfaceKeywords +| ... | WITH NAME | InterfaceAPI + +*** Variables *** +# Translation table used to convert values received from Honeycomb to values +# received from VAT. +| &{protocols}= +| ... | -=0 +| ... | ipv4=1 +| ... | ipv6=2 +| ... | ethernet=3 +| ... | nsh=4 + +*** Keywords *** +| Honeycomb creates VxLAN GPE interface +| | [Documentation] | Uses Honeycomb API to configure a VxLAN tunnel. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of an interface to be created. Type: string +| | ... | - base_settings - configuration data common for all interfaces.\ +| | ... | Type: dictionary +| | ... | - vxlan_gpe_settings - VxLAN GPE specific parameters. Type: dictionary +| | ... +| | ... | *Example:* +| | ... | \| Honeycomb creates VxLAN GPE interface \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| ${base_params} \ +| | ... | \| ${vxlan_gpe_params} \| +| | ... +| | [Arguments] | ${node} | ${interface} +| | ... | ${base_settings} | ${vxlan_gpe_settings} +| | ... +| | interfaceAPI.Create VxLAN GPE interface +| | ... | ${node} | ${interface} | &{base_settings} | &{vxlan_gpe_settings} + +| Honeycomb removes VxLAN GPE interface +| | [Documentation] | Uses Honeycomb API to remove VxLAN GPE interface from\ +| | ... | node. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of the interface to be removed. Type: string +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Honeycomb removes VxLAN GPE interface \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| +| | ... +| | [Arguments] | ${node} | ${interface} +| | ... +| | interfaceAPI.Delete interface | ${node} | ${interface} + +| VxLAN GPE configuration from Honeycomb should be +| | [Documentation] | Uses Honeycomb API to get operational data about the\ +| | ... | given interface and compares them to the values provided as arguments. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of an interface to be checked. Type: string +| | ... | - base_settings - configuration data common for all interfaces.\ +| | ... | Type: dictionary +| | ... | - vxlan_gpe_settings - VxLAN GPE specific parameters. Type: dictionary +| | ... +| | ... | *Example:* +| | ... | \| VxLAN GPE configuration from Honeycomb should be \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| ${base_params} \ +| | ... | \| ${vxlan_gpe_params} \| +| | ... +| | [Arguments] | ${node} | ${interface} +| | ... | ${base_settings} | ${vxlan_gpe_settings} +| | ... +| | ${api_data}= | interfaceAPI.Get interface oper data | ${node} | ${interface} +| | Should be equal as strings +| | ... | ${api_data['name']} | ${base_settings['name']} +| | Should be equal as strings +| | ... | ${api_data['type']} | v3po:vxlan-gpe-tunnel +| | Run keyword if | '${base_settings['enabled']}' == 'true' +| | ... | Run keywords +| | ... | Should be equal as strings | ${api_data['admin-status']} | up +| | ... | AND +| | ... | Should be equal as strings | ${api_data['oper-status']} | up +| | ... | ELSE +| | ... | Run keywords +| | ... | Should be equal as strings | ${api_data['admin-status']} | down +| | ... | AND +| | ... | Should be equal as strings | ${api_data['oper-status']} | down + +| VxLAN GPE configuration from VAT should be +| | [Documentation] | Uses VAT to get operational data about the given\ +| | ... | interface and compares them to the values provided as arguments. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of an interface to be checked. Type: string +| | ... | - vxlan_gpe_settings - VxLAN GPE specific parameters. Type: dictionary +| | ... +| | ... | *Example:* +| | ... | \| VxLAN GPE configuration from VAT should be \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| ${vxlan_gpe_params} \| +| | ... +| | [Arguments] | ${node} | ${interface} | ${vxlan_gpe_params} +| | ... +| | ${vat_data}= | VxLAN GPE Dump | ${node} | ${interface} +| | Should be equal as strings +| | ... | ${vat_data['local']} | ${vxlan_gpe_params['local']} +| | Should be equal as strings +| | ... | ${vat_data['remote']} | ${vxlan_gpe_params['remote']} +| | Should be equal as strings +| | ... | ${vat_data['vni']} | ${vxlan_gpe_params['vni']} +| | Should be equal as strings +| | ... | ${vat_data['encap_vrf_id']} | ${vxlan_gpe_params['encap-vrf-id']} +| | Should be equal as strings +| | ... | ${vat_data['decap_vrf_id']} | ${vxlan_gpe_params['decap-vrf-id']} +| | Should be equal as strings | ${vat_data['protocol']} +| | ... | ${protocols['${vxlan_gpe_params['next-protocol']}']} + +| Interface indices should be the same from Honeycomb and VAT +| | [Documentation] | Uses VAT and Honeycomb to get operational data about the\ +| | ... | given interface and compares the interface indexes. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of the interface to be checked. Type: string +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Interface indices should be the same from Honeycomb and VAT \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| +| | ... +| | [Arguments] | ${node} | ${interface} +| | ... +| | ${api_data}= | interfaceAPI.Get interface oper data | ${node} | ${interface} +| | ${vat_data}= | VxLAN GPE Dump | ${node} | ${interface} +| | Should be equal as strings +| | ... | ${api_data['if-index']} | ${vat_data['sw_if_index']} + +| VxLAN GPE configuration from VAT should be empty +| | [Documentation] | Uses VAT to get operational data about the given\ +| | ... | interface and expects empty dictionary. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... +| | ... | *Example:* +| | ... | \| VxLAN GPE configuration from VAT should be empty\ +| | ... | \| ${nodes['DUT1']} \| +| | ... +| | [Arguments] | ${node} +| | ... +| | Run Keyword And Expect Error | ValueError: No JSON object could be decoded +| | ... | VxLAN Dump | ${node} + +| Honeycomb fails to create VxLAN GPE interface +| | [Documentation] | Uses Honeycomb API to configure a VxLAN tunnel with wrong\ +| | ... | configuration data. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - interface - name of an interface to be created. Type: string +| | ... | - base_settings - Configuration data common for all interfaces.\ +| | ... | Type: dictionary +| | ... | - vxlan_gpe_settings - VxLAN GPE specific parameters. Type: dictionary +| | ... +| | ... | *Example:* +| | ... | \| Honeycomb fails to create VxLAN GPE interface \ +| | ... | \| ${nodes['DUT1']} \| vxlan_gpe_tunnel0 \| ${wrong_base_params} \ +| | ... | \| ${vxlan_gpe_params} \| +| | ... +| | [Arguments] | ${node} | ${interface} +| | ... | ${base_settings} | ${vxlan_gpe_settings} +| | ... +| | Run keyword and expect error | *HoneycombError*not successful. * code: *00. +| | ... | interfaceAPI.Create VxLAN GPE interface +| | ... | ${node} | ${interface} | &{base_settings} | &{vxlan_gpe_settings} -- cgit 1.2.3-korg