reimplemented the endian stuff, using inline asm for x86. #define g_htonl
[platform/upstream/glib.git] / testglib.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #undef G_LOG_DOMAIN
20
21 #include <stdio.h>
22 #include <string.h>
23 #include "glib.h"
24
25 int array[10000];
26 gboolean failed = FALSE;
27
28 #define TEST(m,cond)    G_STMT_START { failed = !(cond); \
29 if (failed) \
30   { if (!m) \
31       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
32     else \
33       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
34   } \
35 else \
36   g_print ("."); fflush (stdout); \
37 } G_STMT_END
38
39 #define C2P(c)          ((gpointer) ((long) (c)))
40 #define P2C(p)          ((gchar) ((long) (p)))
41
42 static gboolean
43 node_build_string (GNode    *node,
44                    gpointer  data)
45 {
46   gchar **p = data;
47   gchar *string;
48   gchar c[2] = "_";
49
50   c[0] = P2C (node->data);
51
52   string = g_strconcat (*p ? *p : "", c, NULL);
53   g_free (*p);
54   *p = string;
55
56   return FALSE;
57 }
58
59 static void
60 g_node_test (void)
61 {
62   GNode *root;
63   GNode *node;
64   GNode *node_B;
65   GNode *node_F;
66   GNode *node_G;
67   GNode *node_J;
68   guint i;
69   gchar *tstring;
70
71   g_print ("checking n-way trees: ");
72   failed = FALSE;
73
74   root = g_node_new (C2P ('A'));
75   TEST (NULL, g_node_depth (root) == 1 && g_node_max_height (root) == 1);
76
77   node_B = g_node_new (C2P ('B'));
78   g_node_append (root, node_B);
79   TEST (NULL, root->children == node_B);
80
81   g_node_append_data (node_B, C2P ('E'));
82   g_node_prepend_data (node_B, C2P ('C'));
83   g_node_insert (node_B, 1, g_node_new (C2P ('D')));
84
85   node_F = g_node_new (C2P ('F'));
86   g_node_append (root, node_F);
87   TEST (NULL, root->children->next == node_F);
88
89   node_G = g_node_new (C2P ('G'));
90   g_node_append (node_F, node_G);
91   node_J = g_node_new (C2P ('J'));
92   g_node_prepend (node_G, node_J);
93   g_node_insert (node_G, 42, g_node_new (C2P ('K')));
94   g_node_insert_data (node_G, 0, C2P ('H'));
95   g_node_insert (node_G, 1, g_node_new (C2P ('I')));
96
97   TEST (NULL, g_node_depth (root) == 1);
98   TEST (NULL, g_node_max_height (root) == 4);
99   TEST (NULL, g_node_depth (node_G->children->next) == 4);
100   TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_LEAFS) == 7);
101   TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4);
102   TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_ALL) == 11);
103   TEST (NULL, g_node_max_height (node_F) == 3);
104   TEST (NULL, g_node_n_children (node_G) == 4);
105   TEST (NULL, g_node_find_child (root, G_TRAVERSE_ALL, C2P ('F')) == node_F);
106   TEST (NULL, g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL);
107   TEST (NULL, g_node_find (root, G_IN_ORDER, G_TRAVERSE_LEAFS, C2P ('J')) == node_J);
108
109   for (i = 0; i < g_node_n_children (node_B); i++)
110     {
111       node = g_node_nth_child (node_B, i);
112       TEST (NULL, P2C (node->data) == ('C' + i));
113     }
114   
115   for (i = 0; i < g_node_n_children (node_G); i++)
116     TEST (NULL, g_node_child_position (node_G, g_node_nth_child (node_G, i)) == i);
117
118   /* we have built:                    A
119    *                                 /   \
120    *                               B       F
121    *                             / | \       \
122    *                           C   D   E       G
123    *                                         / /\ \
124    *                                       H  I  J  K
125    *
126    * for in-order traversal, 'G' is considered to be the "left"
127    * child of 'F', which will cause 'F' to be the last node visited.
128    */
129
130   tstring = NULL;
131   g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
132   TEST (tstring, strcmp (tstring, "ABCDEFGHIJK") == 0);
133   g_free (tstring); tstring = NULL;
134   g_node_traverse (root, G_POST_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
135   TEST (tstring, strcmp (tstring, "CDEBHIJKGFA") == 0);
136   g_free (tstring); tstring = NULL;
137   g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
138   TEST (tstring, strcmp (tstring, "CBDEAHGIJKF") == 0);
139   g_free (tstring); tstring = NULL;
140   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
141   TEST (tstring, strcmp (tstring, "ABFCDEGHIJK") == 0);
142   g_free (tstring); tstring = NULL;
143   
144   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_LEAFS, -1, node_build_string, &tstring);
145   TEST (tstring, strcmp (tstring, "CDEHIJK") == 0);
146   g_free (tstring); tstring = NULL;
147   g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring);
148   TEST (tstring, strcmp (tstring, "ABFG") == 0);
149   g_free (tstring); tstring = NULL;
150
151   g_node_reverse_children (node_B);
152   g_node_reverse_children (node_G);
153
154   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
155   TEST (tstring, strcmp (tstring, "ABFEDCGKJIH") == 0);
156   g_free (tstring); tstring = NULL;
157   
158   g_node_destroy (root);
159
160   /* allocation tests */
161
162   root = g_node_new (NULL);
163   node = root;
164
165   for (i = 0; i < 2048; i++)
166     {
167       g_node_append (node, g_node_new (NULL));
168       if ((i%5) == 4)
169         node = node->children->next;
170     }
171   TEST (NULL, g_node_max_height (root) > 100);
172   TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
173
174   g_node_destroy (root);
175   
176   if (!failed)
177     g_print ("ok\n");
178 }
179
180 gboolean
181 my_hash_callback_remove (gpointer key,
182                          gpointer value,
183                          gpointer user_data)
184 {
185   int *d = value;
186
187   if ((*d) % 2)
188     return TRUE;
189
190   return FALSE;
191 }
192
193 void
194 my_hash_callback_remove_test (gpointer key,
195                               gpointer value,
196                               gpointer user_data)
197 {
198   int *d = value;
199
200   if ((*d) % 2)
201     g_print ("bad!\n");
202 }
203
204 void
205 my_hash_callback (gpointer key,
206                   gpointer value,
207                   gpointer user_data)
208 {
209   int *d = value;
210   *d = 1;
211 }
212
213 guint
214 my_hash (gconstpointer key)
215 {
216   return (guint) *((const gint*) key);
217 }
218
219 gint
220 my_hash_compare (gconstpointer a,
221                  gconstpointer b)
222 {
223   return *((const gint*) a) == *((const gint*) b);
224 }
225
226 gint
227 my_list_compare_one (gconstpointer a, gconstpointer b)
228 {
229   gint one = *((const gint*)a);
230   gint two = *((const gint*)b);
231   return one-two;
232 }
233
234 gint
235 my_list_compare_two (gconstpointer a, gconstpointer b)
236 {
237   gint one = *((const gint*)a);
238   gint two = *((const gint*)b);
239   return two-one;
240 }
241
242 /* void
243 my_list_print (gpointer a, gpointer b)
244 {
245   gint three = *((gint*)a);
246   g_print("%d", three);
247 }; */
248
249 gint
250 my_compare (gconstpointer a,
251             gconstpointer b)
252 {
253   const char *cha = a;
254   const char *chb = b;
255
256   return *cha - *chb;
257 }
258
259 gint
260 my_traverse (gpointer key,
261              gpointer value,
262              gpointer data)
263 {
264   char *ch = key;
265   g_print ("%c ", *ch);
266   return FALSE;
267 }
268
269 int
270 main (int   argc,
271       char *argv[])
272 {
273   GList *list, *t;
274   GSList *slist, *st;
275   GHashTable *hash_table;
276   GMemChunk *mem_chunk;
277   GStringChunk *string_chunk;
278   GTimer *timer;
279   gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
280   gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
281   gchar *string;
282
283   gchar *mem[10000], *tmp_string, *tmp_string_2;
284   gint i, j;
285   GArray *garray;
286   GPtrArray *gparray;
287   GByteArray *gbarray;
288   GString *string1, *string2;
289   GTree *tree;
290   char chars[62];
291   GRelation *relation;
292   GTuples *tuples;
293   gint data [1024];
294   struct {
295     gchar *filename;
296     gchar *dirname;
297   } dirname_checks[] = {
298 #ifndef NATIVE_WIN32
299     { "/", "/" },
300     { "////", "/" },
301     { ".////", "." },
302     { ".", "." },
303     { "..", "." },
304     { "../", ".." },
305     { "..////", ".." },
306     { "", "." },
307     { "a/b", "a" },
308     { "a/b/", "a/b" },
309     { "c///", "c" },
310 #else
311     { "\\", "\\" },
312     { ".\\\\\\\\", "." },
313     { ".", "." },
314     { "..", "." },
315     { "..\\", ".." },
316     { "..\\\\\\\\", ".." },
317     { "", "." },
318     { "a\\b", "a" },
319     { "a\\b\\", "a\\b" },
320     { "c\\\\\\", "c" },
321 #endif
322   };
323   guint n_dirname_checks = sizeof (dirname_checks) / sizeof (dirname_checks[0]);
324   guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
325   guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
326 #ifdef HAVE_GINT64
327   guint64 gu64t1 = 0x1d636b02300a7aa7U, gu64t2 = 0xa77a0a30026b631dU;
328 #endif
329
330   g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
331            glib_major_version,
332            glib_minor_version,
333            glib_micro_version,
334            glib_interface_age,
335            glib_binary_age);
336
337   string = g_get_current_dir ();
338   g_print ("cwd: %s\n", string);
339   g_free (string);
340
341   /* type sizes */
342   g_print ("checking size of gint8: %d", (int)sizeof (gint8));
343   TEST (NULL, sizeof (gint8) == 1);
344   g_print ("\nchecking size of gint16: %d", (int)sizeof (gint16));
345   TEST (NULL, sizeof (gint16) == 2);
346   g_print ("\nchecking size of gint32: %d", (int)sizeof (gint32));
347   TEST (NULL, sizeof (gint32) == 4);
348 #ifdef  HAVE_GINT64
349   g_print ("\nchecking size of gint64: %d", (int)sizeof (gint64));
350   TEST (NULL, sizeof (gint64) == 8);
351 #endif  /* HAVE_GINT64 */
352   g_print ("\n");
353
354   g_print ("checking g_dirname()...");
355   for (i = 0; i < n_dirname_checks; i++)
356     {
357       gchar *dirname;
358
359       dirname = g_dirname (dirname_checks[i].filename);
360       if (strcmp (dirname, dirname_checks[i].dirname) != 0)
361         {
362           g_print ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
363                    dirname_checks[i].filename,
364                    dirname_checks[i].dirname,
365                    dirname);
366           n_dirname_checks = 0;
367         }
368       g_free (dirname);
369     }
370   if (n_dirname_checks)
371     g_print ("ok\n");
372
373   g_print ("checking doubly linked lists...");
374
375   list = NULL;
376   for (i = 0; i < 10; i++)
377     list = g_list_append (list, &nums[i]);
378   list = g_list_reverse (list);
379
380   for (i = 0; i < 10; i++)
381     {
382       t = g_list_nth (list, i);
383       if (*((gint*) t->data) != (9 - i))
384         g_error ("Regular insert failed");
385     }
386
387   for (i = 0; i < 10; i++)
388     if(g_list_position(list, g_list_nth (list, i)) != i)
389       g_error("g_list_position does not seem to be the inverse of g_list_nth\n");
390
391   g_list_free (list);
392   list = NULL;
393
394   for (i = 0; i < 10; i++)
395     list = g_list_insert_sorted (list, &morenums[i], my_list_compare_one);
396
397   /*
398   g_print("\n");
399   g_list_foreach (list, my_list_print, NULL);
400   */
401
402   for (i = 0; i < 10; i++)
403     {
404       t = g_list_nth (list, i);
405       if (*((gint*) t->data) != i)
406          g_error ("Sorted insert failed");
407     }
408
409   g_list_free (list);
410   list = NULL;
411
412   for (i = 0; i < 10; i++)
413     list = g_list_insert_sorted (list, &morenums[i], my_list_compare_two);
414
415   /*
416   g_print("\n");
417   g_list_foreach (list, my_list_print, NULL);
418   */
419
420   for (i = 0; i < 10; i++)
421     {
422       t = g_list_nth (list, i);
423       if (*((gint*) t->data) != (9 - i))
424          g_error ("Sorted insert failed");
425     }
426
427   g_list_free (list);
428
429   g_print ("ok\n");
430
431
432   g_print ("checking singly linked lists...");
433
434   slist = NULL;
435   for (i = 0; i < 10; i++)
436     slist = g_slist_append (slist, &nums[i]);
437   slist = g_slist_reverse (slist);
438
439   for (i = 0; i < 10; i++)
440     {
441       st = g_slist_nth (slist, i);
442       if (*((gint*) st->data) != (9 - i))
443         g_error ("failed");
444     }
445
446   g_slist_free (slist);
447   slist = NULL;
448
449   for (i = 0; i < 10; i++)
450     slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_one);
451
452   /*
453   g_print("\n");
454   g_slist_foreach (slist, my_list_print, NULL);
455   */
456
457   for (i = 0; i < 10; i++)
458     {
459       st = g_slist_nth (slist, i);
460       if (*((gint*) st->data) != i)
461          g_error ("Sorted insert failed");
462     }
463
464   g_slist_free(slist);
465   slist = NULL;
466
467   for (i = 0; i < 10; i++)
468     slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_two);
469
470   /*
471   g_print("\n");
472   g_slist_foreach (slist, my_list_print, NULL);
473   */
474
475   for (i = 0; i < 10; i++)
476     {
477       st = g_slist_nth (slist, i);
478       if (*((gint*) st->data) != (9 - i))
479          g_error("Sorted insert failed");
480     }
481
482   g_slist_free(slist);
483
484   g_print ("ok\n");
485
486
487   g_print ("checking binary trees...\n");
488
489   tree = g_tree_new (my_compare);
490   i = 0;
491   for (j = 0; j < 10; j++, i++)
492     {
493       chars[i] = '0' + j;
494       g_tree_insert (tree, &chars[i], &chars[i]);
495     }
496   for (j = 0; j < 26; j++, i++)
497     {
498       chars[i] = 'A' + j;
499       g_tree_insert (tree, &chars[i], &chars[i]);
500     }
501   for (j = 0; j < 26; j++, i++)
502     {
503       chars[i] = 'a' + j;
504       g_tree_insert (tree, &chars[i], &chars[i]);
505     }
506
507   g_print ("tree height: %d\n", g_tree_height (tree));
508   g_print ("tree nnodes: %d\n", g_tree_nnodes (tree));
509
510   g_print ("tree: ");
511   g_tree_traverse (tree, my_traverse, G_IN_ORDER, NULL);
512   g_print ("\n");
513
514   for (i = 0; i < 10; i++)
515     g_tree_remove (tree, &chars[i]);
516
517   g_print ("tree height: %d\n", g_tree_height (tree));
518   g_print ("tree nnodes: %d\n", g_tree_nnodes (tree));
519
520   g_print ("tree: ");
521   g_tree_traverse (tree, my_traverse, G_IN_ORDER, NULL);
522   g_print ("\n");
523
524   g_print ("ok\n");
525
526
527   /* check n-way trees */
528   g_node_test ();
529
530   g_print ("checking mem chunks...");
531
532   mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE);
533
534   for (i = 0; i < 10000; i++)
535     {
536       mem[i] = g_chunk_new (gchar, mem_chunk);
537
538       for (j = 0; j < 50; j++)
539         mem[i][j] = i * j;
540     }
541
542   for (i = 0; i < 10000; i++)
543     {
544       g_mem_chunk_free (mem_chunk, mem[i]);
545     }
546
547   g_print ("ok\n");
548
549
550   g_print ("checking hash tables...");
551
552   hash_table = g_hash_table_new (my_hash, my_hash_compare);
553   for (i = 0; i < 10000; i++)
554     {
555       array[i] = i;
556       g_hash_table_insert (hash_table, &array[i], &array[i]);
557     }
558   g_hash_table_foreach (hash_table, my_hash_callback, NULL);
559
560   for (i = 0; i < 10000; i++)
561     if (array[i] == 0)
562       g_print ("%d\n", i);
563
564   for (i = 0; i < 10000; i++)
565     g_hash_table_remove (hash_table, &array[i]);
566
567   for (i = 0; i < 10000; i++)
568     {
569       array[i] = i;
570       g_hash_table_insert (hash_table, &array[i], &array[i]);
571     }
572
573   if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
574       g_hash_table_size (hash_table) != 5000)
575     g_print ("bad!\n");
576
577   g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
578
579
580   g_hash_table_destroy (hash_table);
581
582   g_print ("ok\n");
583
584
585   g_print ("checking string chunks...");
586
587   string_chunk = g_string_chunk_new (1024);
588
589   for (i = 0; i < 100000; i ++)
590     {
591       tmp_string = g_string_chunk_insert (string_chunk, "hi pete");
592
593       if (strcmp ("hi pete", tmp_string) != 0)
594         g_error ("string chunks are broken.\n");
595     }
596
597   tmp_string_2 = g_string_chunk_insert_const (string_chunk, tmp_string);
598
599   g_assert (tmp_string_2 != tmp_string &&
600             strcmp(tmp_string_2, tmp_string) == 0);
601
602   tmp_string = g_string_chunk_insert_const (string_chunk, tmp_string);
603
604   g_assert (tmp_string_2 == tmp_string);
605
606   g_string_chunk_free (string_chunk);
607
608   g_print ("ok\n");
609
610
611   g_print ("checking arrays...");
612
613   garray = g_array_new (FALSE, FALSE, sizeof (gint));
614   for (i = 0; i < 10000; i++)
615     g_array_append_val (garray, i);
616
617   for (i = 0; i < 10000; i++)
618     if (g_array_index (garray, gint, i) != i)
619       g_print ("uh oh: %d ( %d )\n", g_array_index (garray, gint, i), i);
620
621   g_array_free (garray, TRUE);
622
623   garray = g_array_new (FALSE, FALSE, sizeof (gint));
624   for (i = 0; i < 100; i++)
625     g_array_prepend_val (garray, i);
626
627   for (i = 0; i < 100; i++)
628     if (g_array_index (garray, gint, i) != (100 - i - 1))
629       g_print ("uh oh: %d ( %d )\n", g_array_index (garray, gint, i), 100 - i - 1);
630
631   g_array_free (garray, TRUE);
632
633   g_print ("ok\n");
634
635
636   g_print ("checking strings...");
637
638   string1 = g_string_new ("hi pete!");
639   string2 = g_string_new ("");
640
641   g_assert (strcmp ("hi pete!", string1->str) == 0);
642
643   for (i = 0; i < 10000; i++)
644     g_string_append_c (string1, 'a'+(i%26));
645
646 #if !(defined (_MSC_VER) || defined (__LCC__))
647   /* MSVC and LCC use the same run-time C library, which doesn't like
648      the %10000.10000f format... */
649   g_string_sprintf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
650                     "this pete guy sure is a wuss, like he's the number ",
651                     1,
652                     " wuss.  everyone agrees.\n",
653                     string1->str,
654                     10, 666, 15, 15, 666.666666666, 666.666666666);
655 #else
656   g_string_sprintf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%100.100f",
657                     "this pete guy sure is a wuss, like he's the number ",
658                     1,
659                     " wuss.  everyone agrees.\n",
660                     string1->str,
661                     10, 666, 15, 15, 666.666666666, 666.666666666);
662 #endif
663
664   g_print ("string2 length = %d...\n", string2->len);
665   string2->str[70] = '\0';
666   g_print ("first 70 chars:\n%s\n", string2->str);
667   string2->str[141] = '\0';
668   g_print ("next 70 chars:\n%s\n", string2->str+71);
669   string2->str[212] = '\0';
670   g_print ("and next 70:\n%s\n", string2->str+142);
671   g_print ("last 70 chars:\n%s\n", string2->str+string2->len - 70);
672
673   g_print ("ok\n");
674
675   g_print ("checking timers...\n");
676
677   timer = g_timer_new ();
678   g_print ("  spinning for 3 seconds...\n");
679
680   g_timer_start (timer);
681   while (g_timer_elapsed (timer, NULL) < 3)
682     ;
683
684   g_timer_stop (timer);
685   g_timer_destroy (timer);
686
687   g_print ("ok\n");
688
689   g_print ("checking g_strcasecmp...");
690   g_assert (g_strcasecmp ("FroboZZ", "frobozz") == 0);
691   g_assert (g_strcasecmp ("frobozz", "frobozz") == 0);
692   g_assert (g_strcasecmp ("frobozz", "FROBOZZ") == 0);
693   g_assert (g_strcasecmp ("FROBOZZ", "froboz") != 0);
694   g_assert (g_strcasecmp ("", "") == 0);
695   g_assert (g_strcasecmp ("!#%&/()", "!#%&/()") == 0);
696   g_assert (g_strcasecmp ("a", "b") < 0);
697   g_assert (g_strcasecmp ("a", "B") < 0);
698   g_assert (g_strcasecmp ("A", "b") < 0);
699   g_assert (g_strcasecmp ("A", "B") < 0);
700   g_assert (g_strcasecmp ("b", "a") > 0);
701   g_assert (g_strcasecmp ("b", "A") > 0);
702   g_assert (g_strcasecmp ("B", "a") > 0);
703   g_assert (g_strcasecmp ("B", "A") > 0);
704
705   g_print ("ok\n");
706
707   /* g_debug (argv[0]); */
708
709   /* Relation tests */
710
711   g_print ("checking relations...");
712
713   relation = g_relation_new (2);
714
715   g_relation_index (relation, 0, g_int_hash, g_int_equal);
716   g_relation_index (relation, 1, g_int_hash, g_int_equal);
717
718   for (i = 0; i < 1024; i += 1)
719     data[i] = i;
720
721   for (i = 1; i < 1023; i += 1)
722     {
723       g_relation_insert (relation, data + i, data + i + 1);
724       g_relation_insert (relation, data + i, data + i - 1);
725     }
726
727   for (i = 2; i < 1022; i += 1)
728     {
729       g_assert (! g_relation_exists (relation, data + i, data + i));
730       g_assert (! g_relation_exists (relation, data + i, data + i + 2));
731       g_assert (! g_relation_exists (relation, data + i, data + i - 2));
732     }
733
734   for (i = 1; i < 1023; i += 1)
735     {
736       g_assert (g_relation_exists (relation, data + i, data + i + 1));
737       g_assert (g_relation_exists (relation, data + i, data + i - 1));
738     }
739
740   for (i = 2; i < 1022; i += 1)
741     {
742       g_assert (g_relation_count (relation, data + i, 0) == 2);
743       g_assert (g_relation_count (relation, data + i, 1) == 2);
744     }
745
746   g_assert (g_relation_count (relation, data, 0) == 0);
747
748   g_assert (g_relation_count (relation, data + 42, 0) == 2);
749   g_assert (g_relation_count (relation, data + 43, 1) == 2);
750   g_assert (g_relation_count (relation, data + 41, 1) == 2);
751   g_relation_delete (relation, data + 42, 0);
752   g_assert (g_relation_count (relation, data + 42, 0) == 0);
753   g_assert (g_relation_count (relation, data + 43, 1) == 1);
754   g_assert (g_relation_count (relation, data + 41, 1) == 1);
755
756   tuples = g_relation_select (relation, data + 200, 0);
757
758   g_assert (tuples->len == 2);
759
760 #if 0
761   for (i = 0; i < tuples->len; i += 1)
762     {
763       printf ("%d %d\n",
764               *(gint*) g_tuples_index (tuples, i, 0),
765               *(gint*) g_tuples_index (tuples, i, 1));
766     }
767 #endif
768
769   g_assert (g_relation_exists (relation, data + 300, data + 301));
770   g_relation_delete (relation, data + 300, 0);
771   g_assert (!g_relation_exists (relation, data + 300, data + 301));
772
773   g_tuples_destroy (tuples);
774
775   g_relation_destroy (relation);
776
777   relation = NULL;
778
779   g_print ("ok\n");
780
781   g_print ("checking pointer arrays...");
782
783   gparray = g_ptr_array_new ();
784   for (i = 0; i < 10000; i++)
785     g_ptr_array_add (gparray, GINT_TO_POINTER (i));
786
787   for (i = 0; i < 10000; i++)
788     if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
789       g_print ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
790
791   g_ptr_array_free (gparray, TRUE);
792
793   g_print ("ok\n");
794
795
796   g_print ("checking byte arrays...");
797
798   gbarray = g_byte_array_new ();
799   for (i = 0; i < 10000; i++)
800     g_byte_array_append (gbarray, (guint8*) "abcd", 4);
801
802   for (i = 0; i < 10000; i++)
803     {
804       g_assert (gbarray->data[4*i] == 'a');
805       g_assert (gbarray->data[4*i+1] == 'b');
806       g_assert (gbarray->data[4*i+2] == 'c');
807       g_assert (gbarray->data[4*i+3] == 'd');
808     }
809
810   g_byte_array_free (gbarray, TRUE);
811   g_print ("ok\n");
812
813   g_printerr ("g_log tests:");
814   g_warning ("harmless warning with parameters: %d %s %#x", 42, "Boo", 12345);
815   g_message ("the next warning is a test:");
816   string = NULL;
817   g_print (string);
818
819   g_print ("endian macro tests...");
820 #if G_BYTE_ORDER == G_BIG_ENDIAN
821   g_print ("big endian...");
822 #else
823   g_print ("little endian...");
824 #endif
825   g_assert (GUINT16_SWAP_LE_BE (gu16t1) == gu16t2);  
826   g_assert (GUINT32_SWAP_LE_BE (gu32t1) == gu32t2);  
827 #ifdef HAVE_GINT64
828   g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);  
829 #endif
830   g_print ("ok\n");
831
832   return 0;
833 }