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/.
29 #undef G_DISABLE_ASSERT
32 #ifdef GLIB_COMPILATION
33 #undef GLIB_COMPILATION
48 #include <io.h> /* For read(), write() etc */
51 static int array[10000];
52 static gboolean failed = FALSE;
54 /* We write (m ? m : "") even in the m != NULL case to suppress a warning with GCC-3.1
56 #define TEST(m,cond) G_STMT_START { failed = !(cond); \
59 g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
61 g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)(m ? m : "")); \
64 g_print ("."); fflush (stdout); \
67 #define C2P(c) ((gpointer) ((long) (c)))
68 #define P2C(p) ((gchar) ((long) (p)))
70 #define GLIB_TEST_STRING "el dorado "
71 #define GLIB_TEST_STRING_5 "el do"
74 node_build_string (GNode *node,
81 c[0] = P2C (node->data);
83 string = g_strconcat (*p ? *p : "", c, NULL);
100 gchar *tstring, *cstring;
102 g_print ("checking n-way trees: ");
105 root = g_node_new (C2P ('A'));
106 TEST (NULL, g_node_depth (root) == 1 && g_node_max_height (root) == 1);
108 node_B = g_node_new (C2P ('B'));
109 g_node_append (root, node_B);
110 TEST (NULL, root->children == node_B);
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')));
116 node_F = g_node_new (C2P ('F'));
117 g_node_append (root, node_F);
118 TEST (NULL, root->children->next == node_F);
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')));
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);
140 for (i = 0; i < g_node_n_children (node_B); i++)
142 node = g_node_nth_child (node_B, i);
143 TEST (NULL, P2C (node->data) == ('C' + i));
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);
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.
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;
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;
182 g_node_reverse_children (node_B);
183 g_node_reverse_children (node_G);
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;
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);
200 g_node_destroy (root);
202 /* allocation tests */
204 root = g_node_new (NULL);
207 for (i = 0; i < 2048; i++)
209 g_node_append (node, g_node_new (NULL));
211 node = node->children->next;
213 TEST (NULL, g_node_max_height (root) > 100);
214 TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
216 g_node_destroy (root);
223 my_hash_callback_remove (gpointer key,
236 my_hash_callback_remove_test (gpointer key,
247 my_hash_callback (gpointer key,
256 my_hash (gconstpointer key)
258 return (guint) *((const gint*) key);
262 my_hash_equal (gconstpointer a,
265 return *((const gint*) a) == *((const gint*) b);
269 my_list_compare_one (gconstpointer a, gconstpointer b)
271 gint one = *((const gint*)a);
272 gint two = *((const gint*)b);
277 my_list_compare_two (gconstpointer a, gconstpointer b)
279 gint one = *((const gint*)a);
280 gint two = *((const gint*)b);
285 my_list_print (gpointer a, gpointer b)
287 gint three = *((gint*)a);
288 g_print("%d", three);
292 my_compare (gconstpointer a,
302 my_traverse (gpointer key,
307 g_print ("%c ", *ch);
312 find_first_that(gpointer key,
317 gint *test = user_data;
318 return (*v == *test);
323 test_g_mkdir_with_parents_1 (const gchar *base)
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);
334 if (g_file_test (p0, G_FILE_TEST_EXISTS))
336 g_print ("failed, %s exists, cannot test g_mkdir_with_parents\n", p0);
340 if (g_file_test (p1, G_FILE_TEST_EXISTS))
342 g_print ("failed, %s exists, cannot test g_mkdir_with_parents\n", p1);
346 if (g_file_test (p2, G_FILE_TEST_EXISTS))
348 g_print ("failed, %s exists, cannot test g_mkdir_with_parents\n", p2);
352 if (g_mkdir_with_parents (p2, 0666) == -1)
354 g_print ("failed, g_mkdir_with_parents(%s) failed: %s\n", p2, g_strerror (errno));
358 if (!g_file_test (p2, G_FILE_TEST_IS_DIR))
360 g_print ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p2);
364 if (!g_file_test (p1, G_FILE_TEST_IS_DIR))
366 g_print ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p1);
370 if (!g_file_test (p0, G_FILE_TEST_IS_DIR))
372 g_print ("failed, g_mkdir_with_parents(%s) succeeded, but %s is not a directory\n", p2, p0);
377 if (g_file_test (p2, G_FILE_TEST_EXISTS))
379 g_print ("failed, did g_rmdir(%s), but %s is still there\n", p2, p2);
384 if (g_file_test (p1, G_FILE_TEST_EXISTS))
386 g_print ("failed, did g_rmdir(%s), but %s is still there\n", p1, p1);
390 f = g_fopen (p1, "w");
393 g_print ("failed, couldn't create file %s\n", p1);
398 if (g_mkdir_with_parents (p1, 0666) == 0)
400 g_print ("failed, g_mkdir_with_parents(%s) succeeded, even if %s is a file\n", p1, p1);
404 if (g_mkdir_with_parents (p2, 0666) == 0)
406 g_print ("failed, g_mkdir_with_parents(%s) succeeded, even if %s is a file\n", p2, p1);
418 test_g_mkdir_with_parents (void)
420 g_print ("checking g_mkdir_with_parents()...");
421 if (!test_g_mkdir_with_parents_1 ("hum"))
424 if (!test_g_mkdir_with_parents_1 ("hii///haa/hee"))
426 g_remove ("hii/haa/hee");
427 g_remove ("hii/haa");
429 if (!test_g_mkdir_with_parents_1 (g_get_current_dir ()))
443 GHashTable *hash_table;
444 GMemChunk *mem_chunk;
445 GStringChunk *string_chunk;
446 GTimer *timer, *timer2;
448 gulong elapsed_usecs;
449 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
450 gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
455 gchar *mem[10000], *tmp_string = NULL, *tmp_string_2;
460 GString *string1, *string2;
461 const gchar *charset;
470 } dirname_checks[] = {
481 { ".\\\\\\\\", "." },
483 { "..\\\\\\\\", ".." },
491 { "//server/share///x", "//server/share" },
497 guint n_dirname_checks = G_N_ELEMENTS (dirname_checks);
502 } skip_root_checks[] = {
511 { "\\\\server\\foo", "" },
512 { "\\\\server\\foo\\bar", "bar" },
516 { "//server/share///x", "//x" },
521 guint n_skip_root_checks = G_N_ELEMENTS (skip_root_checks);
523 #ifndef G_DISABLE_ASSERT
524 guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
525 guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
526 guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U),
527 gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU);
529 const char hello[] = "Hello, World";
530 const int hellolen = sizeof (hello) - 1;
536 /* Can't calculate GLib DLL name at runtime. */
537 gchar *glib_dll = "libglib-2.0-0.dll";
540 gchar *glib_dll = "cygglib-2.0-0.dll";
543 g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
550 string = g_get_current_dir ();
551 g_print ("cwd: %s\n", string);
553 g_print ("user: %s\n", g_get_user_name ());
554 g_print ("real: %s\n", g_get_real_name ());
555 g_print ("host: %s\n", g_get_host_name ());
556 s = g_get_home_dir ();
557 g_print ("home: %s\n", s ? s : "NULL!");
558 s = g_get_user_data_dir ();
559 g_print ("user_data: %s\n", s ? s : "NULL!");
560 s = g_get_user_config_dir ();
561 g_print ("user_config: %s\n", s ? s : "NULL!");
562 s = g_get_user_cache_dir ();
563 g_print ("user_cache: %s\n", s ? s : "NULL!");
564 sv = (gchar **) g_get_system_data_dirs ();
565 g_print ("system_data: %s\n", sv ? g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv) : "NULL!");
566 sv = (gchar **) g_get_system_config_dirs ();
567 g_print ("system_config: %s\n", s ? g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv) : "NULL!");
568 g_print ("tmp-dir: %s\n", g_get_tmp_dir ());
569 sv = (gchar **) g_get_language_names ();
570 g_print ("languages: %s\n", s ? g_strjoinv (":", sv) : "NULL!");
573 g_print ("checking size of gint8: %" G_GSIZE_FORMAT, sizeof (gint8));
574 TEST (NULL, sizeof (gint8) == 1);
575 g_print ("\nchecking size of gint16: %" G_GSIZE_FORMAT, sizeof (gint16));
576 TEST (NULL, sizeof (gint16) == 2);
577 g_print ("\nchecking size of gint32: %" G_GSIZE_FORMAT, sizeof (gint32));
578 TEST (NULL, sizeof (gint32) == 4);
579 g_print ("\nchecking size of gsize: %" G_GSIZE_FORMAT, sizeof (gsize));
580 g_print ("\nchecking size of gint64: %" G_GSIZE_FORMAT, sizeof (gint64));
581 TEST (NULL, sizeof (gint64) == 8);
584 g_print ("checking g_path_get_basename()...");
585 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "dir" G_DIR_SEPARATOR_S);
586 g_assert (strcmp (string, "dir") == 0);
588 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "file");
589 g_assert (strcmp (string, "file") == 0);
593 string = g_path_get_basename ("/foo/dir/");
594 g_assert (strcmp (string, "dir") == 0);
596 string = g_path_get_basename ("/foo/file");
597 g_assert (strcmp (string, "file") == 0);
601 g_print ("checking g_path_get_dirname()...");
602 for (i = 0; i < n_dirname_checks; i++)
606 dirname = g_path_get_dirname (dirname_checks[i].filename);
607 if (strcmp (dirname, dirname_checks[i].dirname) != 0)
609 g_print ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
610 dirname_checks[i].filename,
611 dirname_checks[i].dirname,
613 n_dirname_checks = 0;
617 if (n_dirname_checks)
620 g_print ("checking g_path_skip_root()...");
621 for (i = 0; i < n_skip_root_checks; i++)
623 const gchar *skipped;
625 skipped = g_path_skip_root (skip_root_checks[i].filename);
626 if ((skipped && !skip_root_checks[i].without_root) ||
627 (!skipped && skip_root_checks[i].without_root) ||
628 ((skipped && skip_root_checks[i].without_root) &&
629 strcmp (skipped, skip_root_checks[i].without_root)))
631 g_print ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
632 skip_root_checks[i].filename,
633 (skip_root_checks[i].without_root ?
634 skip_root_checks[i].without_root : "<NULL>"),
635 (skipped ? skipped : "<NULL>"));
636 n_skip_root_checks = 0;
639 if (n_skip_root_checks)
642 if (test_g_mkdir_with_parents ())
645 g_print ("checking doubly linked lists...");
648 for (i = 0; i < 10; i++)
649 list = g_list_append (list, &nums[i]);
650 list = g_list_reverse (list);
652 for (i = 0; i < 10; i++)
654 t = g_list_nth (list, i);
655 if (*((gint*) t->data) != (9 - i))
656 g_error ("Regular insert failed");
659 for (i = 0; i < 10; i++)
660 if(g_list_position(list, g_list_nth (list, i)) != i)
661 g_error("g_list_position does not seem to be the inverse of g_list_nth\n");
666 for (i = 0; i < 10; i++)
667 list = g_list_insert_sorted (list, &morenums[i], my_list_compare_one);
671 g_list_foreach (list, my_list_print, NULL);
674 for (i = 0; i < 10; i++)
676 t = g_list_nth (list, i);
677 if (*((gint*) t->data) != i)
678 g_error ("Sorted insert failed");
684 for (i = 0; i < 10; i++)
685 list = g_list_insert_sorted (list, &morenums[i], my_list_compare_two);
689 g_list_foreach (list, my_list_print, NULL);
692 for (i = 0; i < 10; i++)
694 t = g_list_nth (list, i);
695 if (*((gint*) t->data) != (9 - i))
696 g_error ("Sorted insert failed");
702 for (i = 0; i < 10; i++)
703 list = g_list_prepend (list, &morenums[i]);
705 list = g_list_sort (list, my_list_compare_two);
709 g_list_foreach (list, my_list_print, NULL);
712 for (i = 0; i < 10; i++)
714 t = g_list_nth (list, i);
715 if (*((gint*) t->data) != (9 - i))
716 g_error ("Merge sort failed");
724 g_print ("checking singly linked lists...");
727 for (i = 0; i < 10; i++)
728 slist = g_slist_append (slist, &nums[i]);
729 slist = g_slist_reverse (slist);
731 for (i = 0; i < 10; i++)
733 st = g_slist_nth (slist, i);
734 if (*((gint*) st->data) != (9 - i))
738 g_slist_free (slist);
741 for (i = 0; i < 10; i++)
742 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_one);
746 g_slist_foreach (slist, my_list_print, NULL);
749 for (i = 0; i < 10; i++)
751 st = g_slist_nth (slist, i);
752 if (*((gint*) st->data) != i)
753 g_error ("Sorted insert failed");
759 for (i = 0; i < 10; i++)
760 slist = g_slist_insert_sorted (slist, &morenums[i], my_list_compare_two);
764 g_slist_foreach (slist, my_list_print, NULL);
767 for (i = 0; i < 10; i++)
769 st = g_slist_nth (slist, i);
770 if (*((gint*) st->data) != (9 - i))
771 g_error("Sorted insert failed");
777 for (i = 0; i < 10; i++)
778 slist = g_slist_prepend (slist, &morenums[i]);
780 slist = g_slist_sort (slist, my_list_compare_two);
784 g_slist_foreach (slist, my_list_print, NULL);
787 for (i = 0; i < 10; i++)
789 st = g_slist_nth (slist, i);
790 if (*((gint*) st->data) != (9 - i))
791 g_error("Sorted insert failed");
799 g_print ("checking binary trees...\n");
801 tree = g_tree_new (my_compare);
803 for (j = 0; j < 10; j++, i++)
806 g_tree_insert (tree, &chars[i], &chars[i]);
808 for (j = 0; j < 26; j++, i++)
811 g_tree_insert (tree, &chars[i], &chars[i]);
813 for (j = 0; j < 26; j++, i++)
816 g_tree_insert (tree, &chars[i], &chars[i]);
819 g_print ("tree height: %d\n", g_tree_height (tree));
820 g_print ("tree nnodes: %d\n", g_tree_nnodes (tree));
823 g_tree_foreach (tree, my_traverse, NULL);
826 for (i = 0; i < 10; i++)
827 g_tree_remove (tree, &chars[i]);
829 g_print ("tree height: %d\n", g_tree_height (tree));
830 g_print ("tree nnodes: %d\n", g_tree_nnodes (tree));
833 g_tree_foreach (tree, my_traverse, NULL);
839 /* check n-way trees */
842 g_print ("checking mem chunks...");
844 mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE);
846 for (i = 0; i < 10000; i++)
848 mem[i] = g_chunk_new (gchar, mem_chunk);
850 for (j = 0; j < 50; j++)
854 for (i = 0; i < 10000; i++)
856 g_mem_chunk_free (mem_chunk, mem[i]);
862 g_print ("checking hash tables...");
864 hash_table = g_hash_table_new (my_hash, my_hash_equal);
865 for (i = 0; i < 10000; i++)
868 g_hash_table_insert (hash_table, &array[i], &array[i]);
870 pvalue = g_hash_table_find (hash_table, find_first_that, &value);
871 if (*pvalue != value)
872 g_print("g_hash_table_find failed");
874 g_hash_table_foreach (hash_table, my_hash_callback, NULL);
876 for (i = 0; i < 10000; i++)
880 for (i = 0; i < 10000; i++)
881 g_hash_table_remove (hash_table, &array[i]);
883 for (i = 0; i < 10000; i++)
886 g_hash_table_insert (hash_table, &array[i], &array[i]);
889 if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
890 g_hash_table_size (hash_table) != 5000)
893 g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
896 g_hash_table_destroy (hash_table);
901 g_print ("checking string chunks...");
903 string_chunk = g_string_chunk_new (1024);
905 for (i = 0; i < 100000; i ++)
907 tmp_string = g_string_chunk_insert (string_chunk, "hi pete");
909 if (strcmp ("hi pete", tmp_string) != 0)
910 g_error ("string chunks are broken.\n");
913 tmp_string_2 = g_string_chunk_insert_const (string_chunk, tmp_string);
915 g_assert (tmp_string_2 != tmp_string &&
916 strcmp(tmp_string_2, tmp_string) == 0);
918 tmp_string = g_string_chunk_insert_const (string_chunk, tmp_string);
920 g_assert (tmp_string_2 == tmp_string);
922 g_string_chunk_free (string_chunk);
927 g_print ("checking arrays...");
929 garray = g_array_new (FALSE, FALSE, sizeof (gint));
930 for (i = 0; i < 10000; i++)
931 g_array_append_val (garray, i);
933 for (i = 0; i < 10000; i++)
934 if (g_array_index (garray, gint, i) != i)
935 g_print ("uh oh: %d ( %d )\n", g_array_index (garray, gint, i), i);
937 g_array_free (garray, TRUE);
939 garray = g_array_new (FALSE, FALSE, sizeof (gint));
940 for (i = 0; i < 100; i++)
941 g_array_prepend_val (garray, i);
943 for (i = 0; i < 100; i++)
944 if (g_array_index (garray, gint, i) != (100 - i - 1))
945 g_print ("uh oh: %d ( %d )\n", g_array_index (garray, gint, i), 100 - i - 1);
947 g_array_free (garray, TRUE);
952 g_print ("checking strings...");
954 string1 = g_string_new ("hi pete!");
955 string2 = g_string_new ("");
957 g_assert (strcmp ("hi pete!", string1->str) == 0);
959 for (i = 0; i < 10000; i++)
960 g_string_append_c (string1, 'a'+(i%26));
963 /* MSVC, mingw32 and LCC use the same run-time C library, which doesn't like
964 the %10000.10000f format... */
965 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
966 "this pete guy sure is a wuss, like he's the number ",
968 " wuss. everyone agrees.\n",
970 10, 666, 15, 15, 666.666666666, 666.666666666);
972 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%100.100f",
973 "this pete guy sure is a wuss, like he's the number ",
975 " wuss. everyone agrees.\n",
977 10, 666, 15, 15, 666.666666666, 666.666666666);
980 g_print ("string2 length = %lu...\n", (gulong)string2->len);
981 string2->str[70] = '\0';
982 g_print ("first 70 chars:\n%s\n", string2->str);
983 string2->str[141] = '\0';
984 g_print ("next 70 chars:\n%s\n", string2->str+71);
985 string2->str[212] = '\0';
986 g_print ("and next 70:\n%s\n", string2->str+142);
987 g_print ("last 70 chars:\n%s\n", string2->str+string2->len - 70);
989 g_string_free (string1, TRUE);
990 g_string_free (string2, TRUE);
993 string1 = g_string_new ("firsthalf");
994 g_string_append (string1, "lasthalf");
995 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
996 g_string_free (string1, TRUE);
1000 string1 = g_string_new ("firsthalf");
1001 g_string_append_len (string1, "lasthalfjunkjunk", strlen ("lasthalf"));
1002 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1003 g_string_free (string1, TRUE);
1006 string1 = g_string_new ("lasthalf");
1007 g_string_prepend (string1, "firsthalf");
1008 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1009 g_string_free (string1, TRUE);
1012 string1 = g_string_new ("lasthalf");
1013 g_string_prepend_len (string1, "firsthalfjunkjunk", strlen ("firsthalf"));
1014 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1015 g_string_free (string1, TRUE);
1018 string1 = g_string_new ("firstlast");
1019 g_string_insert (string1, 5, "middle");
1020 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1021 g_string_free (string1, TRUE);
1023 /* insert with pos == end of the string */
1024 string1 = g_string_new ("firstmiddle");
1025 g_string_insert (string1, strlen ("firstmiddle"), "last");
1026 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1027 g_string_free (string1, TRUE);
1031 string1 = g_string_new ("firstlast");
1032 g_string_insert_len (string1, 5, "middlejunkjunk", strlen ("middle"));
1033 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1034 g_string_free (string1, TRUE);
1036 /* insert_len with magic -1 pos for append */
1037 string1 = g_string_new ("first");
1038 g_string_insert_len (string1, -1, "lastjunkjunk", strlen ("last"));
1039 g_assert (strcmp (string1->str, "firstlast") == 0);
1040 g_string_free (string1, TRUE);
1042 /* insert_len with magic -1 len for strlen-the-string */
1043 string1 = g_string_new ("first");
1044 g_string_insert_len (string1, 5, "last", -1);
1045 g_assert (strcmp (string1->str, "firstlast") == 0);
1046 g_string_free (string1, TRUE);
1050 /* g_string_equal */
1051 string1 = g_string_new ("test");
1052 string2 = g_string_new ("te");
1053 g_assert (! g_string_equal(string1, string2));
1054 g_string_append (string2, "st");
1055 g_assert (g_string_equal(string1, string2));
1056 g_string_free (string1, TRUE);
1057 g_string_free (string2, TRUE);
1059 /* Check handling of embedded ASCII 0 (NUL) characters in GString. */
1060 string1 = g_string_new ("fiddle");
1061 string2 = g_string_new ("fiddle");
1062 g_assert (g_string_equal(string1, string2));
1063 g_string_append_c(string1, '\0');
1064 g_assert (! g_string_equal(string1, string2));
1065 g_string_append_c(string2, '\0');
1066 g_assert (g_string_equal(string1, string2));
1067 g_string_append_c(string1, 'x');
1068 g_string_append_c(string2, 'y');
1069 g_assert (! g_string_equal(string1, string2));
1070 g_assert (string1->len == 8);
1071 g_string_append(string1, "yzzy");
1072 g_assert (string1->len == 12);
1073 g_assert ( memcmp(string1->str, "fiddle\0xyzzy", 13) == 0);
1074 g_string_insert(string1, 1, "QED");
1075 g_assert ( memcmp(string1->str, "fQEDiddle\0xyzzy", 16) == 0);
1076 g_string_free (string1, TRUE);
1077 g_string_free (string2, TRUE);
1079 g_print ("test positional printf formats (not supported): ");
1080 string = g_strdup_printf ("%.*s%s", 5, "a", "b");
1081 tmp_string = g_strdup_printf ("%2$*1$s", 5, "c");
1082 g_print ("%s%s\n", string, tmp_string);
1083 g_free (tmp_string);
1086 g_print ("checking timers...\n");
1088 timer = g_timer_new ();
1089 g_print (" spinning for 3 seconds...\n");
1091 g_timer_start (timer);
1092 while (g_timer_elapsed (timer, NULL) < 3)
1095 g_timer_stop (timer);
1096 g_timer_destroy (timer);
1100 g_print ("checking g_timer_continue...\n");
1102 timer2 = g_timer_new ();
1104 g_print ("\trun for 1 second...\n");
1105 timer = g_timer_new();
1106 g_usleep(G_USEC_PER_SEC); /* run timer for 1 second */
1107 g_timer_stop(timer);
1109 g_print ("\tstop for 1 second...\n");
1110 g_usleep(G_USEC_PER_SEC); /* wait for 1 second */
1111 g_print ("\trun for 2 seconds...\n");
1113 g_timer_continue(timer);
1114 g_usleep(2*G_USEC_PER_SEC); /* run timer for 2 seconds */
1115 g_timer_stop(timer);
1117 g_print ("\tstop for 1.5 seconds...\n");
1118 g_usleep((3*G_USEC_PER_SEC)/2); /* wait for 1.5 seconds */
1119 g_print ("\trun for 0.2 seconds...\n");
1121 g_timer_continue(timer);
1122 g_usleep(G_USEC_PER_SEC/5); /* run timer for 0.2 seconds */
1123 g_timer_stop(timer);
1125 g_print ("\tstop for 4 seconds...\n");
1126 g_usleep(4*G_USEC_PER_SEC); /* wait for 4 seconds */
1127 g_print ("\trun for 5.8 seconds...\n");
1129 g_timer_continue(timer);
1130 g_usleep((29*G_USEC_PER_SEC)/5); /* run timer for 5.8 seconds */
1131 g_timer_stop(timer);
1133 elapsed = g_timer_elapsed (timer, &elapsed_usecs);
1134 g_print ("\t=> timer = %.6f = %d.%06ld (should be: 9.000000) (%.6f off)\n", elapsed, (int) elapsed, elapsed_usecs, ABS (elapsed - 9.));
1136 if (elapsed > 8.8 && elapsed < 9.2)
1137 g_print ("g_timer_continue ... ok\n\n");
1139 g_print ("g_timer_continue ... ***** FAILED *****\n\n");
1141 g_timer_stop(timer2);
1143 elapsed = g_timer_elapsed(timer2, &elapsed_usecs);
1144 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)));
1146 if (elapsed > (8.8+6.5) && elapsed < (9.2+6.5))
1147 g_print ("timer2 ... ok\n\n");
1149 g_print ("timer2 ... ***** FAILED *****\n\n");
1151 g_timer_destroy(timer);
1152 g_timer_destroy(timer2);
1154 g_print ("checking g_ascii_strcasecmp...");
1155 g_assert (g_ascii_strcasecmp ("FroboZZ", "frobozz") == 0);
1156 g_assert (g_ascii_strcasecmp ("frobozz", "frobozz") == 0);
1157 g_assert (g_ascii_strcasecmp ("frobozz", "FROBOZZ") == 0);
1158 g_assert (g_ascii_strcasecmp ("FROBOZZ", "froboz") > 0);
1159 g_assert (g_ascii_strcasecmp ("", "") == 0);
1160 g_assert (g_ascii_strcasecmp ("!#%&/()", "!#%&/()") == 0);
1161 g_assert (g_ascii_strcasecmp ("a", "b") < 0);
1162 g_assert (g_ascii_strcasecmp ("a", "B") < 0);
1163 g_assert (g_ascii_strcasecmp ("A", "b") < 0);
1164 g_assert (g_ascii_strcasecmp ("A", "B") < 0);
1165 g_assert (g_ascii_strcasecmp ("b", "a") > 0);
1166 g_assert (g_ascii_strcasecmp ("b", "A") > 0);
1167 g_assert (g_ascii_strcasecmp ("B", "a") > 0);
1168 g_assert (g_ascii_strcasecmp ("B", "A") > 0);
1172 g_print ("checking g_strdup...");
1173 g_assert(g_strdup(NULL) == NULL);
1174 string = g_strdup(GLIB_TEST_STRING);
1175 g_assert(string != NULL);
1176 g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
1181 g_print ("checking g_strconcat...");
1182 string = g_strconcat(GLIB_TEST_STRING, NULL);
1183 g_assert(string != NULL);
1184 g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
1186 string = g_strconcat(GLIB_TEST_STRING, GLIB_TEST_STRING,
1187 GLIB_TEST_STRING, NULL);
1188 g_assert(string != NULL);
1189 g_assert(strcmp(string, GLIB_TEST_STRING GLIB_TEST_STRING
1190 GLIB_TEST_STRING) == 0);
1195 g_print("checking g_strlcpy/g_strlcat...");
1196 /* The following is a torture test for strlcpy/strlcat, with lots of
1197 * checking; normal users wouldn't use them this way!
1199 string = g_malloc (6);
1200 *(string + 5) = 'Z'; /* guard value, shouldn't change during test */
1202 g_assert (g_strlcpy(string, "" , 5) == 0);
1203 g_assert ( *string == '\0' );
1205 g_assert (g_strlcpy(string, "abc" , 5) == 3);
1206 g_assert ( *(string + 3) == '\0' );
1207 g_assert (g_str_equal(string, "abc"));
1208 g_assert (g_strlcpy(string, "abcd" , 5) == 4);
1209 g_assert ( *(string + 4) == '\0' );
1210 g_assert ( *(string + 5) == 'Z' );
1211 g_assert (g_str_equal(string, "abcd"));
1212 g_assert (g_strlcpy(string, "abcde" , 5) == 5);
1213 g_assert ( *(string + 4) == '\0' );
1214 g_assert ( *(string + 5) == 'Z' );
1215 g_assert (g_str_equal(string, "abcd"));
1216 g_assert (g_strlcpy(string, "abcdef" , 5) == 6);
1217 g_assert ( *(string + 4) == '\0' );
1218 g_assert ( *(string + 5) == 'Z' );
1219 g_assert (g_str_equal(string, "abcd"));
1221 *(string + 1)= '\0';
1222 g_assert (g_strlcpy(string, "Hello" , 0) == 5);
1223 g_assert (*string == 'Y');
1225 g_assert (g_strlcat(string, "123" , 5) == 3);
1226 g_assert ( *(string + 3) == '\0' );
1227 g_assert (g_str_equal(string, "123"));
1228 g_assert (g_strlcat(string, "" , 5) == 3);
1229 g_assert ( *(string + 3) == '\0' );
1230 g_assert (g_str_equal(string, "123"));
1231 g_assert (g_strlcat(string, "4", 5) == 4);
1232 g_assert (g_str_equal(string, "1234"));
1233 g_assert (g_strlcat(string, "5", 5) == 5);
1234 g_assert ( *(string + 4) == '\0' );
1235 g_assert (g_str_equal(string, "1234"));
1236 g_assert ( *(string + 5) == 'Z' );
1238 *(string + 1)= '\0';
1239 g_assert (g_strlcat(string, "123" , 0) == 3);
1240 g_assert (*string == 'Y');
1242 /* A few more tests, demonstrating more "normal" use */
1243 g_assert (g_strlcpy(string, "hi", 5) == 2);
1244 g_assert (g_str_equal(string, "hi"));
1245 g_assert (g_strlcat(string, "t", 5) == 3);
1246 g_assert (g_str_equal(string, "hit"));
1252 g_print ("checking g_strdup_printf...");
1253 string = g_strdup_printf ("%05d %-5s", 21, "test");
1254 g_assert (string != NULL);
1255 g_assert (strcmp(string, "00021 test ") == 0);
1260 /* g_debug (argv[0]); */
1262 /* Relation tests */
1264 g_print ("checking relations...");
1266 relation = g_relation_new (2);
1268 g_relation_index (relation, 0, g_int_hash, g_int_equal);
1269 g_relation_index (relation, 1, g_int_hash, g_int_equal);
1271 for (i = 0; i < 1024; i += 1)
1274 for (i = 1; i < 1023; i += 1)
1276 g_relation_insert (relation, data + i, data + i + 1);
1277 g_relation_insert (relation, data + i, data + i - 1);
1280 for (i = 2; i < 1022; i += 1)
1282 g_assert (! g_relation_exists (relation, data + i, data + i));
1283 g_assert (! g_relation_exists (relation, data + i, data + i + 2));
1284 g_assert (! g_relation_exists (relation, data + i, data + i - 2));
1287 for (i = 1; i < 1023; i += 1)
1289 g_assert (g_relation_exists (relation, data + i, data + i + 1));
1290 g_assert (g_relation_exists (relation, data + i, data + i - 1));
1293 for (i = 2; i < 1022; i += 1)
1295 g_assert (g_relation_count (relation, data + i, 0) == 2);
1296 g_assert (g_relation_count (relation, data + i, 1) == 2);
1299 g_assert (g_relation_count (relation, data, 0) == 0);
1301 g_assert (g_relation_count (relation, data + 42, 0) == 2);
1302 g_assert (g_relation_count (relation, data + 43, 1) == 2);
1303 g_assert (g_relation_count (relation, data + 41, 1) == 2);
1304 g_relation_delete (relation, data + 42, 0);
1305 g_assert (g_relation_count (relation, data + 42, 0) == 0);
1306 g_assert (g_relation_count (relation, data + 43, 1) == 1);
1307 g_assert (g_relation_count (relation, data + 41, 1) == 1);
1309 tuples = g_relation_select (relation, data + 200, 0);
1311 g_assert (tuples->len == 2);
1314 for (i = 0; i < tuples->len; i += 1)
1317 *(gint*) g_tuples_index (tuples, i, 0),
1318 *(gint*) g_tuples_index (tuples, i, 1));
1322 g_assert (g_relation_exists (relation, data + 300, data + 301));
1323 g_relation_delete (relation, data + 300, 0);
1324 g_assert (!g_relation_exists (relation, data + 300, data + 301));
1326 g_tuples_destroy (tuples);
1328 g_relation_destroy (relation);
1334 g_print ("checking pointer arrays...");
1336 gparray = g_ptr_array_new ();
1337 for (i = 0; i < 10000; i++)
1338 g_ptr_array_add (gparray, GINT_TO_POINTER (i));
1340 for (i = 0; i < 10000; i++)
1341 if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
1342 g_print ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
1344 g_ptr_array_free (gparray, TRUE);
1349 g_print ("checking byte arrays...");
1351 gbarray = g_byte_array_new ();
1352 for (i = 0; i < 10000; i++)
1353 g_byte_array_append (gbarray, (guint8*) "abcd", 4);
1355 for (i = 0; i < 10000; i++)
1357 g_assert (gbarray->data[4*i] == 'a');
1358 g_assert (gbarray->data[4*i+1] == 'b');
1359 g_assert (gbarray->data[4*i+2] == 'c');
1360 g_assert (gbarray->data[4*i+3] == 'd');
1363 g_byte_array_free (gbarray, TRUE);
1366 g_printerr ("g_log tests:");
1367 g_warning ("harmless warning with parameters: %d %s %#x", 42, "Boo", 12345);
1368 g_message ("the next warning is a test:");
1371 g_message ("non-printable UTF-8: \"\xc3\xa4\xda\x85\"");
1372 g_message ("unsafe chars: \"\x10\x11\x12\n\t\x7f\x81\x82\x83\"");
1374 g_print ("checking endian macros (host is ");
1375 #if G_BYTE_ORDER == G_BIG_ENDIAN
1376 g_print ("big endian)...");
1378 g_print ("little endian)...");
1380 g_assert (GUINT16_SWAP_LE_BE (gu16t1) == gu16t2);
1381 g_assert (GUINT32_SWAP_LE_BE (gu32t1) == gu32t2);
1382 g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);
1386 if (g_get_charset ((G_CONST_RETURN char**)&charset))
1387 g_print ("current charset is UTF-8: %s\n", charset);
1389 g_print ("current charset is not UTF-8: %s\n", charset);
1391 #ifdef G_PLATFORM_WIN32
1392 g_print ("current locale: %s\n", g_win32_getlocale ());
1393 g_print ("GLib DLL name tested for: %s\n", glib_dll);
1395 g_print ("GLib installation directory, from Registry entry for %s if available: %s\n",
1397 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, NULL));
1398 g_print ("Ditto, or from GLib DLL name: %s\n",
1399 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, glib_dll));
1400 g_print ("Ditto, only from GLib DLL name: %s\n",
1401 g_win32_get_package_installation_directory (NULL, glib_dll));
1402 g_print ("locale subdirectory of GLib installation directory: %s\n",
1403 g_win32_get_package_installation_subdirectory (NULL, glib_dll, "lib\\locale"));
1404 g_print ("GTK+ 2.0 installation directory, if available: %s\n",
1405 g_win32_get_package_installation_directory ("gtk20", NULL));
1407 g_print ("found more.com as %s\n", g_find_program_in_path ("more.com"));
1408 g_print ("found regedit as %s\n", g_find_program_in_path ("regedit"));
1410 g_print ("a Win32 error message: %s\n", g_win32_error_message (2));
1414 g_print ("checking file functions...\n");
1416 strcpy (template, "foobar");
1417 fd = g_mkstemp (template);
1419 g_print ("g_mkstemp works even if template doesn't end in XXXXXX\n");
1421 strcpy (template, "fooXXXXXX");
1422 fd = g_mkstemp (template);
1424 g_print ("g_mkstemp didn't work for template %s\n", template);
1425 i = write (fd, hello, hellolen);
1427 g_print ("write() failed: %s\n", g_strerror (errno));
1428 else if (i != hellolen)
1429 g_print ("write() should have written %d bytes, wrote %d\n", hellolen, i);
1432 i = read (fd, chars, sizeof (chars));
1434 g_print ("read() failed: %s\n", g_strerror (errno));
1435 else if (i != hellolen)
1436 g_print ("read() should have read %d bytes, got %d\n", hellolen, i);
1439 if (strcmp (chars, hello) != 0)
1440 g_print ("wrote '%s', but got '%s'\n", hello, chars);
1446 strcpy (template, "zap" G_DIR_SEPARATOR_S "barXXXXXX");
1447 fd = g_file_open_tmp (template, &name_used, &error);
1449 g_print ("g_file_open_tmp works even if template contains '%s'\n",
1452 g_print ("g_file_open_tmp correctly returns error: %s\n",
1455 g_clear_error (&error);
1458 strcpy (template, "zap/barXXXXXX");
1459 fd = g_file_open_tmp (template, &name_used, &error);
1461 g_print ("g_file_open_tmp works even if template contains '/'\n");
1463 g_print ("g_file_open_tmp correctly returns error: %s\n",
1466 g_clear_error (&error);
1469 strcpy (template, "zapXXXXXX");
1470 fd = g_file_open_tmp (template, &name_used, &error);
1472 g_print ("g_file_open_tmp didn't work for template '%s': %s\n",
1473 template, error->message);
1475 g_print ("g_file_open_tmp for template '%s' used name '%s'\n",
1476 template, name_used);
1478 g_clear_error (&error);
1481 fd = g_file_open_tmp (NULL, &name_used, &error);
1483 g_print ("g_file_open_tmp didn't work for a NULL template: %s\n",
1486 g_print ("g_file_open_tmp for NULL template used name '%s'\n",
1489 g_clear_error (&error);