summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorin Coras <florin.coras@gmail.com>2017-04-11 20:02:19 +0000
committerGerrit Code Review <gerrit@fd.io>2017-04-11 20:02:19 +0000
commitb3025777172c12f7a55fb4dd8345ccef0cb1dcb0 (patch)
tree50064d9a8df00b8ab21b5fa282b0474d999a30a2
parentd7557e0a80a53298aa547c511ed697d05ef28ef7 (diff)
parentf15823711ef09c92f901c5ec0cc44d587d34be0d (diff)
Merge "Add enable/disable test"
-rw-r--r--tests/data_plane/vpp_lite_topo/test_driver/basic.sh42
-rwxr-xr-xtests/data_plane/vpp_lite_topo/tests/test_basic_enable_disable.sh8
2 files changed, 50 insertions, 0 deletions
diff --git a/tests/data_plane/vpp_lite_topo/test_driver/basic.sh b/tests/data_plane/vpp_lite_topo/test_driver/basic.sh
index ec96f16..0cdf10d 100644
--- a/tests/data_plane/vpp_lite_topo/test_driver/basic.sh
+++ b/tests/data_plane/vpp_lite_topo/test_driver/basic.sh
@@ -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
index 0000000..e329c39
--- /dev/null
+++ b/tests/data_plane/vpp_lite_topo/tests/test_basic_enable_disable.sh
@@ -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"