Remove building with NOCRYPTO option
[minix3.git] / tests / lib / libc / net / t_hostent.sh
blobb597b6d57c76424f6d68acf664dc57ca0beee756
1 # $NetBSD: t_hostent.sh,v 1.10 2014/01/13 11:08:14 gson Exp $
3 # Copyright (c) 2008 The NetBSD Foundation, Inc.
4 # All rights reserved.
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.
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.
28 n6="sixthavenue.astron.com"
29 a6="2620:106:3003:1f00:3e4a:92ff:fef4:e180"
30 ans6="name=$n6, length=16, addrtype=24, aliases=[] addr_list=[$a6]\n"
32 n4="sixthavenue.astron.com"
33 a4="38.117.134.16"
34 ans4="name=$n4, length=4, addrtype=2, aliases=[] addr_list=[$a4]\n"
36 l6="localhost"
37 al6="::1"
38 loc6="name=$l6, length=16, addrtype=24, aliases=[localhost. localhost.localdomain.] addr_list=[$al6]\n"
40 l4="localhost"
41 al4="127.0.0.1"
42 loc4="name=$l4, length=4, addrtype=2, aliases=[localhost. localhost.localdomain.] addr_list=[$al4]\n"
44 dir="$(atf_get_srcdir)"
45 res="-r ${dir}/resolv.conf"
47 # Hijack DNS traffic using a single rump server instance and a DNS
48 # server listening on its loopback address.
50 start_dns_server() {
51 export RUMP_SERVER=unix:///tmp/rumpserver
52 rump_server -lrumpdev -lrumpnet -lrumpnet_net -lrumpnet_netinet \
53 -lrumpnet_netinet6 -lrumpnet_local $RUMP_SERVER
54 HIJACK_DNS="LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK='socket=inet:inet6'"
55 eval $HIJACK_DNS ${dir}/h_dns_server $1
58 stop_dns_server() {
59 export RUMP_SERVER=unix:///tmp/rumpserver
60 kill $(cat dns_server_$1.pid)
61 rump.halt
64 atf_test_case gethostbyname4 cleanup
65 gethostbyname4_head()
67 atf_set "descr" "Checks gethostbyname2(3) for AF_INET (auto, as determined by nsswitch.conf(5)"
69 gethostbyname4_body()
71 start_dns_server 4
72 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t auto -4 $n4"
74 gethostbyname4_cleanup()
76 stop_dns_server 4
79 atf_test_case gethostbyname6 cleanup cleanup
80 gethostbyname6_head()
82 atf_set "descr" "Checks gethostbyname2(3) for AF_INET6 (auto, as determined by nsswitch.conf(5)"
84 gethostbyname6_body()
86 start_dns_server 4
87 atf_check -o inline:"$ans6" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t auto -6 $n6"
89 gethostbyname6_cleanup()
91 stop_dns_server 4
94 atf_test_case gethostbyaddr4 cleanup
95 gethostbyaddr4_head()
97 atf_set "descr" "Checks gethostbyaddr(3) for AF_INET (auto, as determined by nsswitch.conf(5)"
99 gethostbyaddr4_body()
101 start_dns_server 4
102 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t auto -a $a4"
104 gethostbyaddr4_cleanup()
106 stop_dns_server 4
109 atf_test_case gethostbyaddr6 cleanup
110 gethostbyaddr6_head()
112 atf_set "descr" "Checks gethostbyaddr(3) for AF_INET6 (auto, as determined by nsswitch.conf(5)"
114 gethostbyaddr6_body()
116 start_dns_server 4
117 atf_check -o inline:"$ans6" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t auto -a $a6"
119 gethostbyaddr6_cleanup()
121 stop_dns_server 4
124 atf_test_case hostsbynamelookup4
125 hostsbynamelookup4_head()
127 atf_set "descr" "Checks /etc/hosts name lookup for AF_INET"
129 hostsbynamelookup4_body()
131 atf_check -o inline:"$loc4" -x "${dir}/h_hostent -f ${dir}/hosts -t file -4 $l4"
134 atf_test_case hostsbynamelookup6
135 hostsbynamelookup6_head()
137 atf_set "descr" "Checks /etc/hosts name lookup for AF_INET6"
139 hostsbynamelookup6_body()
141 atf_check -o inline:"$loc6" -x "${dir}/h_hostent -f ${dir}/hosts -t file -6 $l6"
144 atf_test_case hostsbyaddrlookup4
145 hostsbyaddrlookup4_head()
147 atf_set "descr" "Checks /etc/hosts address lookup for AF_INET"
149 hostsbyaddrlookup4_body()
151 atf_check -o inline:"$loc4" -x "${dir}/h_hostent -f ${dir}/hosts -t file -4 -a $al4"
154 atf_test_case hostsbyaddrlookup6
155 hostsbyaddrlookup6_head()
157 atf_set "descr" "Checks /etc/hosts address lookup for AF_INET6"
159 hostsbyaddrlookup6_body()
161 atf_check -o inline:"$loc6" -x "${dir}/h_hostent -f ${dir}/hosts -t file -6 -a $al6"
164 atf_test_case dnsbynamelookup4 cleanup
165 dnsbynamelookup4_head()
167 atf_set "descr" "Checks DNS name lookup for AF_INET"
169 dnsbynamelookup4_body()
171 start_dns_server 4
172 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t dns -4 $n4"
174 dnsbynamelookup4_cleanup()
176 stop_dns_server 4
179 atf_test_case dnsbynamelookup6 cleanup
180 dnsbynamelookup6_head()
182 atf_set "descr" "Checks DNS name lookup for AF_INET6"
184 dnsbynamelookup6_body()
186 start_dns_server 4
187 atf_check -o inline:"$ans6" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t dns -6 $n6"
189 dnsbynamelookup6_cleanup()
191 stop_dns_server 4
194 atf_test_case dnsbyaddrlookup4 cleanup
195 dnsbyaddrlookup4_head()
197 atf_set "descr" "Checks DNS address lookup for AF_INET"
199 dnsbyaddrlookup4_body()
201 start_dns_server 4
202 atf_check -o inline:"$ans4" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t dns -4 -a $a4"
204 dnsbyaddrlookup4_cleanup()
206 stop_dns_server 4
209 atf_test_case dnsbyaddrlookup6 cleanup
210 dnsbyaddrlookup6_head()
212 atf_set "descr" "Checks dns address lookup for AF_INET6"
214 dnsbyaddrlookup6_body()
216 start_dns_server 4
217 atf_check -o inline:"$ans6" -x "$HIJACK_DNS ${dir}/h_hostent ${res} -t dns -6 -a $a6"
219 dnsbyaddrlookup6_cleanup()
221 stop_dns_server 4
224 atf_init_test_cases()
226 atf_add_test_case gethostbyname4
227 atf_add_test_case gethostbyname6
228 atf_add_test_case gethostbyaddr4
229 atf_add_test_case gethostbyaddr6
231 atf_add_test_case hostsbynamelookup4
232 atf_add_test_case hostsbynamelookup6
233 atf_add_test_case hostsbyaddrlookup4
234 atf_add_test_case hostsbyaddrlookup6
236 atf_add_test_case dnsbynamelookup4
237 atf_add_test_case dnsbynamelookup6
238 atf_add_test_case dnsbyaddrlookup4
239 atf_add_test_case dnsbyaddrlookup6