Add enable/disable test 38/6138/1
authorFilip Tehlar <ftehlar@cisco.com>
Tue, 11 Apr 2017 14:23:03 +0000 (16:23 +0200)
committerFilip Tehlar <ftehlar@cisco.com>
Tue, 11 Apr 2017 14:23:03 +0000 (16:23 +0200)
Change-Id: Idbc70ab037d65d1003b904ea5e2a25b3f2fb9f25
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
tests/data_plane/vpp_lite_topo/test_driver/basic.sh
tests/data_plane/vpp_lite_topo/tests/test_basic_enable_disable.sh [new file with mode: 0755]

index ec96f16..0cdf10d 100644 (file)
@@ -110,3 +110,45 @@ function test_rloc_probe
   print_status $rc "unexpected value"
   exit $test_result
 }
+
+function test_enable_disable
+{
+  if [ "$3" != "no_setup" ] ; then
+    2_node_topo_setup
+  fi
+
+  maybe_pause
+  test_result=1
+
+  ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
+  assert_rc_ok $? 2_node_topo_clean "No ICMP response!"
+
+  maybe_pause
+
+  # disable control plane
+  echo "one disable" | nc 0 5002
+  ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
+  assert_rc_not_ok $? 2_node_topo_clean "Nothing expected, but received ICMP reply!"
+
+  # enable control plane
+  echo "one enable" | nc 0 5002
+  ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
+  assert_rc_ok $? 2_node_topo_clean "No ICMP response!"
+
+  # disable dataplane
+  echo "gpe disable" | nc 0 5002
+  ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
+  assert_rc_not_ok $? 2_node_topo_clean "Nothing expected, but received ICMP reply!"
+
+  # enable LISP again from control plane
+  echo "one enable" | nc 0 5002
+  ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
+  assert_rc_ok $? 2_node_topo_clean "No ICMP response!"
+  rc=$?
+
+  # test done
+  maybe_pause
+  2_node_topo_clean
+  print_status $rc "No ICMP response!"
+  exit $test_result
+}
diff --git a/tests/data_plane/vpp_lite_topo/tests/test_basic_enable_disable.sh b/tests/data_plane/vpp_lite_topo/tests/test_basic_enable_disable.sh
new file mode 100755 (executable)
index 0000000..e329c39
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+VPP_LITE_CONF=`pwd`/../configs/vpp_lite_config/basic/4o4
+ODL_CONFIG_DIR=`pwd`/../configs/odl/basic/4o4
+
+source test_driver/basic.sh
+
+test_enable_disable ping "6.0.2.2"