Introduce an option for testing binary API
[one.git] / tests / data_plane / vpp_lite_topo / test_driver / two_customers_topo.sh
1 source config.sh
2 source odl_utils.sh
3 source topologies/two_customers_topo.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   two_customers_topo_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_eid_virtualization {
21   two_customers_topo_setup
22
23   # init to test failed
24   test_result=1
25
26   maybe_pause
27
28   ip netns exec vpp1-cus1-ns "${1}" -w 20 -c 1 "${2}"
29   assert_rc_ok $? two_customers_topo_clean "No response!"
30
31   maybe_pause
32
33   ip netns exec vpp1-cus2-ns "${1}" -w 20 -c 1 "${2}"
34   rc=$?
35
36   maybe_pause
37
38   two_customers_topo_clean
39   print_status $rc "No ICMP response!"
40   exit $test_result
41 }