diff options
author | selias <samelias@cisco.com> | 2016-11-25 10:50:29 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2016-12-01 07:26:51 +0000 |
commit | 4f70ebf481d496f91d2b1ec27361c9898b19c451 (patch) | |
tree | 4d24f1218c2123c9cabeeb35622c7434a3f7ee26 /resources/libraries/robot | |
parent | d7e03f0eeeb599bd40b123123753ac41800bd3f5 (diff) |
CSIT-481: HC Test: Port mirroring (SPAN)
- add port mirroring test suite
- add relevant keywords
Change-Id: I4ff398dd2ab4323e2a53af2812bf07cbb7043252
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries/robot')
-rw-r--r-- | resources/libraries/robot/honeycomb/port_mirroring.robot | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/resources/libraries/robot/honeycomb/port_mirroring.robot b/resources/libraries/robot/honeycomb/port_mirroring.robot new file mode 100644 index 0000000000..854da311e9 --- /dev/null +++ b/resources/libraries/robot/honeycomb/port_mirroring.robot @@ -0,0 +1,128 @@ +# 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.honeycomb.HcAPIKwInterfaces.InterfaceKeywords +| ... | WITH NAME | InterfaceAPI +| Library | resources.libraries.python.telemetry.SPAN + +*** Keywords *** +| Honeycomb Configures SPAN on interface +| | [Documentation] | Uses Honeycomb API to configure SPAN on the specified\ +| | ... | interface, mirroring one or more interfaces. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - dst_interface - Mirroring destination interface. Type: string +| | ... | - src_interfaces - Mirroring source interfaces. Type: Argument list -\ +| | ... | any number of strings +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Honeycomb Configures SPAN on interface \| ${nodes['DUT1']} \ +| | ... | \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \| +| | ... +| | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces} +| | InterfaceAPI.Configure interface SPAN +| | ... | ${node} | ${dst_interface} | @{src_interfaces} + +| Interface SPAN configuration from Honeycomb should be +| | [Documentation] | Retrieves interface operational data and verifies that\ +| | ... | SPAN mirroring is configured with the provided interfaces. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - dst_interface - Mirroring destination interface. Type: string +| | ... | - src_interfaces - Mirroring source interfaces. Type: Argument list -\ +| | ... | any number of strings +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Interface SPAN configuration from Honeycomb should be \ +| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \| +| | ... +| | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces} +| | ${data}= | InterfaceAPI.Get interface oper data | ${node} | ${dst_interface} +| | ${data}= | Set Variable +| | ... | ${data['span']['mirrored-interfaces']['mirrored-interface']} +| | Sort list | ${data} +| | Sort list | ${src_interfaces} +| | Lists should be equal | ${data} | ${src_interfaces} + +| Interface SPAN configuration from VAT should be +| | [Documentation] | Retrieves SPAN configuration from VAT dump and verifies\ +| | ... | that SPAN mirroring is configured with the provided interfaces. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - dst_interface - Mirroring destination interface. Type: string +| | ... | - src_interfaces - Mirroring source interfaces. Type: Argument list -\ +| | ... | any number of strings +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Interface SPAN configuration from VAT should be \ +| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \| +| | ... +| | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces} +| | ${data}= | VPP get SPAN configuration by interface +| | ... | ${node} | ${dst_interface} | name +| | Sort list | ${data} +| | Sort list | ${src_interfaces} +| | Lists should be equal | ${data} | ${src_interfaces} + +| Honeycomb removes interface SPAN configuration +| | [Documentation] | Uses Honeycomb API to remove SPAN confirugation\ +| | ... | from the specified interface. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - dst_interface - Mirroring destination interface. Type: string +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Honeycomb removes interface SPAN configuration \ +| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| +| | ... +| | [Arguments] | ${node} | ${dst_interface} +| | InterfaceAPI.Configure interface SPAN | ${node} | ${dst_interface} + +| Interface SPAN configuration from Honeycomb should not exist +| | [Documentation] | Retrieves interface operational data and verifies that\ +| | ... | SPAN mirroring is not configured. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... | - dst_interface - Mirroring destination interface. Type: string +| | ... +| | ... | *Example:* +| | ... +| | ... | \| +| | [Arguments] | ${node} | ${dst_interface} +| | ${data}= | InterfaceAPI.Get interface oper data | ${node} | ${dst_interface} +| | Run keyword and expect error | *KeyError* | Set Variable +| | ... | ${data['span']['mirrored-interfaces']['mirrored-interface']} + +| SPAN configuration from VAT should not exist +| | [Documentation] | Attmepts to retrieve SPAN configuration from VAT dump,\ +| | ... | and expects to fail with no data retrieved. +| | ... +| | ... | *Arguments:* +| | ... | - node - information about a DUT node. Type: dictionary +| | ... +| | ... | *Example:* +| | ... +| | ... | \| SPAN configuration from VAT should not exist \| ${nodes['DUT1']} \| +| | [Arguments] | ${node} +| | Run keyword and expect error | ValueError: No JSON object could be decoded +| | ... | VPP get SPAN configuration by interface | ${node} | local0 |