xref: /netbsd/tests/lib/libc/gen/t_randomid.c (revision 6550d01e)
1 /* $NetBSD: t_randomid.c,v 1.2 2011/01/13 03:00:41 pgoyette Exp $ */
2 
3 /*-
4  * Copyright (c) 2010 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
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.
15  *
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.
27  */
28 
29 #include <atf-c.h>
30 
31 #include <sys/types.h>
32 
33 #include <assert.h>
34 #include <inttypes.h>
35 #include <randomid.h>
36 #include <stdio.h>
37 #include <string.h>
38 
39 #define	PERIOD		30000
40 
41 uint64_t last[65536];
42 
43 ATF_TC(randomid);
44 
45 ATF_TC_HEAD(randomid, tc)
46 {
47 
48 	atf_tc_set_md_var(tc, "descr", "Check randomid(3)");
49 }
50 
51 ATF_TC_BODY(randomid, tc)
52 {
53 	static randomid_t ctx = NULL;
54 	uint64_t lowest, n, diff;
55 	uint16_t id;
56 
57 	memset(last, 0, sizeof(last));
58 	ctx = randomid_new(16, (long)3600);
59 
60 	lowest = UINT64_MAX;
61 
62 	for (n = 0; n < 1000000; n++) {
63 		id = randomid(ctx);
64 
65 		if (last[id] > 0) {
66 			diff = n - last[id];
67 
68 			if (diff <= lowest) {
69 				if (lowest != UINT64_MAX)
70 					printf("id %5d: last call at %9"PRIu64
71 					    ", current call %9"PRIu64
72 					    " (diff %5"PRIu64"), "
73 					    "lowest %"PRIu64"\n",
74 					    id, last[id], n, diff, lowest);
75 
76 				ATF_REQUIRE_MSG(diff >= PERIOD,
77 				    "diff (%"PRIu64") less than minimum "
78 				    "period (%d)", diff, PERIOD);
79 
80 				lowest = diff;
81 			}
82 		}
83 
84 		last[id] = n;
85 	}
86 }
87 
88 ATF_TP_ADD_TCS(tp)
89 {
90 
91 	ATF_TP_ADD_TC(tp, randomid);
92 
93 	return atf_no_error();
94 }
95