Doc updates
[glib.git] / tests / testglib.c
blob04836900406218afc7a3a96564e77035cc636c8a
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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.
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.
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.
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/.
27 #include "config.h"
29 #undef GLIB_COMPILATION
31 #include <stdio.h>
32 #include <string.h>
33 #include <errno.h>
35 #include "glib.h"
36 #include "gstdio.h"
38 #include <stdlib.h>
40 #ifdef HAVE_UNISTD_H
41 #include <unistd.h>
42 #endif
44 #ifdef G_OS_WIN32
45 #include <io.h> /* For read(), write() etc */
46 #endif
49 #define GLIB_TEST_STRING "el dorado "
50 #define GLIB_TEST_STRING_5 "el do"
53 /* --- variables --- */
54 static gint test_nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
55 static gint more_nums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
57 /* --- functions --- */
58 static gint
59 my_list_compare_one (gconstpointer a, gconstpointer b)
61 gint one = *((const gint*)a);
62 gint two = *((const gint*)b);
63 return one-two;
66 static gint
67 my_list_compare_two (gconstpointer a, gconstpointer b)
69 gint one = *((const gint*)a);
70 gint two = *((const gint*)b);
71 return two-one;
74 /* static void
75 my_list_print (gpointer a, gpointer b)
77 gint three = *((gint*)a);
78 g_print("%d", three);
79 }; */
81 static void
82 glist_test (void)
84 GList *list = NULL;
85 guint i;
87 for (i = 0; i < 10; i++)
88 list = g_list_append (list, &test_nums[i]);
89 list = g_list_reverse (list);
91 for (i = 0; i < 10; i++)
93 GList *t = g_list_nth (list, i);
94 if (*((gint*) t->data) != (9 - i))
95 g_error ("Regular insert failed");
98 for (i = 0; i < 10; i++)
99 if (g_list_position (list, g_list_nth (list, i)) != i)
100 g_error ("g_list_position does not seem to be the inverse of g_list_nth\n");
102 g_list_free (list);
103 list = NULL;
105 for (i = 0; i < 10; i++)
106 list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_one);
109 g_print("\n");
110 g_list_foreach (list, my_list_print, NULL);
113 for (i = 0; i < 10; i++)
115 GList *t = g_list_nth (list, i);
116 if (*((gint*) t->data) != i)
117 g_error ("Sorted insert failed");
120 g_list_free (list);
121 list = NULL;
123 for (i = 0; i < 10; i++)
124 list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_two);
127 g_print("\n");
128 g_list_foreach (list, my_list_print, NULL);
131 for (i = 0; i < 10; i++)
133 GList *t = g_list_nth (list, i);
134 if (*((gint*) t->data) != (9 - i))
135 g_error ("Sorted insert failed");
138 g_list_free (list);
139 list = NULL;
141 for (i = 0; i < 10; i++)
142 list = g_list_prepend (list, &more_nums[i]);
144 list = g_list_sort (list, my_list_compare_two);
147 g_print("\n");
148 g_list_foreach (list, my_list_print, NULL);
151 for (i = 0; i < 10; i++)
153 GList *t = g_list_nth (list, i);
154 if (*((gint*) t->data) != (9 - i))
155 g_error ("Merge sort failed");
158 g_list_free (list);
161 static void
162 gslist_test (void)
164 GSList *slist = NULL;
165 guint i;
167 for (i = 0; i < 10; i++)
168 slist = g_slist_append (slist, &test_nums[i]);
169 slist = g_slist_reverse (slist);
171 for (i = 0; i < 10; i++)
173 GSList *st = g_slist_nth (slist, i);
174 if (*((gint*) st->data) != (9 - i))
175 g_error ("failed");
178 g_slist_free (slist);
179 slist = NULL;
181 for (i = 0; i < 10; i++)
182 slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_one);
185 g_print("\n");
186 g_slist_foreach (slist, my_list_print, NULL);
189 for (i = 0; i < 10; i++)
191 GSList *st = g_slist_nth (slist, i);
192 if (*((gint*) st->data) != i)
193 g_error ("Sorted insert failed");
196 g_slist_free (slist);
197 slist = NULL;
199 for (i = 0; i < 10; i++)
200 slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_two);
203 g_print("\n");
204 g_slist_foreach (slist, my_list_print, NULL);
207 for (i = 0; i < 10; i++)
209 GSList *st = g_slist_nth (slist, i);
210 if (*((gint*) st->data) != (9 - i))
211 g_error("Sorted insert failed");
214 g_slist_free(slist);
215 slist = NULL;
217 for (i = 0; i < 10; i++)
218 slist = g_slist_prepend (slist, &more_nums[i]);
220 slist = g_slist_sort (slist, my_list_compare_two);
223 g_print("\n");
224 g_slist_foreach (slist, my_list_print, NULL);
227 for (i = 0; i < 10; i++)
229 GSList *st = g_slist_nth (slist, i);
230 if (*((gint*) st->data) != (9 - i))
231 g_error("Sorted insert failed");
234 g_slist_free(slist);
237 static gboolean
238 node_build_string (GNode *node,
239 gpointer data)
241 gchar **p = data;
242 gchar *string;
243 gchar c[2] = "_";
245 c[0] = ((gchar) ((long) (node->data)));
247 string = g_strconcat (*p ? *p : "", c, NULL);
248 g_free (*p);
249 *p = string;
251 return FALSE;
254 static void
255 gnode_test (void)
257 #define C2P(c) ((gpointer) ((long) (c)))
258 #define P2C(p) ((gchar) ((long) (p)))
259 GNode *root;
260 GNode *node;
261 GNode *node_B;
262 GNode *node_F;
263 GNode *node_G;
264 GNode *node_J;
265 guint i;
266 gchar *tstring, *cstring;
268 root = g_node_new (C2P ('A'));
269 g_assert (g_node_depth (root) == 1 && g_node_max_height (root) == 1);
271 node_B = g_node_new (C2P ('B'));
272 g_node_append (root, node_B);
273 g_assert (root->children == node_B);
275 g_node_append_data (node_B, C2P ('E'));
276 g_node_prepend_data (node_B, C2P ('C'));
277 g_node_insert (node_B, 1, g_node_new (C2P ('D')));
279 node_F = g_node_new (C2P ('F'));
280 g_node_append (root, node_F);
281 g_assert (root->children->next == node_F);
283 node_G = g_node_new (C2P ('G'));
284 g_node_append (node_F, node_G);
285 node_J = g_node_new (C2P ('J'));
286 g_node_prepend (node_G, node_J);
287 g_node_insert (node_G, 42, g_node_new (C2P ('K')));
288 g_node_insert_data (node_G, 0, C2P ('H'));
289 g_node_insert (node_G, 1, g_node_new (C2P ('I')));
291 g_assert (g_node_depth (root) == 1);
292 g_assert (g_node_max_height (root) == 4);
293 g_assert (g_node_depth (node_G->children->next) == 4);
294 g_assert (g_node_n_nodes (root, G_TRAVERSE_LEAFS) == 7);
295 g_assert (g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4);
296 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 11);
297 g_assert (g_node_max_height (node_F) == 3);
298 g_assert (g_node_n_children (node_G) == 4);
299 g_assert (g_node_find_child (root, G_TRAVERSE_ALL, C2P ('F')) == node_F);
300 g_assert (g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL);
301 g_assert (g_node_find (root, G_IN_ORDER, G_TRAVERSE_LEAFS, C2P ('J')) == node_J);
303 for (i = 0; i < g_node_n_children (node_B); i++)
305 node = g_node_nth_child (node_B, i);
306 g_assert (P2C (node->data) == ('C' + i));
309 for (i = 0; i < g_node_n_children (node_G); i++)
310 g_assert (g_node_child_position (node_G, g_node_nth_child (node_G, i)) == i);
312 /* we have built: A
313 * / \
314 * B F
315 * / | \ \
316 * C D E G
317 * / /\ \
318 * H I J K
320 * for in-order traversal, 'G' is considered to be the "left"
321 * child of 'F', which will cause 'F' to be the last node visited.
324 tstring = NULL;
325 g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
326 g_assert_cmpstr (tstring, ==, "ABCDEFGHIJK");
327 g_free (tstring); tstring = NULL;
328 g_node_traverse (root, G_POST_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
329 g_assert_cmpstr (tstring, ==, "CDEBHIJKGFA");
330 g_free (tstring); tstring = NULL;
331 g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
332 g_assert_cmpstr (tstring, ==, "CBDEAHGIJKF");
333 g_free (tstring); tstring = NULL;
334 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
335 g_assert_cmpstr (tstring, ==, "ABFCDEGHIJK");
336 g_free (tstring); tstring = NULL;
338 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_LEAFS, -1, node_build_string, &tstring);
339 g_assert_cmpstr (tstring, ==, "CDEHIJK");
340 g_free (tstring); tstring = NULL;
341 g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring);
342 g_assert_cmpstr (tstring, ==, "ABFG");
343 g_free (tstring); tstring = NULL;
345 g_node_reverse_children (node_B);
346 g_node_reverse_children (node_G);
348 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
349 g_assert_cmpstr (tstring, ==, "ABFEDCGKJIH");
350 g_free (tstring); tstring = NULL;
352 cstring = NULL;
353 node = g_node_copy (root);
354 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == g_node_n_nodes (node, G_TRAVERSE_ALL));
355 g_assert (g_node_max_height (root) == g_node_max_height (node));
356 g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
357 g_node_traverse (node, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &cstring);
358 g_assert_cmpstr (tstring, ==, cstring);
359 g_free (tstring); tstring = NULL;
360 g_free (cstring); cstring = NULL;
361 g_node_destroy (node);
363 g_node_destroy (root);
365 /* allocation tests */
367 root = g_node_new (NULL);
368 node = root;
370 for (i = 0; i < 2048; i++)
372 g_node_append (node, g_node_new (NULL));
373 if ((i%5) == 4)
374 node = node->children->next;
376 g_assert (g_node_max_height (root) > 100);
377 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
379 g_node_destroy (root);
380 #undef C2P
381 #undef P2C
384 static gint
385 my_compare (gconstpointer a,
386 gconstpointer b)
388 const char *cha = a;
389 const char *chb = b;
391 return *cha - *chb;
394 static gint
395 my_traverse (gpointer key,
396 gpointer value,
397 gpointer data)
399 char *ch = key;
400 g_print ("%c ", *ch);
401 return FALSE;
404 static void
405 binary_tree_test (void)
407 GTree *tree;
408 char chars[62];
409 guint i, j;
411 tree = g_tree_new (my_compare);
412 i = 0;
413 for (j = 0; j < 10; j++, i++)
415 chars[i] = '0' + j;
416 g_tree_insert (tree, &chars[i], &chars[i]);
418 for (j = 0; j < 26; j++, i++)
420 chars[i] = 'A' + j;
421 g_tree_insert (tree, &chars[i], &chars[i]);
423 for (j = 0; j < 26; j++, i++)
425 chars[i] = 'a' + j;
426 g_tree_insert (tree, &chars[i], &chars[i]);
429 g_assert_cmpint (g_tree_nnodes (tree), ==, 10 + 26 + 26);
430 g_assert_cmpint (g_tree_height (tree), ==, 6);
432 if (g_test_verbose())
434 g_print ("tree: ");
435 g_tree_foreach (tree, my_traverse, NULL);
436 g_print ("\n");
439 for (i = 0; i < 10; i++)
440 g_tree_remove (tree, &chars[i]);
442 g_assert_cmpint (g_tree_nnodes (tree), ==, 26 + 26);
443 g_assert_cmpint (g_tree_height (tree), ==, 6);
445 if (g_test_verbose())
447 g_print ("tree: ");
448 g_tree_foreach (tree, my_traverse, NULL);
449 g_print ("\n");
453 static gboolean
454 my_hash_callback_remove (gpointer key,
455 gpointer value,
456 gpointer user_data)
458 int *d = value;
460 if ((*d) % 2)
461 return TRUE;
463 return FALSE;
466 static void
467 my_hash_callback_remove_test (gpointer key,
468 gpointer value,
469 gpointer user_data)
471 int *d = value;
473 if ((*d) % 2)
474 g_print ("bad!\n");
477 static void
478 my_hash_callback (gpointer key,
479 gpointer value,
480 gpointer user_data)
482 int *d = value;
483 *d = 1;
486 static guint
487 my_hash (gconstpointer key)
489 return (guint) *((const gint*) key);
492 static gboolean
493 my_hash_equal (gconstpointer a,
494 gconstpointer b)
496 return *((const gint*) a) == *((const gint*) b);
499 static gboolean
500 find_first_that(gpointer key,
501 gpointer value,
502 gpointer user_data)
504 gint *v = value;
505 gint *test = user_data;
506 return (*v == *test);
510 static void
511 test_g_mkdir_with_parents_1 (const gchar *base)
513 char *p0 = g_build_filename (base, "fum", NULL);
514 char *p1 = g_build_filename (p0, "tem", NULL);
515 char *p2 = g_build_filename (p1, "zap", NULL);
516 FILE *f;
518 g_remove (p2);
519 g_remove (p1);
520 g_remove (p0);
522 if (g_file_test (p0, G_FILE_TEST_EXISTS))
523 g_error ("failed, %s exists, cannot test g_mkdir_with_parents\n", p0);
525 if (g_file_test (p1, G_FILE_TEST_EXISTS))
526 g_error ("failed, %s exists, cannot test g_mkdir_with_parents\n", p1);
528 if (g_file_test (p2, G_FILE_TEST_EXISTS))
529 g_error ("failed, %s exists, cannot test g_mkdir_with_parents\n", p2);
531 if (g_mkdir_with_parents (p2, 0777) == -1)
532 g_error ("failed, g_mkdir_with_parents(%s) failed: %s\n", p2, g_strerror (errno));
534 if (!g_file_test (p2, G_FILE_TEST_IS_DIR))
535 g_error ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p2);
537 if (!g_file_test (p1, G_FILE_TEST_IS_DIR))
538 g_error ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p1);
540 if (!g_file_test (p0, G_FILE_TEST_IS_DIR))
541 g_error ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p0);
543 g_rmdir (p2);
544 if (g_file_test (p2, G_FILE_TEST_EXISTS))
545 g_error ("failed, did g_rmdir(%s), but %s is still there\n", p2, p2);
547 g_rmdir (p1);
548 if (g_file_test (p1, G_FILE_TEST_EXISTS))
549 g_error ("failed, did g_rmdir(%s), but %s is still there\n", p1, p1);
551 f = g_fopen (p1, "w");
552 if (f == NULL)
553 g_error ("failed, couldn't create file %s\n", p1);
554 fclose (f);
556 if (g_mkdir_with_parents (p1, 0666) == 0)
557 g_error ("failed, g_mkdir_with_parents(%s) succeeded, even if %s is a file\n", p1, p1);
559 if (g_mkdir_with_parents (p2, 0666) == 0)
560 g_error("failed, g_mkdir_with_parents(%s) succeeded, even if %s is a file\n", p2, p1);
562 g_remove (p2);
563 g_remove (p1);
564 g_remove (p0);
567 static void
568 test_g_mkdir_with_parents (void)
570 gchar *cwd;
571 if (g_test_verbose())
572 g_print ("checking g_mkdir_with_parents() in subdir ./hum/");
573 test_g_mkdir_with_parents_1 ("hum");
574 g_remove ("hum");
575 if (g_test_verbose())
576 g_print ("checking g_mkdir_with_parents() in subdir ./hii///haa/hee/");
577 test_g_mkdir_with_parents_1 ("hii///haa/hee");
578 g_remove ("hii/haa/hee");
579 g_remove ("hii/haa");
580 g_remove ("hii");
581 cwd = g_get_current_dir ();
582 if (g_test_verbose())
583 g_print ("checking g_mkdir_with_parents() in cwd: %s", cwd);
584 test_g_mkdir_with_parents_1 (cwd);
585 g_free (cwd);
588 static void
589 test_g_parse_debug_string (void)
591 GDebugKey keys[3] = {
592 { "foo", 1 },
593 { "bar", 2 },
594 { "baz", 4 }
596 guint n_keys = 3;
597 guint result;
599 result = g_parse_debug_string ("bar:foo:blubb", keys, n_keys);
600 g_assert (result == 3);
602 result = g_parse_debug_string (":baz::_E@~!_::", keys, n_keys);
603 g_assert (result == 4);
605 result = g_parse_debug_string ("", keys, n_keys);
606 g_assert (result == 0);
608 result = g_parse_debug_string (" : ", keys, n_keys);
609 g_assert (result == 0);
612 static void
613 log_warning_error_tests (void)
615 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
617 g_message ("this is a g_message test.");
618 g_message ("non-printable UTF-8: \"\xc3\xa4\xda\x85\"");
619 g_message ("unsafe chars: \"\x10\x11\x12\n\t\x7f\x81\x82\x83\"");
620 exit (0);
622 g_test_trap_assert_passed();
623 g_test_trap_assert_stderr ("*is a g_message test*");
624 g_test_trap_assert_stderr ("*non-printable UTF-8*");
625 g_test_trap_assert_stderr ("*unsafe chars*");
626 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
628 g_warning ("harmless warning with parameters: %d %s %#x", 42, "Boo", 12345);
629 exit (0);
631 g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
632 g_test_trap_assert_stderr ("*harmless warning*");
633 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
635 g_print (NULL);
636 exit (0);
638 g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
639 g_test_trap_assert_stderr ("*g_print*assertion*failed*");
640 g_test_trap_assert_stderr ("*NULL*");
643 static void
644 timer_tests (void)
646 GTimer *timer, *timer2;
647 gdouble elapsed;
649 /* basic testing */
650 timer = g_timer_new ();
651 g_timer_start (timer);
652 elapsed = g_timer_elapsed (timer, NULL);
653 g_timer_stop (timer);
654 g_assert_cmpfloat (elapsed, <=, g_timer_elapsed (timer, NULL));
655 g_timer_destroy (timer);
657 if (g_test_slow())
659 if (g_test_verbose())
660 g_print ("checking timers...\n");
661 timer = g_timer_new ();
662 if (g_test_verbose())
663 g_print (" spinning for 3 seconds...\n");
664 g_timer_start (timer);
665 while (g_timer_elapsed (timer, NULL) < 3)
667 g_timer_stop (timer);
668 g_timer_destroy (timer);
669 if (g_test_verbose())
670 g_print ("ok\n");
673 if (g_test_slow())
675 gulong elapsed_usecs;
676 if (g_test_verbose())
677 g_print ("checking g_timer_continue...\n");
678 timer2 = g_timer_new ();
679 if (g_test_verbose())
680 g_print ("\trun for 1 second...\n");
681 timer = g_timer_new();
682 g_usleep (G_USEC_PER_SEC); /* run timer for 1 second */
683 g_timer_stop (timer);
684 if (g_test_verbose())
685 g_print ("\tstop for 1 second...\n");
686 g_usleep (G_USEC_PER_SEC); /* wait for 1 second */
687 if (g_test_verbose())
688 g_print ("\trun for 2 seconds...\n");
689 g_timer_continue (timer);
690 g_usleep (2 * G_USEC_PER_SEC); /* run timer for 2 seconds */
691 g_timer_stop(timer);
692 if (g_test_verbose())
693 g_print ("\tstop for 1.5 seconds...\n");
694 g_usleep ((3 * G_USEC_PER_SEC) / 2); /* wait for 1.5 seconds */
695 if (g_test_verbose())
696 g_print ("\trun for 0.2 seconds...\n");
697 g_timer_continue (timer);
698 g_usleep (G_USEC_PER_SEC / 5); /* run timer for 0.2 seconds */
699 g_timer_stop (timer);
700 if (g_test_verbose())
701 g_print ("\tstop for 4 seconds...\n");
702 g_usleep (4 * G_USEC_PER_SEC); /* wait for 4 seconds */
703 if (g_test_verbose())
704 g_print ("\trun for 5.8 seconds...\n");
705 g_timer_continue (timer);
706 g_usleep ((29 * G_USEC_PER_SEC) / 5); /* run timer for 5.8 seconds */
707 g_timer_stop(timer);
708 elapsed = g_timer_elapsed (timer, &elapsed_usecs);
709 if (g_test_verbose())
710 g_print ("\t=> timer = %.6f = %d.%06ld (should be: 9.000000) (%.6f off)\n", elapsed, (int) elapsed, elapsed_usecs, ABS (elapsed - 9.));
711 g_assert_cmpfloat (elapsed, >, 8.8);
712 g_assert_cmpfloat (elapsed, <, 9.2);
713 if (g_test_verbose())
714 g_print ("g_timer_continue ... ok\n\n");
715 g_timer_stop (timer2);
716 elapsed = g_timer_elapsed (timer2, &elapsed_usecs);
717 if (g_test_verbose())
718 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)));
719 g_assert_cmpfloat (elapsed, >, 8.8 + 6.5);
720 g_assert_cmpfloat (elapsed, <, 9.2 + 6.5);
721 if (g_test_verbose())
722 g_print ("timer2 ... ok\n\n");
723 g_timer_destroy (timer);
724 g_timer_destroy (timer2);
728 static void
729 type_sizes (void)
731 guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
732 guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
733 guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U),
734 gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU);
735 /* type sizes */
736 g_assert_cmpint (sizeof (gint8), ==, 1);
737 g_assert_cmpint (sizeof (gint16), ==, 2);
738 g_assert_cmpint (sizeof (gint32), ==, 4);
739 g_assert_cmpint (sizeof (gint64), ==, 8);
740 /* endian macros */
741 if (g_test_verbose())
742 g_print ("checking endian macros (host is %s)...\n",
743 G_BYTE_ORDER == G_BIG_ENDIAN ? "big endian" : "little endian");
744 g_assert (GUINT16_SWAP_LE_BE (gu16t1) == gu16t2);
745 g_assert (GUINT32_SWAP_LE_BE (gu32t1) == gu32t2);
746 g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);
749 static void
750 test_info (void)
752 const gchar *un, *rn, *hn;
753 const gchar *tmpdir, *homedir, *userdatadir, *uconfdir, *ucachedir;
754 const gchar *uddesktop, *udddocs, *uddpubshare;
755 gchar **sv, *cwd, *sdatadirs, *sconfdirs, *langnames;
756 if (g_test_verbose())
757 g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
758 glib_major_version,
759 glib_minor_version,
760 glib_micro_version,
761 glib_interface_age,
762 glib_binary_age);
764 cwd = g_get_current_dir ();
765 un = g_get_user_name();
766 rn = g_get_real_name();
767 hn = g_get_host_name();
768 if (g_test_verbose())
770 g_print ("cwd: %s\n", cwd);
771 g_print ("user: %s\n", un);
772 g_print ("real: %s\n", rn);
773 g_print ("host: %s\n", hn);
775 g_free (cwd);
777 tmpdir = g_get_tmp_dir();
778 g_assert (tmpdir != NULL);
779 homedir = g_get_home_dir ();
780 g_assert (homedir != NULL);
781 userdatadir = g_get_user_data_dir ();
782 g_assert (userdatadir != NULL);
783 uconfdir = g_get_user_config_dir ();
784 g_assert (uconfdir != NULL);
785 ucachedir = g_get_user_cache_dir ();
786 g_assert (ucachedir != NULL);
788 uddesktop = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
789 g_assert (uddesktop != NULL);
790 udddocs = g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS);
791 g_assert (udddocs != NULL);
792 uddpubshare = g_get_user_special_dir (G_USER_DIRECTORY_PUBLIC_SHARE);
793 g_assert (uddpubshare != NULL);
795 sv = (gchar **) g_get_system_data_dirs ();
796 sdatadirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
797 sv = (gchar **) g_get_system_config_dirs ();
798 sconfdirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
799 sv = (gchar **) g_get_language_names ();
800 langnames = g_strjoinv (":", sv);
802 if (g_test_verbose())
804 g_print ("tmp-dir: %s\n", tmpdir);
805 g_print ("home: %s\n", homedir);
806 g_print ("user_data: %s\n", userdatadir);
807 g_print ("user_config: %s\n", uconfdir);
808 g_print ("user_cache: %s\n", ucachedir);
809 g_print ("system_data: %s\n", sdatadirs);
810 g_print ("system_config: %s\n", sconfdirs);
811 g_print ("languages: %s\n", langnames);
812 g_print ("user_special[DESKTOP]: %s\n", uddesktop);
813 g_print ("user_special[DOCUMENTS]: %s\n", udddocs);
814 g_print ("user_special[PUBLIC_SHARE]: %s\n", uddpubshare);
816 g_free (sdatadirs);
817 g_free (sconfdirs);
818 g_free (langnames);
820 if (g_test_verbose())
822 #ifdef G_PLATFORM_WIN32
823 gchar *glib_dll;
824 #endif
825 const gchar *charset;
826 if (g_get_charset ((G_CONST_RETURN char**)&charset))
827 g_print ("current charset is UTF-8: %s\n", charset);
828 else
829 g_print ("current charset is not UTF-8: %s\n", charset);
831 #ifdef G_PLATFORM_WIN32
832 #ifdef G_OS_WIN32
833 /* Can't calculate GLib DLL name at runtime. */
834 glib_dll = "libglib-2.0-0.dll";
835 #endif
836 #ifdef G_WITH_CYGWIN
837 glib_dll = "cygglib-2.0-0.dll";
838 #endif
840 g_print ("current locale: %s\n", g_win32_getlocale ());
841 g_print ("GLib DLL name tested for: %s\n", glib_dll);
843 g_print ("GLib installation directory, from Registry entry for %s if available: %s\n",
844 GETTEXT_PACKAGE,
845 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, NULL));
846 g_print ("Ditto, or from GLib DLL name: %s\n",
847 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, glib_dll));
848 g_print ("Ditto, only from GLib DLL name: %s\n",
849 g_win32_get_package_installation_directory (NULL, glib_dll));
850 g_print ("locale subdirectory of GLib installation directory: %s\n",
851 g_win32_get_package_installation_subdirectory (NULL, glib_dll, "lib\\locale"));
852 g_print ("GTK+ 2.0 installation directory, if available: %s\n",
853 g_win32_get_package_installation_directory ("gtk20", NULL));
855 g_print ("found more.com as %s\n", g_find_program_in_path ("more.com"));
856 g_print ("found regedit as %s\n", g_find_program_in_path ("regedit"));
858 g_print ("a Win32 error message: %s\n", g_win32_error_message (2));
859 #endif
863 static void
864 test_paths (void)
866 struct {
867 gchar *filename;
868 gchar *dirname;
869 } dirname_checks[] = {
870 { "/", "/" },
871 { "////", "/" },
872 { ".////", "." },
873 { "../", ".." },
874 { "..////", ".." },
875 { "a/b", "a" },
876 { "a/b/", "a/b" },
877 { "c///", "c" },
878 #ifdef G_OS_WIN32
879 { "\\", "\\" },
880 { ".\\\\\\\\", "." },
881 { "..\\", ".." },
882 { "..\\\\\\\\", ".." },
883 { "a\\b", "a" },
884 { "a\\b/", "a\\b" },
885 { "a/b\\", "a/b" },
886 { "c\\\\/", "c" },
887 { "//\\", "/" },
888 #endif
889 #ifdef G_WITH_CYGWIN
890 { "//server/share///x", "//server/share" },
891 #endif
892 { ".", "." },
893 { "..", "." },
894 { "", "." },
896 const guint n_dirname_checks = G_N_ELEMENTS (dirname_checks);
897 struct {
898 gchar *filename;
899 gchar *without_root;
900 } skip_root_checks[] = {
901 { "/", "" },
902 { "//", "" },
903 { "/foo", "foo" },
904 { "//foo", "foo" },
905 { "a/b", NULL },
906 #ifdef G_OS_WIN32
907 { "\\", "" },
908 { "\\foo", "foo" },
909 { "\\\\server\\foo", "" },
910 { "\\\\server\\foo\\bar", "bar" },
911 { "a\\b", NULL },
912 #endif
913 #ifdef G_WITH_CYGWIN
914 { "//server/share///x", "//x" },
915 #endif
916 { ".", NULL },
917 { "", NULL },
919 const guint n_skip_root_checks = G_N_ELEMENTS (skip_root_checks);
920 gchar *string;
921 guint i;
922 if (g_test_verbose())
923 g_print ("checking g_path_get_basename()...");
924 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "dir" G_DIR_SEPARATOR_S);
925 g_assert (strcmp (string, "dir") == 0);
926 g_free (string);
927 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "file");
928 g_assert (strcmp (string, "file") == 0);
929 g_free (string);
930 if (g_test_verbose())
931 g_print ("ok\n");
933 #ifdef G_OS_WIN32
934 string = g_path_get_basename ("/foo/dir/");
935 g_assert (strcmp (string, "dir") == 0);
936 g_free (string);
937 string = g_path_get_basename ("/foo/file");
938 g_assert (strcmp (string, "file") == 0);
939 g_free (string);
940 #endif
942 if (g_test_verbose())
943 g_print ("checking g_path_get_dirname()...");
944 for (i = 0; i < n_dirname_checks; i++)
946 gchar *dirname = g_path_get_dirname (dirname_checks[i].filename);
947 if (strcmp (dirname, dirname_checks[i].dirname) != 0)
949 g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
950 dirname_checks[i].filename,
951 dirname_checks[i].dirname,
952 dirname);
954 g_free (dirname);
956 if (g_test_verbose())
957 g_print ("ok\n");
959 if (g_test_verbose())
960 g_print ("checking g_path_skip_root()...");
961 for (i = 0; i < n_skip_root_checks; i++)
963 const gchar *skipped = g_path_skip_root (skip_root_checks[i].filename);
964 if ((skipped && !skip_root_checks[i].without_root) ||
965 (!skipped && skip_root_checks[i].without_root) ||
966 ((skipped && skip_root_checks[i].without_root) &&
967 strcmp (skipped, skip_root_checks[i].without_root)))
969 g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
970 skip_root_checks[i].filename,
971 (skip_root_checks[i].without_root ?
972 skip_root_checks[i].without_root : "<NULL>"),
973 (skipped ? skipped : "<NULL>"));
976 if (g_test_verbose())
977 g_print ("ok\n");
980 static void
981 test_file_functions (void)
983 const char hello[] = "Hello, World";
984 const int hellolen = sizeof (hello) - 1;
985 GError *error;
986 char template[32];
987 char *name_used, chars[62];
988 gint fd, n;
990 strcpy (template, "foobar");
991 fd = g_mkstemp (template);
992 if (g_test_verbose() && fd != -1)
993 g_print ("g_mkstemp works even if template doesn't end in XXXXXX\n");
994 close (fd);
995 strcpy (template, "fooXXXXXX");
996 fd = g_mkstemp (template);
997 if (fd == -1)
998 g_error ("g_mkstemp didn't work for template %s\n", template);
999 n = write (fd, hello, hellolen);
1000 if (n == -1)
1001 g_error ("write() failed: %s\n", g_strerror (errno));
1002 else if (n != hellolen)
1003 g_error ("write() should have written %d bytes, wrote %d\n", hellolen, n);
1005 lseek (fd, 0, 0);
1006 n = read (fd, chars, sizeof (chars));
1007 if (n == -1)
1008 g_error ("read() failed: %s\n", g_strerror (errno));
1009 else if (n != hellolen)
1010 g_error ("read() should have read %d bytes, got %d\n", hellolen, n);
1012 chars[n] = 0;
1013 if (strcmp (chars, hello) != 0)
1014 g_error ("wrote '%s', but got '%s'\n", hello, chars);
1016 close (fd);
1017 remove (template);
1019 error = NULL;
1020 strcpy (template, "zap" G_DIR_SEPARATOR_S "barXXXXXX");
1021 fd = g_file_open_tmp (template, &name_used, &error);
1022 if (g_test_verbose())
1024 if (fd != -1)
1025 g_print ("g_file_open_tmp works even if template contains '%s'\n", G_DIR_SEPARATOR_S);
1026 else
1027 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
1029 close (fd);
1030 g_clear_error (&error);
1032 #ifdef G_OS_WIN32
1033 strcpy (template, "zap/barXXXXXX");
1034 fd = g_file_open_tmp (template, &name_used, &error);
1035 if (g_test_verbose())
1037 if (fd != -1)
1038 g_print ("g_file_open_tmp works even if template contains '/'\n");
1039 else
1040 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
1042 close (fd);
1043 g_clear_error (&error);
1044 #endif
1046 strcpy (template, "zapXXXXXX");
1047 fd = g_file_open_tmp (template, &name_used, &error);
1048 if (fd == -1)
1049 g_error ("g_file_open_tmp didn't work for template '%s': %s\n", template, error->message);
1050 else if (g_test_verbose())
1051 g_print ("g_file_open_tmp for template '%s' used name '%s'\n", template, name_used);
1052 close (fd);
1053 g_clear_error (&error);
1054 remove (name_used);
1056 fd = g_file_open_tmp (NULL, &name_used, &error);
1057 if (fd == -1)
1058 g_error ("g_file_open_tmp didn't work for a NULL template: %s\n", error->message);
1059 close (fd);
1060 g_clear_error (&error);
1061 remove (name_used);
1064 static void
1065 test_arrays (void)
1067 GByteArray *gbarray;
1068 GPtrArray *gparray;
1069 GArray *garray;
1070 guint i;
1072 gparray = g_ptr_array_new ();
1073 for (i = 0; i < 10000; i++)
1074 g_ptr_array_add (gparray, GINT_TO_POINTER (i));
1075 for (i = 0; i < 10000; i++)
1076 if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
1077 g_error ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
1078 g_ptr_array_free (gparray, TRUE);
1080 gbarray = g_byte_array_new ();
1081 for (i = 0; i < 10000; i++)
1082 g_byte_array_append (gbarray, (guint8*) "abcd", 4);
1083 for (i = 0; i < 10000; i++)
1085 g_assert (gbarray->data[4*i] == 'a');
1086 g_assert (gbarray->data[4*i+1] == 'b');
1087 g_assert (gbarray->data[4*i+2] == 'c');
1088 g_assert (gbarray->data[4*i+3] == 'd');
1090 g_byte_array_free (gbarray, TRUE);
1092 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1093 for (i = 0; i < 10000; i++)
1094 g_array_append_val (garray, i);
1095 for (i = 0; i < 10000; i++)
1096 if (g_array_index (garray, gint, i) != i)
1097 g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), i);
1098 g_array_free (garray, TRUE);
1100 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1101 for (i = 0; i < 100; i++)
1102 g_array_prepend_val (garray, i);
1103 for (i = 0; i < 100; i++)
1104 if (g_array_index (garray, gint, i) != (100 - i - 1))
1105 g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), 100 - i - 1);
1106 g_array_free (garray, TRUE);
1109 static void
1110 hash_table_tests (void)
1112 GHashTable *hash_table;
1113 int array[10000];
1114 gint *pvalue = NULL;
1115 gint value = 120;
1116 guint i;
1118 hash_table = g_hash_table_new (my_hash, my_hash_equal);
1119 for (i = 0; i < 10000; i++)
1121 array[i] = i;
1122 g_hash_table_insert (hash_table, &array[i], &array[i]);
1124 pvalue = g_hash_table_find (hash_table, find_first_that, &value);
1125 if (*pvalue != value)
1126 g_error ("g_hash_table_find failed");
1127 g_hash_table_foreach (hash_table, my_hash_callback, NULL);
1128 for (i = 0; i < 10000; i++)
1129 if (array[i] == 0)
1130 g_error ("hashtable-test: wrong value: %d\n", i);
1131 for (i = 0; i < 10000; i++)
1132 g_hash_table_remove (hash_table, &array[i]);
1133 for (i = 0; i < 10000; i++)
1135 array[i] = i;
1136 g_hash_table_insert (hash_table, &array[i], &array[i]);
1138 if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
1139 g_hash_table_size (hash_table) != 5000)
1140 g_error ("hashtable removal failed\n");
1141 g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
1142 g_hash_table_destroy (hash_table);
1145 static void
1146 relation_test (void)
1148 GRelation *relation = g_relation_new (2);
1149 GTuples *tuples;
1150 gint data [1024];
1151 guint i;
1153 g_relation_index (relation, 0, g_int_hash, g_int_equal);
1154 g_relation_index (relation, 1, g_int_hash, g_int_equal);
1156 for (i = 0; i < 1024; i += 1)
1157 data[i] = i;
1159 for (i = 1; i < 1023; i += 1)
1161 g_relation_insert (relation, data + i, data + i + 1);
1162 g_relation_insert (relation, data + i, data + i - 1);
1165 for (i = 2; i < 1022; i += 1)
1167 g_assert (! g_relation_exists (relation, data + i, data + i));
1168 g_assert (! g_relation_exists (relation, data + i, data + i + 2));
1169 g_assert (! g_relation_exists (relation, data + i, data + i - 2));
1172 for (i = 1; i < 1023; i += 1)
1174 g_assert (g_relation_exists (relation, data + i, data + i + 1));
1175 g_assert (g_relation_exists (relation, data + i, data + i - 1));
1178 for (i = 2; i < 1022; i += 1)
1180 g_assert (g_relation_count (relation, data + i, 0) == 2);
1181 g_assert (g_relation_count (relation, data + i, 1) == 2);
1184 g_assert (g_relation_count (relation, data, 0) == 0);
1186 g_assert (g_relation_count (relation, data + 42, 0) == 2);
1187 g_assert (g_relation_count (relation, data + 43, 1) == 2);
1188 g_assert (g_relation_count (relation, data + 41, 1) == 2);
1189 g_relation_delete (relation, data + 42, 0);
1190 g_assert (g_relation_count (relation, data + 42, 0) == 0);
1191 g_assert (g_relation_count (relation, data + 43, 1) == 1);
1192 g_assert (g_relation_count (relation, data + 41, 1) == 1);
1194 tuples = g_relation_select (relation, data + 200, 0);
1196 g_assert (tuples->len == 2);
1198 #if 0
1199 for (i = 0; i < tuples->len; i += 1)
1201 printf ("%d %d\n",
1202 *(gint*) g_tuples_index (tuples, i, 0),
1203 *(gint*) g_tuples_index (tuples, i, 1));
1205 #endif
1207 g_assert (g_relation_exists (relation, data + 300, data + 301));
1208 g_relation_delete (relation, data + 300, 0);
1209 g_assert (!g_relation_exists (relation, data + 300, data + 301));
1211 g_tuples_destroy (tuples);
1213 g_relation_destroy (relation);
1215 relation = NULL;
1218 static void
1219 gstring_tests (void)
1221 GString *string1, *string2;
1222 guint i;
1224 if (g_test_verbose())
1225 g_print ("test GString basics\n");
1227 string1 = g_string_new ("hi pete!");
1228 string2 = g_string_new ("");
1230 g_assert (strcmp ("hi pete!", string1->str) == 0);
1232 for (i = 0; i < 10000; i++)
1233 g_string_append_c (string1, 'a'+(i%26));
1235 #ifndef G_OS_WIN32
1236 /* MSVC, mingw32 and LCC use the same run-time C library, which doesn't like
1237 the %10000.10000f format... */
1238 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
1239 "this pete guy sure is a wuss, like he's the number ",
1241 " wuss. everyone agrees.\n",
1242 string1->str,
1243 10, 666, 15, 15, 666.666666666, 666.666666666);
1244 #else
1245 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%100.100f",
1246 "this pete guy sure is a wuss, like he's the number ",
1248 " wuss. everyone agrees.\n",
1249 string1->str,
1250 10, 666, 15, 15, 666.666666666, 666.666666666);
1251 #endif
1253 if (g_test_verbose())
1254 g_print ("string2 length = %lu...\n", (gulong)string2->len);
1255 string2->str[70] = '\0';
1256 if (g_test_verbose())
1257 g_print ("first 70 chars:\n%s\n", string2->str);
1258 string2->str[141] = '\0';
1259 if (g_test_verbose())
1260 g_print ("next 70 chars:\n%s\n", string2->str+71);
1261 string2->str[212] = '\0';
1262 if (g_test_verbose())
1263 g_print ("and next 70:\n%s\n", string2->str+142);
1264 if (g_test_verbose())
1265 g_print ("last 70 chars:\n%s\n", string2->str+string2->len - 70);
1267 g_string_free (string1, TRUE);
1268 g_string_free (string2, TRUE);
1270 /* append */
1271 string1 = g_string_new ("firsthalf");
1272 g_string_append (string1, "lasthalf");
1273 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1274 g_string_free (string1, TRUE);
1276 /* append_len */
1277 string1 = g_string_new ("firsthalf");
1278 g_string_append_len (string1, "lasthalfjunkjunk", strlen ("lasthalf"));
1279 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1280 g_string_free (string1, TRUE);
1282 /* prepend */
1283 string1 = g_string_new ("lasthalf");
1284 g_string_prepend (string1, "firsthalf");
1285 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1286 g_string_free (string1, TRUE);
1288 /* prepend_len */
1289 string1 = g_string_new ("lasthalf");
1290 g_string_prepend_len (string1, "firsthalfjunkjunk", strlen ("firsthalf"));
1291 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1292 g_string_free (string1, TRUE);
1294 /* insert */
1295 string1 = g_string_new ("firstlast");
1296 g_string_insert (string1, 5, "middle");
1297 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1298 g_string_free (string1, TRUE);
1300 /* insert with pos == end of the string */
1301 string1 = g_string_new ("firstmiddle");
1302 g_string_insert (string1, strlen ("firstmiddle"), "last");
1303 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1304 g_string_free (string1, TRUE);
1306 /* insert_len */
1307 string1 = g_string_new ("firstlast");
1308 g_string_insert_len (string1, 5, "middlejunkjunk", strlen ("middle"));
1309 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1310 g_string_free (string1, TRUE);
1312 /* insert_len with magic -1 pos for append */
1313 string1 = g_string_new ("first");
1314 g_string_insert_len (string1, -1, "lastjunkjunk", strlen ("last"));
1315 g_assert (strcmp (string1->str, "firstlast") == 0);
1316 g_string_free (string1, TRUE);
1318 /* insert_len with magic -1 len for strlen-the-string */
1319 string1 = g_string_new ("first");
1320 g_string_insert_len (string1, 5, "last", -1);
1321 g_assert (strcmp (string1->str, "firstlast") == 0);
1322 g_string_free (string1, TRUE);
1324 /* g_string_equal */
1325 string1 = g_string_new ("test");
1326 string2 = g_string_new ("te");
1327 g_assert (! g_string_equal(string1, string2));
1328 g_string_append (string2, "st");
1329 g_assert (g_string_equal(string1, string2));
1330 g_string_free (string1, TRUE);
1331 g_string_free (string2, TRUE);
1333 /* Check handling of embedded ASCII 0 (NUL) characters in GString. */
1334 if (g_test_verbose())
1335 g_print ("test embedded ASCII 0 (NUL) characters in GString\n");
1336 string1 = g_string_new ("fiddle");
1337 string2 = g_string_new ("fiddle");
1338 g_assert (g_string_equal(string1, string2));
1339 g_string_append_c(string1, '\0');
1340 g_assert (! g_string_equal(string1, string2));
1341 g_string_append_c(string2, '\0');
1342 g_assert (g_string_equal(string1, string2));
1343 g_string_append_c(string1, 'x');
1344 g_string_append_c(string2, 'y');
1345 g_assert (! g_string_equal(string1, string2));
1346 g_assert (string1->len == 8);
1347 g_string_append(string1, "yzzy");
1348 g_assert (string1->len == 12);
1349 g_assert ( memcmp(string1->str, "fiddle\0xyzzy", 13) == 0);
1350 g_string_insert(string1, 1, "QED");
1351 g_assert ( memcmp(string1->str, "fQEDiddle\0xyzzy", 16) == 0);
1352 g_string_free (string1, TRUE);
1353 g_string_free (string2, TRUE);
1356 static void
1357 various_string_tests (void)
1359 GStringChunk *string_chunk;
1360 GTimeVal ref_date, date;
1361 gchar *tmp_string = NULL, *tmp_string_2, *string, *date_str;
1362 guint i;
1364 if (g_test_verbose())
1365 g_print ("checking string chunks...");
1366 string_chunk = g_string_chunk_new (1024);
1367 for (i = 0; i < 100000; i ++)
1369 tmp_string = g_string_chunk_insert (string_chunk, "hi pete");
1370 if (strcmp ("hi pete", tmp_string) != 0)
1371 g_error ("string chunks are broken.\n");
1373 tmp_string_2 = g_string_chunk_insert_const (string_chunk, tmp_string);
1374 g_assert (tmp_string_2 != tmp_string && strcmp (tmp_string_2, tmp_string) == 0);
1375 tmp_string = g_string_chunk_insert_const (string_chunk, tmp_string);
1376 g_assert (tmp_string_2 == tmp_string);
1377 g_string_chunk_free (string_chunk);
1379 if (g_test_verbose())
1380 g_print ("test positional printf formats (not supported):");
1381 string = g_strdup_printf ("%.*s%s", 5, "a", "b");
1382 tmp_string = g_strdup_printf ("%2$*1$s", 5, "c");
1383 if (g_test_verbose())
1384 g_print ("%s%s\n", string, tmp_string);
1385 g_free (tmp_string);
1386 g_free (string);
1388 #define REF_INVALID "Wed Dec 19 17:20:20 GMT 2007"
1389 #define REF_SEC_UTC 320063760
1390 #define REF_STR_UTC "1980-02-22T10:36:00Z"
1391 #define REF_STR_CEST "1980-02-22T12:36:00+02:00"
1392 #define REF_STR_EST "1980-02-22T05:36:00-05:00"
1394 if (g_test_verbose())
1395 g_print ("checking g_time_val_from_iso8601...\n");
1396 ref_date.tv_sec = REF_SEC_UTC;
1397 ref_date.tv_usec = 0;
1398 g_assert (g_time_val_from_iso8601 (REF_INVALID, &date) == FALSE);
1399 g_assert (g_time_val_from_iso8601 (REF_STR_UTC, &date) != FALSE);
1400 if (g_test_verbose())
1401 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);
1402 g_assert (date.tv_sec == ref_date.tv_sec);
1404 g_assert (g_time_val_from_iso8601 (REF_STR_CEST, &date) != FALSE);
1405 if (g_test_verbose())
1406 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);
1407 g_assert (date.tv_sec == ref_date.tv_sec);
1409 g_assert (g_time_val_from_iso8601 (REF_STR_EST, &date) != FALSE);
1410 if (g_test_verbose())
1411 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);
1412 g_assert (date.tv_sec == ref_date.tv_sec);
1414 if (g_test_verbose())
1415 g_print ("checking g_time_val_to_iso8601...\n");
1416 ref_date.tv_sec = REF_SEC_UTC;
1417 ref_date.tv_usec = 1;
1418 date_str = g_time_val_to_iso8601 (&ref_date);
1419 g_assert (date_str != NULL);
1420 if (g_test_verbose())
1421 g_print ("\t=> date string = %s (should be: %s)\n", date_str, REF_STR_UTC);
1422 g_assert (strcmp (date_str, REF_STR_UTC) == 0);
1423 g_free (date_str);
1425 if (g_test_verbose())
1426 g_print ("checking g_ascii_strcasecmp...");
1427 g_assert (g_ascii_strcasecmp ("FroboZZ", "frobozz") == 0);
1428 g_assert (g_ascii_strcasecmp ("frobozz", "frobozz") == 0);
1429 g_assert (g_ascii_strcasecmp ("frobozz", "FROBOZZ") == 0);
1430 g_assert (g_ascii_strcasecmp ("FROBOZZ", "froboz") > 0);
1431 g_assert (g_ascii_strcasecmp ("", "") == 0);
1432 g_assert (g_ascii_strcasecmp ("!#%&/()", "!#%&/()") == 0);
1433 g_assert (g_ascii_strcasecmp ("a", "b") < 0);
1434 g_assert (g_ascii_strcasecmp ("a", "B") < 0);
1435 g_assert (g_ascii_strcasecmp ("A", "b") < 0);
1436 g_assert (g_ascii_strcasecmp ("A", "B") < 0);
1437 g_assert (g_ascii_strcasecmp ("b", "a") > 0);
1438 g_assert (g_ascii_strcasecmp ("b", "A") > 0);
1439 g_assert (g_ascii_strcasecmp ("B", "a") > 0);
1440 g_assert (g_ascii_strcasecmp ("B", "A") > 0);
1442 if (g_test_verbose())
1443 g_print ("checking g_strdup...\n");
1444 g_assert (g_strdup (NULL) == NULL);
1445 string = g_strdup (GLIB_TEST_STRING);
1446 g_assert (string != NULL);
1447 g_assert (strcmp(string, GLIB_TEST_STRING) == 0);
1448 g_free (string);
1450 if (g_test_verbose())
1451 g_print ("checking g_strconcat...\n");
1452 string = g_strconcat (GLIB_TEST_STRING, NULL);
1453 g_assert (string != NULL);
1454 g_assert (strcmp (string, GLIB_TEST_STRING) == 0);
1455 g_free (string);
1456 string = g_strconcat (GLIB_TEST_STRING, GLIB_TEST_STRING,
1457 GLIB_TEST_STRING, NULL);
1458 g_assert (string != NULL);
1459 g_assert (strcmp (string, GLIB_TEST_STRING GLIB_TEST_STRING
1460 GLIB_TEST_STRING) == 0);
1461 g_free (string);
1463 if (g_test_verbose())
1464 g_print ("checking g_strlcpy/g_strlcat...");
1465 /* The following is a torture test for strlcpy/strlcat, with lots of
1466 * checking; normal users wouldn't use them this way!
1468 string = g_malloc (6);
1469 *(string + 5) = 'Z'; /* guard value, shouldn't change during test */
1470 *string = 'q';
1471 g_assert (g_strlcpy(string, "" , 5) == 0);
1472 g_assert ( *string == '\0' );
1473 *string = 'q';
1474 g_assert (g_strlcpy(string, "abc" , 5) == 3);
1475 g_assert ( *(string + 3) == '\0' );
1476 g_assert (g_str_equal(string, "abc"));
1477 g_assert (g_strlcpy(string, "abcd" , 5) == 4);
1478 g_assert ( *(string + 4) == '\0' );
1479 g_assert ( *(string + 5) == 'Z' );
1480 g_assert (g_str_equal(string, "abcd"));
1481 g_assert (g_strlcpy(string, "abcde" , 5) == 5);
1482 g_assert ( *(string + 4) == '\0' );
1483 g_assert ( *(string + 5) == 'Z' );
1484 g_assert (g_str_equal(string, "abcd"));
1485 g_assert (g_strlcpy(string, "abcdef" , 5) == 6);
1486 g_assert ( *(string + 4) == '\0' );
1487 g_assert ( *(string + 5) == 'Z' );
1488 g_assert (g_str_equal(string, "abcd"));
1489 *string = 'Y';
1490 *(string + 1)= '\0';
1491 g_assert (g_strlcpy(string, "Hello" , 0) == 5);
1492 g_assert (*string == 'Y');
1493 *string = '\0';
1494 g_assert (g_strlcat(string, "123" , 5) == 3);
1495 g_assert ( *(string + 3) == '\0' );
1496 g_assert (g_str_equal(string, "123"));
1497 g_assert (g_strlcat(string, "" , 5) == 3);
1498 g_assert ( *(string + 3) == '\0' );
1499 g_assert (g_str_equal(string, "123"));
1500 g_assert (g_strlcat(string, "4", 5) == 4);
1501 g_assert (g_str_equal(string, "1234"));
1502 g_assert (g_strlcat(string, "5", 5) == 5);
1503 g_assert ( *(string + 4) == '\0' );
1504 g_assert (g_str_equal(string, "1234"));
1505 g_assert ( *(string + 5) == 'Z' );
1506 *string = 'Y';
1507 *(string + 1)= '\0';
1508 g_assert (g_strlcat(string, "123" , 0) == 3);
1509 g_assert (*string == 'Y');
1511 /* A few more tests, demonstrating more "normal" use */
1512 g_assert (g_strlcpy(string, "hi", 5) == 2);
1513 g_assert (g_str_equal(string, "hi"));
1514 g_assert (g_strlcat(string, "t", 5) == 3);
1515 g_assert (g_str_equal(string, "hit"));
1516 g_free(string);
1518 if (g_test_verbose())
1519 g_print ("checking g_strdup_printf...\n");
1520 string = g_strdup_printf ("%05d %-5s", 21, "test");
1521 g_assert (string != NULL);
1522 g_assert (strcmp(string, "00021 test ") == 0);
1523 g_free (string);
1525 /* g_debug (argv[0]); */
1528 static void
1529 test_mem_chunks (void)
1531 GMemChunk *mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE);
1532 gchar *mem[10000];
1533 guint i;
1534 for (i = 0; i < 10000; i++)
1536 guint j;
1537 mem[i] = g_chunk_new (gchar, mem_chunk);
1538 for (j = 0; j < 50; j++)
1539 mem[i][j] = i * j;
1541 for (i = 0; i < 10000; i++)
1542 g_mem_chunk_free (mem_chunk, mem[i]);
1546 main (int argc,
1547 char *argv[])
1549 g_test_init (&argc, &argv, NULL);
1551 g_test_add_func ("/testglib/Infos", test_info);
1552 g_test_add_func ("/testglib/Types Sizes", type_sizes);
1553 g_test_add_func ("/testglib/GStrings", gstring_tests);
1554 g_test_add_func ("/testglib/Various Strings", various_string_tests);
1555 g_test_add_func ("/testglib/GList", glist_test);
1556 g_test_add_func ("/testglib/GSList", gslist_test);
1557 g_test_add_func ("/testglib/GNode", gnode_test);
1558 g_test_add_func ("/testglib/GTree", binary_tree_test);
1559 g_test_add_func ("/testglib/Arrays", test_arrays);
1560 g_test_add_func ("/testglib/GHashTable", hash_table_tests);
1561 g_test_add_func ("/testglib/Relation", relation_test);
1562 g_test_add_func ("/testglib/File Paths", test_paths);
1563 g_test_add_func ("/testglib/File Functions", test_file_functions);
1564 g_test_add_func ("/testglib/Mkdir", test_g_mkdir_with_parents);
1565 g_test_add_func ("/testglib/Parse Debug Strings", test_g_parse_debug_string);
1566 g_test_add_func ("/testglib/GMemChunk (deprecated)", test_mem_chunks);
1567 g_test_add_func ("/testglib/Warnings & Errors", log_warning_error_tests);
1568 g_test_add_func ("/testglib/Timers (slow)", timer_tests);
1570 return g_test_run();