aboutsummaryrefslogtreecommitdiffstats
path: root/sample_tests
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-06-28 09:20:56 +0200
committerTibor Frank <tifrank@cisco.com>2019-06-28 09:20:56 +0200
commit25e203b678e1cfd3691a450050115c66813165c3 (patch)
tree41ef6180f3b2caee1715417b174d2d77b05c1256 /sample_tests
parent10e0393fde6d919cf0e5848bc5e506d981642ef8 (diff)
PAPI-to-VAT: MACSwap
- not used, not needed, deleted Change-Id: I9b4c78b7ba3fbac3805d06a65f2799ed212770b3 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'sample_tests')
-rw-r--r--sample_tests/sample_suite.robot64
1 files changed, 0 insertions, 64 deletions
diff --git a/sample_tests/sample_suite.robot b/sample_tests/sample_suite.robot
deleted file mode 100644
index 97a8585988..0000000000
--- a/sample_tests/sample_suite.robot
+++ /dev/null
@@ -1,64 +0,0 @@
-# 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.NodePath
-| Library | resources.libraries.python.Trace
-| Library | resources.libraries.python.TrafficScriptExecutor
-| Library | resources.libraries.python.MacSwap
-| Library | resources.libraries.python.SetupFramework
-| Resource | resources/libraries/robot/shared/default.robot
-| Resource | resources/libraries/robot/shared/interfaces.robot
-| Resource | resources/libraries/robot/shared/counters.robot
-| Suite Setup | Run Keywords | Setup Framework | ${nodes}
-| ... | AND | Setup All DUTs | ${nodes}
-| ... | AND | Configure all TGs for traffic script
-| ... | AND | Update All Interface Data On All Nodes | ${nodes}
-| ... | AND | Setup nodes for macswap testing
-| Test Setup | Clear interface counters on all vpp nodes in topology | ${nodes}
-| Test Teardown | Show Packet Trace on All DUTs | ${nodes}
-| Documentation | *MacSwap test suite.*
-| ...
-| ... | Test suite uses 3-node topology TG - DUT1 - DUT2 - TG with single link
-| ... | between nodes. From this topology only TG and DUT1 nodes are used.
-| ... | Test packet is sent from single interface on TG and test wait for
-| ... | response on the same TG interface.
-
-*** Keywords ***
-| Setup nodes for macswap testing
-| | Append Nodes | ${nodes['TG']} | ${nodes['DUT1']}
-| | Compute Path
-| | ${tg_port} | ${tg_node}= | First Interface
-| | ${dut_port} | ${dut_node}= | Last Interface
-| | Set Suite Variable | ${tg_port}
-| | Set Suite Variable | ${tg_node}
-| | Set Suite Variable | ${dut_port}
-| | Set Suite Variable | ${dut_node}
-| | Set Interface State | ${tg_node} | ${tg_port} | up
-| | Set Interface State | ${dut_node} | ${dut_port} | up
-| | All Vpp Interfaces Ready Wait | ${nodes}
-
-| Send and verify macswap on node "${tg_node}" interface "${tg_port}"
-| | ${src_ip}= | Set Variable | 1.1.1.1
-| | ${dst_ip}= | Set Variable | 2.2.2.2
-| | ${src_mac}= | Set Variable | 01:00:00:00:00:01
-| | ${dst_mac}= | Set Variable | 01:00:00:00:00:02
-| | ${args}= | Traffic Script Gen Arg | ${tg_port} | ${tg_port} | ${src_mac}
-| | | ... | ${dst_mac} | ${src_ip} | ${dst_ip}
-| | Run Traffic Script On Node | macswap_check.py | ${tg_node} | ${args}
-
-*** Test Cases ***
-| VPP macswap plugin swaps MAC addresses
-| | [Tags] | 3_NODE_SINGLE_LINK_TOPO | VM_ENV
-| | Enable Disable macswap vat exec | ${dut_node} | ${dut_port}
-| | Send and verify macswap on node "${tg_node}" interface "${tg_port}"