Remove obsolete L2 KW
[csit.git] / resources / libraries / robot / overlay / vxlan.robot
1 # Copyright (c) 2019 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Library  | Collections
16 | Library  | resources.libraries.python.InterfaceUtil
17 | Library  | resources.libraries.python.IPUtil
18 | Library  | resources.libraries.python.IPv6Util
19 | Library  | resources.libraries.python.L2Util
20 | Library  | resources.libraries.python.NodePath
21 | ...
22 | Resource | resources/libraries/robot/l2/l2_bridge_domain.robot
23 | Resource | resources/libraries/robot/l2/l2_xconnect.robot
24 | Resource | resources/libraries/robot/shared/default.robot
25 | Resource | resources/libraries/robot/shared/interfaces.robot
26 | ...
27 | Documentation | VXLAN keywords
28
29 *** Keywords ***
30 | Get VXLAN dump
31 | | [Documentation] | Get VXLAN dump.
32 | | ...
33 | | ... | *Arguments:*
34 | | ... | - node - DUT node data. Type: dictionary
35 | | ... | - interface - Interface on the VPP node (Optional). Type: string
36 | | ...
37 | | [Arguments] | ${dut_node} | ${interface}=${None}
38 | | ...
39 | | [Return] | ${vxlan_dump}
40 | | ...
41 | | ${vxlan_dump}= | VXLAN Dump | ${dut_node} | ${interface}