Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
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 GLIB_COMPILATION
36 #include <glib/gstdio.h>
40 #include <glib_global.h>
41 #include "mrt2_glib2_test.h"
42 #endif /*__SYMBIAN32__*/
49 #include <io.h> /* For read(), write() etc */
53 #define GLIB_TEST_STRING "el dorado "
54 #define GLIB_TEST_STRING_5 "el do"
57 /* --- variables --- */
58 static gint test_nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
59 static gint more_nums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
61 /* --- functions --- */
63 my_list_compare_one (gconstpointer a, gconstpointer b)
65 gint one = *((const gint*)a);
66 gint two = *((const gint*)b);
71 my_list_compare_two (gconstpointer a, gconstpointer b)
73 gint one = *((const gint*)a);
74 gint two = *((const gint*)b);
79 my_list_print (gpointer a, gpointer b)
81 gint three = *((gint*)a);
91 for (i = 0; i < 10; i++)
92 list = g_list_append (list, &test_nums[i]);
93 list = g_list_reverse (list);
95 for (i = 0; i < 10; i++)
97 GList *t = g_list_nth (list, i);
98 if (*((gint*) t->data) != (9 - i))
99 g_error ("Regular insert failed");
102 for (i = 0; i < 10; i++)
103 if (g_list_position (list, g_list_nth (list, i)) != i)
104 g_error ("g_list_position does not seem to be the inverse of g_list_nth\n");
109 for (i = 0; i < 10; i++)
110 list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_one);
114 g_list_foreach (list, my_list_print, NULL);
117 for (i = 0; i < 10; i++)
119 GList *t = g_list_nth (list, i);
120 if (*((gint*) t->data) != i)
121 g_error ("Sorted insert failed");
127 for (i = 0; i < 10; i++)
128 list = g_list_insert_sorted (list, &more_nums[i], my_list_compare_two);
132 g_list_foreach (list, my_list_print, NULL);
135 for (i = 0; i < 10; i++)
137 GList *t = g_list_nth (list, i);
138 if (*((gint*) t->data) != (9 - i))
139 g_error ("Sorted insert failed");
145 for (i = 0; i < 10; i++)
146 list = g_list_prepend (list, &more_nums[i]);
148 list = g_list_sort (list, my_list_compare_two);
152 g_list_foreach (list, my_list_print, NULL);
155 for (i = 0; i < 10; i++)
157 GList *t = g_list_nth (list, i);
158 if (*((gint*) t->data) != (9 - i))
159 g_error ("Merge sort failed");
168 GSList *slist = NULL;
171 for (i = 0; i < 10; i++)
172 slist = g_slist_append (slist, &test_nums[i]);
173 slist = g_slist_reverse (slist);
175 for (i = 0; i < 10; i++)
177 GSList *st = g_slist_nth (slist, i);
178 if (*((gint*) st->data) != (9 - i))
182 g_slist_free (slist);
185 for (i = 0; i < 10; i++)
186 slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_one);
190 g_slist_foreach (slist, my_list_print, NULL);
193 for (i = 0; i < 10; i++)
195 GSList *st = g_slist_nth (slist, i);
196 if (*((gint*) st->data) != i)
197 g_error ("Sorted insert failed");
200 g_slist_free (slist);
203 for (i = 0; i < 10; i++)
204 slist = g_slist_insert_sorted (slist, &more_nums[i], my_list_compare_two);
208 g_slist_foreach (slist, my_list_print, NULL);
211 for (i = 0; i < 10; i++)
213 GSList *st = g_slist_nth (slist, i);
214 if (*((gint*) st->data) != (9 - i))
215 g_error("Sorted insert failed");
221 for (i = 0; i < 10; i++)
222 slist = g_slist_prepend (slist, &more_nums[i]);
224 slist = g_slist_sort (slist, my_list_compare_two);
228 g_slist_foreach (slist, my_list_print, NULL);
231 for (i = 0; i < 10; i++)
233 GSList *st = g_slist_nth (slist, i);
234 if (*((gint*) st->data) != (9 - i))
235 g_error("Sorted insert failed");
242 node_build_string (GNode *node,
249 c[0] = ((gchar) ((gintptr) (node->data)));
251 string = g_strconcat (*p ? *p : "", c, NULL);
261 #define C2P(c) ((gpointer) ((long) (c)))
262 #define P2C(p) ((gchar) ((gintptr) (p)))
270 gchar *tstring, *cstring;
272 root = g_node_new (C2P ('A'));
273 g_assert (g_node_depth (root) == 1 && g_node_max_height (root) == 1);
275 node_B = g_node_new (C2P ('B'));
276 g_node_append (root, node_B);
277 g_assert (root->children == node_B);
279 g_node_append_data (node_B, C2P ('E'));
280 g_node_prepend_data (node_B, C2P ('C'));
281 g_node_insert (node_B, 1, g_node_new (C2P ('D')));
283 node_F = g_node_new (C2P ('F'));
284 g_node_append (root, node_F);
285 g_assert (root->children->next == node_F);
287 node_G = g_node_new (C2P ('G'));
288 g_node_append (node_F, node_G);
289 node_J = g_node_new (C2P ('J'));
290 g_node_prepend (node_G, node_J);
291 g_node_insert (node_G, 42, g_node_new (C2P ('K')));
292 g_node_insert_data (node_G, 0, C2P ('H'));
293 g_node_insert (node_G, 1, g_node_new (C2P ('I')));
295 g_assert (g_node_depth (root) == 1);
296 g_assert (g_node_max_height (root) == 4);
297 g_assert (g_node_depth (node_G->children->next) == 4);
298 g_assert (g_node_n_nodes (root, G_TRAVERSE_LEAFS) == 7);
299 g_assert (g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4);
300 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 11);
301 g_assert (g_node_max_height (node_F) == 3);
302 g_assert (g_node_n_children (node_G) == 4);
303 g_assert (g_node_find_child (root, G_TRAVERSE_ALL, C2P ('F')) == node_F);
304 g_assert (g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL);
305 g_assert (g_node_find (root, G_IN_ORDER, G_TRAVERSE_LEAFS, C2P ('J')) == node_J);
307 for (i = 0; i < g_node_n_children (node_B); i++)
309 node = g_node_nth_child (node_B, i);
310 g_assert (P2C (node->data) == ('C' + i));
313 for (i = 0; i < g_node_n_children (node_G); i++)
314 g_assert (g_node_child_position (node_G, g_node_nth_child (node_G, i)) == i);
324 * for in-order traversal, 'G' is considered to be the "left"
325 * child of 'F', which will cause 'F' to be the last node visited.
329 g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
330 g_assert_cmpstr (tstring, ==, "ABCDEFGHIJK");
331 g_free (tstring); tstring = NULL;
332 g_node_traverse (root, G_POST_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
333 g_assert_cmpstr (tstring, ==, "CDEBHIJKGFA");
334 g_free (tstring); tstring = NULL;
335 g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
336 g_assert_cmpstr (tstring, ==, "CBDEAHGIJKF");
337 g_free (tstring); tstring = NULL;
338 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
339 g_assert_cmpstr (tstring, ==, "ABFCDEGHIJK");
340 g_free (tstring); tstring = NULL;
342 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_LEAFS, -1, node_build_string, &tstring);
343 g_assert_cmpstr (tstring, ==, "CDEHIJK");
344 g_free (tstring); tstring = NULL;
345 g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring);
346 g_assert_cmpstr (tstring, ==, "ABFG");
347 g_free (tstring); tstring = NULL;
349 g_node_reverse_children (node_B);
350 g_node_reverse_children (node_G);
352 g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
353 g_assert_cmpstr (tstring, ==, "ABFEDCGKJIH");
354 g_free (tstring); tstring = NULL;
357 node = g_node_copy (root);
358 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == g_node_n_nodes (node, G_TRAVERSE_ALL));
359 g_assert (g_node_max_height (root) == g_node_max_height (node));
360 g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
361 g_node_traverse (node, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &cstring);
362 g_assert_cmpstr (tstring, ==, cstring);
363 g_free (tstring); tstring = NULL;
364 g_free (cstring); cstring = NULL;
365 g_node_destroy (node);
367 g_node_destroy (root);
369 /* allocation tests */
371 root = g_node_new (NULL);
374 for (i = 0; i < 2048; i++)
376 g_node_append (node, g_node_new (NULL));
378 node = node->children->next;
380 g_assert (g_node_max_height (root) > 100);
381 g_assert (g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
383 g_node_destroy (root);
389 my_compare (gconstpointer a,
399 my_traverse (gpointer key,
404 g_print ("%c ", *ch);
409 binary_tree_test (void)
415 tree = g_tree_new (my_compare);
417 for (j = 0; j < 10; j++, i++)
420 g_tree_insert (tree, &chars[i], &chars[i]);
422 for (j = 0; j < 26; j++, i++)
425 g_tree_insert (tree, &chars[i], &chars[i]);
427 for (j = 0; j < 26; j++, i++)
430 g_tree_insert (tree, &chars[i], &chars[i]);
433 g_assert_cmpint (g_tree_nnodes (tree), ==, 10 + 26 + 26);
434 g_assert_cmpint (g_tree_height (tree), ==, 6);
436 if (g_test_verbose())
439 g_tree_foreach (tree, my_traverse, NULL);
443 for (i = 0; i < 10; i++)
444 g_tree_remove (tree, &chars[i]);
446 g_assert_cmpint (g_tree_nnodes (tree), ==, 26 + 26);
447 g_assert_cmpint (g_tree_height (tree), ==, 6);
449 if (g_test_verbose())
452 g_tree_foreach (tree, my_traverse, NULL);
458 my_hash_callback_remove (gpointer key,
471 my_hash_callback_remove_test (gpointer key,
482 my_hash_callback (gpointer key,
491 my_hash (gconstpointer key)
493 return (guint) *((const gint*) key);
497 my_hash_equal (gconstpointer a,
500 return *((const gint*) a) == *((const gint*) b);
504 find_first_that(gpointer key,
509 gint *test = user_data;
510 return (*v == *test);
514 test_g_parse_debug_string (void)
516 GDebugKey keys[3] = {
524 result = g_parse_debug_string ("bar:foo:blubb", keys, n_keys);
525 g_assert (result == 3);
527 result = g_parse_debug_string (":baz::_E@~!_::", keys, n_keys);
528 g_assert (result == 4);
530 result = g_parse_debug_string ("", keys, n_keys);
531 g_assert (result == 0);
533 result = g_parse_debug_string (" : ", keys, n_keys);
534 g_assert (result == 0);
538 log_warning_error_tests (void)
540 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
542 g_message ("this is a g_message test.");
543 g_message ("non-printable UTF-8: \"\xc3\xa4\xda\x85\"");
544 g_message ("unsafe chars: \"\x10\x11\x12\n\t\x7f\x81\x82\x83\"");
547 g_test_trap_assert_passed();
548 g_test_trap_assert_stderr ("*is a g_message test*");
549 g_test_trap_assert_stderr ("*non-printable UTF-8*");
550 g_test_trap_assert_stderr ("*unsafe chars*");
551 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
553 g_warning ("harmless warning with parameters: %d %s %#x", 42, "Boo", 12345);
556 g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
557 g_test_trap_assert_stderr ("*harmless warning*");
558 if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
563 g_test_trap_assert_failed(); /* we have fatal-warnings enabled */
564 g_test_trap_assert_stderr ("*g_print*assertion*failed*");
565 g_test_trap_assert_stderr ("*NULL*");
571 GTimer *timer, *timer2;
575 timer = g_timer_new ();
576 g_timer_start (timer);
577 elapsed = g_timer_elapsed (timer, NULL);
578 g_timer_stop (timer);
579 g_assert_cmpfloat (elapsed, <=, g_timer_elapsed (timer, NULL));
580 g_timer_destroy (timer);
584 if (g_test_verbose())
585 g_print ("checking timers...\n");
586 timer = g_timer_new ();
587 if (g_test_verbose())
588 g_print (" spinning for 3 seconds...\n");
589 g_timer_start (timer);
590 while (g_timer_elapsed (timer, NULL) < 3)
592 g_timer_stop (timer);
593 g_timer_destroy (timer);
594 if (g_test_verbose())
600 gulong elapsed_usecs;
601 if (g_test_verbose())
602 g_print ("checking g_timer_continue...\n");
603 timer2 = g_timer_new ();
604 if (g_test_verbose())
605 g_print ("\trun for 1 second...\n");
606 timer = g_timer_new();
607 g_usleep (G_USEC_PER_SEC); /* run timer for 1 second */
608 g_timer_stop (timer);
609 if (g_test_verbose())
610 g_print ("\tstop for 1 second...\n");
611 g_usleep (G_USEC_PER_SEC); /* wait for 1 second */
612 if (g_test_verbose())
613 g_print ("\trun for 2 seconds...\n");
614 g_timer_continue (timer);
615 g_usleep (2 * G_USEC_PER_SEC); /* run timer for 2 seconds */
617 if (g_test_verbose())
618 g_print ("\tstop for 1.5 seconds...\n");
619 g_usleep ((3 * G_USEC_PER_SEC) / 2); /* wait for 1.5 seconds */
620 if (g_test_verbose())
621 g_print ("\trun for 0.2 seconds...\n");
622 g_timer_continue (timer);
623 g_usleep (G_USEC_PER_SEC / 5); /* run timer for 0.2 seconds */
624 g_timer_stop (timer);
625 if (g_test_verbose())
626 g_print ("\tstop for 4 seconds...\n");
627 g_usleep (4 * G_USEC_PER_SEC); /* wait for 4 seconds */
628 if (g_test_verbose())
629 g_print ("\trun for 5.8 seconds...\n");
630 g_timer_continue (timer);
631 g_usleep ((29 * G_USEC_PER_SEC) / 5); /* run timer for 5.8 seconds */
633 elapsed = g_timer_elapsed (timer, &elapsed_usecs);
634 if (g_test_verbose())
635 g_print ("\t=> timer = %.6f = %d.%06ld (should be: 9.000000) (%.6f off)\n", elapsed, (int) elapsed, elapsed_usecs, ABS (elapsed - 9.));
636 g_assert_cmpfloat (elapsed, >, 8.8);
637 g_assert_cmpfloat (elapsed, <, 9.2);
638 if (g_test_verbose())
639 g_print ("g_timer_continue ... ok\n\n");
640 g_timer_stop (timer2);
641 elapsed = g_timer_elapsed (timer2, &elapsed_usecs);
642 if (g_test_verbose())
643 g_print ("\t=> timer2 = %.6f = %d.%06ld (should be: %.6f) (%.6f off)\n\n", elapsed, (int) elapsed, elapsed_usecs, 9.+6.5, ABS (elapsed - (9.+6.5)));
644 g_assert_cmpfloat (elapsed, >, 8.8 + 6.5);
645 g_assert_cmpfloat (elapsed, <, 9.2 + 6.5);
646 if (g_test_verbose())
647 g_print ("timer2 ... ok\n\n");
648 g_timer_destroy (timer);
649 g_timer_destroy (timer2);
656 guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
657 guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
658 guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U),
659 gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU);
661 g_assert_cmpint (sizeof (gint8), ==, 1);
662 g_assert_cmpint (sizeof (gint16), ==, 2);
663 g_assert_cmpint (sizeof (gint32), ==, 4);
664 g_assert_cmpint (sizeof (gint64), ==, 8);
666 if (g_test_verbose())
667 g_print ("checking endian macros (host is %s)...\n",
668 G_BYTE_ORDER == G_BIG_ENDIAN ? "big endian" : "little endian");
669 g_assert (GUINT16_SWAP_LE_BE (gu16t1) == gu16t2);
670 g_assert (GUINT32_SWAP_LE_BE (gu32t1) == gu32t2);
671 g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);
677 const gchar *un, *rn, *hn;
678 const gchar *tmpdir, *homedir, *userdatadir, *uconfdir, *ucachedir;
679 const gchar *uddesktop, *udddocs, *uddpubshare;
680 gchar **sv, *cwd, *sdatadirs, *sconfdirs, *langnames;
681 if (g_test_verbose())
682 g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
689 cwd = g_get_current_dir ();
690 un = g_get_user_name();
691 rn = g_get_real_name();
692 hn = g_get_host_name();
693 if (g_test_verbose())
695 g_print ("cwd: %s\n", cwd);
696 g_print ("user: %s\n", un);
697 g_print ("real: %s\n", rn);
698 g_print ("host: %s\n", hn);
702 tmpdir = g_get_tmp_dir();
703 g_assert (tmpdir != NULL);
704 homedir = g_get_home_dir ();
705 g_assert (homedir != NULL);
706 userdatadir = g_get_user_data_dir ();
707 g_assert (userdatadir != NULL);
708 uconfdir = g_get_user_config_dir ();
709 g_assert (uconfdir != NULL);
710 ucachedir = g_get_user_cache_dir ();
711 g_assert (ucachedir != NULL);
713 uddesktop = g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP);
714 g_assert (uddesktop != NULL);
715 udddocs = g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS);
716 uddpubshare = g_get_user_special_dir (G_USER_DIRECTORY_PUBLIC_SHARE);
718 sv = (gchar **) g_get_system_data_dirs ();
719 sdatadirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
720 sv = (gchar **) g_get_system_config_dirs ();
721 sconfdirs = g_strjoinv (G_SEARCHPATH_SEPARATOR_S, sv);
722 sv = (gchar **) g_get_language_names ();
723 langnames = g_strjoinv (":", sv);
725 if (g_test_verbose())
727 g_print ("tmp-dir: %s\n", tmpdir);
728 g_print ("home: %s\n", homedir);
729 g_print ("user_data: %s\n", userdatadir);
730 g_print ("user_config: %s\n", uconfdir);
731 g_print ("user_cache: %s\n", ucachedir);
732 g_print ("system_data: %s\n", sdatadirs);
733 g_print ("system_config: %s\n", sconfdirs);
734 g_print ("languages: %s\n", langnames);
735 g_print ("user_special[DESKTOP]: %s\n", uddesktop);
736 g_print ("user_special[DOCUMENTS]: %s\n", udddocs);
737 g_print ("user_special[PUBLIC_SHARE]: %s\n", uddpubshare);
743 if (g_test_verbose())
745 #ifdef G_PLATFORM_WIN32
748 const gchar *charset;
749 if (g_get_charset ((G_CONST_RETURN char**)&charset))
750 g_print ("current charset is UTF-8: %s\n", charset);
752 g_print ("current charset is not UTF-8: %s\n", charset);
754 #ifdef G_PLATFORM_WIN32
756 /* Can't calculate GLib DLL name at runtime. */
757 glib_dll = "libglib-2.0-0.dll";
760 glib_dll = "cygglib-2.0-0.dll";
763 g_print ("current locale: %s\n", g_win32_getlocale ());
764 g_print ("GLib DLL name tested for: %s\n", glib_dll);
766 g_print ("GLib installation directory, from Registry entry for %s if available: %s\n",
768 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, NULL));
769 g_print ("Ditto, or from GLib DLL name: %s\n",
770 g_win32_get_package_installation_directory (GETTEXT_PACKAGE, glib_dll));
771 g_print ("Ditto, only from GLib DLL name: %s\n",
772 g_win32_get_package_installation_directory (NULL, glib_dll));
773 g_print ("locale subdirectory of GLib installation directory: %s\n",
774 g_win32_get_package_installation_subdirectory (NULL, glib_dll, "lib\\locale"));
775 g_print ("GTK+ 2.0 installation directory, if available: %s\n",
776 g_win32_get_package_installation_directory ("gtk20", NULL));
778 g_print ("found more.com as %s\n", g_find_program_in_path ("more.com"));
779 g_print ("found regedit as %s\n", g_find_program_in_path ("regedit"));
781 g_print ("a Win32 error message: %s\n", g_win32_error_message (2));
792 } dirname_checks[] = {
803 { ".\\\\\\\\", "." },
805 { "..\\\\\\\\", ".." },
813 { "//server/share///x", "//server/share" },
819 const guint n_dirname_checks = G_N_ELEMENTS (dirname_checks);
823 } skip_root_checks[] = {
832 { "\\\\server\\foo", "" },
833 { "\\\\server\\foo\\bar", "bar" },
837 { "//server/share///x", "//x" },
842 const guint n_skip_root_checks = G_N_ELEMENTS (skip_root_checks);
845 if (g_test_verbose())
846 g_print ("checking g_path_get_basename()...");
847 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "dir" G_DIR_SEPARATOR_S);
848 g_assert (strcmp (string, "dir") == 0);
850 string = g_path_get_basename (G_DIR_SEPARATOR_S "foo" G_DIR_SEPARATOR_S "file");
851 g_assert (strcmp (string, "file") == 0);
853 if (g_test_verbose())
857 string = g_path_get_basename ("/foo/dir/");
858 g_assert (strcmp (string, "dir") == 0);
860 string = g_path_get_basename ("/foo/file");
861 g_assert (strcmp (string, "file") == 0);
865 if (g_test_verbose())
866 g_print ("checking g_path_get_dirname()...");
867 for (i = 0; i < n_dirname_checks; i++)
869 gchar *dirname = g_path_get_dirname (dirname_checks[i].filename);
870 if (strcmp (dirname, dirname_checks[i].dirname) != 0)
872 g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
873 dirname_checks[i].filename,
874 dirname_checks[i].dirname,
879 if (g_test_verbose())
882 if (g_test_verbose())
883 g_print ("checking g_path_skip_root()...");
884 for (i = 0; i < n_skip_root_checks; i++)
886 const gchar *skipped = g_path_skip_root (skip_root_checks[i].filename);
887 if ((skipped && !skip_root_checks[i].without_root) ||
888 (!skipped && skip_root_checks[i].without_root) ||
889 ((skipped && skip_root_checks[i].without_root) &&
890 strcmp (skipped, skip_root_checks[i].without_root)))
892 g_error ("\nfailed for \"%s\"==\"%s\" (returned: \"%s\")\n",
893 skip_root_checks[i].filename,
894 (skip_root_checks[i].without_root ?
895 skip_root_checks[i].without_root : "<NULL>"),
896 (skipped ? skipped : "<NULL>"));
899 if (g_test_verbose())
904 test_file_functions (void)
906 const char hello[] = "Hello, World";
907 const int hellolen = sizeof (hello) - 1;
910 char *name_used, chars[62];
913 strcpy (template, "c:\\foobar");
914 fd = g_mkstemp (template);
915 if (g_test_verbose() && fd != -1)
916 g_print ("g_mkstemp works even if template doesn't end in XXXXXX\n");
918 strcpy (template, "c:\\fooXXXXXX");
919 fd = g_mkstemp (template);
921 g_error ("g_mkstemp didn't work for template %s\n", template);
922 n = write (fd, hello, hellolen);
924 g_error ("write() failed: %s\n", g_strerror (errno));
925 else if (n != hellolen)
926 g_error ("write() should have written %d bytes, wrote %d\n", hellolen, n);
929 n = read (fd, chars, sizeof (chars));
931 g_error ("read() failed: %s\n", g_strerror (errno));
932 else if (n != hellolen)
933 g_error ("read() should have read %d bytes, got %d\n", hellolen, n);
936 if (strcmp (chars, hello) != 0)
937 g_error ("wrote '%s', but got '%s'\n", hello, chars);
943 strcpy (template, "zap" G_DIR_SEPARATOR_S "barXXXXXX");
944 fd = g_file_open_tmp (template, &name_used, &error);
945 if (g_test_verbose())
948 g_print ("g_file_open_tmp works even if template contains '%s'\n", G_DIR_SEPARATOR_S);
950 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
953 g_clear_error (&error);
956 strcpy (template, "zap/barXXXXXX");
957 fd = g_file_open_tmp (template, &name_used, &error);
958 if (g_test_verbose())
961 g_print ("g_file_open_tmp works even if template contains '/'\n");
963 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
966 g_clear_error (&error);
969 strcpy (template, "zapXXXXXX");
970 fd = g_file_open_tmp (template, &name_used, &error);
972 g_error ("g_file_open_tmp didn't work for template '%s': %s\n", template, error->message);
973 else if (g_test_verbose())
974 g_print ("g_file_open_tmp for template '%s' used name '%s'\n", template, name_used);
976 g_clear_error (&error);
979 fd = g_file_open_tmp (NULL, &name_used, &error);
981 g_error ("g_file_open_tmp didn't work for a NULL template: %s\n", error->message);
983 g_clear_error (&error);
995 gparray = g_ptr_array_new ();
996 for (i = 0; i < 10000; i++)
997 g_ptr_array_add (gparray, GINT_TO_POINTER (i));
998 for (i = 0; i < 10000; i++)
999 if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
1000 g_error ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
1001 g_ptr_array_free (gparray, TRUE);
1003 gbarray = g_byte_array_new ();
1004 for (i = 0; i < 10000; i++)
1005 g_byte_array_append (gbarray, (guint8*) "abcd", 4);
1006 for (i = 0; i < 10000; i++)
1008 g_assert (gbarray->data[4*i] == 'a');
1009 g_assert (gbarray->data[4*i+1] == 'b');
1010 g_assert (gbarray->data[4*i+2] == 'c');
1011 g_assert (gbarray->data[4*i+3] == 'd');
1013 g_byte_array_free (gbarray, TRUE);
1015 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1016 for (i = 0; i < 10000; i++)
1017 g_array_append_val (garray, i);
1018 for (i = 0; i < 10000; i++)
1019 if (g_array_index (garray, gint, i) != i)
1020 g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), i);
1021 g_array_free (garray, TRUE);
1023 garray = g_array_new (FALSE, FALSE, sizeof (gint));
1024 for (i = 0; i < 100; i++)
1025 g_array_prepend_val (garray, i);
1026 for (i = 0; i < 100; i++)
1027 if (g_array_index (garray, gint, i) != (100 - i - 1))
1028 g_error ("failure: %d ( %d )\n", g_array_index (garray, gint, i), 100 - i - 1);
1029 g_array_free (garray, TRUE);
1033 hash_table_tests (void)
1035 GHashTable *hash_table;
1037 gint *pvalue = NULL;
1041 hash_table = g_hash_table_new (my_hash, my_hash_equal);
1042 for (i = 0; i < 10000; i++)
1045 g_hash_table_insert (hash_table, &array[i], &array[i]);
1047 pvalue = g_hash_table_find (hash_table, find_first_that, &value);
1048 if (*pvalue != value)
1049 g_error ("g_hash_table_find failed");
1050 g_hash_table_foreach (hash_table, my_hash_callback, NULL);
1051 for (i = 0; i < 10000; i++)
1053 g_error ("hashtable-test: wrong value: %d\n", i);
1054 for (i = 0; i < 10000; i++)
1055 g_hash_table_remove (hash_table, &array[i]);
1056 for (i = 0; i < 10000; i++)
1059 g_hash_table_insert (hash_table, &array[i], &array[i]);
1061 if (g_hash_table_foreach_remove (hash_table, my_hash_callback_remove, NULL) != 5000 ||
1062 g_hash_table_size (hash_table) != 5000)
1063 g_error ("hashtable removal failed\n");
1064 g_hash_table_foreach (hash_table, my_hash_callback_remove_test, NULL);
1065 g_hash_table_destroy (hash_table);
1069 relation_test (void)
1071 GRelation *relation = g_relation_new (2);
1076 g_relation_index (relation, 0, g_int_hash, g_int_equal);
1077 g_relation_index (relation, 1, g_int_hash, g_int_equal);
1079 for (i = 0; i < 1024; i += 1)
1082 for (i = 1; i < 1023; i += 1)
1084 g_relation_insert (relation, data + i, data + i + 1);
1085 g_relation_insert (relation, data + i, data + i - 1);
1088 for (i = 2; i < 1022; i += 1)
1090 g_assert (! g_relation_exists (relation, data + i, data + i));
1091 g_assert (! g_relation_exists (relation, data + i, data + i + 2));
1092 g_assert (! g_relation_exists (relation, data + i, data + i - 2));
1095 for (i = 1; i < 1023; i += 1)
1097 g_assert (g_relation_exists (relation, data + i, data + i + 1));
1098 g_assert (g_relation_exists (relation, data + i, data + i - 1));
1101 for (i = 2; i < 1022; i += 1)
1103 g_assert (g_relation_count (relation, data + i, 0) == 2);
1104 g_assert (g_relation_count (relation, data + i, 1) == 2);
1107 g_assert (g_relation_count (relation, data, 0) == 0);
1109 g_assert (g_relation_count (relation, data + 42, 0) == 2);
1110 g_assert (g_relation_count (relation, data + 43, 1) == 2);
1111 g_assert (g_relation_count (relation, data + 41, 1) == 2);
1112 g_relation_delete (relation, data + 42, 0);
1113 g_assert (g_relation_count (relation, data + 42, 0) == 0);
1114 g_assert (g_relation_count (relation, data + 43, 1) == 1);
1115 g_assert (g_relation_count (relation, data + 41, 1) == 1);
1117 tuples = g_relation_select (relation, data + 200, 0);
1119 g_assert (tuples->len == 2);
1122 for (i = 0; i < tuples->len; i += 1)
1125 *(gint*) g_tuples_index (tuples, i, 0),
1126 *(gint*) g_tuples_index (tuples, i, 1));
1130 g_assert (g_relation_exists (relation, data + 300, data + 301));
1131 g_relation_delete (relation, data + 300, 0);
1132 g_assert (!g_relation_exists (relation, data + 300, data + 301));
1134 g_tuples_destroy (tuples);
1136 g_relation_destroy (relation);
1142 gstring_tests (void)
1144 GString *string1, *string2;
1147 if (g_test_verbose())
1148 g_print ("test GString basics\n");
1150 string1 = g_string_new ("hi pete!");
1151 string2 = g_string_new ("");
1153 g_assert (strcmp ("hi pete!", string1->str) == 0);
1155 for (i = 0; i < 10000; i++)
1156 g_string_append_c (string1, 'a'+(i%26));
1159 /* MSVC, mingw32 and LCC use the same run-time C library, which doesn't like
1160 the %10000.10000f format... */
1161 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
1162 "this pete guy sure is a wuss, like he's the number ",
1164 " wuss. everyone agrees.\n",
1166 10, 666, 15, 15, 666.666666666, 666.666666666);
1168 g_string_printf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%100.100f",
1169 "this pete guy sure is a wuss, like he's the number ",
1171 " wuss. everyone agrees.\n",
1173 10, 666, 15, 15, 666.666666666, 666.666666666);
1176 if (g_test_verbose())
1177 g_print ("string2 length = %lu...\n", (gulong)string2->len);
1178 string2->str[70] = '\0';
1179 if (g_test_verbose())
1180 g_print ("first 70 chars:\n%s\n", string2->str);
1181 string2->str[141] = '\0';
1182 if (g_test_verbose())
1183 g_print ("next 70 chars:\n%s\n", string2->str+71);
1184 string2->str[212] = '\0';
1185 if (g_test_verbose())
1186 g_print ("and next 70:\n%s\n", string2->str+142);
1187 if (g_test_verbose())
1188 g_print ("last 70 chars:\n%s\n", string2->str+string2->len - 70);
1190 g_string_free (string1, TRUE);
1191 g_string_free (string2, TRUE);
1194 string1 = g_string_new ("firsthalf");
1195 g_string_append (string1, "lasthalf");
1196 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1197 g_string_free (string1, TRUE);
1200 string1 = g_string_new ("firsthalf");
1201 g_string_append_len (string1, "lasthalfjunkjunk", strlen ("lasthalf"));
1202 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1203 g_string_free (string1, TRUE);
1206 string1 = g_string_new ("lasthalf");
1207 g_string_prepend (string1, "firsthalf");
1208 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1209 g_string_free (string1, TRUE);
1212 string1 = g_string_new ("lasthalf");
1213 g_string_prepend_len (string1, "firsthalfjunkjunk", strlen ("firsthalf"));
1214 g_assert (strcmp (string1->str, "firsthalflasthalf") == 0);
1215 g_string_free (string1, TRUE);
1218 string1 = g_string_new ("firstlast");
1219 g_string_insert (string1, 5, "middle");
1220 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1221 g_string_free (string1, TRUE);
1223 /* insert with pos == end of the string */
1224 string1 = g_string_new ("firstmiddle");
1225 g_string_insert (string1, strlen ("firstmiddle"), "last");
1226 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1227 g_string_free (string1, TRUE);
1230 string1 = g_string_new ("firstlast");
1231 g_string_insert_len (string1, 5, "middlejunkjunk", strlen ("middle"));
1232 g_assert (strcmp (string1->str, "firstmiddlelast") == 0);
1233 g_string_free (string1, TRUE);
1235 /* insert_len with magic -1 pos for append */
1236 string1 = g_string_new ("first");
1237 g_string_insert_len (string1, -1, "lastjunkjunk", strlen ("last"));
1238 g_assert (strcmp (string1->str, "firstlast") == 0);
1239 g_string_free (string1, TRUE);
1241 /* insert_len with magic -1 len for strlen-the-string */
1242 string1 = g_string_new ("first");
1243 g_string_insert_len (string1, 5, "last", -1);
1244 g_assert (strcmp (string1->str, "firstlast") == 0);
1245 g_string_free (string1, TRUE);
1247 /* g_string_equal */
1248 string1 = g_string_new ("test");
1249 string2 = g_string_new ("te");
1250 g_assert (! g_string_equal(string1, string2));
1251 g_string_append (string2, "st");
1252 g_assert (g_string_equal(string1, string2));
1253 g_string_free (string1, TRUE);
1254 g_string_free (string2, TRUE);
1256 /* Check handling of embedded ASCII 0 (NUL) characters in GString. */
1257 if (g_test_verbose())
1258 g_print ("test embedded ASCII 0 (NUL) characters in GString\n");
1259 string1 = g_string_new ("fiddle");
1260 string2 = g_string_new ("fiddle");
1261 g_assert (g_string_equal(string1, string2));
1262 g_string_append_c(string1, '\0');
1263 g_assert (! g_string_equal(string1, string2));
1264 g_string_append_c(string2, '\0');
1265 g_assert (g_string_equal(string1, string2));
1266 g_string_append_c(string1, 'x');
1267 g_string_append_c(string2, 'y');
1268 g_assert (! g_string_equal(string1, string2));
1269 g_assert (string1->len == 8);
1270 g_string_append(string1, "yzzy");
1271 g_assert (string1->len == 12);
1272 g_assert ( memcmp(string1->str, "fiddle\0xyzzy", 13) == 0);
1273 g_string_insert(string1, 1, "QED");
1274 g_assert ( memcmp(string1->str, "fQEDiddle\0xyzzy", 16) == 0);
1275 g_string_free (string1, TRUE);
1276 g_string_free (string2, TRUE);
1280 various_string_tests (void)
1282 GStringChunk *string_chunk;
1283 GTimeVal ref_date, date;
1284 gchar *tmp_string = NULL, *tmp_string_2, *string, *date_str;
1287 if (g_test_verbose())
1288 g_print ("checking string chunks...");
1289 string_chunk = g_string_chunk_new (1024);
1290 for (i = 0; i < 100000; i ++)
1292 tmp_string = g_string_chunk_insert (string_chunk, "hi pete");
1293 if (strcmp ("hi pete", tmp_string) != 0)
1294 g_error ("string chunks are broken.\n");
1296 tmp_string_2 = g_string_chunk_insert_const (string_chunk, tmp_string);
1297 g_assert (tmp_string_2 != tmp_string && strcmp (tmp_string_2, tmp_string) == 0);
1298 tmp_string = g_string_chunk_insert_const (string_chunk, tmp_string);
1299 g_assert (tmp_string_2 == tmp_string);
1300 g_string_chunk_free (string_chunk);
1302 if (g_test_verbose())
1303 g_print ("test positional printf formats (not supported):");
1304 string = g_strdup_printf ("%.*s%s", 5, "a", "b");
1305 tmp_string = g_strdup_printf ("%2$*1$s", 5, "c");
1306 if (g_test_verbose())
1307 g_print ("%s%s\n", string, tmp_string);
1308 g_free (tmp_string);
1311 #define REF_INVALID1 "Wed Dec 19 17:20:20 GMT 2007"
1312 #define REF_INVALID2 "1980-02-22T10:36:00Zulu"
1313 #define REF_SEC_UTC 320063760
1314 #define REF_STR_UTC "1980-02-22T10:36:00Z"
1315 #define REF_STR_CEST "1980-02-22T12:36:00+02:00"
1316 #define REF_STR_EST "19800222T053600-0500"
1317 #define REF_STR_NST "1980-02-22T07:06:00-03:30"
1318 #define REF_USEC_UTC 50000
1319 #define REF_STR_USEC_UTC "1980-02-22T10:36:00.050000Z"
1320 #define REF_STR_USEC_CEST "19800222T123600.050000000+0200"
1321 #define REF_STR_USEC_EST "1980-02-22T05:36:00,05-05:00"
1322 #define REF_STR_USEC_NST "19800222T070600,0500-0330"
1324 if (g_test_verbose())
1325 g_print ("checking g_time_val_from_iso8601...\n");
1326 ref_date.tv_sec = REF_SEC_UTC;
1327 ref_date.tv_usec = 0;
1328 g_assert (g_time_val_from_iso8601 (REF_INVALID1, &date) == FALSE);
1329 g_assert (g_time_val_from_iso8601 (REF_INVALID2, &date) == FALSE);
1330 g_assert (g_time_val_from_iso8601 (REF_STR_UTC, &date) != FALSE);
1331 if (g_test_verbose())
1332 g_print ("\t=> UTC stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1333 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1334 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1335 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1337 g_assert (g_time_val_from_iso8601 (REF_STR_CEST, &date) != FALSE);
1338 if (g_test_verbose())
1339 g_print ("\t=> CEST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1340 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1341 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1342 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1344 g_assert (g_time_val_from_iso8601 (REF_STR_EST, &date) != FALSE);
1345 if (g_test_verbose())
1346 g_print ("\t=> EST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1347 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1348 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1349 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1351 g_assert (g_time_val_from_iso8601 (REF_STR_NST, &date) != FALSE);
1352 if (g_test_verbose())
1353 g_print ("\t=> NST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1354 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1355 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1356 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1358 ref_date.tv_usec = REF_USEC_UTC;
1359 g_assert (g_time_val_from_iso8601 (REF_STR_USEC_UTC, &date) != FALSE);
1360 if (g_test_verbose())
1361 g_print ("\t=> UTC stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1362 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1363 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1364 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1366 g_assert (g_time_val_from_iso8601 (REF_STR_USEC_CEST, &date) != FALSE);
1367 if (g_test_verbose())
1368 g_print ("\t=> CEST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1369 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1370 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1371 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1373 g_assert (g_time_val_from_iso8601 (REF_STR_USEC_EST, &date) != FALSE);
1374 if (g_test_verbose())
1375 g_print ("\t=> EST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1376 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1377 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1378 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1380 g_assert (g_time_val_from_iso8601 (REF_STR_USEC_NST, &date) != FALSE);
1381 if (g_test_verbose())
1382 g_print ("\t=> NST stamp = %ld.%06ld (should be: %ld.%06ld) (%ld.%06ld off)\n",
1383 date.tv_sec, date.tv_usec, ref_date.tv_sec, ref_date.tv_usec,
1384 date.tv_sec - ref_date.tv_sec, date.tv_usec - ref_date.tv_usec);
1385 g_assert (date.tv_sec == ref_date.tv_sec && date.tv_usec == ref_date.tv_usec);
1387 if (g_test_verbose())
1388 g_print ("checking g_time_val_to_iso8601...\n");
1389 ref_date.tv_sec = REF_SEC_UTC;
1390 ref_date.tv_usec = 0;
1391 date_str = g_time_val_to_iso8601 (&ref_date);
1392 g_assert (date_str != NULL);
1393 if (g_test_verbose())
1394 g_print ("\t=> date string = %s (should be: %s)\n", date_str, REF_STR_UTC);
1395 g_assert (strcmp (date_str, REF_STR_UTC) == 0);
1398 ref_date.tv_usec = REF_USEC_UTC;
1399 date_str = g_time_val_to_iso8601 (&ref_date);
1400 g_assert (date_str != NULL);
1401 if (g_test_verbose())
1402 g_print ("\t=> date string = %s (should be: %s)\n", date_str, REF_STR_USEC_UTC);
1403 g_assert (strcmp (date_str, REF_STR_USEC_UTC) == 0);
1406 if (g_test_verbose())
1407 g_print ("checking g_ascii_strcasecmp...");
1408 g_assert (g_ascii_strcasecmp ("FroboZZ", "frobozz") == 0);
1409 g_assert (g_ascii_strcasecmp ("frobozz", "frobozz") == 0);
1410 g_assert (g_ascii_strcasecmp ("frobozz", "FROBOZZ") == 0);
1411 g_assert (g_ascii_strcasecmp ("FROBOZZ", "froboz") > 0);
1412 g_assert (g_ascii_strcasecmp ("", "") == 0);
1413 g_assert (g_ascii_strcasecmp ("!#%&/()", "!#%&/()") == 0);
1414 g_assert (g_ascii_strcasecmp ("a", "b") < 0);
1415 g_assert (g_ascii_strcasecmp ("a", "B") < 0);
1416 g_assert (g_ascii_strcasecmp ("A", "b") < 0);
1417 g_assert (g_ascii_strcasecmp ("A", "B") < 0);
1418 g_assert (g_ascii_strcasecmp ("b", "a") > 0);
1419 g_assert (g_ascii_strcasecmp ("b", "A") > 0);
1420 g_assert (g_ascii_strcasecmp ("B", "a") > 0);
1421 g_assert (g_ascii_strcasecmp ("B", "A") > 0);
1423 if (g_test_verbose())
1424 g_print ("checking g_strdup...\n");
1425 g_assert (g_strdup (NULL) == NULL);
1426 string = g_strdup (GLIB_TEST_STRING);
1427 g_assert (string != NULL);
1428 g_assert (strcmp(string, GLIB_TEST_STRING) == 0);
1431 if (g_test_verbose())
1432 g_print ("checking g_strconcat...\n");
1433 string = g_strconcat (GLIB_TEST_STRING, NULL);
1434 g_assert (string != NULL);
1435 g_assert (strcmp (string, GLIB_TEST_STRING) == 0);
1437 string = g_strconcat (GLIB_TEST_STRING, GLIB_TEST_STRING,
1438 GLIB_TEST_STRING, NULL);
1439 g_assert (string != NULL);
1440 g_assert (strcmp (string, GLIB_TEST_STRING GLIB_TEST_STRING
1441 GLIB_TEST_STRING) == 0);
1444 if (g_test_verbose())
1445 g_print ("checking g_strlcpy/g_strlcat...");
1446 /* The following is a torture test for strlcpy/strlcat, with lots of
1447 * checking; normal users wouldn't use them this way!
1449 string = g_malloc (6);
1450 *(string + 5) = 'Z'; /* guard value, shouldn't change during test */
1452 g_assert (g_strlcpy(string, "" , 5) == 0);
1453 g_assert ( *string == '\0' );
1455 g_assert (g_strlcpy(string, "abc" , 5) == 3);
1456 g_assert ( *(string + 3) == '\0' );
1457 g_assert (g_str_equal(string, "abc"));
1458 g_assert (g_strlcpy(string, "abcd" , 5) == 4);
1459 g_assert ( *(string + 4) == '\0' );
1460 g_assert ( *(string + 5) == 'Z' );
1461 g_assert (g_str_equal(string, "abcd"));
1462 g_assert (g_strlcpy(string, "abcde" , 5) == 5);
1463 g_assert ( *(string + 4) == '\0' );
1464 g_assert ( *(string + 5) == 'Z' );
1465 g_assert (g_str_equal(string, "abcd"));
1466 g_assert (g_strlcpy(string, "abcdef" , 5) == 6);
1467 g_assert ( *(string + 4) == '\0' );
1468 g_assert ( *(string + 5) == 'Z' );
1469 g_assert (g_str_equal(string, "abcd"));
1471 *(string + 1)= '\0';
1472 g_assert (g_strlcpy(string, "Hello" , 0) == 5);
1473 g_assert (*string == 'Y');
1475 g_assert (g_strlcat(string, "123" , 5) == 3);
1476 g_assert ( *(string + 3) == '\0' );
1477 g_assert (g_str_equal(string, "123"));
1478 g_assert (g_strlcat(string, "" , 5) == 3);
1479 g_assert ( *(string + 3) == '\0' );
1480 g_assert (g_str_equal(string, "123"));
1481 g_assert (g_strlcat(string, "4", 5) == 4);
1482 g_assert (g_str_equal(string, "1234"));
1483 g_assert (g_strlcat(string, "5", 5) == 5);
1484 g_assert ( *(string + 4) == '\0' );
1485 g_assert (g_str_equal(string, "1234"));
1486 g_assert ( *(string + 5) == 'Z' );
1488 *(string + 1)= '\0';
1489 g_assert (g_strlcat(string, "123" , 0) == 3);
1490 g_assert (*string == 'Y');
1492 /* A few more tests, demonstrating more "normal" use */
1493 g_assert (g_strlcpy(string, "hi", 5) == 2);
1494 g_assert (g_str_equal(string, "hi"));
1495 g_assert (g_strlcat(string, "t", 5) == 3);
1496 g_assert (g_str_equal(string, "hit"));
1499 if (g_test_verbose())
1500 g_print ("checking g_strdup_printf...\n");
1501 string = g_strdup_printf ("%05d %-5s", 21, "test");
1502 g_assert (string != NULL);
1503 g_assert (strcmp(string, "00021 test ") == 0);
1506 /* g_debug (argv[0]); */
1509 #ifndef G_DISABLE_DEPRECATED
1511 test_mem_chunks (void)
1513 GMemChunk *mem_chunk = g_mem_chunk_new ("test mem chunk", 50, 100, G_ALLOC_AND_FREE);
1516 for (i = 0; i < 10000; i++)
1519 mem[i] = g_chunk_new (gchar, mem_chunk);
1520 for (j = 0; j < 50; j++)
1523 for (i = 0; i < 10000; i++)
1524 g_mem_chunk_free (mem_chunk, mem[i]);
1532 #ifdef __SYMBIAN32__
1533 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
1534 g_set_print_handler(mrtPrintHandler);
1535 #endif /*__SYMBIAN32__*/
1536 g_test_init (&argc, &argv, NULL);
1538 g_test_add_func ("/testglib/Infos", test_info);
1539 g_test_add_func ("/testglib/Types Sizes", type_sizes);
1540 g_test_add_func ("/testglib/GStrings", gstring_tests);
1541 g_test_add_func ("/testglib/Various Strings", various_string_tests);
1542 g_test_add_func ("/testglib/GList", glist_test);
1543 g_test_add_func ("/testglib/GSList", gslist_test);
1544 g_test_add_func ("/testglib/GNode", gnode_test);
1545 g_test_add_func ("/testglib/GTree", binary_tree_test);
1546 g_test_add_func ("/testglib/Arrays", test_arrays);
1547 g_test_add_func ("/testglib/GHashTable", hash_table_tests);
1548 g_test_add_func ("/testglib/Relation", relation_test);
1549 g_test_add_func ("/testglib/File Paths", test_paths);
1550 g_test_add_func ("/testglib/File Functions", test_file_functions);
1551 g_test_add_func ("/testglib/Parse Debug Strings", test_g_parse_debug_string);
1553 #ifndef G_DISABLE_DEPRECATED
1554 g_test_add_func ("/testglib/GMemChunk (deprecated)", test_mem_chunks);
1556 g_test_add_func ("/testglib/Warnings & Errors", log_warning_error_tests);
1557 g_test_add_func ("/testglib/Timers (slow)", timer_tests);
1558 /* return */g_test_run();
1559 #ifdef __SYMBIAN32__
1560 testResultXml("testglib");
1561 #endif /* EMULATOR */