Introduce an option for testing binary API
[one.git] / tests / data_plane / vpp_lite_topo / test_driver / rtr_two_iface_two_customers.sh
1 source config.sh
2 source odl_utils.sh
3 source topologies/rtr_two_iface_two_customers.sh
4
5 ODL_CONFIG_FILE1="vpp1_customer1.json"
6 ODL_CONFIG_FILE2="vpp2_customer1.json"
7 ODL_CONFIG_FILE3="vpp1_customer2.json"
8 ODL_CONFIG_FILE4="vpp2_customer2.json"
9
10 if [ "$1" == "clean" ] ; then
11   rtr_two_iface_clean
12   exit 0
13 fi
14
15 if [[ $(id -u) != 0 ]]; then
16   echo "Error: run this as a root."
17   exit 1
18 fi
19
20 function test_rtr_two_iface_two_customers {
21   rtr_two_iface_two_customers_setup
22   sleep 1
23
24   test_result=0
25   rc=0
26
27   maybe_pause
28
29   ip netns exec vpp1-cus1-ns "${1}" -w 20 -c 1 "${2}"
30   assert_rc_ok $? rtr_two_iface_two_customers_clean "No response received!"
31
32   ip netns exec vpp1-cus2-ns "${1}" -w 20 -c 1 "${2}"
33   rc=$?
34
35   maybe_pause
36
37   rtr_two_iface_two_customers_clean
38   print_status $rc "No ICMP response!"
39   exit $test_result
40 }