79349b6920837e8297eb54e086b54d5e6dcf6fe6
[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_clean
22   sleep 1
23   two_customers_topo_setup
24
25   # init to test failed
26   test_result=1
27
28   #read -p  "press any key to continue .." -n1
29
30   ip netns exec vpp1-cus1-ns "${1}" -w 20 -c 1 "${2}"
31   rc=$?
32   if [ $rc -ne 0 ] ; then
33     echo "Error: customer 1 did not reveive any response!"
34   fi
35
36   #read -p  "press any key to continue .." -n1
37
38   ip netns exec vpp1-cus2-ns "${1}" -w 20 -c 1 "${2}"
39   rc=$?
40   if [ $rc -ne 0 ] ; then
41     echo "Error: customer 2 did not reveive any response!"
42   fi
43
44 #  two_customers_topo_clean
45
46   if [ $rc -ne 0 ] ; then
47     echo "Test failed!";
48   else
49     echo "Test passed."
50     test_result=0
51   fi
52
53   exit $test_result
54 }