xref: /netbsd/tests/net/tcp/t_tcp_shutdown.sh (revision 425c8e34)
1#	$NetBSD: t_tcp_shutdown.sh,v 1.1 2022/11/04 08:01:42 ozaki-r Exp $
2#
3# Copyright (c) 2022 Internet Initiative Japan 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
28SOCK=unix://tcp_shutdown
29BUS=./bus_tcp_shutdown
30
31DEBUG=${DEBUG:-false}
32
33setup_servers()
34{
35
36	rump_server_start $SOCK
37	rump_server_add_iface $SOCK shmif0 $BUS
38}
39
40test_tcp_shutdown()
41{
42	local target=$1
43	local prog="$(atf_get_srcdir)/tcp_shutdown"
44
45	export RUMP_SERVER=$SOCK
46	atf_check -s exit:0 $HIJACKING $prog $target
47}
48
49add_test_tcp_shutdown()
50{
51	local target=$1
52	local name= desc=
53
54	desc="Test TCP; call $target after shtudown"
55	name="tcp_shutdown_${target}"
56
57	atf_test_case ${name} cleanup
58	eval "
59	    ${name}_head() {
60	        atf_set descr \"$desc\"
61	        atf_set require.progs rump_server
62	    }
63	    ${name}_body() {
64	        setup_servers
65	        test_tcp_shutdown $target
66	        rump_server_destroy_ifaces
67	    }
68	    ${name}_cleanup() {
69	        \$DEBUG && dump
70	        cleanup
71	    }
72	"
73	atf_add_test_case ${name}
74}
75
76atf_init_test_cases()
77{
78
79	add_test_tcp_shutdown bind
80	add_test_tcp_shutdown connect
81	add_test_tcp_shutdown getsockname
82	add_test_tcp_shutdown listen
83	add_test_tcp_shutdown setsockopt
84	add_test_tcp_shutdown shutdown
85}
86