os/ossrv/glib/tests/testglib.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* GLIB - Library of useful routines for C programming
     2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
     3  * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     4  * This library is free software; you can redistribute it and/or
     5  * modify it under the terms of the GNU Lesser 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  * Lesser General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU Lesser 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 
    20 /*
    21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
    22  * file for a list of people on the GLib Team.  See the ChangeLog
    23  * files for a list of changes.  These files are distributed with
    24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
    25  */
    26 
    27 #include "config.h"
    28 
    29 #undef GLIB_COMPILATION
    30 
    31 #include <stdio.h>
    32 #include <string.h>
    33 #include <errno.h>
    34 
    35 #include "glib.h"
    36 #include <glib/gstdio.h>
    37 
    38 #ifdef __SYMBIAN32__
    39 #include <sys/stat.h>
    40 #include <glib_global.h>
    41 #include "mrt2_glib2_test.h"
    42 #endif /*__SYMBIAN32__*/
    43 
    44 #ifdef HAVE_UNISTD_H
    45 #include <unistd.h>
    46 #endif
    47 
    48 #ifdef G_OS_WIN32
    49 #include <io.h>			/* For read(), write() etc */
    50 #endif
    51 
    52 
    53 #define GLIB_TEST_STRING "el dorado "
    54 #define GLIB_TEST_STRING_5 "el do"
    55 
    56 
    57 /* --- variables --- */
    58 static gint test_nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    59 static gint more_nums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
    60 
    61 /* --- functions --- */
    62 static gint
    63 my_list_compare_one (gconstpointer a, gconstpointer b)
    64 {
    65   gint one = *((const gint*)a);
    66   gint two = *((const gint*)b);
    67   return one-two;
    68 }
    69 
    70 static gint
    71 my_list_compare_two (gconstpointer a, gconstpointer b)
    72 {
    73   gint one = *((const gint*)a);
    74   gint two = *((const gint*)b);
    75   return two-one;
    76 }
    77 
    78 /* static void
    79 my_list_print (gpointer a, gpointer b)
    80 {
    81   gint three = *((gint*)a);
    82   g_print("%d", three);
    83 }; */
    84 
    85 static void
    86 glist_test (void)
    87 {
    88   GList *list = NULL;
    89   guint i;
    90 
    91   for (i = 0; i < 10; i++)
    92     list = g_list_append (list, &test_nums[i]);
    93   list = g_list_reverse (list);
    94 
    95   for (i = 0; i < 10; i++)
    96     {
    97       GList *t = g_list_nth (list, i);
    98       if (*((gint*) t->data) != (9 - i))
    99 	g_error ("Regular insert failed");
   100     }
   101 
   102   for (i = 0; i < 10; i++)
   103     if (g_list_position (list, g_list_nth (list, i)) != i)
   104       g_error ("g_list_position does not seem to be the inverse of g_list_nth\n");
   105 
   106   g_list_free (list);
   107   list = NULL;
   108 
   109   for (i = 0; i < 10; i++)
   110     list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_one);
   111 
   112   /*
   113   g_print("\n");
   114   g_list_foreach (list, my_list_print, NULL);
   115   */
   116 
   117   for (i = 0; i < 10; i++)
   118     {
   119       GList *t = g_list_nth (list, i);
   120       if (*((gint*) t->data) != i)
   121          g_error ("Sorted insert failed");
   122     }
   123 
   124   g_list_free (list);
   125   list = NULL;
   126 
   127   for (i = 0; i < 10; i++)
   128     list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_two);
   129 
   130   /*
   131   g_print("\n");
   132   g_list_foreach (list, my_list_print, NULL);
   133   */
   134 
   135   for (i = 0; i < 10; i++)
   136     {
   137       GList *t = g_list_nth (list, i);
   138       if (*((gint*) t->data) != (9 - i))
   139          g_error ("Sorted insert failed");
   140     }
   141 
   142   g_list_free (list);
   143   list = NULL;
   144 
   145   for (i = 0; i < 10; i++)
   146     list = g_list_prepend (list, &more_nums[i]);
   147 
   148   list = g_list_sort (list, my_list_compare_two);
   149 
   150   /*
   151   g_print("\n");
   152   g_list_foreach (list, my_list_print, NULL);
   153   */
   154 
   155   for (i = 0; i < 10; i++)
   156     {
   157       GList *t = g_list_nth (list, i);
   158       if (*((gint*) t->data) != (9 - i))
   159          g_error ("Merge sort failed");
   160     }
   161 
   162   g_list_free (list);
   163 }
   164 
   165 static void
   166 gslist_test (void)
   167 {
   168   GSList *slist = NULL;
   169   guint i;
   170 
   171   for (i = 0; i < 10; i++)
   172     slist = g_slist_append (slist, &test_nums[i]);
   173   slist = g_slist_reverse (slist);
   174 
   175   for (i = 0; i < 10; i++)
   176     {
   177       GSList *st = g_slist_nth (slist, i);
   178       if (*((gint*) st->data) != (9 - i))
   179 	g_error ("failed");
   180     }
   181 
   182   g_slist_free (slist);
   183   slist = NULL;
   184 
   185   for (i = 0; i < 10; i++)
   186     slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_one);
   187 
   188   /*
   189   g_print("\n");
   190   g_slist_foreach (slist, my_list_print, NULL);
   191   */
   192 
   193   for (i = 0; i < 10; i++)
   194     {
   195       GSList *st = g_slist_nth (slist, i);
   196       if (*((gint*) st->data) != i)
   197         g_error ("Sorted insert failed");
   198     }
   199 
   200   g_slist_free (slist);
   201   slist = NULL;
   202 
   203   for (i = 0; i < 10; i++)
   204     slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_two);
   205 
   206   /*
   207   g_print("\n");
   208   g_slist_foreach (slist, my_list_print, NULL);
   209   */
   210 
   211   for (i = 0; i < 10; i++)
   212     {
   213       GSList *st = g_slist_nth (slist, i);
   214       if (*((gint*) st->data) != (9 - i))
   215         g_error("Sorted insert failed");
   216     }
   217 
   218   g_slist_free(slist);
   219   slist = NULL;
   220 
   221   for (i = 0; i < 10; i++)
   222     slist = g_slist_prepend (slist, &more_nums[i]);
   223 
   224   slist = g_slist_sort (slist, my_list_compare_two);
   225 
   226   /*
   227   g_print("\n");
   228   g_slist_foreach (slist, my_list_print, NULL);
   229   */
   230 
   231   for (i = 0; i < 10; i++)
   232     {
   233       GSList *st = g_slist_nth (slist, i);
   234       if (*((gint*) st->data) != (9 - i))
   235         g_error("Sorted insert failed");
   236     }
   237 
   238   g_slist_free(slist);
   239 }
   240 
   241 static gboolean
   242 node_build_string (GNode    *node,
   243 		   gpointer  data)
   244 {
   245   gchar **p = data;
   246   gchar *string;
   247   gchar c[2] = "_";
   248 
   249   c[0] = ((gchar) ((gintptr) (node->data)));
   250 
   251   string = g_strconcat (*p ? *p : "", c, NULL);
   252   g_free (*p);
   253   *p = string;
   254 
   255   return FALSE;
   256 }
   257 
   258 static void
   259 gnode_test (void)
   260 {
   261 #define	C2P(c)		((gpointer) ((long) (c)))
   262 #define	P2C(p)		((gchar) ((gintptr) (p)))
   263   GNode *root;
   264   GNode *node;
   265   GNode *node_B;
   266   GNode *node_F;
   267   GNode *node_G;
   268   GNode *node_J;
   269   guint i;
   270   gchar *tstring, *cstring;
   271 
   272   root = g_node_new (C2P ('A'));
   273   g_assert (g_node_depth (root) == 1 && g_node_max_height (root) == 1);
   274 
   275   node_B = g_node_new (C2P ('B'));
   276   g_node_append (root, node_B);
   277   g_assert (root->children == node_B);
   278 
   279   g_node_append_data (node_B, C2P ('E'));
   280   g_node_prepend_data (node_B, C2P ('C'));
   281   g_node_insert (node_B, 1, g_node_new (C2P ('D')));
   282 
   283   node_F = g_node_new (C2P ('F'));
   284   g_node_append (root, node_F);
   285   g_assert (root->children->next == node_F);
   286 
   287   node_G = g_node_new (C2P ('G'));
   288   g_node_append (node_F, node_G);
   289   node_J = g_node_new (C2P ('J'));
   290   g_node_prepend (node_G, node_J);
   291   g_node_insert (node_G, 42, g_node_new (C2P ('K')));
   292   g_node_insert_data (node_G, 0, C2P ('H'));
   293   g_node_insert (node_G, 1, g_node_new (C2P ('I')));
   294 
   295   g_assert (g_node_depth (root) == 1);
   296   g_assert (g_node_max_height (root) == 4);
   297   g_assert (g_node_depth (node_G->children->next) == 4);
   298   g_assert (g_node_n_nodes (root, G_TRAVERSE_LEAFS) == 7);
   299   g_assert (g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4);
   300   g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 11);
   301   g_assert (g_node_max_height (node_F) == 3);
   302   g_assert (g_node_n_children (node_G) == 4);
   303   g_assert (g_node_find_child (root, G_TRAVERSE_ALL, C2P ('F')) == node_F);
   304   g_assert (g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL);
   305   g_assert (g_node_find (root, G_IN_ORDER, G_TRAVERSE_LEAFS, C2P ('J')) == node_J);
   306 
   307   for (i = 0; i < g_node_n_children (node_B); i++)
   308     {
   309       node = g_node_nth_child (node_B, i);
   310       g_assert (P2C (node->data) == ('C' + i));
   311     }
   312   
   313   for (i = 0; i < g_node_n_children (node_G); i++)
   314     g_assert (g_node_child_position (node_G, g_node_nth_child (node_G, i)) == i);
   315 
   316   /* we have built:                    A
   317    *                                 /   \
   318    *                               B       F
   319    *                             / | \       \
   320    *                           C   D   E       G
   321    *                                         / /\ \
   322    *                                       H  I  J  K
   323    *
   324    * for in-order traversal, 'G' is considered to be the "left"
   325    * child of 'F', which will cause 'F' to be the last node visited.
   326    */
   327 
   328   tstring = NULL;
   329   g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   330   g_assert_cmpstr (tstring, ==, "ABCDEFGHIJK");
   331   g_free (tstring); tstring = NULL;
   332   g_node_traverse (root, G_POST_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   333   g_assert_cmpstr (tstring, ==, "CDEBHIJKGFA");
   334   g_free (tstring); tstring = NULL;
   335   g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   336   g_assert_cmpstr (tstring, ==, "CBDEAHGIJKF");
   337   g_free (tstring); tstring = NULL;
   338   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   339   g_assert_cmpstr (tstring, ==, "ABFCDEGHIJK");
   340   g_free (tstring); tstring = NULL;
   341   
   342   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_LEAFS, -1, node_build_string, &tstring);
   343   g_assert_cmpstr (tstring, ==, "CDEHIJK");
   344   g_free (tstring); tstring = NULL;
   345   g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring);
   346   g_assert_cmpstr (tstring, ==, "ABFG");
   347   g_free (tstring); tstring = NULL;
   348 
   349   g_node_reverse_children (node_B);
   350   g_node_reverse_children (node_G);
   351 
   352   g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   353   g_assert_cmpstr (tstring, ==, "ABFEDCGKJIH");
   354   g_free (tstring); tstring = NULL;
   355 
   356   cstring = NULL;
   357   node = g_node_copy (root);
   358   g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == g_node_n_nodes (node, G_TRAVERSE_ALL));
   359   g_assert (g_node_max_height (root) == g_node_max_height (node));
   360   g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
   361   g_node_traverse (node, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &cstring);
   362   g_assert_cmpstr (tstring, ==, cstring);
   363   g_free (tstring); tstring = NULL;
   364   g_free (cstring); cstring = NULL;
   365   g_node_destroy (node);
   366 
   367   g_node_destroy (root);
   368 
   369   /* allocation tests */
   370 
   371   root = g_node_new (NULL);
   372   node = root;
   373 
   374   for (i = 0; i < 2048; i++)
   375     {
   376       g_node_append (node, g_node_new (NULL));
   377       if ((i%5) == 4)
   378 	node = node->children->next;
   379     }
   380   g_assert (g_node_max_height (root) > 100);
   381   g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
   382 
   383   g_node_destroy (root);
   384 #undef C2P
   385 #undef P2C
   386 }
   387 
   388 static gint
   389 my_compare (gconstpointer a,
   390 	    gconstpointer b)
   391 {
   392   const char *cha = a;
   393   const char *chb = b;
   394 
   395   return *cha - *chb;
   396 }
   397 
   398 static gint
   399 my_traverse (gpointer key,
   400 	     gpointer value,
   401 	     gpointer data)
   402 {
   403   char *ch = key;
   404   g_print ("%c ", *ch);
   405   return FALSE;
   406 }
   407 
   408 static void
   409 binary_tree_test (void)
   410 {
   411   GTree *tree;
   412   char chars[62];
   413   guint i, j;
   414 
   415   tree = g_tree_new (my_compare);
   416   i = 0;
   417   for (j = 0; j < 10; j++, i++)
   418     {
   419       chars[i] = '0' + j;
   420       g_tree_insert (tree, &chars[i], &chars[i]);
   421     }
   422   for (j = 0; j < 26; j++, i++)
   423     {
   424       chars[i] = 'A' + j;
   425       g_tree_insert (tree, &chars[i], &chars[i]);
   426     }
   427   for (j = 0; j < 26; j++, i++)
   428     {
   429       chars[i] = 'a' + j;
   430       g_tree_insert (tree, &chars[i], &chars[i]);
   431     }
   432 
   433   g_assert_cmpint (g_tree_nnodes (tree), ==, 10 + 26 + 26);
   434   g_assert_cmpint (g_tree_height (tree), ==, 6);
   435 
   436   if (g_test_verbose())
   437     {
   438       g_print ("tree: ");
   439       g_tree_foreach (tree, my_traverse, NULL);
   440       g_print ("\n");
   441     }
   442 
   443   for (i = 0; i < 10; i++)
   444     g_tree_remove (tree, &chars[i]);
   445 
   446   g_assert_cmpint (g_tree_nnodes (tree), ==, 26 + 26);
   447   g_assert_cmpint (g_tree_height (tree), ==, 6);
   448 
   449   if (g_test_verbose())
   450     {
   451       g_print ("tree: ");
   452       g_tree_foreach (tree, my_traverse, NULL);
   453       g_print ("\n");
   454     }
   455 }
   456 
   457 static gboolean
   458 my_hash_callback_remove (gpointer key,
   459 			 gpointer value,
   460 			 gpointer user_data)
   461 {
   462   int *d = value;
   463 
   464   if ((*d) % 2)
   465     return TRUE;
   466 
   467   return FALSE;
   468 }
   469 
   470 static void
   471 my_hash_callback_remove_test (gpointer key,
   472 			      gpointer value,
   473 			      gpointer user_data)
   474 {
   475   int *d = value;
   476 
   477   if ((*d) % 2)
   478     g_print ("bad!\n");
   479 }
   480 
   481 static void
   482 my_hash_callback (gpointer key,
   483 		  gpointer value,
   484 		  gpointer user_data)
   485 {
   486   int *d = value;
   487   *d = 1;
   488 }
   489 
   490 static guint
   491 my_hash (gconstpointer key)
   492 {
   493   return (guint) *((const gint*) key);
   494 }
   495 
   496 static gboolean
   497 my_hash_equal (gconstpointer a,
   498 	       gconstpointer b)
   499 {
   500   return *((const gint*) a) == *((const gint*) b);
   501 }
   502 
   503 static gboolean 
   504 find_first_that(gpointer key, 
   505 		gpointer value, 
   506 		gpointer user_data)
   507 {
   508   gint *v = value;
   509   gint *test = user_data;
   510   return (*v == *test);
   511 }
   512 
   513 static void
   514 test_g_parse_debug_string (void)
   515 {
   516   GDebugKey keys[3] = { 
   517     { "foo", 1 },
   518     { "bar", 2 },
   519     { "baz", 4 }
   520   };
   521   guint n_keys = 3;
   522   guint result;
   523   
   524   result = g_parse_debug_string ("bar:foo:blubb", keys, n_keys);
   525   g_assert (result == 3);
   526 
   527   result = g_parse_debug_string (":baz::_E@~!_::", keys, n_keys);
   528   g_assert (result == 4);
   529 
   530   result = g_parse_debug_string ("", keys, n_keys);
   531   g_assert (result == 0);
   532 
   533   result = g_parse_debug_string (" : ", keys, n_keys);
   534   g_assert (result == 0);
   535 }
   536 
   537 static void
   538 log_warning_error_tests (void)
   539 {
   540   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
   541     {
   542       g_message ("this is a g_message test.");
   543       g_message ("non-printable UTF-8: \"\xc3\xa4\xda\x85\"");
   544       g_message ("unsafe chars: \"\x10\x11\x12\n\t\x7f\x81\x82\x83\"");
   545       exit (0);
   546     }
   547   g_test_trap_assert_passed();
   548   g_test_trap_assert_stderr ("*is a g_message test*");
   549   g_test_trap_assert_stderr ("*non-printable UTF-8*");
   550   g_test_trap_assert_stderr ("*unsafe chars*");
   551   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
   552     {
   553       g_warning ("harmless warning with parameters: %d %s %#x", 42, "Boo", 12345);
   554       exit (0);
   555     }
   556   g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
   557   g_test_trap_assert_stderr ("*harmless warning*");
   558   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
   559     {
   560       g_print (NULL);
   561       exit (0);
   562     }
   563   g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
   564   g_test_trap_assert_stderr ("*g_print*assertion*failed*");
   565   g_test_trap_assert_stderr ("*NULL*");
   566 }
   567 
   568 static void
   569 timer_tests (void)
   570 {
   571   GTimer *timer, *timer2;
   572   gdouble elapsed;
   573 
   574   /* basic testing */
   575   timer = g_timer_new ();
   576   g_timer_start (timer);
   577   elapsed = g_timer_elapsed (timer, NULL);
   578   g_timer_stop (timer);
   579   g_assert_cmpfloat (elapsed, <=, g_timer_elapsed (timer, NULL));
   580   g_timer_destroy (timer);
   581 
   582   if (g_test_slow())
   583     {
   584       if (g_test_verbose())
   585         g_print ("checking timers...\n");
   586       timer = g_timer_new ();
   587       if (g_test_verbose())
   588         g_print ("  spinning for 3 seconds...\n");
   589       g_timer_start (timer);
   590       while (g_timer_elapsed (timer, NULL) < 3)
   591         ;
   592       g_timer_stop (timer);
   593       g_timer_destroy (timer);
   594       if (g_test_verbose())
   595         g_print ("ok\n");
   596     }
   597 
   598   if (g_test_slow())
   599     {
   600       gulong elapsed_usecs;
   601       if (g_test_verbose())
   602         g_print ("checking g_timer_continue...\n");
   603       timer2 = g_timer_new ();
   604       if (g_test_verbose())
   605         g_print ("\trun for 1 second...\n");
   606       timer = g_timer_new();
   607       g_usleep (G_USEC_PER_SEC); /* run timer for 1 second */
   608       g_timer_stop (timer);
   609       if (g_test_verbose())
   610         g_print ("\tstop for 1 second...\n");
   611       g_usleep (G_USEC_PER_SEC); /* wait for 1 second */
   612       if (g_test_verbose())
   613         g_print ("\trun for 2 seconds...\n");
   614       g_timer_continue (timer);
   615       g_usleep (2 * G_USEC_PER_SEC); /* run timer for 2 seconds */
   616       g_timer_stop(timer);
   617       if (g_test_verbose())
   618         g_print ("\tstop for 1.5 seconds...\n");
   619       g_usleep ((3 * G_USEC_PER_SEC) / 2); /* wait for 1.5 seconds */
   620       if (g_test_verbose())
   621         g_print ("\trun for 0.2 seconds...\n");
   622       g_timer_continue (timer);
   623       g_usleep (G_USEC_PER_SEC / 5); /* run timer for 0.2 seconds */
   624       g_timer_stop (timer);
   625       if (g_test_verbose())
   626         g_print ("\tstop for 4 seconds...\n");
   627       g_usleep (4 * G_USEC_PER_SEC); /* wait for 4 seconds */
   628       if (g_test_verbose())
   629         g_print ("\trun for 5.8 seconds...\n");
   630       g_timer_continue (timer);
   631       g_usleep ((29 * G_USEC_PER_SEC) / 5); /* run timer for 5.8 seconds */
   632       g_timer_stop(timer);
   633       elapsed = g_timer_elapsed (timer, &elapsed_usecs);
   634       if (g_test_verbose())
   635         g_print ("\t=> timer = %.6f = %d.%06ld (should be: 9.000000) (%.6f off)\n", elapsed, (int) elapsed, elapsed_usecs, ABS (elapsed - 9.));
   636       g_assert_cmpfloat (elapsed, >, 8.8);
   637       g_assert_cmpfloat (elapsed, <, 9.2);
   638       if (g_test_verbose())
   639         g_print ("g_timer_continue ... ok\n\n");
   640       g_timer_stop (timer2);
   641       elapsed = g_timer_elapsed (timer2, &elapsed_usecs);
   642       if (g_test_verbose())
   643         g_print ("\t=> timer2 = %.6f = %d.%06ld (should be: %.6f) (%.6f off)\n\n", elapsed, (int) elapsed, elapsed_usecs, 9.+6.5, ABS (elapsed - (9.+6.5)));
   644       g_assert_cmpfloat (elapsed, >, 8.8 + 6.5);
   645       g_assert_cmpfloat (elapsed, <, 9.2 + 6.5);
   646       if (g_test_verbose())
   647         g_print ("timer2 ... ok\n\n");
   648       g_timer_destroy (timer);
   649       g_timer_destroy (timer2);
   650     }
   651 }
   652 
   653 static void
   654 type_sizes (void)
   655 {
   656   guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
   657   guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
   658   guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U),
   659 	  gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU);
   660   /* type sizes */
   661   g_assert_cmpint (sizeof (gint8), ==, 1);
   662   g_assert_cmpint (sizeof (gint16), ==, 2);
   663   g_assert_cmpint (sizeof (gint32), ==, 4);
   664   g_assert_cmpint (sizeof (gint64), ==, 8);
   665   /* endian macros */
   666   if (g_test_verbose())
   667     g_print ("checking endian macros (host is %s)...\n",
   668              G_BYTE_ORDER == G_BIG_ENDIAN ? "big endian" : "little endian");
   669   g_assert (GUINT16_SWAP_LE_BE (gu16t1) == gu16t2);
   670   g_assert (GUINT32_SWAP_LE_BE (gu32t1) == gu32t2);
   671   g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);
   672 }
   673 
   674 static void
   675 test_info (void)
   676 {
   677   const gchar *un, *rn, *hn;
   678   const gchar *tmpdir, *homedir, *userdatadir, *uconfdir, *ucachedir;
   679   const gchar *uddesktop, *udddocs, *uddpubshare;
   680   gchar **sv, *cwd, *sdatadirs, *sconfdirs, *langnames;
   681   if (g_test_verbose())
   682     g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
   683              glib_major_version,
   684              glib_minor_version,
   685              glib_micro_version,
   686              glib_interface_age,
   687              glib_binary_age);
   688 
   689   cwd = g_get_current_dir ();
   690   un = g_get_user_name();
   691   rn = g_get_real_name();
   692   hn = g_get_host_name();
   693   if (g_test_verbose())
   694     {
   695       g_print ("cwd: %s\n", cwd);
   696       g_print ("user: %s\n", un);
   697       g_print ("real: %s\n", rn);
   698       g_print ("host: %s\n", hn);
   699     }
   700   g_free (cwd);
   701 
   702   tmpdir = g_get_tmp_dir();
   703   g_assert (tmpdir != NULL);
   704   homedir = g_get_home_dir ();
   705   g_assert (homedir != NULL);
   706   userdatadir = g_get_user_data_dir ();
   707   g_assert (userdatadir != NULL);
   708   uconfdir = g_get_user_config_dir ();
   709   g_assert (uconfdir != NULL);
   710   ucachedir = g_get_user_cache_dir ();
   711   g_assert (ucachedir != NULL);
   712 
   713   uddesktop = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
   714   g_assert (uddesktop != NULL);
   715   udddocs = g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS);
   716   uddpubshare = g_get_user_special_dir (G_USER_DIRECTORY_PUBLIC_SHARE);
   717 
   718   sv = (gchar **) g_get_system_data_dirs ();
   719   sdatadirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
   720   sv = (gchar **) g_get_system_config_dirs ();
   721   sconfdirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
   722   sv = (gchar **) g_get_language_names ();
   723   langnames = g_strjoinv (":", sv);
   724 
   725   if (g_test_verbose())
   726     {
   727       g_print ("tmp-dir: %s\n", tmpdir);
   728       g_print ("home: %s\n", homedir);
   729       g_print ("user_data: %s\n", userdatadir);
   730       g_print ("user_config: %s\n", uconfdir);
   731       g_print ("user_cache: %s\n", ucachedir);
   732       g_print ("system_data: %s\n", sdatadirs);
   733       g_print ("system_config: %s\n", sconfdirs);
   734       g_print ("languages: %s\n", langnames);
   735       g_print ("user_special[DESKTOP]: %s\n", uddesktop);
   736       g_print ("user_special[DOCUMENTS]: %s\n", udddocs);
   737       g_print ("user_special[PUBLIC_SHARE]: %s\n", uddpubshare);
   738     }
   739   g_free (sdatadirs);
   740   g_free (sconfdirs);
   741   g_free (langnames);
   742   
   743   if (g_test_verbose())
   744     {
   745 #ifdef G_PLATFORM_WIN32
   746       gchar *glib_dll;
   747 #endif
   748       const gchar *charset;
   749       if (g_get_charset ((G_CONST_RETURN char**)&charset))
   750         g_print ("current charset is UTF-8: %s\n", charset);
   751       else
   752         g_print ("current charset is not UTF-8: %s\n", charset);
   753 
   754 #ifdef G_PLATFORM_WIN32
   755 #ifdef G_OS_WIN32
   756       /* Can't calculate GLib DLL name at runtime. */
   757       glib_dll = "libglib-2.0-0.dll";
   758 #endif
   759 #ifdef G_WITH_CYGWIN
   760       glib_dll = "cygglib-2.0-0.dll";
   761 #endif
   762 
   763       g_print ("current locale: %s\n", g_win32_getlocale ());
   764       g_print ("GLib DLL name tested for: %s\n", glib_dll);
   765 
   766       g_print ("GLib installation directory, from Registry entry for %s if available: %s\n",
   767                GETTEXT_PACKAGE,
   768                g_win32_get_package_installation_directory (GETTEXT_PACKAGE, NULL));
   769       g_print ("Ditto, or from GLib DLL name: %s\n",
   770                g_win32_get_package_installation_directory (GETTEXT_PACKAGE, glib_dll));
   771       g_print ("Ditto, only from GLib DLL name: %s\n",
   772                g_win32_get_package_installation_directory (NULL, glib_dll));
   773       g_print ("locale subdirectory of GLib installation directory: %s\n",
   774                g_win32_get_package_installation_subdirectory (NULL, glib_dll, "lib\\locale"));
   775       g_print ("GTK+ 2.0 installation directory, if available: %s\n",
   776                g_win32_get_package_installation_directory ("gtk20", NULL));
   777 
   778       g_print ("found more.com as %s\n", g_find_program_in_path ("more.com"));
   779       g_print ("found regedit as %s\n", g_find_program_in_path ("regedit"));
   780 
   781       g_print ("a Win32 error message: %s\n", g_win32_error_message (2));
   782 #endif
   783     }
   784 }
   785 
   786 static void
   787 test_paths (void)
   788 {
   789   struct {
   790     gchar *filename;
   791     gchar *dirname;
   792   } dirname_checks[] = {
   793     { "/", "/" },
   794     { "////", "/" },
   795     { ".////", "." },
   796     { "../", ".." },
   797     { "..////", ".." },
   798     { "a/b", "a" },
   799     { "a/b/", "a/b" },
   800     { "c///", "c" },
   801 #ifdef G_OS_WIN32
   802     { "\\", "\\" },
   803     { ".\\\\\\\\", "." },
   804     { "..\\", ".." },
   805     { "..\\\\\\\\", ".." },
   806     { "a\\b", "a" },
   807     { "a\\b/", "a\\b" },
   808     { "a/b\\", "a/b" },
   809     { "c\\\\/", "c" },
   810     { "//\\", "/" },
   811 #endif
   812 #ifdef G_WITH_CYGWIN
   813     { "//server/share///x", "//server/share" },
   814 #endif
   815     { ".", "." },
   816     { "..", "." },
   817     { "", "." },
   818   };
   819   const guint n_dirname_checks = G_N_ELEMENTS (dirname_checks);
   820   struct {
   821     gchar *filename;
   822     gchar *without_root;
   823   } skip_root_checks[] = {
   824     { "/", "" },
   825     { "//", "" },
   826     { "/foo", "foo" },
   827     { "//foo", "foo" },
   828     { "a/b", NULL },
   829 #ifdef G_OS_WIN32
   830     { "\\", "" },
   831     { "\\foo", "foo" },
   832     { "\\\\server\\foo", "" },
   833     { "\\\\server\\foo\\bar", "bar" },
   834     { "a\\b", NULL },
   835 #endif
   836 #ifdef G_WITH_CYGWIN
   837     { "//server/share///x", "//x" },
   838 #endif
   839     { ".", NULL },
   840     { "", NULL },
   841   };
   842   const guint n_skip_root_checks = G_N_ELEMENTS (skip_root_checks);
   843   gchar *string;
   844   guint i;
   845   if (g_test_verbose())
   846     g_print ("checking g_path_get_basename()...");
   847   string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "dir" G_DIR_SEPARATOR_S);
   848   g_assert (strcmp (string, "dir") == 0);
   849   g_free (string);
   850   string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "file");
   851   g_assert (strcmp (string, "file") == 0);
   852   g_free (string);
   853   if (g_test_verbose())
   854     g_print ("ok\n");
   855 
   856 #ifdef G_OS_WIN32
   857   string = g_path_get_basename ("/foo/dir/");
   858   g_assert (strcmp (string, "dir") == 0);
   859   g_free (string);
   860   string = g_path_get_basename ("/foo/file");
   861   g_assert (strcmp (string, "file") == 0);
   862   g_free (string);
   863 #endif
   864 
   865   if (g_test_verbose())
   866     g_print ("checking g_path_get_dirname()...");
   867   for (i = 0; i < n_dirname_checks; i++)
   868     {
   869       gchar *dirname = g_path_get_dirname (dirname_checks[i].filename);
   870       if (strcmp (dirname, dirname_checks[i].dirname) != 0)
   871 	{
   872 	  g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
   873 		   dirname_checks[i].filename,
   874 		   dirname_checks[i].dirname,
   875 		   dirname);
   876 	}
   877       g_free (dirname);
   878     }
   879   if (g_test_verbose())
   880     g_print ("ok\n");
   881 
   882   if (g_test_verbose())
   883     g_print ("checking g_path_skip_root()...");
   884   for (i = 0; i < n_skip_root_checks; i++)
   885     {
   886       const gchar *skipped = g_path_skip_root (skip_root_checks[i].filename);
   887       if ((skipped && !skip_root_checks[i].without_root) ||
   888 	  (!skipped && skip_root_checks[i].without_root) ||
   889 	  ((skipped && skip_root_checks[i].without_root) &&
   890 	   strcmp (skipped, skip_root_checks[i].without_root)))
   891 	{
   892 	  g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
   893 		   skip_root_checks[i].filename,
   894 		   (skip_root_checks[i].without_root ?
   895 		    skip_root_checks[i].without_root : "<NULL>"),
   896 		   (skipped ? skipped : "<NULL>"));
   897 	}
   898     }
   899   if (g_test_verbose())
   900     g_print ("ok\n");
   901 }
   902 
   903 static void
   904 test_file_functions (void)
   905 {
   906   const char hello[] = "Hello, World";
   907   const int hellolen = sizeof (hello) - 1;
   908   GError *error;
   909   char template[32];
   910   char *name_used, chars[62];
   911   gint fd, n;
   912   
   913   strcpy (template, "c:\\foobar");
   914   fd = g_mkstemp (template);
   915   if (g_test_verbose() && fd != -1)
   916     g_print ("g_mkstemp works even if template doesn't end in XXXXXX\n");
   917   close (fd);
   918   strcpy (template, "c:\\fooXXXXXX");
   919   fd = g_mkstemp (template);
   920   if (fd == -1)
   921     g_error ("g_mkstemp didn't work for template %s\n", template);
   922   n = write (fd, hello, hellolen);
   923   if (n == -1)
   924     g_error ("write() failed: %s\n", g_strerror (errno));
   925   else if (n != hellolen)
   926     g_error ("write() should have written %d bytes, wrote %d\n", hellolen, n);
   927 
   928   lseek (fd, 0, 0);
   929   n = read (fd, chars, sizeof (chars));
   930   if (n == -1)
   931     g_error ("read() failed: %s\n", g_strerror (errno));
   932   else if (n != hellolen)
   933     g_error ("read() should have read %d bytes, got %d\n", hellolen, n);
   934 
   935   chars[n] = 0;
   936   if (strcmp (chars, hello) != 0)
   937     g_error ("wrote '%s', but got '%s'\n", hello, chars);
   938 
   939   close (fd);
   940   remove (template);
   941 
   942   error = NULL;
   943   strcpy (template, "zap" G_DIR_SEPARATOR_S "barXXXXXX");
   944   fd = g_file_open_tmp (template, &name_used, &error);
   945   if (g_test_verbose())
   946     {
   947       if (fd != -1)
   948         g_print ("g_file_open_tmp works even if template contains '%s'\n", G_DIR_SEPARATOR_S);
   949       else
   950         g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
   951     }
   952   close (fd);
   953   g_clear_error (&error);
   954 
   955 #ifdef G_OS_WIN32
   956   strcpy (template, "zap/barXXXXXX");
   957   fd = g_file_open_tmp (template, &name_used, &error);
   958   if (g_test_verbose())
   959     {
   960       if (fd != -1)
   961         g_print ("g_file_open_tmp works even if template contains '/'\n");
   962       else
   963         g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
   964     }
   965   close (fd);
   966   g_clear_error (&error);
   967 #endif
   968 
   969   strcpy (template, "zapXXXXXX");
   970   fd = g_file_open_tmp (template, &name_used, &error);
   971   if (fd == -1)
   972     g_error ("g_file_open_tmp didn't work for template '%s': %s\n", template, error->message);
   973   else if (g_test_verbose())
   974     g_print ("g_file_open_tmp for template '%s' used name '%s'\n", template, name_used);
   975   close (fd);
   976   g_clear_error (&error);
   977   remove (name_used);
   978 
   979   fd = g_file_open_tmp (NULL, &name_used, &error);
   980   if (fd == -1)
   981     g_error ("g_file_open_tmp didn't work for a NULL template: %s\n", error->message);
   982   close (fd);
   983   g_clear_error (&error);
   984   remove (name_used);
   985 }
   986 
   987 static void
   988 test_arrays (void)
   989 {
   990   GByteArray *gbarray;
   991   GPtrArray *gparray;
   992   GArray *garray;
   993   guint i;
   994 
   995   gparray = g_ptr_array_new ();
   996   for (i = 0; i < 10000; i++)
   997     g_ptr_array_add (gparray, GINT_TO_POINTER (i));
   998   for (i = 0; i < 10000; i++)
   999     if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
  1000       g_error ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
  1001   g_ptr_array_free (gparray, TRUE);
  1002 
  1003   gbarray = g_byte_array_new ();
  1004   for (i = 0; i < 10000; i++)
  1005     g_byte_array_append (gbarray, (guint8*) "abcd", 4);
  1006   for (i = 0; i < 10000; i++)
  1007     {
  1008       g_assert (gbarray->data[4*i] == 'a');
  1009       g_assert (gbarray->data[4*i+1] == 'b');
  1010       g_assert (gbarray->data[4*i+2] == 'c');
  1011       g_assert (gbarray->data[4*i+3] == 'd');
  1012     }
  1013   g_byte_array_free (gbarray, TRUE);
  1014 
  1015   garray = g_array_new (FALSE, FALSE, sizeof (gint));
  1016   for (i = 0; i < 10000; i++)
  1017     g_array_append_val (garray, i);
  1018   for (i = 0; i < 10000; i++)
  1019     if (g_array_index (garray, gint, i) != i)
  1020       g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), i);
  1021   g_array_free (garray, TRUE);
  1022 
  1023   garray = g_array_new (FALSE, FALSE, sizeof (gint));
  1024   for (i = 0; i < 100; i++)
  1025     g_array_prepend_val (garray, i);
  1026   for (i = 0; i < 100; i++)
  1027     if (g_array_index (garray, gint, i) != (100 - i - 1))
  1028       g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), 100 - i - 1);
  1029   g_array_free (garray, TRUE);
  1030 }
  1031 
  1032 static void
  1033 hash_table_tests (void)
  1034 {
  1035   GHashTable *hash_table;
  1036   int array[10000];
  1037   gint *pvalue = NULL;
  1038   gint value = 120;
  1039   guint i;
  1040 
  1041   hash_table = g_hash_table_new (my_hash, my_hash_equal);
  1042   for (i = 0; i < 10000; i++)
  1043     {
  1044       array[i] = i;
  1045       g_hash_table_insert (hash_table, &array[i], &array[i]);
  1046     }
  1047   pvalue = g_hash_table_find (hash_table, find_first_that, &value);
  1048   if (*pvalue != value)
  1049     g_error ("g_hash_table_find failed");
  1050   g_hash_table_foreach (hash_table, my_hash_callback, NULL);
  1051   for (i = 0; i < 10000; i++)
  1052     if (array[i] == 0)
  1053       g_error ("hashtable-test: wrong value: %d\n", i);
  1054   for (i = 0; i < 10000; i++)
  1055     g_hash_table_remove (hash_table, &array[i]);
  1056   for (i = 0; i < 10000; i++)
  1057     {
  1058       array[i] = i;
  1059       g_hash_table_insert (hash_table, &array[i], &array[i]);
  1060     }
  1061   if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
  1062       g_hash_table_size (hash_table) != 5000)
  1063     g_error ("hashtable removal failed\n");
  1064   g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
  1065   g_hash_table_destroy (hash_table);
  1066 }
  1067 
  1068 static void
  1069 relation_test (void)
  1070 {
  1071   GRelation *relation = g_relation_new (2);
  1072   GTuples *tuples;
  1073   gint data [1024];
  1074   guint i;
  1075 
  1076   g_relation_index (relation, 0, g_int_hash, g_int_equal);
  1077   g_relation_index (relation, 1, g_int_hash, g_int_equal);
  1078 
  1079   for (i = 0; i < 1024; i += 1)
  1080     data[i] = i;
  1081 
  1082   for (i = 1; i < 1023; i += 1)
  1083     {
  1084       g_relation_insert (relation, data + i, data + i + 1);
  1085       g_relation_insert (relation, data + i, data + i - 1);
  1086     }
  1087 
  1088   for (i = 2; i < 1022; i += 1)
  1089     {
  1090       g_assert (! g_relation_exists (relation, data + i, data + i));
  1091       g_assert (! g_relation_exists (relation, data + i, data + i + 2));
  1092       g_assert (! g_relation_exists (relation, data + i, data + i - 2));
  1093     }
  1094 
  1095   for (i = 1; i < 1023; i += 1)
  1096     {
  1097       g_assert (g_relation_exists (relation, data + i, data + i + 1));
  1098       g_assert (g_relation_exists (relation, data + i, data + i - 1));
  1099     }
  1100 
  1101   for (i = 2; i < 1022; i += 1)
  1102     {
  1103       g_assert (g_relation_count (relation, data + i, 0) == 2);
  1104       g_assert (g_relation_count (relation, data + i, 1) == 2);
  1105     }
  1106 
  1107   g_assert (g_relation_count (relation, data, 0) == 0);
  1108 
  1109   g_assert (g_relation_count (relation, data + 42, 0) == 2);
  1110   g_assert (g_relation_count (relation, data + 43, 1) == 2);
  1111   g_assert (g_relation_count (relation, data + 41, 1) == 2);
  1112   g_relation_delete (relation, data + 42, 0);
  1113   g_assert (g_relation_count (relation, data + 42, 0) == 0);
  1114   g_assert (g_relation_count (relation, data + 43, 1) == 1);
  1115   g_assert (g_relation_count (relation, data + 41, 1) == 1);
  1116 
  1117   tuples = g_relation_select (relation, data + 200, 0);
  1118 
  1119   g_assert (tuples->len == 2);
  1120 
  1121 #if 0
  1122   for (i = 0; i < tuples->len; i += 1)
  1123     {
  1124       printf ("%d %d\n",
  1125 	      *(gint*) g_tuples_index (tuples, i, 0),
  1126 	      *(gint*) g_tuples_index (tuples, i, 1));
  1127     }
  1128 #endif
  1129 
  1130   g_assert (g_relation_exists (relation, data + 300, data + 301));
  1131   g_relation_delete (relation, data + 300, 0);
  1132   g_assert (!g_relation_exists (relation, data + 300, data + 301));
  1133 
  1134   g_tuples_destroy (tuples);
  1135 
  1136   g_relation_destroy (relation);
  1137 
  1138   relation = NULL;
  1139 }
  1140 
  1141 static void
  1142 gstring_tests (void)
  1143 {
  1144   GString *string1, *string2;
  1145   guint i;
  1146 
  1147   if (g_test_verbose())
  1148     g_print ("test GString basics\n");
  1149 
  1150   string1 = g_string_new ("hi pete!");
  1151   string2 = g_string_new ("");
  1152 
  1153   g_assert (strcmp ("hi pete!", string1->str) == 0);
  1154 
  1155   for (i = 0; i < 10000; i++)
  1156     g_string_append_c (string1, 'a'+(i%26));
  1157 
  1158 #ifndef G_OS_WIN32
  1159   /* MSVC, mingw32 and LCC use the same run-time C library, which doesn't like
  1160      the %10000.10000f format... */
  1161   g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
  1162 		   "this pete guy sure is a wuss, like he's the number ",
  1163 		   1,
  1164 		   " wuss.  everyone agrees.\n",
  1165 		   string1->str,
  1166 		   10, 666, 15, 15, 666.666666666, 666.666666666);
  1167 #else
  1168   g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%100.100f",
  1169 		   "this pete guy sure is a wuss, like he's the number ",
  1170 		   1,
  1171 		   " wuss.  everyone agrees.\n",
  1172 		   string1->str,
  1173 		   10, 666, 15, 15, 666.666666666, 666.666666666);
  1174 #endif
  1175 
  1176   if (g_test_verbose())
  1177     g_print ("string2 length = %lu...\n", (gulong)string2->len);
  1178   string2->str[70] = '\0';
  1179   if (g_test_verbose())
  1180     g_print ("first 70 chars:\n%s\n", string2->str);
  1181   string2->str[141] = '\0';
  1182   if (g_test_verbose())
  1183     g_print ("next 70 chars:\n%s\n", string2->str+71);
  1184   string2->str[212] = '\0';
  1185   if (g_test_verbose())
  1186     g_print ("and next 70:\n%s\n", string2->str+142);
  1187   if (g_test_verbose())
  1188     g_print ("last 70 chars:\n%s\n", string2->str+string2->len - 70);
  1189 
  1190   g_string_free (string1, TRUE);
  1191   g_string_free (string2, TRUE);
  1192 
  1193   /* append */
  1194   string1 = g_string_new ("firsthalf");
  1195   g_string_append (string1, "lasthalf");
  1196   g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
  1197   g_string_free (string1, TRUE);
  1198 
  1199   /* append_len */
  1200   string1 = g_string_new ("firsthalf");
  1201   g_string_append_len (string1, "lasthalfjunkjunk", strlen ("lasthalf"));
  1202   g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
  1203   g_string_free (string1, TRUE);
  1204 
  1205   /* prepend */
  1206   string1 = g_string_new ("lasthalf");
  1207   g_string_prepend (string1, "firsthalf");
  1208   g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
  1209   g_string_free (string1, TRUE);
  1210 
  1211   /* prepend_len */
  1212   string1 = g_string_new ("lasthalf");
  1213   g_string_prepend_len (string1, "firsthalfjunkjunk", strlen ("firsthalf"));
  1214   g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
  1215   g_string_free (string1, TRUE);
  1216 
  1217   /* insert */
  1218   string1 = g_string_new ("firstlast");
  1219   g_string_insert (string1, 5, "middle");
  1220   g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
  1221   g_string_free (string1, TRUE);
  1222 
  1223   /* insert with pos == end of the string */
  1224   string1 = g_string_new ("firstmiddle");
  1225   g_string_insert (string1, strlen ("firstmiddle"), "last");
  1226   g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
  1227   g_string_free (string1, TRUE);
  1228 
  1229   /* insert_len */
  1230   string1 = g_string_new ("firstlast");
  1231   g_string_insert_len (string1, 5, "middlejunkjunk", strlen ("middle"));
  1232   g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
  1233   g_string_free (string1, TRUE);
  1234 
  1235   /* insert_len with magic -1 pos for append */
  1236   string1 = g_string_new ("first");
  1237   g_string_insert_len (string1, -1, "lastjunkjunk", strlen ("last"));
  1238   g_assert (strcmp (string1->str, "firstlast") == 0);
  1239   g_string_free (string1, TRUE);
  1240 
  1241   /* insert_len with magic -1 len for strlen-the-string */
  1242   string1 = g_string_new ("first");
  1243   g_string_insert_len (string1, 5, "last", -1);
  1244   g_assert (strcmp (string1->str, "firstlast") == 0);
  1245   g_string_free (string1, TRUE);
  1246 
  1247   /* g_string_equal */
  1248   string1 = g_string_new ("test");
  1249   string2 = g_string_new ("te");
  1250   g_assert (! g_string_equal(string1, string2));
  1251   g_string_append (string2, "st");
  1252   g_assert (g_string_equal(string1, string2));
  1253   g_string_free (string1, TRUE);
  1254   g_string_free (string2, TRUE);
  1255 
  1256   /* Check handling of embedded ASCII 0 (NUL) characters in GString. */
  1257   if (g_test_verbose())
  1258     g_print ("test embedded ASCII 0 (NUL) characters in GString\n");
  1259   string1 = g_string_new ("fiddle");
  1260   string2 = g_string_new ("fiddle");
  1261   g_assert (g_string_equal(string1, string2));
  1262   g_string_append_c(string1, '\0');
  1263   g_assert (! g_string_equal(string1, string2));
  1264   g_string_append_c(string2, '\0');
  1265   g_assert (g_string_equal(string1, string2));
  1266   g_string_append_c(string1, 'x');
  1267   g_string_append_c(string2, 'y');
  1268   g_assert (! g_string_equal(string1, string2));
  1269   g_assert (string1->len == 8);
  1270   g_string_append(string1, "yzzy");
  1271   g_assert (string1->len == 12);
  1272   g_assert ( memcmp(string1->str, "fiddle\0xyzzy", 13) == 0);
  1273   g_string_insert(string1, 1, "QED");
  1274   g_assert ( memcmp(string1->str, "fQEDiddle\0xyzzy", 16) == 0);
  1275   g_string_free (string1, TRUE);
  1276   g_string_free (string2, TRUE);
  1277 }
  1278 
  1279 static void
  1280 various_string_tests (void)
  1281 {
  1282   GStringChunk *string_chunk;
  1283   GTimeVal ref_date, date;
  1284   gchar *tmp_string = NULL, *tmp_string_2, *string, *date_str;
  1285   guint i;
  1286 
  1287   if (g_test_verbose())
  1288     g_print ("checking string chunks...");
  1289   string_chunk = g_string_chunk_new (1024);
  1290   for (i = 0; i < 100000; i ++)
  1291     {
  1292       tmp_string = g_string_chunk_insert (string_chunk, "hi pete");
  1293       if (strcmp ("hi pete", tmp_string) != 0)
  1294 	g_error ("string chunks are broken.\n");
  1295     }
  1296   tmp_string_2 = g_string_chunk_insert_const (string_chunk, tmp_string);
  1297   g_assert (tmp_string_2 != tmp_string && strcmp (tmp_string_2, tmp_string) == 0);
  1298   tmp_string = g_string_chunk_insert_const (string_chunk, tmp_string);
  1299   g_assert (tmp_string_2 == tmp_string);
  1300   g_string_chunk_free (string_chunk);
  1301 
  1302   if (g_test_verbose())
  1303     g_print ("test positional printf formats (not supported):");
  1304   string = g_strdup_printf ("%.*s%s", 5, "a", "b");
  1305   tmp_string = g_strdup_printf ("%2$*1$s", 5, "c");
  1306   if (g_test_verbose())
  1307     g_print ("%s%s\n", string, tmp_string);
  1308   g_free (tmp_string);
  1309   g_free (string);
  1310 
  1311 #define REF_INVALID1      "Wed Dec 19 17:20:20 GMT 2007"
  1312 #define REF_INVALID2      "1980-02-22T10:36:00Zulu"
  1313 #define REF_SEC_UTC       320063760
  1314 #define REF_STR_UTC       "1980-02-22T10:36:00Z"
  1315 #define REF_STR_CEST      "1980-02-22T12:36:00+02:00"
  1316 #define REF_STR_EST       "19800222T053600-0500"
  1317 #define REF_STR_NST       "1980-02-22T07:06:00-03:30"
  1318 #define REF_USEC_UTC      50000
  1319 #define REF_STR_USEC_UTC  "1980-02-22T10:36:00.050000Z"
  1320 #define REF_STR_USEC_CEST "19800222T123600.050000000+0200"
  1321 #define REF_STR_USEC_EST  "1980-02-22T05:36:00,05-05:00"
  1322 #define REF_STR_USEC_NST  "19800222T070600,0500-0330"
  1323 
  1324   if (g_test_verbose())
  1325     g_print ("checking g_time_val_from_iso8601...\n");
  1326   ref_date.tv_sec = REF_SEC_UTC;
  1327   ref_date.tv_usec = 0;
  1328   g_assert (g_time_val_from_iso8601 (REF_INVALID1, &date) == FALSE);
  1329   g_assert (g_time_val_from_iso8601 (REF_INVALID2, &date) == FALSE);
  1330   g_assert (g_time_val_from_iso8601 (REF_STR_UTC, &date) != FALSE);
  1331   if (g_test_verbose())
  1332     g_print ("\t=> UTC stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1333              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1334              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1335   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1336 
  1337   g_assert (g_time_val_from_iso8601 (REF_STR_CEST, &date) != FALSE);
  1338   if (g_test_verbose())
  1339     g_print ("\t=> CEST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1340              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1341              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1342   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1343 
  1344   g_assert (g_time_val_from_iso8601 (REF_STR_EST, &date) != FALSE);
  1345   if (g_test_verbose())
  1346     g_print ("\t=> EST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1347              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1348              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1349   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1350 
  1351   g_assert (g_time_val_from_iso8601 (REF_STR_NST, &date) != FALSE);
  1352   if (g_test_verbose())
  1353     g_print ("\t=> NST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1354              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1355              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1356   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1357 
  1358   ref_date.tv_usec = REF_USEC_UTC;
  1359   g_assert (g_time_val_from_iso8601 (REF_STR_USEC_UTC, &date) != FALSE);
  1360   if (g_test_verbose())
  1361     g_print ("\t=> UTC stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1362              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1363              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1364   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1365 
  1366   g_assert (g_time_val_from_iso8601 (REF_STR_USEC_CEST, &date) != FALSE);
  1367   if (g_test_verbose())
  1368     g_print ("\t=> CEST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1369              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1370              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1371   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1372 
  1373   g_assert (g_time_val_from_iso8601 (REF_STR_USEC_EST, &date) != FALSE);
  1374   if (g_test_verbose())
  1375     g_print ("\t=> EST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1376              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1377              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1378   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1379 
  1380   g_assert (g_time_val_from_iso8601 (REF_STR_USEC_NST, &date) != FALSE);
  1381   if (g_test_verbose())
  1382     g_print ("\t=> NST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
  1383              date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
  1384              date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
  1385   g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
  1386 
  1387   if (g_test_verbose())
  1388     g_print ("checking g_time_val_to_iso8601...\n");
  1389   ref_date.tv_sec = REF_SEC_UTC;
  1390   ref_date.tv_usec = 0;
  1391   date_str = g_time_val_to_iso8601 (&ref_date);
  1392   g_assert (date_str != NULL);
  1393   if (g_test_verbose())
  1394     g_print ("\t=> date string = %s (should be: %s)\n", date_str, REF_STR_UTC);
  1395   g_assert (strcmp (date_str, REF_STR_UTC) == 0);
  1396   g_free (date_str);
  1397 
  1398   ref_date.tv_usec = REF_USEC_UTC;
  1399   date_str = g_time_val_to_iso8601 (&ref_date);
  1400   g_assert (date_str != NULL);
  1401   if (g_test_verbose())
  1402     g_print ("\t=> date string = %s (should be: %s)\n", date_str, REF_STR_USEC_UTC);
  1403   g_assert (strcmp (date_str, REF_STR_USEC_UTC) == 0);
  1404   g_free (date_str);
  1405 
  1406   if (g_test_verbose())
  1407     g_print ("checking g_ascii_strcasecmp...");
  1408   g_assert (g_ascii_strcasecmp ("FroboZZ", "frobozz") == 0);
  1409   g_assert (g_ascii_strcasecmp ("frobozz", "frobozz") == 0);
  1410   g_assert (g_ascii_strcasecmp ("frobozz", "FROBOZZ") == 0);
  1411   g_assert (g_ascii_strcasecmp ("FROBOZZ", "froboz") > 0);
  1412   g_assert (g_ascii_strcasecmp ("", "") == 0);
  1413   g_assert (g_ascii_strcasecmp ("!#%&/()", "!#%&/()") == 0);
  1414   g_assert (g_ascii_strcasecmp ("a", "b") < 0);
  1415   g_assert (g_ascii_strcasecmp ("a", "B") < 0);
  1416   g_assert (g_ascii_strcasecmp ("A", "b") < 0);
  1417   g_assert (g_ascii_strcasecmp ("A", "B") < 0);
  1418   g_assert (g_ascii_strcasecmp ("b", "a") > 0);
  1419   g_assert (g_ascii_strcasecmp ("b", "A") > 0);
  1420   g_assert (g_ascii_strcasecmp ("B", "a") > 0);
  1421   g_assert (g_ascii_strcasecmp ("B", "A") > 0);
  1422 
  1423   if (g_test_verbose())
  1424     g_print ("checking g_strdup...\n");
  1425   g_assert (g_strdup (NULL) == NULL);
  1426   string = g_strdup (GLIB_TEST_STRING);
  1427   g_assert (string != NULL);
  1428   g_assert (strcmp(string, GLIB_TEST_STRING) == 0);
  1429   g_free (string);
  1430 
  1431   if (g_test_verbose())
  1432     g_print ("checking g_strconcat...\n");
  1433   string = g_strconcat (GLIB_TEST_STRING, NULL);
  1434   g_assert (string != NULL);
  1435   g_assert (strcmp (string, GLIB_TEST_STRING) == 0);
  1436   g_free (string);
  1437   string = g_strconcat (GLIB_TEST_STRING, GLIB_TEST_STRING, 
  1438                         GLIB_TEST_STRING, NULL);
  1439   g_assert (string != NULL);
  1440   g_assert (strcmp (string, GLIB_TEST_STRING GLIB_TEST_STRING
  1441                     GLIB_TEST_STRING) == 0);
  1442   g_free (string);
  1443 
  1444   if (g_test_verbose())
  1445     g_print ("checking g_strlcpy/g_strlcat...");
  1446   /* The following is a torture test for strlcpy/strlcat, with lots of
  1447    * checking; normal users wouldn't use them this way!
  1448    */
  1449   string = g_malloc (6);
  1450   *(string + 5) = 'Z'; /* guard value, shouldn't change during test */
  1451   *string = 'q';
  1452   g_assert (g_strlcpy(string, "" , 5) == 0);
  1453   g_assert ( *string == '\0' );
  1454   *string = 'q';
  1455   g_assert (g_strlcpy(string, "abc" , 5) == 3);
  1456   g_assert ( *(string + 3) == '\0' );
  1457   g_assert (g_str_equal(string, "abc"));
  1458   g_assert (g_strlcpy(string, "abcd" , 5) == 4);
  1459   g_assert ( *(string + 4) == '\0' );
  1460   g_assert ( *(string + 5) == 'Z' );
  1461   g_assert (g_str_equal(string, "abcd"));
  1462   g_assert (g_strlcpy(string, "abcde" , 5) == 5);
  1463   g_assert ( *(string + 4) == '\0' );
  1464   g_assert ( *(string + 5) == 'Z' );
  1465   g_assert (g_str_equal(string, "abcd"));
  1466   g_assert (g_strlcpy(string, "abcdef" , 5) == 6);
  1467   g_assert ( *(string + 4) == '\0' );
  1468   g_assert ( *(string + 5) == 'Z' );
  1469   g_assert (g_str_equal(string, "abcd"));
  1470   *string = 'Y';
  1471   *(string + 1)= '\0';
  1472   g_assert (g_strlcpy(string, "Hello" , 0) == 5);
  1473   g_assert (*string == 'Y');
  1474   *string = '\0';
  1475   g_assert (g_strlcat(string, "123" , 5) == 3);
  1476   g_assert ( *(string + 3) == '\0' );
  1477   g_assert (g_str_equal(string, "123"));
  1478   g_assert (g_strlcat(string, "" , 5) == 3);
  1479   g_assert ( *(string + 3) == '\0' );
  1480   g_assert (g_str_equal(string, "123"));
  1481   g_assert (g_strlcat(string, "4", 5) == 4);
  1482   g_assert (g_str_equal(string, "1234"));
  1483   g_assert (g_strlcat(string, "5", 5) == 5);
  1484   g_assert ( *(string + 4) == '\0' );
  1485   g_assert (g_str_equal(string, "1234"));
  1486   g_assert ( *(string + 5) == 'Z' );
  1487   *string = 'Y';
  1488   *(string + 1)= '\0';
  1489   g_assert (g_strlcat(string, "123" , 0) == 3);
  1490   g_assert (*string == 'Y');
  1491 
  1492   /* A few more tests, demonstrating more "normal" use  */
  1493   g_assert (g_strlcpy(string, "hi", 5) == 2);
  1494   g_assert (g_str_equal(string, "hi"));
  1495   g_assert (g_strlcat(string, "t", 5) == 3);
  1496   g_assert (g_str_equal(string, "hit"));
  1497   g_free(string);
  1498 
  1499   if (g_test_verbose())
  1500     g_print ("checking g_strdup_printf...\n");
  1501   string = g_strdup_printf ("%05d %-5s", 21, "test");
  1502   g_assert (string != NULL);
  1503   g_assert (strcmp(string, "00021 test ") == 0);
  1504   g_free (string);
  1505 
  1506   /* g_debug (argv[0]); */
  1507 }
  1508 
  1509 #ifndef G_DISABLE_DEPRECATED
  1510 static void
  1511 test_mem_chunks (void)
  1512 {
  1513   GMemChunk *mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE);
  1514   gchar *mem[10000];
  1515   guint i;
  1516   for (i = 0; i < 10000; i++)
  1517     {
  1518       guint j;
  1519       mem[i] = g_chunk_new (gchar, mem_chunk);
  1520       for (j = 0; j < 50; j++)
  1521 	mem[i][j] = i * j;
  1522     }
  1523   for (i = 0; i < 10000; i++)
  1524     g_mem_chunk_free (mem_chunk, mem[i]);
  1525 }
  1526 #endif
  1527 
  1528 int
  1529 main (int   argc,
  1530       char *argv[])
  1531 {
  1532    #ifdef __SYMBIAN32__
  1533   g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
  1534   g_set_print_handler(mrtPrintHandler);
  1535   #endif /*__SYMBIAN32__*/
  1536   g_test_init (&argc, &argv, NULL);
  1537 
  1538   g_test_add_func ("/testglib/Infos", test_info);
  1539   g_test_add_func ("/testglib/Types Sizes", type_sizes);
  1540   g_test_add_func ("/testglib/GStrings", gstring_tests);
  1541   g_test_add_func ("/testglib/Various Strings", various_string_tests);
  1542   g_test_add_func ("/testglib/GList", glist_test);
  1543   g_test_add_func ("/testglib/GSList", gslist_test);
  1544   g_test_add_func ("/testglib/GNode", gnode_test);
  1545   g_test_add_func ("/testglib/GTree", binary_tree_test);
  1546   g_test_add_func ("/testglib/Arrays", test_arrays);
  1547   g_test_add_func ("/testglib/GHashTable", hash_table_tests);
  1548   g_test_add_func ("/testglib/Relation", relation_test);
  1549   g_test_add_func ("/testglib/File Paths", test_paths);
  1550   g_test_add_func ("/testglib/File Functions", test_file_functions);
  1551   g_test_add_func ("/testglib/Parse Debug Strings", test_g_parse_debug_string);
  1552 
  1553 #ifndef G_DISABLE_DEPRECATED
  1554   g_test_add_func ("/testglib/GMemChunk (deprecated)", test_mem_chunks);
  1555 #endif
  1556   g_test_add_func ("/testglib/Warnings & Errors", log_warning_error_tests);
  1557   g_test_add_func ("/testglib/Timers (slow)", timer_tests);
  1558  /* return */g_test_run();
  1559   #ifdef __SYMBIAN32__
  1560   testResultXml("testglib");
  1561 #endif /* EMULATOR */
  1562   return 0;
  1563 
  1564 }