Home | History | Annotate | Line # | Download | only in gen
t_randomid.c revision 1.1
      1 /* $NetBSD: t_randomid.c,v 1.1 2011/01/13 02:40:43 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 %9lld, "
     71 					    "current call %9lld (diff %5lld)"
     72 					    ", lowest %lld\n",
     73 					    id, last[id], n, diff, lowest);
     74 
     75 				ATF_REQUIRE_MSG(diff >= PERIOD,
     76 				    "diff (%"PRIu64") less than minimum "
     77 				    "period (%d)", diff, PERIOD);
     78 
     79 				lowest = diff;
     80 			}
     81 		}
     82 
     83 		last[id] = n;
     84 	}
     85 }
     86 
     87 ATF_TP_ADD_TCS(tp)
     88 {
     89 
     90 	ATF_TP_ADD_TC(tp, randomid);
     91 
     92 	return atf_no_error();
     93 }
     94