Refactor basic LISP tests
[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/basic_topo.sh
4
5 if [ "$1" == "clean" ] ; then
6   basic_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   basic_topo_setup no_odl
18
19   test_result=1
20
21   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
22   if [ $? -ne 0 ] ; then
23     echo "No response received!"
24     basic_topo_clean no_odl
25     exit $test_result
26   fi
27
28   # change IP addresses of destination RLOC
29   echo "set int ip address del host-intervpp2 6.0.3.2/24" | nc 0 5003
30   echo "set int ip address host-intervpp2 6.0.3.20/24" | nc 0 5003
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
34   echo "lisp remote-mapping del vni 0 deid 6.0.2.0/24 seid 6.0.1.0/24 rloc 6.0.3.2" | nc 0 5002
35   echo "lisp remote-mapping add vni 0 deid 6.0.2.0/24 seid 6.0.1.0/24 rloc 6.0.3.20" | nc 0 5002
36
37   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
38   rc=$?
39
40   # test done
41
42   basic_topo_clean no_odl
43   if [ $rc -ne 0 ] ; then
44     echo "Test failed: No ICMP response received within specified timeout limit!"
45   else
46     echo "Test passed."
47     test_result=0
48   fi
49
50   exit $test_result
51 }
52