1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* hashtest.c -- Test program for Khepera hash table routines
* Created: Sun Nov 6 18:55:23 1994 by faith@cs.unc.edu
* Revised: Wed Sep 25 10:16:27 1996 by faith@cs.unc.edu
* Copyright 1994, 1995 Rickard E. Faith (faith@cs.unc.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 1, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: hashtest.c,v 1.5 1996/09/25 14:20:51 faith Exp $
*/
#include "maaP.h"
extern void init_rand( void );
extern int get_rand( int ll, int ul );
static int iterator( const void *key, const void *datum )
{
printf( "%s: %s\n", (const char *)key, (const char *)datum );
return 0;
}
static int freer( const void *key, const void *datum )
{
xfree( (void *)datum );
xfree( (void *)key );
return 0;
}
static int free_data( const void *key, const void *datum )
{
xfree( (void *)datum );
return 0;
}
int main( int argc, char **argv )
{
hsh_HashTable t;
int i;
int j;
int count;
if (argc == 1) {
count = 100;
} else if (argc != 2 ) {
fprintf( stderr, "usage: hashtest count\n" );
return 1;
} else {
count = atoi( argv[1] );
}
printf( "Running test for count of %d\n", count );
/* Test sequential keys */
t = hsh_create( NULL, NULL );
for (i = 0; i < count; i++) {
char *key = xmalloc( 20 );
char *datum = xmalloc( 20 );
sprintf( key, "key%d", i );
sprintf( datum, "datum%d", i );
hsh_insert( t, key, datum );
}
for (i = count; i >= 0; i--) {
char key[100];
char datum[100];
const char *pt;
sprintf( key, "key%d", i );
sprintf( datum, "datum%d", i );
pt = hsh_retrieve( t, key );
if (!pt || strcmp( pt, datum )) {
printf( "Expected \"%s\", got \"%s\"\n", datum, pt ? pt : "(null)" );
}
}
if (count <= 200) hsh_iterate( t, iterator );
hsh_print_stats( t, stdout );
hsh_iterate( t, freer );
hsh_destroy( t );
/* Test random keys */
t = hsh_create( NULL, NULL );
init_rand();
for (i = 0; i < count; i++) {
int len = get_rand( 2, 32 );
char *key = xmalloc( len + 1 );
char *datum = xmalloc( 20 );
for (j = 0; j < len; j++) key[j] = get_rand( 32, 128 );
key[ len ] = '\0';
sprintf( datum, "datum%d", i );
hsh_insert( t, key, datum );
}
init_rand();
for (i = 0; i < count; i++) {
int len = get_rand( 2, 32 );
char *key = xmalloc( len + 1 );
char datum[100];
const char *pt;
for (j = 0; j < len; j++) key[j] = get_rand( 32, 128 );
key[ len ] = '\0';
sprintf( datum, "datum%d", i );
pt = hsh_retrieve( t, key );
if (!pt || strcmp( pt, datum ))
printf( "Expected \"%s\", got \"%s\" for key \"%s\"\n",
datum, pt, key );
xfree( key );
}
hsh_print_stats( t, stdout );
hsh_iterate( t, freer );
hsh_destroy( t );
/* Test (random) integer keys */
t = hsh_create( hsh_pointer_hash, hsh_pointer_compare );
init_rand();
for (i = 0; i < count; i++) {
int key = get_rand( 1, 16777216 );
char *datum = xmalloc( 20 );
sprintf( datum, "datum%d", i );
hsh_insert( t, (void *)key, datum );
}
init_rand();
for (i = 0; i < count; i++) {
int key = get_rand( 1, 16777216 );
char datum[100];
const char *pt;
sprintf( datum, "datum%d", i );
pt = hsh_retrieve( t, (void *)key );
if (!pt || strcmp( pt, datum ))
printf( "Expected \"%s\", got \"%s\" for key %d\n",
datum, pt, key );
}
hsh_print_stats( t, stdout );
hsh_iterate( t, free_data );
hsh_destroy( t );
return 0;
}
|