Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portions copyright (c) 2006-2009 Nokia Corporation. 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
33 #include <glib-object.h>
36 #include <gobject_global.h>
37 #include "mrt2_glib2_test.h"
38 #endif //__SYMBIAN32__
40 test_param_spec_char (void)
43 GValue value = { 0, };
46 pspec = g_param_spec_char ("char", "nick", "blurb",
47 20, 40, 30, G_PARAM_READWRITE);
49 g_assert (strcmp (g_param_spec_get_name (pspec), "char") == 0);
50 g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
51 g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
53 g_value_init (&value, G_TYPE_CHAR);
54 g_value_set_char (&value, 30);
56 g_assert (g_param_value_defaults (pspec, &value));
58 g_value_set_char (&value, 0);
59 modified = g_param_value_validate (pspec, &value);
60 g_assert (modified && g_value_get_char (&value) == 20);
62 g_value_set_char (&value, 20);
63 modified = g_param_value_validate (pspec, &value);
64 g_assert (!modified && g_value_get_char (&value) == 20);
66 g_value_set_char (&value, 40);
67 modified = g_param_value_validate (pspec, &value);
68 g_assert (!modified && g_value_get_char (&value) == 40);
70 g_value_set_char (&value, 60);
71 modified = g_param_value_validate (pspec, &value);
72 g_assert (modified && g_value_get_char (&value) == 40);
74 g_param_spec_unref (pspec);
78 test_param_spec_string (void)
81 GValue value = { 0, };
84 pspec = g_param_spec_string ("string", "nick", "blurb",
85 NULL, G_PARAM_READWRITE);
86 g_value_init (&value, G_TYPE_STRING);
88 g_value_set_string (&value, "foobar");
89 modified = g_param_value_validate (pspec, &value);
92 g_value_set_string (&value, "");
93 modified = g_param_value_validate (pspec, &value);
94 g_assert (!modified && g_value_get_string (&value) != NULL);
96 /* test ensure_non_null */
98 G_PARAM_SPEC_STRING (pspec)->ensure_non_null = TRUE;
100 g_value_set_string (&value, NULL);
101 modified = g_param_value_validate (pspec, &value);
102 g_assert (modified && g_value_get_string (&value) != NULL);
104 G_PARAM_SPEC_STRING (pspec)->ensure_non_null = FALSE;
106 /* test null_fold_if_empty */
108 G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = TRUE;
110 g_value_set_string (&value, "");
111 modified = g_param_value_validate (pspec, &value);
112 g_assert (modified && g_value_get_string (&value) == NULL);
114 g_value_set_static_string (&value, "");
115 modified = g_param_value_validate (pspec, &value);
116 g_assert (modified && g_value_get_string (&value) == NULL);
118 G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = FALSE;
120 /* test cset_first */
122 G_PARAM_SPEC_STRING (pspec)->cset_first = g_strdup ("abc");
123 G_PARAM_SPEC_STRING (pspec)->substitutor = '-';
125 g_value_set_string (&value, "ABC");
126 modified = g_param_value_validate (pspec, &value);
127 g_assert (modified && g_value_get_string (&value)[0] == '-');
129 g_value_set_static_string (&value, "ABC");
130 modified = g_param_value_validate (pspec, &value);
131 g_assert (modified && g_value_get_string (&value)[0] == '-');
135 G_PARAM_SPEC_STRING (pspec)->cset_nth = g_strdup ("abc");
137 g_value_set_string (&value, "aBC");
138 modified = g_param_value_validate (pspec, &value);
139 g_assert (modified && g_value_get_string (&value)[1] == '-');
141 g_value_set_static_string (&value, "aBC");
142 modified = g_param_value_validate (pspec, &value);
143 g_assert (modified && g_value_get_string (&value)[1] == '-');
145 g_value_unset (&value);
146 g_param_spec_unref (pspec);
150 test_param_spec_override (void)
152 GParamSpec *ospec, *pspec;
153 GValue value = { 0, };
156 ospec = g_param_spec_char ("char", "nick", "blurb",
157 20, 40, 30, G_PARAM_READWRITE);
159 pspec = g_param_spec_override ("override", ospec);
161 g_assert (strcmp (g_param_spec_get_name (pspec), "override") == 0);
162 g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
163 g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
165 g_value_init (&value, G_TYPE_CHAR);
166 g_value_set_char (&value, 30);
168 g_assert (g_param_value_defaults (pspec, &value));
170 g_value_set_char (&value, 0);
171 modified = g_param_value_validate (pspec, &value);
172 g_assert (modified && g_value_get_char (&value) == 20);
174 g_value_set_char (&value, 20);
175 modified = g_param_value_validate (pspec, &value);
176 g_assert (!modified && g_value_get_char (&value) == 20);
178 g_value_set_char (&value, 40);
179 modified = g_param_value_validate (pspec, &value);
180 g_assert (!modified && g_value_get_char (&value) == 40);
182 g_value_set_char (&value, 60);
183 modified = g_param_value_validate (pspec, &value);
184 g_assert (modified && g_value_get_char (&value) == 40);
186 g_param_spec_unref (pspec);
190 test_param_spec_gtype (void)
193 GValue value = { 0, };
196 pspec = g_param_spec_gtype ("gtype", "nick", "blurb",
197 G_TYPE_PARAM, G_PARAM_READWRITE);
199 g_value_init (&value, G_TYPE_GTYPE);
200 g_value_set_gtype (&value, G_TYPE_PARAM);
202 g_assert (g_param_value_defaults (pspec, &value));
204 g_value_set_gtype (&value, G_TYPE_INT);
205 modified = g_param_value_validate (pspec, &value);
206 g_assert (modified && g_value_get_gtype (&value) == G_TYPE_PARAM);
208 g_value_set_gtype (&value, G_TYPE_PARAM_INT);
209 modified = g_param_value_validate (pspec, &value);
210 g_assert (!modified && g_value_get_gtype (&value) == G_TYPE_PARAM_INT);
214 main (int argc, char *argv[])
217 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);
218 g_set_print_handler(mrtPrintHandler);
219 #endif /*__SYMBIAN32__*/
222 test_param_spec_char ();
223 test_param_spec_string ();
224 test_param_spec_override ();
225 test_param_spec_gtype ();
228 testResultXml("paramspec-test");
229 #endif /*__SYMBIAN32__*/