From 7ac38855defc0cf8140180d3abc1f5afeb467a74 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Thu, 25 Jul 2019 08:22:53 +0000 Subject: VPPD: VXLAN Change-Id: Iac518341e6a0fff4a31ad3692ccc5697690db8be Signed-off-by: Peter Mikus --- .../libraries/robot/l2/l2_bridge_domain.robot | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'resources/libraries/robot/l2/l2_bridge_domain.robot') diff --git a/resources/libraries/robot/l2/l2_bridge_domain.robot b/resources/libraries/robot/l2/l2_bridge_domain.robot index fda211508b..4c3d629b98 100644 --- a/resources/libraries/robot/l2/l2_bridge_domain.robot +++ b/resources/libraries/robot/l2/l2_bridge_domain.robot @@ -32,6 +32,47 @@ | | ... | Vpp Add L2fib Entry | ${dut_node} | ${mac} | ${if2} | ${1} | | Vpp Node Interfaces Ready Wait | ${dut_node} +| Initialize L2 bridge domain on node +| | [Documentation] +| | ... | Setup L2 bridge domain topology by adding two interfaces on DUT into +| | ... | separate bridge domains that are created automatically starting with +| | ... | index 1. Learning is enabled. Interfaces are brought up. +| | ... +| | ... | *Arguments:* +| | ... | - dut - DUT node. Type: string +| | ... | - count - Number of bridge domains interfaces. Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Initialize L2 bridge domain on node \| DUT1 \| 1 \| +| | ... +| | [Arguments] | ${dut} | ${count}=${1} +| | ... +| | :FOR | ${id} | IN RANGE | 1 | ${count} + 1 +| | | ${dut_str}= | Convert To Lowercase | ${dut} +| | | Add interface to bridge domain +| | | ... | ${nodes['${dut}']} | ${${dut_str}_${prev_layer}_${id}_1} | ${id} +| | | Add interface to bridge domain +| | | ... | ${nodes['${dut}']} | ${${dut_str}_${prev_layer}_${id}_2} | ${id} + +| Initialize L2 bridge domain +| | [Documentation] +| | ... | Setup L2 bridge domain topology by adding two interfaces on each DUT +| | ... | into separate bridge domains that are created automatically starting +| | ... | with index 1. Learning is enabled. Interfaces are brought up. +| | ... +| | ... | *Arguments:* +| | ... | - count - Number of bridge domains. Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Initialize L2 bridge domain \| 1 \| +| | ... +| | [Arguments] | ${count}=${1} +| | ... +| | :FOR | ${dut} | IN | @{duts} +| | | Initialize L2 bridge domain on node | ${dut} | count=${count} + | Configure path for 3-node BD-SHG test | | [Documentation] | Compute path for bridge domain split-horizon group testing | | ... | on three given nodes with following interconnections -- cgit 1.2.3-korg