From c85a2d27d7d08dde04c6d37b239f4ae17a2fee87 Mon Sep 17 00:00:00 2001 From: Matej Klotton Date: Thu, 9 Jun 2016 20:02:17 +0200 Subject: Fix VPP sends ARP requests for unknown destinations TC destination MAC address -JIRA: CSIT-142 The ICMP packet was send to wrong destination. Don't use resolve-attemts in add route. Fix testcase. Add testcase Sends ARP to GW with EXPECTED_FAILING. Variable naming fix. Documentation update. Change-Id: I71a7a274c154c525b176c87884d089155d7ae61b Signed-off-by: Matej Klotton --- tests/suites/ipv4/ipv4_arp_untagged.robot | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'tests/suites') diff --git a/tests/suites/ipv4/ipv4_arp_untagged.robot b/tests/suites/ipv4/ipv4_arp_untagged.robot index 3af680e815..9ad3b1b75a 100644 --- a/tests/suites/ipv4/ipv4_arp_untagged.robot +++ b/tests/suites/ipv4/ipv4_arp_untagged.robot @@ -38,6 +38,24 @@ *** Test Cases *** | VPP sends ARP requests for unknown destinations +| | [Documentation] | Setup IP addresses. +| | ... | Send ICMP packet and check if VPP sends ARP request. +| | Given Path for 3-node testing is set +| | ... | ${nodes['TG']} | ${nodes['DUT1']} | ${nodes['DUT2']} | ${nodes['TG']} +| | And Interfaces in 3-node path are up +| | And L2 setup xconnect on DUT +| | ... | ${dut2_node} | ${dut2_to_dut1} | ${dut2_to_tg} +| | When Set Interface Address | ${dut1_node} +| | ... | ${dut1_to_tg} | ${dut1_to_tg_ip} | ${prefix_length} +| | And Set Interface Address | ${dut1_node} +| | ... | ${dut1_to_dut2} | ${dut1_to_dut2_ip} | ${prefix_length} +| | Then Send Packet And Check ARP Request | ${tg_node} +| | ... | ${test_src_ip} | ${dut1_to_dut2_ip_GW} | ${tg_to_dut1} +| | ... | ${dut1_to_tg_mac} | ${tg_to_dut2} | ${dut1_to_dut2_mac} +| | ... | ${dut1_to_dut2_ip} | ${dut1_to_dut2_ip_GW} + +| VPP sends ARP requests for route's next hop IP +| | [Tags] | EXPECTED_FAILING | | [Documentation] | Setup IP addresses and route. | | ... | Send ICMP packet and check if VPP sends ARP request. | | Given Path for 3-node testing is set @@ -51,8 +69,8 @@ | | ... | ${dut1_to_dut2} | ${dut1_to_dut2_ip} | ${prefix_length} | | And Vpp Route Add | | ... | ${dut1_node} | ${test_dst_ip} | ${prefix_length} -| | ... | ${dut1_to_dut2_ip_GW} | ${dut1_to_dut2} +| | ... | ${dut1_to_dut2_ip_GW} | ${dut1_to_dut2} | resolve_attempts=${NONE} | | Then Send Packet And Check ARP Request | ${tg_node} | | ... | ${test_src_ip} | ${test_dst_ip} | ${tg_to_dut1} -| | ... | ${tg_to_dut2_mac} | ${tg_to_dut2} | ${dut1_to_dut2_mac} +| | ... | ${dut1_to_tg_mac} | ${tg_to_dut2} | ${dut1_to_dut2_mac} | | ... | ${dut1_to_dut2_ip} | ${dut1_to_dut2_ip_GW} -- cgit 1.2.3-korg