t_ifconf.sh revision 313498
1# $NetBSD: t_ifconf.sh,v 1.3 2016/08/10 22:30:02 kre Exp $
2#
3# Copyright (c) 2014 The NetBSD Foundation, Inc.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25# POSSIBILITY OF SUCH DAMAGE.
26#
27
28RUMP_SERVER1=unix://./r1
29
30RUMP_FLAGS=\
31"-lrumpnet -lrumpnet_net -lrumpnet_netinet -lrumpnet_shmif -lrumpdev"
32
33atf_test_case basic cleanup
34basic_head()
35{
36
37	atf_set "descr" "basic ifconf (SIOCGIFCONF) test"
38	atf_set "require.progs" "rump_server"
39}
40
41basic_body()
42{
43	local ifconf="$(atf_get_srcdir)/ifconf"
44
45	atf_check -s exit:0 rump_server ${RUMP_FLAGS} ${RUMP_SERVER1}
46
47	export RUMP_SERVER=${RUMP_SERVER1}
48	export LD_PRELOAD=/usr/lib/librumphijack.so
49
50	# lo0 (127.0.0.1 and link local)
51	atf_check -s exit:0 -o match:'^2$' "$ifconf" total
52	atf_check -s exit:0 -o match:'lo0' "$ifconf" list
53
54	# Add shmif0 (no address)
55	atf_check -s exit:0 rump.ifconfig shmif0 create
56	atf_check -s exit:0 -o match:'^3$' "$ifconf" total
57	atf_check -s exit:0 -o match:'shmif0' "$ifconf" list
58
59	# Add shmif1 (no address)
60	atf_check -s exit:0 rump.ifconfig shmif1 create
61	atf_check -s exit:0 -o match:'^4$' "$ifconf" total
62	atf_check -s exit:0 -o match:'shmif1' "$ifconf" list
63
64	# Add an address to shmif0
65	atf_check -s exit:0 rump.ifconfig shmif0 linkstr shmbus
66	atf_check -s exit:0 rump.ifconfig shmif0 192.168.0.1/24
67	atf_check -s exit:0 -o match:'^5$' "$ifconf" total
68
69	# Vary the number of requesting interfaces
70	atf_check -s exit:0 -o match:1 -x "$ifconf list 1 | wc -l"
71	atf_check -s exit:0 -o match:2 -x "$ifconf list 2 | wc -l"
72	atf_check -s exit:0 -o match:3 -x "$ifconf list 3 | wc -l"
73	atf_check -s exit:0 -o match:4 -x "$ifconf list 4 | wc -l"
74	atf_check -s exit:0 -o match:5 -x "$ifconf list 5 | wc -l"
75	atf_check -s exit:0 -o match:5 -x "$ifconf list 6 | wc -l"
76
77	# Check if removing an interface is reflected
78	atf_check -s exit:0 rump.ifconfig shmif0 destroy
79	atf_check -s exit:0 -o match:'^3$' "$ifconf" total
80	atf_check -s exit:0 -o not-match:'shmif0' "$ifconf" list
81	atf_check -s exit:0 -o match:1 -x "$ifconf list 1 | wc -l"
82	atf_check -s exit:0 -o match:2 -x "$ifconf list 2 | wc -l"
83	atf_check -s exit:0 -o match:3 -x "$ifconf list 3 | wc -l"
84	atf_check -s exit:0 -o match:3 -x "$ifconf list 4 | wc -l"
85
86	unset LD_PRELOAD
87	unset RUMP_SERVER
88}
89
90basic_cleanup()
91{
92
93	RUMP_SERVER=${RUMP_SERVER1} rump.halt
94}
95
96atf_init_test_cases()
97{
98
99	atf_add_test_case basic
100}
101