CSIT-576 HC Test: Improve SPAN test coverage
[csit.git] / resources / libraries / robot / honeycomb / port_mirroring.robot
index 854da31..532b515 100644 (file)
 | Library | resources.libraries.python.honeycomb.HcAPIKwInterfaces.InterfaceKeywords
 | ...     | WITH NAME | InterfaceAPI
 | Library | resources.libraries.python.telemetry.SPAN
 | Library | resources.libraries.python.honeycomb.HcAPIKwInterfaces.InterfaceKeywords
 | ...     | WITH NAME | InterfaceAPI
 | Library | resources.libraries.python.telemetry.SPAN
+| Library  | resources.libraries.python.InterfaceUtil
+| Library  | resources.libraries.python.IPv4Util
+| Library  | resources.libraries.python.IPv4Setup
+| Library  | resources.libraries.python.Trace
 
 *** Keywords ***
 | Honeycomb Configures SPAN on interface
 
 *** Keywords ***
 | Honeycomb Configures SPAN on interface
 | | ... | *Arguments:*
 | | ... | - node - information about a DUT node. Type: dictionary
 | | ... | - dst_interface - Mirroring destination interface. Type: string
 | | ... | *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
+| | ... | - src_interfaces - Mirroring source interfaces. Type: list \
+| | ... | of dictionaries
 | | ...
 | | ... | *Example:*
 | | ...
 | | ... | \| Honeycomb Configures SPAN on interface \| ${nodes['DUT1']} \
 | | ...
 | | ... | *Example:*
 | | ...
 | | ... | \| Honeycomb Configures SPAN on interface \| ${nodes['DUT1']} \
-| | ... | \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \|
+| | ... | \| GigabitEthernet0/8/0 \| [{'iface-ref': 'GigabitEthernet0/10/0', \
+| | ... | \| 'state': 'transmit'}, \
+| | ... | \| {'iface-ref': 'local0', 'state': 'both'}] \|
 | | ...
 | | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces}
 | | InterfaceAPI.Configure interface SPAN
 | | ...
 | | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces}
 | | InterfaceAPI.Configure interface SPAN
-| | ... | ${node} | ${dst_interface} | @{src_interfaces}
+| | ... | ${node} | ${dst_interface} | ${src_interfaces}
 
 
-| Interface SPAN configuration from Honeycomb should be
+| Interface SPAN Operational Data From Honeycomb Should Be
 | | [Documentation] | Retrieves interface operational data and verifies that\
 | | ... | SPAN mirroring is configured with the provided interfaces.
 | | ...
 | | [Documentation] | Retrieves interface operational data and verifies that\
 | | ... | SPAN mirroring is configured with the provided interfaces.
 | | ...
 | | ...
 | | ... | *Example:*
 | | ...
 | | ...
 | | ... | *Example:*
 | | ...
-| | ... | \| Interface SPAN configuration from Honeycomb should be \
+| | ... | \| Interface SPAN Operational Data 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
 | | ... | \| ${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']}
+| | ... | ${data['v3po:span']['mirrored-interfaces']['mirrored-interface']}
 | | Sort list | ${data}
 | | Sort list | ${src_interfaces}
 | | Lists should be equal | ${data} | ${src_interfaces}
 
 | | Sort list | ${data}
 | | Sort list | ${src_interfaces}
 | | Lists should be equal | ${data} | ${src_interfaces}
 
-| Interface SPAN configuration from VAT should be
+| Interface SPAN Operational Data From Honeycomb Should Be empty
+| | [Documentation] | Checks whether SPAN configuration from Honeycomb is empty.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - Information about a DUT node. Type: dictionary
+| | ... | - dst_interface - Mirroring destination interface. Type: string
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Interface SPAN Operational Data From Honeycomb Should Be empty \
+| | ... | \| ${node} \| GigabitEthernetO/8/0 \|
+| | ...
+| | [Arguments] | ${node} | ${dst_interface}
+| | ${data}= | Get interface oper data | ${node} | ${dst_interface}
+| | Variable should not exist
+| | ... | ${data['v3po:span']['mirrored-interfaces']['mirrored-interface']}
+
+| Interface SPAN Operational Data From VAT Should Be
 | | [Documentation] | Retrieves SPAN configuration from VAT dump and verifies\
 | | ... | that SPAN mirroring is configured with the provided interfaces.
 | | ...
 | | [Documentation] | Retrieves SPAN configuration from VAT dump and verifies\
 | | ... | that SPAN mirroring is configured with the provided interfaces.
 | | ...
@@ -71,7 +94,7 @@
 | | ...
 | | ... | *Example:*
 | | ...
 | | ...
 | | ... | *Example:*
 | | ...
-| | ... | \| Interface SPAN configuration from VAT should be \
+| | ... | \| Interface SPAN Operational Data From VAT Should Be \
 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \|
 | | ...
 | | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces}
 | | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \|
 | | ...
 | | [Arguments] | ${node} | ${dst_interface} | @{src_interfaces}
 | | Lists should be equal | ${data} | ${src_interfaces}
 
 | Honeycomb removes interface SPAN configuration
 | | Lists should be equal | ${data} | ${src_interfaces}
 
 | Honeycomb removes interface SPAN configuration
-| | [Documentation] | Uses Honeycomb API to remove SPAN confirugation\
+| | [Documentation] | Uses Honeycomb API to remove SPAN configuration\
 | | ... | from the specified interface.
 | | ...
 | | ... | *Arguments:*
 | | ... | from the specified interface.
 | | ...
 | | ... | *Arguments:*
 | | [Arguments] | ${node} | ${dst_interface}
 | | InterfaceAPI.Configure interface SPAN | ${node} | ${dst_interface}
 
 | | [Arguments] | ${node} | ${dst_interface}
 | | InterfaceAPI.Configure interface SPAN | ${node} | ${dst_interface}
 
-| Interface SPAN configuration from Honeycomb should not exist
+| Interface SPAN Operational Data from Honeycomb should not exist
 | | [Documentation] | Retrieves interface operational data and verifies that\
 | | ... | SPAN mirroring is not configured.
 | | ...
 | | [Documentation] | Retrieves interface operational data and verifies that\
 | | ... | SPAN mirroring is not configured.
 | | ...
 | | Run keyword and expect error | *KeyError* | Set Variable
 | | ... | ${data['span']['mirrored-interfaces']['mirrored-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,\
+| SPAN Operational Data from VAT should not exist
+| | [Documentation] | Attmepts to retrieve SPAN Operational Data from VAT dump,\
 | | ... | and expects to fail with no data retrieved.
 | | ...
 | | ... | *Arguments:*
 | | ... | and expects to fail with no data retrieved.
 | | ...
 | | ... | *Arguments:*
 | | ...
 | | ... | *Example:*
 | | ...
 | | ...
 | | ... | *Example:*
 | | ...
-| | ... | \| SPAN configuration from VAT should not exist \| ${nodes['DUT1']} \|
+| | ... | \| SPAN Operational Data 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
 | | [Arguments] | ${node}
 | | Run keyword and expect error | ValueError: No JSON object could be decoded
 | | ... | VPP get SPAN configuration by interface | ${node} | local0
+
+| Honeycomb Configures SPAN on sub-interface
+| | [Documentation] | Uses Honeycomb API to configure SPAN on the specified\
+| | ... | sub-interface, mirroring one or more interfaces.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - dst_interface - Mirroring destination super-interface. Type: string
+| | ... | - index - Index of mirroring destination sub-interface. Type: integer
+| | ... | - src_interfaces - Mirroring source interfaces. Type: list \
+| | ... | of dictionaries
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb Configures SPAN on sub-interface \| ${nodes['DUT1']} \
+| | ... | \| GigabitEthernet0/8/0 \| ${1} \
+| | ... | \|[{'iface-ref': 'GigabitEthernet0/10/0', 'state': 'transmit'}, \
+| | ... | \| {'iface-ref': 'local0', 'state': 'both'}] \|
+| | ...
+| | [Arguments] | ${node} | ${dst_interface} | ${index} | @{src_interfaces}
+| | InterfaceAPI.Configure sub interface SPAN
+| | ... | ${node} | ${dst_interface} | ${index} | ${src_interfaces}
+
+| Sub-Interface SPAN Operational Data from Honeycomb should be
+| | [Documentation] | Retrieves sub-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 super-interface. Type: string
+| | ... | - index - Index of mirroring destination sub-interface. Type: integer
+| | ... | - src_interfaces - Mirroring source interfaces. Type: Argument list -\
+| | ... | any number of strings
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Sub-Interface SPAN Operational Data from Honeycomb should be \
+| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| ${1} \
+| | ... | \| GigabitEthernet0/9/0 \|
+| | ...
+| | [Arguments] | ${node} | ${dst_interface} | ${index} | @{src_interfaces}
+| | ${data}= | InterfaceAPI.Get sub interface oper data
+| | ... | ${node} | ${dst_interface} | ${index}
+| | ${data}= | Set Variable
+| | ... | ${data['subinterface-span:span-state']['mirrored-interfaces']['mirrored-interface']}
+| | Sort list | ${data}
+| | Sort list | ${src_interfaces}
+| | Lists should be equal | ${data} | ${src_interfaces}
+
+| Sub-Interface SPAN Operational Data from Honeycomb should be empty
+| | [Documentation] | Checks whether SPAN Operational Data from Honeycomb is empty.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - Information about a DUT node. Type: dictionary
+| | ... | - dst_interface - Mirroring destination super-interface. Type: string
+| | ... | - index - Index of mirroring destination sub-interface. Type: integer
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Interface SPAN Operational Data from Honeycomb should be empty \
+| | ... | \| ${node} \| GigabitEthernetO/8/0 \| ${1} \|
+| | ...
+| | [Arguments] | ${node} | ${dst_interface} | ${index}
+| | ${data}= | Get sub interface oper data
+| | ... | ${node} | ${dst_interface} | ${index}
+| | Variable should not exist
+| | ... | ${data['subinterface-span:span-state']['mirrored-interfaces']['mirrored-interface']}
+
+| Honeycomb removes sub-interface SPAN configuration
+| | [Documentation] | Uses Honeycomb API to remove SPAN Operational Data\
+| | ... | from the specified sub-interface.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - dst_interface - Mirroring destination super-interface. Type: string
+| | ... | - index - Index of mirroring destination sub-interface. Type: integer
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb removes sub-interface SPAN configuration \
+| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| ${1} \|
+| | ...
+| | [Arguments] | ${node} | ${dst_interface} | ${index}
+| | InterfaceAPI.Configure sub interface SPAN
+| | ... | ${node} | ${dst_interface} | ${index}
+
+| Sub-Interface SPAN Operational Data from Honeycomb should not exist
+| | [Documentation] | Retrieves sub-interface operational data and verifies
+| | ... | that SPAN mirroring is not configured.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - dst_interface - Mirroring destination super-interface. Type: string
+| | ... | - index - Index of mirroring destination sub-interface. Type: integer
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Sub-Interface SPAN Operational Data from Honeycomb should not exist \
+| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| ${1} \|
+| | ....
+| | [Arguments] | ${node} | ${dst_interface} | ${index}
+| | ${data}= | InterfaceAPI.Get sub interface oper data
+| | ... | ${node} | ${dst_interface} | ${index}
+| | Run keyword and expect error | *KeyError* | Set Variable
+| | ... | ${data['subinterface-span:span-state']['mirrored-interfaces']['mirrored-interface']}
\ No newline at end of file