summaryrefslogtreecommitdiffstats
path: root/tests/forwarder.robot
diff options
context:
space:
mode:
authorLuca Muscariello <lumuscar@cisco.com>2022-06-09 21:34:09 +0200
committerLuca Muscariello <muscariello@ieee.org>2022-06-30 10:47:50 +0200
commit6b94663b2455e212009a544ae23bb6a8c55407f8 (patch)
tree0af780ce5eeb1009fd24b8af8af08e8368eda3bd /tests/forwarder.robot
parenta1ac96f497719b897793ac14b287cb8d840651c1 (diff)
refactor(lib, hicn-light, vpp, hiperf): HICN-723
- move infra data structure into the shared lib - new packet cache using double hashing and lookup on prefix suffix - testing updates - authenticated requests using interest manifests Co-authored-by: Mauro Sardara <msardara@cisco.com> Co-authored-by: Jordan Augé <jordan.auge+fdio@cisco.com> Co-authored-by: Michele Papalini <micpapal@cisco.com> Co-authored-by: Olivier Roques <oroques+fdio@cisco.com> Co-authored-by: Enrico Loparco <eloparco@cisco.com> Change-Id: Iaddebfe6aa5279ea8553433b0f519578f6b9ccd9 Signed-off-by: Luca Muscariello <muscariello@ieee.org>
Diffstat (limited to 'tests/forwarder.robot')
-rw-r--r--tests/forwarder.robot45
1 files changed, 0 insertions, 45 deletions
diff --git a/tests/forwarder.robot b/tests/forwarder.robot
deleted file mode 100644
index 60345dbb0..000000000
--- a/tests/forwarder.robot
+++ /dev/null
@@ -1,45 +0,0 @@
-*** Settings ***
-Library Process
-Test Template Run Test
-Test Setup Setup
-Test Teardown Teardown
-Test Timeout 5 seconds
-
-*** Variables ***
-${cmd} bash test_forwarder.sh
-
-*** Test Cases ***
-# Commands
-Add listener test_add_listener
-Remove listener test_remove_listener
-Remove non-existing listener test_remove_non_existing_listener
-Add duplicated listener test_add_duplicated_listener
-List listeners test_list_listeners
-Commands from config file test_commands_from_config
-
-# Ping
-Ping one packet test_ping_one_packet
-Ping two packets test_ping_two_packets
-Ping using CS test_ping_using_cs
-Ping using CS different order test_ping_using_cs_different_order
-Ping timeout test_ping_timeout
-Ping aggregation test_ping_aggregation
-Ping with CS store disabled test_ping_with_cs_store_disabled
-Ping with CS serve disabled test_ping_with_cs_serve_disabled
-Ping with eviction test_ping_with_eviction
-Ping with zero data lifetime test_ping_with_zero_data_lifetime
-
-*** Keywords ***
-Setup
- ${result}= Run Process ${cmd} set_up shell=True
- Log Many stdout: ${result.stdout} stderr: ${result.stderr}
-
-Teardown
- ${result}= Run Process ${cmd} tear_down shell=True
- Log Many stdout: ${result.stdout} stderr: ${result.stderr}
-
-Run Test
- [Arguments] ${test_name}
- ${result}= Run Process ${cmd} ${test_name} shell=True
- Log Many stdout: ${result.stdout} stderr: ${result.stderr}
- Should Be Equal As Integers ${result.rc} 0 \ No newline at end of file