Enforce rules about modifying hash tables in callbacks
[platform/upstream/glib.git] / glib / tests / hash.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  * Copyright (C) 1999 The Free Software Foundation
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GLib Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #undef G_DISABLE_ASSERT
29 #undef G_LOG_DOMAIN
30
31 #ifdef HAVE_CONFIG_H
32 #  include <config.h>
33 #endif
34
35 #if STDC_HEADERS
36 #include <stdio.h>
37 #include <string.h>
38 #include <stdlib.h>
39 #endif
40
41 #include <glib.h>
42
43
44
45 int array[10000];
46
47 static void
48 fill_hash_table_and_array (GHashTable *hash_table)
49 {
50   int i;
51
52   for (i = 0; i < 10000; i++)
53     {
54       array[i] = i;
55       g_hash_table_insert (hash_table, &array[i], &array[i]);
56     }
57 }
58
59 static void
60 init_result_array (int result_array[10000])
61 {
62   int i;
63
64   for (i = 0; i < 10000; i++)
65     result_array[i] = -1;
66 }
67
68 static void
69 verify_result_array (int array[10000])
70 {
71   int i;
72
73   for (i = 0; i < 10000; i++)
74     g_assert (array[i] == i);
75 }
76
77 static void
78 handle_pair (gpointer key, gpointer value, int result_array[10000])
79 {
80   int n;
81
82   g_assert (key == value);
83
84   n = *((int *) value);
85
86   g_assert (n >= 0 && n < 10000);
87   g_assert (result_array[n] == -1);
88
89   result_array[n] = n;
90 }
91
92 static gboolean
93 my_hash_callback_remove (gpointer key,
94                          gpointer value,
95                          gpointer user_data)
96 {
97   int *d = value;
98
99   if ((*d) % 2)
100     return TRUE;
101
102   return FALSE;
103 }
104
105 static void
106 my_hash_callback_remove_test (gpointer key,
107                               gpointer value,
108                               gpointer user_data)
109 {
110   int *d = value;
111
112   if ((*d) % 2)
113     g_assert_not_reached ();
114 }
115
116 static void
117 my_hash_callback (gpointer key,
118                   gpointer value,
119                   gpointer user_data)
120 {
121   handle_pair (key, value, user_data);
122 }
123
124 static guint
125 my_hash (gconstpointer key)
126 {
127   return (guint) *((const gint*) key);
128 }
129
130 static gboolean
131 my_hash_equal (gconstpointer a,
132                gconstpointer b)
133 {
134   return *((const gint*) a) == *((const gint*) b);
135 }
136
137
138
139 /*
140  * This is a simplified version of the pathalias hashing function.
141  * Thanks to Steve Belovin and Peter Honeyman
142  *
143  * hash a string into a long int.  31 bit crc (from andrew appel).
144  * the crc table is computed at run time by crcinit() -- we could
145  * precompute, but it takes 1 clock tick on a 750.
146  *
147  * This fast table calculation works only if POLY is a prime polynomial
148  * in the field of integers modulo 2.  Since the coefficients of a
149  * 32-bit polynomial won't fit in a 32-bit word, the high-order bit is
150  * implicit.  IT MUST ALSO BE THE CASE that the coefficients of orders
151  * 31 down to 25 are zero.  Happily, we have candidates, from
152  * E. J.  Watson, "Primitive Polynomials (Mod 2)", Math. Comp. 16 (1962):
153  *      x^32 + x^7 + x^5 + x^3 + x^2 + x^1 + x^0
154  *      x^31 + x^3 + x^0
155  *
156  * We reverse the bits to get:
157  *      111101010000000000000000000000001 but drop the last 1
158  *         f   5   0   0   0   0   0   0
159  *      010010000000000000000000000000001 ditto, for 31-bit crc
160  *         4   8   0   0   0   0   0   0
161  */
162
163 #define POLY 0x48000000L        /* 31-bit polynomial (avoids sign problems) */
164
165 static guint CrcTable[128];
166
167 /*
168  - crcinit - initialize tables for hash function
169  */
170 static void crcinit(void)
171 {
172   int i, j;
173   guint sum;
174
175   for (i = 0; i < 128; ++i)
176     {
177       sum = 0L;
178       for (j = 7 - 1; j >= 0; --j)
179         if (i & (1 << j))
180           sum ^= POLY >> j;
181       CrcTable[i] = sum;
182     }
183 }
184
185 /*
186  - hash - Honeyman's nice hashing function
187  */
188 static guint
189 honeyman_hash (gconstpointer key)
190 {
191   const gchar *name = (const gchar *) key;
192   gint size;
193   guint sum = 0;
194
195   g_assert (name != NULL);
196   g_assert (*name != 0);
197
198   size = strlen (name);
199
200   while (size--)
201     sum = (sum >> 7) ^ CrcTable[(sum ^ (*name++)) & 0x7f];
202
203   return sum;
204 }
205
206
207 static gboolean
208 second_hash_cmp (gconstpointer a, gconstpointer b)
209 {
210   return strcmp (a, b) == 0;
211 }
212
213
214
215 static guint
216 one_hash (gconstpointer key)
217 {
218   return 1;
219 }
220
221
222 static void
223 not_even_foreach (gpointer key,
224                   gpointer value,
225                   gpointer user_data)
226 {
227   const char *_key = (const char *) key;
228   const char *_value = (const char *) value;
229   int i;
230   char val [20];
231
232   g_assert (_key != NULL);
233   g_assert (*_key != 0);
234   g_assert (_value != NULL);
235   g_assert (*_value != 0);
236
237   i = atoi (_key);
238
239   sprintf (val, "%d value", i);
240   g_assert (strcmp (_value, val) == 0);
241
242   g_assert ((i % 2) != 0);
243   g_assert (i != 3);
244 }
245
246
247 static gboolean
248 remove_even_foreach (gpointer key,
249                      gpointer value,
250                      gpointer user_data)
251 {
252   const char *_key = (const char *) key;
253   const char *_value = (const char *) value;
254   int i;
255   char val [20];
256
257   g_assert (_key != NULL);
258   g_assert (*_key != 0);
259   g_assert (_value != NULL);
260   g_assert (*_value != 0);
261
262   i = atoi (_key);
263
264   sprintf (val, "%d value", i);
265   g_assert (strcmp (_value, val) == 0);
266
267   return ((i % 2) == 0) ? TRUE : FALSE;
268 }
269
270
271
272
273 static void
274 second_hash_test (gconstpointer d)
275 {
276   gboolean simple_hash = GPOINTER_TO_INT (d);
277
278   int       i;
279   char      key[20] = "", val[20]="", *v, *orig_key, *orig_val;
280   GHashTable     *h;
281   gboolean found;
282
283   crcinit ();
284
285   h = g_hash_table_new_full (simple_hash ? one_hash : honeyman_hash,
286                              second_hash_cmp,
287                              g_free, g_free);
288   g_assert (h != NULL);
289   for (i = 0; i < 20; i++)
290     {
291       sprintf (key, "%d", i);
292       g_assert (atoi (key) == i);
293
294       sprintf (val, "%d value", i);
295       g_assert (atoi (val) == i);
296
297       g_hash_table_insert (h, g_strdup (key), g_strdup (val));
298     }
299
300   g_assert (g_hash_table_size (h) == 20);
301
302   for (i = 0; i < 20; i++)
303     {
304       sprintf (key, "%d", i);
305       g_assert (atoi(key) == i);
306
307       v = (char *) g_hash_table_lookup (h, key);
308
309       g_assert (v != NULL);
310       g_assert (*v != 0);
311       g_assert (atoi (v) == i);
312     }
313
314   sprintf (key, "%d", 3);
315   g_hash_table_remove (h, key);
316   g_assert (g_hash_table_size (h) == 19);
317   g_hash_table_foreach_remove (h, remove_even_foreach, NULL);
318   g_assert (g_hash_table_size (h) == 9);
319   g_hash_table_foreach (h, not_even_foreach, NULL);
320
321   for (i = 0; i < 20; i++)
322     {
323       sprintf (key, "%d", i);
324       g_assert (atoi(key) == i);
325
326       sprintf (val, "%d value", i);
327       g_assert (atoi (val) == i);
328
329       orig_key = orig_val = NULL;
330       found = g_hash_table_lookup_extended (h, key,
331                                             (gpointer)&orig_key,
332                                             (gpointer)&orig_val);
333       if ((i % 2) == 0 || i == 3)
334         {
335           g_assert (!found);
336           continue;
337         }
338
339       g_assert (found);
340
341       g_assert (orig_key != NULL);
342       g_assert (strcmp (key, orig_key) == 0);
343
344       g_assert (orig_val != NULL);
345       g_assert (strcmp (val, orig_val) == 0);
346     }
347
348   g_hash_table_destroy (h);
349 }
350
351 static gboolean
352 find_first (gpointer key,
353             gpointer value,
354             gpointer user_data)
355 {
356   gint *v = value;
357   gint *test = user_data;
358   return (*v == *test);
359 }
360
361
362 static void
363 direct_hash_test (void)
364 {
365   gint       i, rc;
366   GHashTable     *h;
367
368   h = g_hash_table_new (NULL, NULL);
369   g_assert (h != NULL);
370   for (i = 1; i <= 20; i++)
371     g_hash_table_insert (h, GINT_TO_POINTER (i),
372                          GINT_TO_POINTER (i + 42));
373
374   g_assert (g_hash_table_size (h) == 20);
375
376   for (i = 1; i <= 20; i++)
377     {
378       rc = GPOINTER_TO_INT (g_hash_table_lookup (h, GINT_TO_POINTER (i)));
379
380       g_assert (rc != 0);
381       g_assert ((rc - 42) == i);
382     }
383
384   g_hash_table_destroy (h);
385 }
386
387 static void
388 int64_hash_test (void)
389 {
390   gint       i, rc;
391   GHashTable     *h;
392   gint64     values[20];
393   gint64 key;
394
395   h = g_hash_table_new (g_int64_hash, g_int64_equal);
396   g_assert (h != NULL);
397   for (i = 0; i < 20; i++)
398     {
399       values[i] = i + 42;
400       g_hash_table_insert (h, &values[i], GINT_TO_POINTER (i + 42));
401     }
402
403   g_assert (g_hash_table_size (h) == 20);
404
405   for (i = 0; i < 20; i++)
406     {
407       key = i + 42;
408       rc = GPOINTER_TO_INT (g_hash_table_lookup (h, &key));
409
410       g_assert_cmpint (rc, ==, i + 42);
411     }
412
413   g_hash_table_destroy (h);
414 }
415
416 static void
417 double_hash_test (void)
418 {
419   gint       i, rc;
420   GHashTable     *h;
421   gdouble values[20];
422   gdouble key;
423
424   h = g_hash_table_new (g_double_hash, g_double_equal);
425   g_assert (h != NULL);
426   for (i = 0; i < 20; i++)
427     {
428       values[i] = i + 42.5;
429       g_hash_table_insert (h, &values[i], GINT_TO_POINTER (i + 42));
430     }
431
432   g_assert (g_hash_table_size (h) == 20);
433
434   for (i = 0; i < 20; i++)
435     {
436       key = i + 42.5;
437       rc = GPOINTER_TO_INT (g_hash_table_lookup (h, &key));
438
439       g_assert_cmpint (rc, ==, i + 42);
440     }
441
442   g_hash_table_destroy (h);
443 }
444
445 static void
446 string_free (gpointer data)
447 {
448   GString *s = data;
449
450   g_string_free (s, TRUE);
451 }
452
453 static void
454 string_hash_test (void)
455 {
456   gint       i, rc;
457   GHashTable     *h;
458   GString *s;
459
460   h = g_hash_table_new_full ((GHashFunc)g_string_hash, (GEqualFunc)g_string_equal, string_free, NULL);
461   g_assert (h != NULL);
462   for (i = 0; i < 20; i++)
463     {
464       s = g_string_new ("");
465       g_string_append_printf (s, "%d", i + 42);
466       g_string_append_c (s, '.');
467       g_string_prepend_unichar (s, 0x2301);
468       g_hash_table_insert (h, s, GINT_TO_POINTER (i + 42));
469     }
470
471   g_assert (g_hash_table_size (h) == 20);
472
473   s = g_string_new ("");
474   for (i = 0; i < 20; i++)
475     {
476       g_string_assign (s, "");
477       g_string_append_printf (s, "%d", i + 42);
478       g_string_append_c (s, '.');
479       g_string_prepend_unichar (s, 0x2301);
480       rc = GPOINTER_TO_INT (g_hash_table_lookup (h, s));
481
482       g_assert_cmpint (rc, ==, i + 42);
483     }
484
485   g_string_free (s, TRUE);
486   g_hash_table_destroy (h);
487 }
488
489 static void
490 set_check (gpointer key,
491            gpointer value,
492            gpointer user_data)
493 {
494   int *pi = user_data;
495   if (key != value)
496     g_assert_not_reached ();
497
498   g_assert_cmpint (atoi (key) % 7, ==, 2);
499
500   (*pi)++;
501 }
502
503 static void
504 set_hash_test (void)
505 {
506   GHashTable *hash_table =
507     g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
508   int i;
509
510   for (i = 2; i < 5000; i += 7)
511     {
512       char *s = g_strdup_printf ("%d", i);
513       g_hash_table_insert (hash_table, s, s);
514     }
515
516   i = 0;
517   g_hash_table_foreach (hash_table, set_check, &i);
518   g_assert_cmpint (i, ==, g_hash_table_size (hash_table));
519
520   /* this will cause the hash table to loose set nature */
521   g_hash_table_insert (hash_table, g_strdup ("a"), "b");
522
523   g_assert_cmpstr (g_hash_table_lookup (hash_table, "2"), ==, "2");
524   g_assert_cmpstr (g_hash_table_lookup (hash_table, "a"), ==, "b");
525
526   g_hash_table_destroy (hash_table);
527 }
528
529
530 static void
531 test_hash_misc (void)
532 {
533   GHashTable *hash_table;
534   gint i;
535   gint value = 120;
536   gint *pvalue;
537   GList *keys, *values;
538   gint keys_len, values_len;
539   GHashTableIter iter;
540   gpointer ikey, ivalue;
541   int result_array[10000];
542
543   hash_table = g_hash_table_new (my_hash, my_hash_equal);
544   fill_hash_table_and_array (hash_table);
545   pvalue = g_hash_table_find (hash_table, find_first, &value);
546   if (!pvalue || *pvalue != value)
547     g_assert_not_reached();
548
549   keys = g_hash_table_get_keys (hash_table);
550   if (!keys)
551     g_assert_not_reached ();
552
553   values = g_hash_table_get_values (hash_table);
554   if (!values)
555     g_assert_not_reached ();
556
557   keys_len = g_list_length (keys);
558   values_len = g_list_length (values);
559   if (values_len != keys_len &&  keys_len != g_hash_table_size (hash_table))
560     g_assert_not_reached ();
561
562   g_list_free (keys);
563   g_list_free (values);
564
565   init_result_array (result_array);
566   g_hash_table_iter_init (&iter, hash_table);
567   for (i = 0; i < 10000; i++)
568     {
569       g_assert (g_hash_table_iter_next (&iter, &ikey, &ivalue));
570
571       handle_pair (ikey, ivalue, result_array);
572
573       if (i % 2)
574         g_hash_table_iter_remove (&iter);
575     }
576   g_assert (! g_hash_table_iter_next (&iter, &ikey, &ivalue));
577   g_assert (g_hash_table_size (hash_table) == 5000);
578   verify_result_array (result_array);
579
580   fill_hash_table_and_array (hash_table);
581
582   init_result_array (result_array);
583   g_hash_table_foreach (hash_table, my_hash_callback, result_array);
584   verify_result_array (result_array);
585
586   for (i = 0; i < 10000; i++)
587     g_hash_table_remove (hash_table, &array[i]);
588
589   fill_hash_table_and_array (hash_table);
590
591   if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
592       g_hash_table_size (hash_table) != 5000)
593     g_assert_not_reached();
594
595   g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
596   g_hash_table_destroy (hash_table);
597 }
598
599 static gint destroy_counter;
600
601 static void
602 value_destroy (gpointer value)
603 {
604   destroy_counter++;
605 }
606
607 static void
608 test_hash_ref (void)
609 {
610   GHashTable *h;
611   GHashTableIter iter;
612   gchar *key, *value;
613   gboolean abc_seen = FALSE;
614   gboolean cde_seen = FALSE;
615   gboolean xyz_seen = FALSE;
616
617   h = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, value_destroy);
618   g_hash_table_insert (h, "abc", "ABC");
619   g_hash_table_insert (h, "cde", "CDE");
620   g_hash_table_insert (h, "xyz", "XYZ");
621
622   g_assert_cmpint (g_hash_table_size (h), == , 3);
623
624   g_hash_table_iter_init (&iter, h);
625
626   while (g_hash_table_iter_next (&iter, (gpointer*)&key, (gpointer*)&value))
627     {
628       if (strcmp (key, "abc") == 0)
629         {
630           g_assert_cmpstr (value, ==, "ABC");
631           abc_seen = TRUE;
632           g_hash_table_iter_steal (&iter);
633         }
634       else if (strcmp (key, "cde") == 0)
635         {
636           g_assert_cmpstr (value, ==, "CDE");
637           cde_seen = TRUE;
638         }
639       else if (strcmp (key, "xyz") == 0)
640         {
641           g_assert_cmpstr (value, ==, "XYZ");
642           xyz_seen = TRUE;
643         }
644     }
645   g_assert_cmpint (destroy_counter, ==, 0);
646
647   g_assert (g_hash_table_iter_get_hash_table (&iter) == h);
648   g_assert (abc_seen && cde_seen && xyz_seen);
649   g_assert_cmpint (g_hash_table_size (h), == , 2);
650
651   g_hash_table_ref (h);
652   g_hash_table_destroy (h);
653   g_assert_cmpint (g_hash_table_size (h), == , 0);
654   g_assert_cmpint (destroy_counter, ==, 2);
655   g_hash_table_insert (h, "uvw", "UVW");
656   g_hash_table_unref (h);
657   g_assert_cmpint (destroy_counter, ==, 3);
658 }
659
660 static guint
661 null_safe_str_hash (gconstpointer key)
662 {
663   if (key == NULL)
664     return 0;
665   else
666     return g_str_hash (key);
667 }
668
669 static gboolean
670 null_safe_str_equal (gconstpointer a, gconstpointer b)
671 {
672   return g_strcmp0 (a, b) == 0;
673 }
674
675 static void
676 test_lookup_null_key (void)
677 {
678   GHashTable *h;
679   gboolean res;
680   gpointer key;
681   gpointer value;
682
683   g_test_bug ("642944");
684
685   h = g_hash_table_new (null_safe_str_hash, null_safe_str_equal);
686   g_hash_table_insert (h, "abc", "ABC");
687
688   res = g_hash_table_lookup_extended (h, NULL, &key, &value);
689   g_assert (!res);
690
691   g_hash_table_insert (h, NULL, "NULL");
692
693   res = g_hash_table_lookup_extended (h, NULL, &key, &value);
694   g_assert (res);
695   g_assert_cmpstr (value, ==, "NULL");
696
697   g_hash_table_unref (h);
698 }
699
700 static gint destroy_key_counter;
701
702 static void
703 key_destroy (gpointer key)
704 {
705   destroy_key_counter++;
706 }
707
708 static void
709 test_remove_all (void)
710 {
711   GHashTable *h;
712
713   h = g_hash_table_new_full (g_str_hash, g_str_equal, key_destroy, value_destroy);
714   g_hash_table_insert (h, "abc", "ABC");
715   g_hash_table_insert (h, "cde", "CDE");
716   g_hash_table_insert (h, "xyz", "XYZ");
717
718   destroy_counter = 0;
719   destroy_key_counter = 0;
720
721   g_hash_table_steal_all (h);
722   g_assert_cmpint (destroy_counter, ==, 0);
723   g_assert_cmpint (destroy_key_counter, ==, 0);
724
725   g_hash_table_insert (h, "abc", "ABC");
726   g_hash_table_insert (h, "cde", "CDE");
727   g_hash_table_insert (h, "xyz", "XYZ");
728
729   g_hash_table_remove_all (h);
730   g_assert_cmpint (destroy_counter, ==, 3);
731   g_assert_cmpint (destroy_key_counter, ==, 3);
732
733   g_hash_table_unref (h);
734 }
735
736 typedef struct {
737   gint ref_count;
738   const gchar *key;
739 } RefCountedKey;
740
741 static guint
742 hash_func (gconstpointer key)
743 {
744   const RefCountedKey *rkey = key;
745
746   return g_str_hash (rkey->key);
747 }
748
749 static gboolean
750 eq_func (gconstpointer a, gconstpointer b)
751 {
752   const RefCountedKey *aa = a;
753   const RefCountedKey *bb = b;
754
755   return g_strcmp0 (aa->key, bb->key) == 0;
756 }
757
758 static void
759 key_unref (gpointer data)
760 {
761   RefCountedKey *key = data;
762
763   g_assert (key->ref_count > 0);
764
765   key->ref_count -= 1;
766
767   if (key->ref_count == 0)
768     g_free (key);
769 }
770
771 static RefCountedKey *
772 key_ref (RefCountedKey *key)
773 {
774   key->ref_count += 1;
775
776   return key;
777 }
778
779 static RefCountedKey *
780 key_new (const gchar *key)
781 {
782   RefCountedKey *rkey;
783
784   rkey = g_new (RefCountedKey, 1);
785
786   rkey->ref_count = 1;
787   rkey->key = key;
788
789   return rkey;
790 }
791
792 static void
793 set_ref_hash_test (void)
794 {
795   GHashTable *h;
796   RefCountedKey *key1;
797   RefCountedKey *key2;
798
799   h = g_hash_table_new_full (hash_func, eq_func, key_unref, key_unref);
800
801   key1 = key_new ("a");
802   key2 = key_new ("a");
803
804   g_assert_cmpint (key1->ref_count, ==, 1);
805   g_assert_cmpint (key2->ref_count, ==, 1);
806
807   g_hash_table_insert (h, key_ref (key1), key_ref (key1));
808
809   g_assert_cmpint (key1->ref_count, ==, 3);
810   g_assert_cmpint (key2->ref_count, ==, 1);
811
812   g_hash_table_replace (h, key_ref (key2), key_ref (key2));
813
814   g_assert_cmpint (key1->ref_count, ==, 1);
815   g_assert_cmpint (key2->ref_count, ==, 3);
816
817   g_hash_table_remove (h, key1);
818
819   g_assert_cmpint (key1->ref_count, ==, 1);
820   g_assert_cmpint (key2->ref_count, ==, 1);
821
822   g_hash_table_unref (h);
823
824   key_unref (key1);
825   key_unref (key2);
826 }
827
828 GHashTable *h;
829
830 static void
831 value_destroy_insert (gpointer value)
832 {
833   g_hash_table_remove_all (h);
834 }
835
836 static void
837 test_destroy_modify (void)
838 {
839   g_test_bug ("650459");
840
841   h = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, value_destroy_insert);
842
843   g_hash_table_insert (h, g_strdup ("a"), g_strdup ("b"));
844   g_hash_table_insert (h, g_strdup ("c"), g_strdup ("d"));
845   g_hash_table_insert (h, g_strdup ("e"), g_strdup ("f"));
846   g_hash_table_insert (h, g_strdup ("g"), g_strdup ("h"));
847   g_hash_table_insert (h, g_strdup ("h"), g_strdup ("k"));
848   g_hash_table_insert (h, g_strdup ("a"), g_strdup ("c"));
849
850   g_hash_table_remove (h, "c");
851   g_hash_table_remove (h, "e");
852
853   g_hash_table_unref (h);
854 }
855
856 static gboolean
857 find_str (gpointer key, gpointer value, gpointer data)
858 {
859   return g_str_equal (key, data);
860 }
861
862 static void
863 test_find (void)
864 {
865   GHashTable *hash;
866   const gchar *value;
867
868   hash = g_hash_table_new (g_str_hash, g_str_equal);
869
870   g_hash_table_insert (hash, "a", "A");
871   g_hash_table_insert (hash, "b", "B");
872   g_hash_table_insert (hash, "c", "C");
873   g_hash_table_insert (hash, "d", "D");
874   g_hash_table_insert (hash, "e", "E");
875   g_hash_table_insert (hash, "f", "F");
876
877   value = g_hash_table_find (hash, find_str, "a");
878   g_assert_cmpstr (value, ==, "A");
879
880   value = g_hash_table_find (hash, find_str, "b");
881   g_assert_cmpstr (value, ==, "B");
882
883   value = g_hash_table_find (hash, find_str, "c");
884   g_assert_cmpstr (value, ==, "C");
885
886   value = g_hash_table_find (hash, find_str, "d");
887   g_assert_cmpstr (value, ==, "D");
888
889   value = g_hash_table_find (hash, find_str, "e");
890   g_assert_cmpstr (value, ==, "E");
891
892   value = g_hash_table_find (hash, find_str, "f");
893   g_assert_cmpstr (value, ==, "F");
894
895   value = g_hash_table_find (hash, find_str, "0");
896   g_assert (value == NULL);
897
898   g_hash_table_unref (hash);
899 }
900
901 gboolean seen_key[6];
902
903 static void
904 foreach_func (gpointer key, gpointer value, gpointer data)
905 {
906   seen_key[((char*)key)[0] - 'a'] = TRUE;
907 }
908
909 static void
910 test_foreach (void)
911 {
912   GHashTable *hash;
913   gint i;
914
915   hash = g_hash_table_new (g_str_hash, g_str_equal);
916
917   g_hash_table_insert (hash, "a", "A");
918   g_hash_table_insert (hash, "b", "B");
919   g_hash_table_insert (hash, "c", "C");
920   g_hash_table_insert (hash, "d", "D");
921   g_hash_table_insert (hash, "e", "E");
922   g_hash_table_insert (hash, "f", "F");
923
924   for (i = 0; i < 6; i++)
925     seen_key[i] = FALSE;
926
927   g_hash_table_foreach (hash, foreach_func, NULL);
928
929   for (i = 0; i < 6; i++)
930     g_assert (seen_key[i]);
931
932   g_hash_table_unref (hash);
933 }
934
935 int
936 main (int argc, char *argv[])
937 {
938   g_test_init (&argc, &argv, NULL);
939
940   g_test_bug_base ("http://bugzilla.gnome.org/");
941
942   g_test_add_func ("/hash/misc", test_hash_misc);
943   g_test_add_data_func ("/hash/one", GINT_TO_POINTER (TRUE), second_hash_test);
944   g_test_add_data_func ("/hash/honeyman", GINT_TO_POINTER (FALSE), second_hash_test);
945   g_test_add_func ("/hash/direct", direct_hash_test);
946   g_test_add_func ("/hash/int64", int64_hash_test);
947   g_test_add_func ("/hash/double", double_hash_test);
948   g_test_add_func ("/hash/string", string_hash_test);
949   g_test_add_func ("/hash/set", set_hash_test);
950   g_test_add_func ("/hash/set-ref", set_ref_hash_test);
951   g_test_add_func ("/hash/ref", test_hash_ref);
952   g_test_add_func ("/hash/remove-all", test_remove_all);
953   g_test_add_func ("/hash/find", test_find);
954   g_test_add_func ("/hash/foreach", test_foreach);
955
956   /* tests for individual bugs */
957   g_test_add_func ("/hash/lookup-null-key", test_lookup_null_key);
958   g_test_add_func ("/hash/destroy-modify", test_destroy_modify);
959
960   return g_test_run ();
961
962 }