diff options
author | pmikus <pmikus@cisco.com> | 2016-08-02 11:52:34 +0100 |
---|---|---|
committer | Miroslav Miklus <mmiklus@cisco.com> | 2016-08-22 18:52:01 +0000 |
commit | b1a54dd8bbf32a025b998ef9d87a4c2d908c28dc (patch) | |
tree | 69e5645f0d056815c2ab0f55013a59d046c43878 /resources/libraries | |
parent | fa38579394ea170ae7b22e122bc05414e6abcbb5 (diff) |
CSIT-324 L2dp - Bridge domain - baseline vhost-user
- Add test cases for vhost-user testing with
NIC(X520)-to-VM(testpmd,virtio)
Change-Id: Id0e508d50288d89b39bc5c321eeab0c908f3e2ba
Signed-off-by: pmikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries')
-rw-r--r-- | resources/libraries/robot/performance.robot | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/resources/libraries/robot/performance.robot b/resources/libraries/robot/performance.robot index 6849e9820a..365d44de1e 100644 --- a/resources/libraries/robot/performance.robot +++ b/resources/libraries/robot/performance.robot @@ -691,6 +691,39 @@ | | Vpp l2bd forwarding setup | ${dut2} | ${dut2_if1} | ${dut2_if2} | | All Vpp Interfaces Ready Wait | ${nodes} +| L2 bridge domains with Vhost-User initialized in a 3-node circular topology +| | [Documentation] +| | ... | Create two Vhost-User interfaces on all defined VPP nodes. Add each +| | ... | Vhost-User interface into L2 bridge domains with learning enabled +| | ... | with physical inteface. +| | ... +| | ... | *Arguments:* +| | ... | - bd_id1 - Bridge domain ID. Type: integer +| | ... | - bd_id2 - Bridge domain ID. Type: integer +| | ... | - sock1 - Sock path for first Vhost-User interface. Type: string +| | ... | - sock2 - Sock path for second Vhost-User interface. Type: string +| | ... +| | ... | *Example:* +| | ... +| | ... | \| L2 bridge domains with Vhost-User initialized in a 3-node \ +| | ... | circular topology \| 1 \| 2 \| /tmp/sock1 \| /tmp/sock2 \| +| | [Arguments] | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2} +| | VPP Vhost interfaces for L2BD forwarding are setup | ${dut1} +| | ... | ${sock1} +| | ... | ${sock2} +| | Interface is added to bridge domain | ${dut1} | ${dut1_if1} | ${bd_id1} +| | Interface is added to bridge domain | ${dut1} | ${vhost_if1} | ${bd_id1} +| | Interface is added to bridge domain | ${dut1} | ${dut1_if2} | ${bd_id2} +| | Interface is added to bridge domain | ${dut1} | ${vhost_if2} | ${bd_id2} +| | VPP Vhost interfaces for L2BD forwarding are setup | ${dut2} +| | ... | ${sock1} +| | ... | ${sock2} +| | Interface is added to bridge domain | ${dut2} | ${dut2_if1} | ${bd_id1} +| | Interface is added to bridge domain | ${dut2} | ${vhost_if1} | ${bd_id1} +| | Interface is added to bridge domain | ${dut2} | ${dut2_if2} | ${bd_id2} +| | Interface is added to bridge domain | ${dut2} | ${vhost_if2} | ${bd_id2} +| | All Vpp Interfaces Ready Wait | ${nodes} + 2-node Performance Suite Setup with DUT's NIC model | | [Documentation] | | ... | Suite preparation phase that setup default startup configuration of |