Add Honeycomb bridge domain management tests
[csit.git] / resources / libraries / robot / honeycomb / bridge_domain.robot
diff --git a/resources/libraries/robot/honeycomb/bridge_domain.robot b/resources/libraries/robot/honeycomb/bridge_domain.robot
new file mode 100644 (file)
index 0000000..da3ae0a
--- /dev/null
@@ -0,0 +1,202 @@
+# 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.L2Util
+| Library | resources.libraries.python.HcAPIKwBridgeDomain.BridgeDomainKeywords
+| Library | resources.libraries.python.HcAPIKwInterfaces.InterfaceKeywords
+| ... | WITH NAME | InterfaceAPI
+
+*** Keywords ***
+| Honeycomb creates first L2 bridge domain
+| | [Documentation] | Uses Honeycomb API to create a bridge domain on the \
+| | ... | VPP node. Any other bridge domains will be removed in the process.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - bd_name - name of the created bridge domain. Type: string
+| | ... | - settings - settings for the created bridge domain. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb creates first L2 bridge domain \| ${nodes['DUT1']} \
+| | ... | \| bd-04 \| ${{flood:True, learn:False}} \|
+| | [Arguments] | ${node} | ${bd_name} | ${settings}
+| | Add first BD | ${node} | ${bd_name} | &{settings}
+
+| Honeycomb creates L2 bridge domain
+| | [Documentation] | Uses Honeycomb API to create a bridge domain on the \
+| | ... | VPP node.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - bd_name - name of the created bridge domain. Type: string
+| | ... | - settings - settings for the created bridge domain. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb creates L2 bridge domain \| ${nodes['DUT1']} \
+| | ... | \| bd-04 \| ${{flood:True, learn:False}} \|
+| | [Arguments] | ${node} | ${bd_name} | ${settings}
+| | Add BD | ${node} | ${bd_name} | &{settings}
+
+| Bridge domain configuration from Honeycomb should be
+| | [Documentation] | Uses Honeycomb API to verify bridge domain settings\
+| | ... | against provided values.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - bd_name - name of the bridge domain. Type: string
+| | ... | - settings - expected settings for the bridge domain. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Bridge domain configuration from Honeycomb should be \
+| | ... | \| ${nodes['DUT1']} \| bd-04 \| ${{flood:True,learn:False}} \|
+| | [Arguments] | ${node} | ${bd_name} | ${settings}
+| | ${api_data}= | Get bd cfg data | ${node} | ${bd_name}
+| | :FOR | ${key} | IN | @{settings.keys()}
+| | | Should be equal | ${settings['${key}']} | ${api_data['${key}']}
+
+| Bridge domain configuration from VAT should be
+| | [Documentation] | Uses VAT to verify bridge domain settings\
+| | ... | against provided values.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - bd_name - name of the bridge domain. Type: string
+| | ... | - settings - expected settings for the bridge domain. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Bridge domain configuration from VAT should be \
+| | ... | \| ${nodes['DUT1']} \| bd-04 \| ${{flood:True,learn:False}} \|
+| | [Arguments] | ${node} | ${bd_index} | ${settings}
+| | ${vat_data}= | VPP get bridge domain data | ${node}
+| | ${vat_data}= | Set Variable | ${vat_data[${bd_index}]}
+| | :FOR | ${key} | IN | @{settings.keys()}
+| | | Run keyword if | $key in $vat_data.keys()
+| | | ... | Should be equal | ${settings['${key}']} | ${vat_data['${key}']}
+
+| Honeycomb adds interfaces to bridge domain
+| | [Documentation] | Uses Honeycomb API to assign interfaces to a bridge\
+| | ... | domain.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - interface1, interface2 - names of interfaces to assign to bridge\
+| | ... | domain. Type: string
+| | ... | - bd_name - name of the bridge domain. Type: string
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb adds interfaces to bridge domain \| ${nodes['DUT1']} \
+| | ... | \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \| bd-04 \|
+| | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
+| | ... | ${settings}
+| | interfaceAPI.Add bridge domain to interface
+| | ... | ${node} | ${interface1} | ${bd_name} | &{settings}
+| | interfaceAPI.Add bridge domain to interface
+| | ... | ${node} | ${interface2} | ${bd_name} | &{settings}
+
+| Honeycomb should show interfaces assigned to bridge domain
+| | [Documentation] | Uses Honeycomb API to verify interface assignment to\
+| | ... | bridge domain.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - interface1, interface2 - names of interfaces to assign to bridge\
+| | ... | domain. Type: string
+| | ... | - bd_name - name of the bridge domain. Type: string
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb should show interfaces assigned to bridge domain \
+| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \
+| | ... | \| bd-04 \|
+| | [Arguments] | ${node} | ${interface1} | ${interface2} | ${bd_name}
+| | ... | ${settings}
+| | ${if1_data}= | interfaceAPI.Get interface oper data
+| | ... | ${node} | ${interface1}
+| | ${if2_data}= | interfaceAPI.Get interface oper data
+| | ... | ${node} | ${interface2}
+| | Should be equal | ${if1_data['v3po:l2']['bridge-domain']}
+| | ... | ${if1_data['v3po:l2']['bridge-domain']} | ${bd_name}
+| | :FOR | ${key} | IN | @{settings.keys()}
+| | | Should be equal | ${if1_data['v3po:l2']['${key}']}
+| | | ... | ${if2_data['v3po:l2']['${key}']} | ${settings['${key}']}
+
+| VAT should show interfaces assigned to bridge domain
+| | [Documentation] | Uses VAT to verify interface assignment to\
+| | ... | bridge domain.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ... | - interface1, interface2 - names of interfaces to assign to bridge\
+| | ... | domain. Type: string
+| | ... | - index - index of bridge domains on VPP node. Starts from 0,\
+| | ... | new BDs reuse numbers after a bridge domain is removed. Type: int
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| VAT should show interfaces assigned to bridge domain \
+| | ... | \| ${nodes['DUT1']} \| GigabitEthernet0/8/0 \| GigabitEthernet0/9/0 \
+| | ... | \| ${4} \|
+| | [Arguments] | ${node} | ${interface1} | ${interface2} | ${index}
+| | ${if1_index}= | Get interface sw index | ${node} | ${interface1}
+| | ${if2_index}= | Get interface sw index | ${node} | ${interface2}
+| | ${if_indices}= | Create list | ${if1_index} | ${if2_index}
+| | ${bd_data}= | VPP get bridge domain data | ${node}
+| | ${bd_data}= | Set Variable | ${bd_data[${index}]}
+| | :FOR | ${sw_if_index} | IN | ${bd_data['sw_if']}
+| | | Should contain | ${if_indices} | ${sw_if_index}
+
+| Honeycomb removes all bridge domains
+| | [Documentation] | Uses Honeycomb API to remove all bridge domains from the \
+| | ... | VPP node.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb removes all bridge domains \| ${nodes['DUT1']} \|
+| | [Arguments] | ${node}
+| | Remove all bds | ${node}
+
+| Honeycomb should show no bridge domains
+| | [Documentation] | Uses Honeycomb API to verify the removal of all\
+| | ... | bridge domains.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| Honeycomb should show no bridge domains \| ${nodes['DUT1']} \|
+| | [Arguments] | ${node}
+| | ${bd_data} | Get all BDs cfg data | ${node}
+| | Should be empty | ${bd_data}
+
+| VAT should show no bridge domains
+| | [Documentation] | Uses VAT to verify the removal of all bridge domains.
+| | ...
+| | ... | *Arguments:*
+| | ... | - node - information about a DUT node. Type: dictionary
+| | ...
+| | ... | *Example:*
+| | ...
+| | ... | \| VAT should show no bridge domains \| ${nodes['DUT1']} \|
+| | [Arguments] | ${node}
+| | Run Keyword And Expect Error | ValueError: No JSON object could be decoded
+| | ... | VPP get bridge domain data | ${node}