1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/glib/tests/gobject/paramspec-test.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,231 @@
1.4 +/* GLIB - Library of useful routines for C programming
1.5 + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
1.6 + * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
1.7 + * This library is free software; you can redistribute it and/or
1.8 + * modify it under the terms of the GNU Lesser General Public
1.9 + * License as published by the Free Software Foundation; either
1.10 + * version 2 of the License, or (at your option) any later version.
1.11 + *
1.12 + * This library is distributed in the hope that it will be useful,
1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.15 + * Lesser General Public License for more details.
1.16 + *
1.17 + * You should have received a copy of the GNU Lesser General Public
1.18 + * License along with this library; if not, write to the
1.19 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1.20 + * Boston, MA 02111-1307, USA.
1.21 + */
1.22 +
1.23 +/*
1.24 + * Modified by the GLib Team and others 1997-2000. See the AUTHORS
1.25 + * file for a list of people on the GLib Team. See the ChangeLog
1.26 + * files for a list of changes. These files are distributed with
1.27 + * GLib at ftp://ftp.gtk.org/pub/gtk/.
1.28 + */
1.29 +
1.30 +#undef G_DISABLE_ASSERT
1.31 +#undef G_LOG_DOMAIN
1.32 +
1.33 +#include <string.h>
1.34 +
1.35 +#include <glib.h>
1.36 +#include <glib-object.h>
1.37 +
1.38 +#ifdef __SYMBIAN32__
1.39 +#include <gobject_global.h>
1.40 +#include "mrt2_glib2_test.h"
1.41 +#endif //__SYMBIAN32__
1.42 +static void
1.43 +test_param_spec_char (void)
1.44 +{
1.45 + GParamSpec *pspec;
1.46 + GValue value = { 0, };
1.47 + gboolean modified;
1.48 +
1.49 + pspec = g_param_spec_char ("char", "nick", "blurb",
1.50 + 20, 40, 30, G_PARAM_READWRITE);
1.51 +
1.52 + g_assert (strcmp (g_param_spec_get_name (pspec), "char") == 0);
1.53 + g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
1.54 + g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
1.55 +
1.56 + g_value_init (&value, G_TYPE_CHAR);
1.57 + g_value_set_char (&value, 30);
1.58 +
1.59 + g_assert (g_param_value_defaults (pspec, &value));
1.60 +
1.61 + g_value_set_char (&value, 0);
1.62 + modified = g_param_value_validate (pspec, &value);
1.63 + g_assert (modified && g_value_get_char (&value) == 20);
1.64 +
1.65 + g_value_set_char (&value, 20);
1.66 + modified = g_param_value_validate (pspec, &value);
1.67 + g_assert (!modified && g_value_get_char (&value) == 20);
1.68 +
1.69 + g_value_set_char (&value, 40);
1.70 + modified = g_param_value_validate (pspec, &value);
1.71 + g_assert (!modified && g_value_get_char (&value) == 40);
1.72 +
1.73 + g_value_set_char (&value, 60);
1.74 + modified = g_param_value_validate (pspec, &value);
1.75 + g_assert (modified && g_value_get_char (&value) == 40);
1.76 +
1.77 + g_param_spec_unref (pspec);
1.78 +}
1.79 +
1.80 +static void
1.81 +test_param_spec_string (void)
1.82 +{
1.83 + GParamSpec *pspec;
1.84 + GValue value = { 0, };
1.85 + gboolean modified;
1.86 +
1.87 + pspec = g_param_spec_string ("string", "nick", "blurb",
1.88 + NULL, G_PARAM_READWRITE);
1.89 + g_value_init (&value, G_TYPE_STRING);
1.90 +
1.91 + g_value_set_string (&value, "foobar");
1.92 + modified = g_param_value_validate (pspec, &value);
1.93 + g_assert (!modified);
1.94 +
1.95 + g_value_set_string (&value, "");
1.96 + modified = g_param_value_validate (pspec, &value);
1.97 + g_assert (!modified && g_value_get_string (&value) != NULL);
1.98 +
1.99 + /* test ensure_non_null */
1.100 +
1.101 + G_PARAM_SPEC_STRING (pspec)->ensure_non_null = TRUE;
1.102 +
1.103 + g_value_set_string (&value, NULL);
1.104 + modified = g_param_value_validate (pspec, &value);
1.105 + g_assert (modified && g_value_get_string (&value) != NULL);
1.106 +
1.107 + G_PARAM_SPEC_STRING (pspec)->ensure_non_null = FALSE;
1.108 +
1.109 + /* test null_fold_if_empty */
1.110 +
1.111 + G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = TRUE;
1.112 +
1.113 + g_value_set_string (&value, "");
1.114 + modified = g_param_value_validate (pspec, &value);
1.115 + g_assert (modified && g_value_get_string (&value) == NULL);
1.116 +
1.117 + g_value_set_static_string (&value, "");
1.118 + modified = g_param_value_validate (pspec, &value);
1.119 + g_assert (modified && g_value_get_string (&value) == NULL);
1.120 +
1.121 + G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = FALSE;
1.122 +
1.123 + /* test cset_first */
1.124 +
1.125 + G_PARAM_SPEC_STRING (pspec)->cset_first = g_strdup ("abc");
1.126 + G_PARAM_SPEC_STRING (pspec)->substitutor = '-';
1.127 +
1.128 + g_value_set_string (&value, "ABC");
1.129 + modified = g_param_value_validate (pspec, &value);
1.130 + g_assert (modified && g_value_get_string (&value)[0] == '-');
1.131 +
1.132 + g_value_set_static_string (&value, "ABC");
1.133 + modified = g_param_value_validate (pspec, &value);
1.134 + g_assert (modified && g_value_get_string (&value)[0] == '-');
1.135 +
1.136 + /* test cset_nth */
1.137 +
1.138 + G_PARAM_SPEC_STRING (pspec)->cset_nth = g_strdup ("abc");
1.139 +
1.140 + g_value_set_string (&value, "aBC");
1.141 + modified = g_param_value_validate (pspec, &value);
1.142 + g_assert (modified && g_value_get_string (&value)[1] == '-');
1.143 +
1.144 + g_value_set_static_string (&value, "aBC");
1.145 + modified = g_param_value_validate (pspec, &value);
1.146 + g_assert (modified && g_value_get_string (&value)[1] == '-');
1.147 +
1.148 + g_value_unset (&value);
1.149 + g_param_spec_unref (pspec);
1.150 +}
1.151 +
1.152 +static void
1.153 +test_param_spec_override (void)
1.154 +{
1.155 + GParamSpec *ospec, *pspec;
1.156 + GValue value = { 0, };
1.157 + gboolean modified;
1.158 +
1.159 + ospec = g_param_spec_char ("char", "nick", "blurb",
1.160 + 20, 40, 30, G_PARAM_READWRITE);
1.161 +
1.162 + pspec = g_param_spec_override ("override", ospec);
1.163 +
1.164 + g_assert (strcmp (g_param_spec_get_name (pspec), "override") == 0);
1.165 + g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
1.166 + g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
1.167 +
1.168 + g_value_init (&value, G_TYPE_CHAR);
1.169 + g_value_set_char (&value, 30);
1.170 +
1.171 + g_assert (g_param_value_defaults (pspec, &value));
1.172 +
1.173 + g_value_set_char (&value, 0);
1.174 + modified = g_param_value_validate (pspec, &value);
1.175 + g_assert (modified && g_value_get_char (&value) == 20);
1.176 +
1.177 + g_value_set_char (&value, 20);
1.178 + modified = g_param_value_validate (pspec, &value);
1.179 + g_assert (!modified && g_value_get_char (&value) == 20);
1.180 +
1.181 + g_value_set_char (&value, 40);
1.182 + modified = g_param_value_validate (pspec, &value);
1.183 + g_assert (!modified && g_value_get_char (&value) == 40);
1.184 +
1.185 + g_value_set_char (&value, 60);
1.186 + modified = g_param_value_validate (pspec, &value);
1.187 + g_assert (modified && g_value_get_char (&value) == 40);
1.188 +
1.189 + g_param_spec_unref (pspec);
1.190 +}
1.191 +
1.192 +static void
1.193 +test_param_spec_gtype (void)
1.194 +{
1.195 + GParamSpec *pspec;
1.196 + GValue value = { 0, };
1.197 + gboolean modified;
1.198 +
1.199 + pspec = g_param_spec_gtype ("gtype", "nick", "blurb",
1.200 + G_TYPE_PARAM, G_PARAM_READWRITE);
1.201 +
1.202 + g_value_init (&value, G_TYPE_GTYPE);
1.203 + g_value_set_gtype (&value, G_TYPE_PARAM);
1.204 +
1.205 + g_assert (g_param_value_defaults (pspec, &value));
1.206 +
1.207 + g_value_set_gtype (&value, G_TYPE_INT);
1.208 + modified = g_param_value_validate (pspec, &value);
1.209 + g_assert (modified && g_value_get_gtype (&value) == G_TYPE_PARAM);
1.210 +
1.211 + g_value_set_gtype (&value, G_TYPE_PARAM_INT);
1.212 + modified = g_param_value_validate (pspec, &value);
1.213 + g_assert (!modified && g_value_get_gtype (&value) == G_TYPE_PARAM_INT);
1.214 +}
1.215 +
1.216 +int
1.217 +main (int argc, char *argv[])
1.218 +{
1.219 +#ifdef __SYMBIAN32__
1.220 + 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);
1.221 + g_set_print_handler(mrtPrintHandler);
1.222 + #endif /*__SYMBIAN32__*/
1.223 + g_type_init ();
1.224 +
1.225 + test_param_spec_char ();
1.226 + test_param_spec_string ();
1.227 + test_param_spec_override ();
1.228 + test_param_spec_gtype ();
1.229 +
1.230 +#ifdef __SYMBIAN32__
1.231 +testResultXml("paramspec-test");
1.232 +#endif /*__SYMBIAN32__*/
1.233 + return 0;
1.234 +}