1 /* $NetBSD: t_hsearch.c,v 1.3 2011/09/15 14:51:06 christos Exp $ */
4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
30 * Copyright (c) 2001 Christopher G. Demetriou
31 * All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed for the
44 * NetBSD Project. See http://www.NetBSD.org/ for
45 * information about NetBSD.
46 * 4. The name of the author may not be used to endorse or promote products
47 * derived from this software without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
63 #include <sys/cdefs.h>
64 __COPYRIGHT("@(#) Copyright (c) 2008\
65 The NetBSD Foundation, inc. All rights reserved.");
66 __RCSID("$NetBSD: t_hsearch.c,v 1.3 2011/09/15 14:51:06 christos Exp $");
75 #define REQUIRE_ERRNO(x) ATF_REQUIRE_MSG(x, "%s", strerror(errno))
77 ATF_TC(hsearch_basic
);
78 ATF_TC_HEAD(hsearch_basic
, tc
)
81 atf_tc_set_md_var(tc
, "descr", "Checks basic insertions and searching");
84 ATF_TC_BODY(hsearch_basic
, tc
)
90 REQUIRE_ERRNO(hcreate(16) != 0);
92 /* ch[1] should be constant from here on down. */
95 /* Basic insertions. Check enough that there'll be collisions. */
96 for (i
= 0; i
< 26; i
++) {
98 e
.key
= strdup(ch
); /* ptr to provided key is kept! */
99 ATF_REQUIRE(e
.key
!= NULL
);
100 e
.data
= (void *)(long)i
;
102 ep
= hsearch(e
, ENTER
);
104 ATF_REQUIRE(ep
!= NULL
);
105 ATF_REQUIRE_STREQ(ep
->key
, ch
);
106 ATF_REQUIRE_EQ((long)ep
->data
, i
);
109 /* e.key should be constant from here on down. */
113 for (i
= 0; i
< 26; i
++) {
116 ep
= hsearch(e
, FIND
);
118 ATF_REQUIRE(ep
!= NULL
);
119 ATF_REQUIRE_STREQ(ep
->key
, ch
);
120 ATF_REQUIRE_EQ((long)ep
->data
, i
);
126 ATF_TC(hsearch_duplicate
);
127 ATF_TC_HEAD(hsearch_duplicate
, tc
)
130 atf_tc_set_md_var(tc
, "descr", "Checks that inserting duplicate "
131 "doesn't overwrite existing data");
134 ATF_TC_BODY(hsearch_duplicate
, tc
)
138 REQUIRE_ERRNO(hcreate(16));
141 ATF_REQUIRE(e
.key
!= NULL
);
142 e
.data
= (void *)(long) 0;
144 ep
= hsearch(e
, ENTER
);
146 ATF_REQUIRE(ep
!= NULL
);
147 ATF_REQUIRE_STREQ(ep
->key
, "a");
148 ATF_REQUIRE_EQ((long)ep
->data
, 0);
150 e
.data
= (void *)(long)12345;
152 ep
= hsearch(e
, ENTER
);
153 ep
= hsearch(e
, FIND
);
155 ATF_REQUIRE(ep
!= NULL
);
156 ATF_REQUIRE_STREQ(ep
->key
, "a");
157 ATF_REQUIRE_EQ((long)ep
->data
, 0);
162 ATF_TC(hsearch_nonexistent
);
163 ATF_TC_HEAD(hsearch_nonexistent
, tc
)
166 atf_tc_set_md_var(tc
, "descr",
167 "Checks searching for non-existent entry");
170 ATF_TC_BODY(hsearch_nonexistent
, tc
)
174 REQUIRE_ERRNO(hcreate(16));
177 ep
= hsearch(e
, FIND
);
178 ATF_REQUIRE_EQ(ep
, NULL
);
184 ATF_TC_HEAD(hsearch_two
, tc
)
187 atf_tc_set_md_var(tc
, "descr",
188 "Checks that searching doesn't overwrite previous search results");
191 ATF_TC_BODY(hsearch_two
, tc
)
196 ATF_REQUIRE((sa
= strdup("a")) != NULL
);
197 ATF_REQUIRE((sb
= strdup("b")) != NULL
);
199 REQUIRE_ERRNO(hcreate(16));
202 e
.data
= (void*)(long)0;
204 ep
= hsearch(e
, ENTER
);
206 ATF_REQUIRE(ep
!= NULL
);
207 ATF_REQUIRE_STREQ(ep
->key
, "a");
208 ATF_REQUIRE_EQ((long)ep
->data
, 0);
211 e
.data
= (void*)(long)1;
213 ep
= hsearch(e
, ENTER
);
215 ATF_REQUIRE(ep
!= NULL
);
216 ATF_REQUIRE_STREQ(ep
->key
, "b");
217 ATF_REQUIRE_EQ((long)ep
->data
, 1);
220 ep
= hsearch(e
, FIND
);
223 ep2
= hsearch(e
, FIND
);
225 ATF_REQUIRE(ep
!= NULL
);
226 ATF_REQUIRE_STREQ(ep
->key
, "a");
227 ATF_REQUIRE_EQ((long)ep
->data
, 0);
229 ATF_REQUIRE(ep2
!= NULL
);
230 ATF_REQUIRE_STREQ(ep2
->key
, "b");
231 ATF_REQUIRE_EQ((long)ep2
->data
, 1);
236 ATF_TC(hsearch_r_basic
);
237 ATF_TC_HEAD(hsearch_r_basic
, tc
)
240 atf_tc_set_md_var(tc
, "descr", "Checks basic insertions and searching");
243 ATF_TC_BODY(hsearch_r_basic
, tc
)
248 struct hsearch_data t
;
250 REQUIRE_ERRNO(hcreate_r(16, &t
) != 0);
252 /* ch[1] should be constant from here on down. */
255 /* Basic insertions. Check enough that there'll be collisions. */
256 for (i
= 0; i
< 26; i
++) {
258 e
.key
= strdup(ch
); /* ptr to provided key is kept! */
259 ATF_REQUIRE(e
.key
!= NULL
);
260 e
.data
= (void *)(long)i
;
262 ATF_REQUIRE(hsearch_r(e
, ENTER
, &ep
, &t
) == 1);
263 ATF_REQUIRE(ep
!= NULL
);
264 ATF_REQUIRE_STREQ(ep
->key
, ch
);
265 ATF_REQUIRE_EQ((long)ep
->data
, i
);
268 /* e.key should be constant from here on down. */
272 for (i
= 0; i
< 26; i
++) {
275 ATF_REQUIRE(hsearch_r(e
, FIND
, &ep
, &t
) == 1);
276 ATF_REQUIRE(ep
!= NULL
);
277 ATF_REQUIRE_STREQ(ep
->key
, ch
);
278 ATF_REQUIRE_EQ((long)ep
->data
, i
);
284 ATF_TC(hsearch_r_duplicate
);
285 ATF_TC_HEAD(hsearch_r_duplicate
, tc
)
288 atf_tc_set_md_var(tc
, "descr", "Checks that inserting duplicate "
289 "doesn't overwrite existing data");
292 ATF_TC_BODY(hsearch_r_duplicate
, tc
)
295 struct hsearch_data t
;
297 REQUIRE_ERRNO(hcreate_r(16, &t
));
300 ATF_REQUIRE(e
.key
!= NULL
);
301 e
.data
= (void *)(long) 0;
303 ATF_REQUIRE(hsearch_r(e
, ENTER
, &ep
, &t
) == 1);
304 ATF_REQUIRE(ep
!= NULL
);
305 ATF_REQUIRE_STREQ(ep
->key
, "a");
306 ATF_REQUIRE_EQ((long)ep
->data
, 0);
308 e
.data
= (void *)(long)12345;
310 ATF_REQUIRE(hsearch_r(e
, ENTER
, &ep
, &t
) == 1);
311 ATF_REQUIRE(hsearch_r(e
, FIND
, &ep
, &t
) == 1);
313 ATF_REQUIRE(ep
!= NULL
);
314 ATF_REQUIRE_STREQ(ep
->key
, "a");
315 ATF_REQUIRE_EQ((long)ep
->data
, 0);
320 ATF_TC(hsearch_r_nonexistent
);
321 ATF_TC_HEAD(hsearch_r_nonexistent
, tc
)
324 atf_tc_set_md_var(tc
, "descr",
325 "Checks searching for non-existent entry");
328 ATF_TC_BODY(hsearch_r_nonexistent
, tc
)
331 struct hsearch_data t
;
333 REQUIRE_ERRNO(hcreate_r(16, &t
));
336 ATF_REQUIRE(hsearch_r(e
, FIND
, &ep
, &t
) == 1);
337 ATF_REQUIRE_EQ(ep
, NULL
);
342 ATF_TC(hsearch_r_two
);
343 ATF_TC_HEAD(hsearch_r_two
, tc
)
346 atf_tc_set_md_var(tc
, "descr",
347 "Checks that searching doesn't overwrite previous search results");
350 ATF_TC_BODY(hsearch_r_two
, tc
)
354 struct hsearch_data t
;
356 ATF_REQUIRE((sa
= strdup("a")) != NULL
);
357 ATF_REQUIRE((sb
= strdup("b")) != NULL
);
359 REQUIRE_ERRNO(hcreate_r(16, &t
));
362 e
.data
= (void*)(long)0;
364 ATF_REQUIRE(hsearch_r(e
, ENTER
, &ep
, &t
) == 1);
365 ATF_REQUIRE(ep
!= NULL
);
366 ATF_REQUIRE_STREQ(ep
->key
, "a");
367 ATF_REQUIRE_EQ((long)ep
->data
, 0);
370 e
.data
= (void*)(long)1;
372 ATF_REQUIRE(hsearch_r(e
, ENTER
, &ep
, &t
) == 1);
373 ATF_REQUIRE(ep
!= NULL
);
374 ATF_REQUIRE_STREQ(ep
->key
, "b");
375 ATF_REQUIRE_EQ((long)ep
->data
, 1);
378 ATF_REQUIRE(hsearch_r(e
, FIND
, &ep
, &t
) == 1);
381 ATF_REQUIRE(hsearch_r(e
, FIND
, &ep2
, &t
) == 1);
383 ATF_REQUIRE(ep
!= NULL
);
384 ATF_REQUIRE_STREQ(ep
->key
, "a");
385 ATF_REQUIRE_EQ((long)ep
->data
, 0);
387 ATF_REQUIRE(ep2
!= NULL
);
388 ATF_REQUIRE_STREQ(ep2
->key
, "b");
389 ATF_REQUIRE_EQ((long)ep2
->data
, 1);
397 ATF_TP_ADD_TC(tp
, hsearch_basic
);
398 ATF_TP_ADD_TC(tp
, hsearch_duplicate
);
399 ATF_TP_ADD_TC(tp
, hsearch_nonexistent
);
400 ATF_TP_ADD_TC(tp
, hsearch_two
);
402 ATF_TP_ADD_TC(tp
, hsearch_r_basic
);
403 ATF_TP_ADD_TC(tp
, hsearch_r_duplicate
);
404 ATF_TP_ADD_TC(tp
, hsearch_r_nonexistent
);
405 ATF_TP_ADD_TC(tp
, hsearch_r_two
);
407 return atf_no_error();