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/.
27 #undef G_DISABLE_ASSERT
35 #include "mrt2_glib2_test.h"
36 #endif /*__SYMBIAN32__*/
39 my_compare (gconstpointer a,
49 my_search (gconstpointer a,
52 return my_compare (b, a);
55 static gpointer destroyed_key = NULL;
56 static gpointer destroyed_value = NULL;
59 my_key_destroy (gpointer key)
65 my_value_destroy (gpointer value)
67 destroyed_value = value;
71 my_traverse (gpointer key,
82 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
83 "abcdefghijklmnopqrstuvwxyz";
87 "abcdefghijklmnopqrstuvwxyz";
90 check_order (gpointer key,
97 g_assert (**p == *ch);
116 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);
117 g_set_print_handler(mrtPrintHandler);
118 #endif /*__SYMBIAN32__*/
120 tree = g_tree_new (my_compare);
122 for (i = 0; chars[i]; i++)
123 g_tree_insert (tree, &chars[i], &chars[i]);
125 g_tree_foreach (tree, my_traverse, NULL);
127 g_assert (g_tree_nnodes (tree) == strlen (chars));
128 g_assert (g_tree_height (tree) == 6);
131 g_tree_foreach (tree, check_order, &p);
133 for (i = 0; i < 26; i++)
135 removed = g_tree_remove (tree, &chars[i + 10]);
140 removed = g_tree_remove (tree, &c);
141 g_assert (removed == FALSE);
143 g_tree_foreach (tree, my_traverse, NULL);
145 g_assert (g_tree_nnodes (tree) == strlen (chars2));
146 g_assert (g_tree_height (tree) == 6);
149 g_tree_foreach (tree, check_order, &p);
151 for (i = 25; i >= 0; i--)
152 g_tree_insert (tree, &chars[i + 10], &chars[i + 10]);
155 g_tree_foreach (tree, check_order, &p);
158 p = g_tree_lookup (tree, &c);
159 g_assert (p && *p == c);
162 p = g_tree_lookup (tree, &c);
163 g_assert (p && *p == c);
166 p = g_tree_lookup (tree, &c);
167 g_assert (p && *p == c);
170 p = g_tree_lookup (tree, &c);
171 g_assert (p && *p == c);
174 p = g_tree_lookup (tree, &c);
175 g_assert (p == NULL);
178 p = g_tree_lookup (tree, &c);
179 g_assert (p == NULL);
182 p = g_tree_lookup (tree, &c);
183 g_assert (p == NULL);
186 p = g_tree_search (tree, my_search, &c);
187 g_assert (p && *p == c);
190 p = g_tree_search (tree, my_search, &c);
191 g_assert (p && *p == c);
194 p = g_tree_search (tree, my_search, &c);
195 g_assert (p &&*p == c);
198 p = g_tree_search (tree, my_search, &c);
199 g_assert (p && *p == c);
202 p = g_tree_search (tree, my_search, &c);
203 g_assert (p == NULL);
206 p = g_tree_search (tree, my_search, &c);
207 g_assert (p == NULL);
210 p = g_tree_search (tree, my_search, &c);
211 g_assert (p == NULL);
214 g_tree_destroy (tree);
216 tree = g_tree_new_full ((GCompareDataFunc)my_compare, NULL,
220 for (i = 0; chars[i]; i++)
221 g_tree_insert (tree, &chars[i], &chars[i]);
224 g_tree_insert (tree, &c, &c);
225 g_assert (destroyed_key == &c);
226 g_assert (destroyed_value == &chars[0]);
227 destroyed_key = NULL;
228 destroyed_value = NULL;
231 g_tree_replace (tree, &d, &d);
232 g_assert (destroyed_key == &chars[1]);
233 g_assert (destroyed_value == &chars[1]);
234 destroyed_key = NULL;
235 destroyed_value = NULL;
238 removed = g_tree_remove (tree, &c);
240 g_assert (destroyed_key == &chars[2]);
241 g_assert (destroyed_value == &chars[2]);
242 destroyed_key = NULL;
243 destroyed_value = NULL;
246 removed = g_tree_steal (tree, &c);
248 g_assert (destroyed_key == NULL);
249 g_assert (destroyed_value == NULL);
251 testResultXml("tree-test");
252 #endif /* EMULATOR */