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