9996111d989cd9981d7726d6e357286a4dd4d584
[one.git] / tests / data_plane / vpp_lite_topo / test_driver / basic_no_odl.sh
1 source config.sh
2 source odl_utils.sh
3 source topologies/2_node_topo.sh
4
5 if [ "$1" == "clean" ] ; then
6   2_node_topo_clean
7   exit 0
8 fi
9
10 if [[ $(id -u) != 0 ]]; then
11   echo "Error: run this as a root."
12   exit 1
13 fi
14
15 function test_basic_no_odl
16 {
17   2_node_topo_setup no_odl
18
19   maybe_pause
20
21   test_result=1
22
23   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
24   if [ $? -ne 0 ] ; then
25     echo "No response received!"
26     2_node_topo_clean no_odl
27     exit $test_result
28   fi
29
30   # change IP addresses of destination RLOC
31   echo "set int ip address del host-intervpp2 6.0.3.2/24" | nc 0 5003
32   echo "set int ip address host-intervpp2 6.0.3.20/24" | nc 0 5003
33   echo "set int ip address del host-intervpp2 6:0:3::2/64" | nc 0 5003
34   echo "set int ip address host-intervpp2 6:0:3::20/64" | nc 0 5003
35
36   echo "lisp remote-mapping del vni 0 eid 6.0.2.0/24 rloc 6.0.3.2" | nc 0 5002
37   echo "lisp remote-mapping add vni 0 eid 6.0.2.0/24 rloc 6.0.3.20" | nc 0 5002
38   echo "lisp remote-mapping del vni 0 eid 6:0:2::0/64 rloc 6:0:3::2" | nc 0 5002
39   echo "lisp remote-mapping add vni 0 eid 6:0:2::0/64 rloc 6:0:3::20" | nc 0 5002
40
41   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
42   rc=$?
43
44   maybe_pause
45
46   # test done
47
48   2_node_topo_clean no_odl
49   if [ $rc -ne 0 ] ; then
50     echo "Test failed: No ICMP response received within specified timeout limit!"
51   else
52     echo "Test passed."
53     test_result=0
54   fi
55
56   exit $test_result
57 }
58