os/ossrv/glib/tests/gobject/paramspec-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GLIB - Library of useful routines for C programming
sl@0
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    22
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    23
 * files for a list of changes.  These files are distributed with
sl@0
    24
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    25
 */
sl@0
    26
sl@0
    27
#undef G_DISABLE_ASSERT
sl@0
    28
#undef G_LOG_DOMAIN
sl@0
    29
sl@0
    30
#include <string.h>
sl@0
    31
sl@0
    32
#include <glib.h>
sl@0
    33
#include <glib-object.h>
sl@0
    34
sl@0
    35
#ifdef __SYMBIAN32__
sl@0
    36
#include <gobject_global.h>
sl@0
    37
#include "mrt2_glib2_test.h"
sl@0
    38
#endif //__SYMBIAN32__
sl@0
    39
static void
sl@0
    40
test_param_spec_char (void)
sl@0
    41
{
sl@0
    42
  GParamSpec *pspec;
sl@0
    43
  GValue value = { 0, };
sl@0
    44
  gboolean modified;
sl@0
    45
 
sl@0
    46
  pspec = g_param_spec_char ("char", "nick", "blurb",
sl@0
    47
			     20, 40, 30, G_PARAM_READWRITE);
sl@0
    48
sl@0
    49
  g_assert (strcmp (g_param_spec_get_name (pspec), "char") == 0);
sl@0
    50
  g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
sl@0
    51
  g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
sl@0
    52
sl@0
    53
  g_value_init (&value, G_TYPE_CHAR);
sl@0
    54
  g_value_set_char (&value, 30);
sl@0
    55
sl@0
    56
  g_assert (g_param_value_defaults (pspec, &value));
sl@0
    57
  
sl@0
    58
  g_value_set_char (&value, 0);
sl@0
    59
  modified = g_param_value_validate (pspec, &value);
sl@0
    60
  g_assert (modified && g_value_get_char (&value) == 20);
sl@0
    61
sl@0
    62
  g_value_set_char (&value, 20);
sl@0
    63
  modified = g_param_value_validate (pspec, &value);
sl@0
    64
  g_assert (!modified && g_value_get_char (&value) == 20);
sl@0
    65
sl@0
    66
  g_value_set_char (&value, 40);
sl@0
    67
  modified = g_param_value_validate (pspec, &value);
sl@0
    68
  g_assert (!modified && g_value_get_char (&value) == 40);
sl@0
    69
sl@0
    70
  g_value_set_char (&value, 60);
sl@0
    71
  modified = g_param_value_validate (pspec, &value);
sl@0
    72
  g_assert (modified && g_value_get_char (&value) == 40);
sl@0
    73
sl@0
    74
  g_param_spec_unref (pspec);
sl@0
    75
}
sl@0
    76
sl@0
    77
static void
sl@0
    78
test_param_spec_string (void)
sl@0
    79
{
sl@0
    80
  GParamSpec *pspec;
sl@0
    81
  GValue value = { 0, };
sl@0
    82
  gboolean modified;
sl@0
    83
sl@0
    84
  pspec = g_param_spec_string ("string", "nick", "blurb",
sl@0
    85
                               NULL, G_PARAM_READWRITE);
sl@0
    86
  g_value_init (&value, G_TYPE_STRING);
sl@0
    87
sl@0
    88
  g_value_set_string (&value, "foobar");
sl@0
    89
  modified = g_param_value_validate (pspec, &value);
sl@0
    90
  g_assert (!modified);
sl@0
    91
sl@0
    92
  g_value_set_string (&value, "");
sl@0
    93
  modified = g_param_value_validate (pspec, &value);
sl@0
    94
  g_assert (!modified && g_value_get_string (&value) != NULL);
sl@0
    95
sl@0
    96
  /* test ensure_non_null */
sl@0
    97
sl@0
    98
  G_PARAM_SPEC_STRING (pspec)->ensure_non_null = TRUE;
sl@0
    99
sl@0
   100
  g_value_set_string (&value, NULL);
sl@0
   101
  modified = g_param_value_validate (pspec, &value);
sl@0
   102
  g_assert (modified && g_value_get_string (&value) != NULL);
sl@0
   103
sl@0
   104
  G_PARAM_SPEC_STRING (pspec)->ensure_non_null = FALSE;
sl@0
   105
sl@0
   106
  /* test null_fold_if_empty */
sl@0
   107
sl@0
   108
  G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = TRUE;
sl@0
   109
sl@0
   110
  g_value_set_string (&value, "");
sl@0
   111
  modified = g_param_value_validate (pspec, &value);
sl@0
   112
  g_assert (modified && g_value_get_string (&value) == NULL);
sl@0
   113
sl@0
   114
  g_value_set_static_string (&value, "");
sl@0
   115
  modified = g_param_value_validate (pspec, &value);
sl@0
   116
  g_assert (modified && g_value_get_string (&value) == NULL);
sl@0
   117
sl@0
   118
  G_PARAM_SPEC_STRING (pspec)->null_fold_if_empty = FALSE;
sl@0
   119
sl@0
   120
  /* test cset_first */
sl@0
   121
sl@0
   122
  G_PARAM_SPEC_STRING (pspec)->cset_first = g_strdup ("abc");
sl@0
   123
  G_PARAM_SPEC_STRING (pspec)->substitutor = '-';
sl@0
   124
sl@0
   125
  g_value_set_string (&value, "ABC");
sl@0
   126
  modified = g_param_value_validate (pspec, &value);
sl@0
   127
  g_assert (modified && g_value_get_string (&value)[0] == '-');
sl@0
   128
sl@0
   129
  g_value_set_static_string (&value, "ABC");
sl@0
   130
  modified = g_param_value_validate (pspec, &value);
sl@0
   131
  g_assert (modified && g_value_get_string (&value)[0] == '-');
sl@0
   132
sl@0
   133
  /* test cset_nth */
sl@0
   134
sl@0
   135
  G_PARAM_SPEC_STRING (pspec)->cset_nth = g_strdup ("abc");
sl@0
   136
sl@0
   137
  g_value_set_string (&value, "aBC");
sl@0
   138
  modified = g_param_value_validate (pspec, &value);
sl@0
   139
  g_assert (modified && g_value_get_string (&value)[1] == '-');
sl@0
   140
sl@0
   141
  g_value_set_static_string (&value, "aBC");
sl@0
   142
  modified = g_param_value_validate (pspec, &value);
sl@0
   143
  g_assert (modified && g_value_get_string (&value)[1] == '-');
sl@0
   144
sl@0
   145
  g_value_unset (&value);
sl@0
   146
  g_param_spec_unref (pspec);
sl@0
   147
}
sl@0
   148
sl@0
   149
static void
sl@0
   150
test_param_spec_override (void)
sl@0
   151
{
sl@0
   152
  GParamSpec *ospec, *pspec;
sl@0
   153
  GValue value = { 0, };
sl@0
   154
  gboolean modified;
sl@0
   155
 
sl@0
   156
  ospec = g_param_spec_char ("char", "nick", "blurb",
sl@0
   157
			     20, 40, 30, G_PARAM_READWRITE);
sl@0
   158
sl@0
   159
  pspec = g_param_spec_override ("override", ospec);
sl@0
   160
sl@0
   161
  g_assert (strcmp (g_param_spec_get_name (pspec), "override") == 0);
sl@0
   162
  g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
sl@0
   163
  g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
sl@0
   164
sl@0
   165
  g_value_init (&value, G_TYPE_CHAR);
sl@0
   166
  g_value_set_char (&value, 30);
sl@0
   167
sl@0
   168
  g_assert (g_param_value_defaults (pspec, &value));
sl@0
   169
  
sl@0
   170
  g_value_set_char (&value, 0);
sl@0
   171
  modified = g_param_value_validate (pspec, &value);
sl@0
   172
  g_assert (modified && g_value_get_char (&value) == 20);
sl@0
   173
sl@0
   174
  g_value_set_char (&value, 20);
sl@0
   175
  modified = g_param_value_validate (pspec, &value);
sl@0
   176
  g_assert (!modified && g_value_get_char (&value) == 20);
sl@0
   177
sl@0
   178
  g_value_set_char (&value, 40);
sl@0
   179
  modified = g_param_value_validate (pspec, &value);
sl@0
   180
  g_assert (!modified && g_value_get_char (&value) == 40);
sl@0
   181
sl@0
   182
  g_value_set_char (&value, 60);
sl@0
   183
  modified = g_param_value_validate (pspec, &value);
sl@0
   184
  g_assert (modified && g_value_get_char (&value) == 40);
sl@0
   185
sl@0
   186
  g_param_spec_unref (pspec);
sl@0
   187
}
sl@0
   188
sl@0
   189
static void
sl@0
   190
test_param_spec_gtype (void)
sl@0
   191
{
sl@0
   192
  GParamSpec *pspec;
sl@0
   193
  GValue value = { 0, };
sl@0
   194
  gboolean modified;
sl@0
   195
  
sl@0
   196
  pspec = g_param_spec_gtype ("gtype", "nick", "blurb",
sl@0
   197
			      G_TYPE_PARAM, G_PARAM_READWRITE);
sl@0
   198
  
sl@0
   199
  g_value_init (&value, G_TYPE_GTYPE);
sl@0
   200
  g_value_set_gtype (&value, G_TYPE_PARAM);
sl@0
   201
sl@0
   202
  g_assert (g_param_value_defaults (pspec, &value));
sl@0
   203
  
sl@0
   204
  g_value_set_gtype (&value, G_TYPE_INT);
sl@0
   205
  modified = g_param_value_validate (pspec, &value);
sl@0
   206
  g_assert (modified && g_value_get_gtype (&value) == G_TYPE_PARAM);
sl@0
   207
sl@0
   208
  g_value_set_gtype (&value, G_TYPE_PARAM_INT);
sl@0
   209
  modified = g_param_value_validate (pspec, &value);
sl@0
   210
  g_assert (!modified && g_value_get_gtype (&value) == G_TYPE_PARAM_INT);
sl@0
   211
}
sl@0
   212
sl@0
   213
int
sl@0
   214
main (int argc, char *argv[])
sl@0
   215
{
sl@0
   216
#ifdef __SYMBIAN32__
sl@0
   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);
sl@0
   218
  g_set_print_handler(mrtPrintHandler);
sl@0
   219
  #endif /*__SYMBIAN32__*/
sl@0
   220
  g_type_init (); 
sl@0
   221
  
sl@0
   222
  test_param_spec_char ();
sl@0
   223
  test_param_spec_string ();
sl@0
   224
  test_param_spec_override ();
sl@0
   225
  test_param_spec_gtype ();
sl@0
   226
sl@0
   227
#ifdef __SYMBIAN32__
sl@0
   228
testResultXml("paramspec-test");
sl@0
   229
#endif /*__SYMBIAN32__*/
sl@0
   230
  return 0;
sl@0
   231
}