FIX: Pylint reduce
[csit.git] / resources / libraries / robot / overlay / vxlan.robot
1 # Copyright (c) 2021 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  | resources.libraries.python.InterfaceUtil
16 |
17 | Documentation | VXLAN keywords.
18
19 *** Keywords ***
20 | Get VXLAN dump
21 | | [Documentation] | Get VXLAN dump.
22 | |
23 | | ... | *Arguments:*
24 | | ... | - node - DUT node data. Type: dictionary
25 | | ... | - interface - Interface on the VPP node (Optional). Type: string
26 | |
27 | | [Arguments] | ${dut_node} | ${interface}=${None}
28 | |
29 | | [Return] | ${vxlan_dump}
30 | |
31 | | ${vxlan_dump}= | VXLAN Dump | ${dut_node} | ${interface}