Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Add tests for route flags



details:   https://anonhg.NetBSD.org/src/rev/d9e85217fd97
branches:  trunk
changeset: 808454:d9e85217fd97
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Mon May 18 06:27:04 2015 +0000

description:
Add tests for route flags

diffstat:

 distrib/sets/lists/tests/mi |    3 +-
 tests/net/route/Makefile    |    4 +-
 tests/net/route/t_flags.sh  |  393 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 397 insertions(+), 3 deletions(-)

diffs (truncated from 430 to 300 lines):

diff -r dc2ef9fc23e6 -r d9e85217fd97 distrib/sets/lists/tests/mi
--- a/distrib/sets/lists/tests/mi       Mon May 18 06:25:04 2015 +0000
+++ b/distrib/sets/lists/tests/mi       Mon May 18 06:27:04 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.621 2015/05/15 10:53:58 ozaki-r Exp $
+# $NetBSD: mi,v 1.622 2015/05/18 06:27:04 ozaki-r Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -3179,6 +3179,7 @@
 ./usr/tests/net/route/Atffile                  tests-net-tests         atf,rump
 ./usr/tests/net/route/Kyuafile                 tests-net-tests         atf,rump,kyua
 ./usr/tests/net/route/t_change                 tests-net-tests         atf,rump
+./usr/tests/net/route/t_flags                  tests-net-tests         atf,rump
 ./usr/tests/net/sys                            tests-net-tests
 ./usr/tests/net/sys/Atffile                    tests-net-tests         atf
 ./usr/tests/net/sys/Kyuafile                   tests-net-tests         atf,kyua
diff -r dc2ef9fc23e6 -r d9e85217fd97 tests/net/route/Makefile
--- a/tests/net/route/Makefile  Mon May 18 06:25:04 2015 +0000
+++ b/tests/net/route/Makefile  Mon May 18 06:27:04 2015 +0000
@@ -1,10 +1,10 @@
-#      $NetBSD: Makefile,v 1.1 2011/02/08 10:11:29 pooka Exp $
+#      $NetBSD: Makefile,v 1.2 2015/05/18 06:27:04 ozaki-r Exp $
 #
 
 .include <bsd.own.mk>
 
 TESTSDIR=      ${TESTSBASE}/net/route
 
-TESTS_SH=      t_change
+TESTS_SH=      t_change t_flags
 
 .include <bsd.test.mk>
diff -r dc2ef9fc23e6 -r d9e85217fd97 tests/net/route/t_flags.sh
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/net/route/t_flags.sh        Mon May 18 06:27:04 2015 +0000
@@ -0,0 +1,393 @@
+#      $NetBSD: t_flags.sh,v 1.1 2015/05/18 06:27:04 ozaki-r Exp $
+#
+# Copyright (c) 2015 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+netserver=\
+"rump_server -lrumpnet -lrumpnet_net -lrumpnet_netinet -lrumpnet_shmif"
+SOCK_LOCAL=unix://commsock1
+SOCK_PEER=unix://commsock2
+SOCK_GW=unix://commsock3
+BUS=bus1
+BUS2=bus2
+
+DEBUG=false
+
+setup_local()
+{
+
+       atf_check -s exit:0 ${netserver} ${SOCK_LOCAL}
+
+       export RUMP_SERVER=$SOCK_LOCAL
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 create
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 linkstr ${BUS}
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.2/24
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
+
+       $DEBUG && rump.ifconfig
+       $DEBUG && rump.netstat -rn -f inet
+}
+
+setup_peer()
+{
+
+       atf_check -s exit:0 ${netserver} ${SOCK_PEER}
+
+       export RUMP_SERVER=$SOCK_PEER
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 create
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 linkstr ${BUS}
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.1/24
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
+
+       $DEBUG && rump.ifconfig
+       $DEBUG && rump.netstat -rn -f inet
+}
+
+setup_gw()
+{
+
+       atf_check -s exit:0 ${netserver} ${SOCK_GW}
+
+       export RUMP_SERVER=$SOCK_GW
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 create
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 linkstr ${BUS}
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.254/24
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
+
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif1 create
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif1 linkstr ${BUS2}
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif1 10.0.2.1/24
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif1 alias 10.0.2.2/24
+       atf_check -s exit:0 -o ignore rump.ifconfig shmif1 up
+
+       # Wait until DAD completes (10 sec at most)
+       atf_check -s exit:0 -o ignore rump.ifconfig -w 10
+       atf_check -s not-exit:0 -x "rump.ifconfig shmif1 |grep -q tentative"
+
+       $DEBUG && rump.ifconfig
+       $DEBUG && rump.netstat -rn -f inet
+}
+
+teardown_gw()
+{
+
+       env RUMP_SERVER=$SOCK_GW rump.halt
+}
+
+check_entry_flags()
+{
+       local ip=$(echo $1 |sed 's/\./\\./g')
+       local flags=$2
+
+       atf_check -s exit:0 -o match:" $flags " -e ignore -x \
+           "rump.netstat -rn -f inet | grep ^'$ip'"
+}
+
+check_entry_gw()
+{
+       local ip=$(echo $1 |sed 's/\./\\./g')
+       local gw=$2
+
+       atf_check -s exit:0 -o match:" $gw " -e ignore -x \
+           "rump.netstat -rn -f inet | grep ^'$ip'"
+}
+
+check_entry_fail()
+{
+       ip=$(echo $1 |sed 's/\./\\./g')
+       flags=$2  # Not used currently
+
+       atf_check -s not-exit:0 -e ignore -x \
+           "rump.netstat -rn -f inet | grep ^'$ip'"
+}
+
+test_lo()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Up, Host, local
+       check_entry_flags 127.0.0.1 UHl
+}
+
+test_connected()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Up, Host, LLINFO, local
+       check_entry_flags 10.0.0.2 UHLl
+
+       # Up, Cloning
+       check_entry_flags 10.0.0/24 UC
+}
+
+test_cloned()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       atf_check -s exit:0 -o ignore rump.ping -n -w 1 -c 1 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Host, LLINFO, cloned
+       check_entry_flags 10.0.0.1 UHLc
+}
+
+test_default_gateway()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       atf_check -s exit:0 -o ignore rump.route add default 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Gateway, Static
+       check_entry_flags default UGS
+}
+
+test_static()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Static route to host
+       atf_check -s exit:0 -o ignore rump.route add 10.0.1.1 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Gateway, Host, Static
+       check_entry_flags 10.0.1.1 UGHS
+
+       # Static route to network
+       atf_check -s exit:0 -o ignore rump.route add -net 10.0.2.0/24 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Gateway, Static
+       check_entry_flags 10.0.2/24 UGS
+}
+
+test_route_flush()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Reusing other tests to create routes
+       test_cloned_route
+       test_default_gateway
+       test_static_route
+
+       atf_check -s exit:0 -o ignore rump.route flush
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Should remain
+       check_entry_flags 127.0.0.1 UHl
+       check_entry_flags 10.0.0/24 UC
+
+       # Shouldn't remain
+       check_entry_fail default UGS
+       check_entry_fail 10.0.1.1 UGHS
+       check_entry_fail 10.0.2/24 UGS
+       # Should it remain?
+       check_entry_fail 10.0.0.2 UHLl
+}
+
+test_blackhole()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Delete an existing route first
+       atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
+
+       atf_check -s exit:0 -o ignore rump.route add -net 10.0.0.0/24 10.0.0.1 -blackhole
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Gateway, Blackhole, Static
+       check_entry_flags 10.0.0/24 UGBS
+
+       atf_check -s not-exit:0 -o ignore -e match:'No route to host' \
+           rump.ping -n -w 1 -c 1 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Shouldn't be created
+       check_entry_fail 10.0.0.1 UHLc
+}
+
+test_reject()
+{
+
+       export RUMP_SERVER=$SOCK_LOCAL
+
+       # Delete an existing route first
+       atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
+
+       atf_check -s exit:0 -o ignore rump.route add -net 10.0.0.0/24 10.0.0.1 -reject
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Up, Gateway, Reject, Static
+       check_entry_flags 10.0.0/24 UGRS
+
+       atf_check -s not-exit:0 -o ignore -e match:'No route to host' \
+           rump.ping -n -w 1 -c 1 10.0.0.1
+       $DEBUG && rump.netstat -rn -f inet
+
+       # Shouldn't be created
+       check_entry_fail 10.0.0.1 UHLc
+}
+
+test_icmp_redirect()
+{
+
+       ### Testing Dynamic flag ###



Home | Main Index | Thread Index | Old Index