os/ossrv/glib/tests/gobject/gvalue-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
#include "gobject/gvaluecollector.h"
sl@0
    35
#ifdef __SYMBIAN32__
sl@0
    36
#include "mrt2_glib2_test.h"
sl@0
    37
#endif /*__SYMBIAN32__*/
sl@0
    38
sl@0
    39
static void
sl@0
    40
test_enum_transformation (void)
sl@0
    41
{ 
sl@0
    42
  GType type; 
sl@0
    43
  GValue orig = { 0, };
sl@0
    44
  GValue xform = { 0, }; 
sl@0
    45
  GEnumValue values[] = { {0,"0","0"}, {1,"1","1"}}; 
sl@0
    46
  
sl@0
    47
 type = g_enum_register_static ("TestEnum", values); 
sl@0
    48
  
sl@0
    49
 g_value_init (&orig, type); 
sl@0
    50
 g_value_set_enum (&orig, 1); 
sl@0
    51
sl@0
    52
 memset (&xform, 0, sizeof (GValue));
sl@0
    53
 g_value_init (&xform, G_TYPE_CHAR); 
sl@0
    54
 g_value_transform (&orig, &xform); 
sl@0
    55
 g_assert (g_value_get_char (&xform) == 1);
sl@0
    56
sl@0
    57
 memset (&xform, 0, sizeof (GValue));
sl@0
    58
 g_value_init (&xform, G_TYPE_UCHAR); 
sl@0
    59
 g_value_transform (&orig, &xform); 
sl@0
    60
 g_assert (g_value_get_uchar (&xform) == 1);
sl@0
    61
sl@0
    62
 memset (&xform, 0, sizeof (GValue));
sl@0
    63
 g_value_init (&xform, G_TYPE_INT); 
sl@0
    64
 g_value_transform (&orig, &xform); 
sl@0
    65
 g_assert (g_value_get_int (&xform) == 1);
sl@0
    66
sl@0
    67
 memset (&xform, 0, sizeof (GValue));
sl@0
    68
 g_value_init (&xform, G_TYPE_UINT); 
sl@0
    69
 g_value_transform (&orig, &xform); 
sl@0
    70
 g_assert (g_value_get_uint (&xform) == 1);
sl@0
    71
sl@0
    72
 memset (&xform, 0, sizeof (GValue));
sl@0
    73
 g_value_init (&xform, G_TYPE_LONG); 
sl@0
    74
 g_value_transform (&orig, &xform); 
sl@0
    75
 g_assert (g_value_get_long (&xform) == 1);
sl@0
    76
sl@0
    77
 memset (&xform, 0, sizeof (GValue));
sl@0
    78
 g_value_init (&xform, G_TYPE_ULONG); 
sl@0
    79
 g_value_transform (&orig, &xform); 
sl@0
    80
 g_assert (g_value_get_ulong (&xform) == 1);
sl@0
    81
sl@0
    82
 memset (&xform, 0, sizeof (GValue));
sl@0
    83
 g_value_init (&xform, G_TYPE_INT64); 
sl@0
    84
 g_value_transform (&orig, &xform); 
sl@0
    85
 g_assert (g_value_get_int64 (&xform) == 1);
sl@0
    86
sl@0
    87
 memset (&xform, 0, sizeof (GValue));
sl@0
    88
 g_value_init (&xform, G_TYPE_UINT64); 
sl@0
    89
 g_value_transform (&orig, &xform); 
sl@0
    90
 g_assert (g_value_get_uint64 (&xform) == 1);
sl@0
    91
}
sl@0
    92
sl@0
    93
sl@0
    94
static void
sl@0
    95
test_gtype_value (void)
sl@0
    96
{
sl@0
    97
  GType type;
sl@0
    98
  GValue value = { 0, };
sl@0
    99
  GValue copy = { 0, };
sl@0
   100
sl@0
   101
  g_value_init (&value, G_TYPE_GTYPE);
sl@0
   102
sl@0
   103
  g_value_set_gtype (&value, G_TYPE_BOXED);
sl@0
   104
  type = g_value_get_gtype (&value);
sl@0
   105
  g_assert (type == G_TYPE_BOXED);
sl@0
   106
sl@0
   107
  g_value_init (&copy, G_TYPE_GTYPE);
sl@0
   108
  g_value_copy (&value, &copy);
sl@0
   109
  type = g_value_get_gtype (&copy);
sl@0
   110
  g_assert (type == G_TYPE_BOXED);
sl@0
   111
}
sl@0
   112
sl@0
   113
static gchar *
sl@0
   114
collect (GValue *value, ...)
sl@0
   115
{
sl@0
   116
  gchar *error;
sl@0
   117
  va_list var_args;
sl@0
   118
sl@0
   119
  error = NULL;
sl@0
   120
sl@0
   121
  va_start (var_args, value);
sl@0
   122
  G_VALUE_COLLECT (value, var_args, 0, &error);
sl@0
   123
  va_end (var_args);
sl@0
   124
sl@0
   125
  return error;
sl@0
   126
}	 
sl@0
   127
sl@0
   128
static gchar *
sl@0
   129
lcopy (GValue *value, ...)
sl@0
   130
{
sl@0
   131
  gchar *error;
sl@0
   132
  va_list var_args;
sl@0
   133
sl@0
   134
  error = NULL;
sl@0
   135
sl@0
   136
  va_start (var_args, value);
sl@0
   137
  G_VALUE_LCOPY (value, var_args, 0, &error);
sl@0
   138
  va_end (var_args);
sl@0
   139
sl@0
   140
  return error;
sl@0
   141
}	 
sl@0
   142
sl@0
   143
static void
sl@0
   144
test_collection (void)
sl@0
   145
{
sl@0
   146
  GValue value = { 0, };
sl@0
   147
  gchar *error;
sl@0
   148
  
sl@0
   149
  g_value_init (&value, G_TYPE_CHAR);
sl@0
   150
  error = collect (&value, 'c');
sl@0
   151
  g_assert (error == NULL);
sl@0
   152
  g_assert (g_value_get_char (&value) == 'c');
sl@0
   153
  
sl@0
   154
  g_value_unset (&value);
sl@0
   155
  g_value_init (&value, G_TYPE_UCHAR);
sl@0
   156
  error = collect (&value, 129);
sl@0
   157
  g_assert (error == NULL);
sl@0
   158
  g_assert (g_value_get_uchar (&value) == 129);
sl@0
   159
  
sl@0
   160
  g_value_unset (&value);
sl@0
   161
  g_value_init (&value, G_TYPE_BOOLEAN);
sl@0
   162
  error = collect (&value, TRUE);
sl@0
   163
  g_assert (error == NULL);
sl@0
   164
  g_assert (g_value_get_boolean (&value) == TRUE);
sl@0
   165
  
sl@0
   166
  g_value_unset (&value);
sl@0
   167
  g_value_init (&value, G_TYPE_INT);
sl@0
   168
  error = collect (&value, G_MAXINT);
sl@0
   169
  g_assert (error == NULL);
sl@0
   170
  g_assert (g_value_get_int (&value) == G_MAXINT);
sl@0
   171
  
sl@0
   172
  g_value_unset (&value);
sl@0
   173
  g_value_init (&value, G_TYPE_UINT);
sl@0
   174
  error = collect (&value, G_MAXUINT);
sl@0
   175
  g_assert (error == NULL);
sl@0
   176
  g_assert (g_value_get_uint (&value) == G_MAXUINT);
sl@0
   177
  
sl@0
   178
  g_value_unset (&value);  
sl@0
   179
  g_value_init (&value, G_TYPE_LONG);
sl@0
   180
  error = collect (&value, G_MAXLONG);
sl@0
   181
  g_assert (error == NULL);
sl@0
   182
  g_assert (g_value_get_long (&value) == G_MAXLONG);
sl@0
   183
  
sl@0
   184
  g_value_unset (&value);
sl@0
   185
  g_value_init (&value, G_TYPE_ULONG);
sl@0
   186
  error = collect (&value, G_MAXULONG);
sl@0
   187
  g_assert (error == NULL);
sl@0
   188
  g_assert (g_value_get_ulong (&value) == G_MAXULONG);
sl@0
   189
  
sl@0
   190
  g_value_unset (&value);  
sl@0
   191
  g_value_init (&value, G_TYPE_INT64);
sl@0
   192
  error = collect (&value, G_MAXINT64);
sl@0
   193
  g_assert (error == NULL);
sl@0
   194
  g_assert (g_value_get_int64 (&value) == G_MAXINT64);
sl@0
   195
  
sl@0
   196
  g_value_unset (&value);
sl@0
   197
  g_value_init (&value, G_TYPE_UINT64);
sl@0
   198
  error = collect (&value, G_MAXUINT64);
sl@0
   199
  g_assert (error == NULL);
sl@0
   200
  g_assert (g_value_get_uint64 (&value) == G_MAXUINT64);
sl@0
   201
  
sl@0
   202
  g_value_unset (&value);
sl@0
   203
  g_value_init (&value, G_TYPE_FLOAT);
sl@0
   204
  error = collect (&value, G_MAXFLOAT);
sl@0
   205
  g_assert (error == NULL);
sl@0
   206
  g_assert (g_value_get_float (&value) == G_MAXFLOAT);
sl@0
   207
  
sl@0
   208
  g_value_unset (&value);
sl@0
   209
  g_value_init (&value, G_TYPE_DOUBLE);
sl@0
   210
  error = collect (&value, G_MAXDOUBLE);
sl@0
   211
  g_assert (error == NULL);
sl@0
   212
  g_assert (g_value_get_double (&value) == G_MAXDOUBLE);
sl@0
   213
  
sl@0
   214
  g_value_unset (&value);
sl@0
   215
  g_value_init (&value, G_TYPE_STRING);
sl@0
   216
  error = collect (&value, "string ?");
sl@0
   217
  g_assert (error == NULL);
sl@0
   218
  g_assert (strcmp (g_value_get_string (&value), "string ?") == 0);
sl@0
   219
  
sl@0
   220
  g_value_unset (&value);
sl@0
   221
  g_value_init (&value, G_TYPE_GTYPE);
sl@0
   222
  error = collect (&value, G_TYPE_BOXED);
sl@0
   223
  g_assert (error == NULL);
sl@0
   224
  g_assert (g_value_get_gtype (&value) == G_TYPE_BOXED);
sl@0
   225
}
sl@0
   226
sl@0
   227
static void
sl@0
   228
test_copying (void)
sl@0
   229
{
sl@0
   230
  GValue value = { 0, };
sl@0
   231
  gchar *error;
sl@0
   232
sl@0
   233
  {
sl@0
   234
    gchar c = 0;
sl@0
   235
sl@0
   236
    g_value_init (&value, G_TYPE_CHAR);
sl@0
   237
    g_value_set_char (&value, 'c');
sl@0
   238
    error = lcopy (&value, &c);
sl@0
   239
    g_assert (error == NULL);
sl@0
   240
    g_assert (c == 'c');
sl@0
   241
  }  
sl@0
   242
sl@0
   243
  {
sl@0
   244
    guchar c = 0;
sl@0
   245
sl@0
   246
    g_value_unset (&value);
sl@0
   247
    g_value_init (&value, G_TYPE_UCHAR);
sl@0
   248
    g_value_set_uchar (&value, 129);
sl@0
   249
    error = lcopy (&value, &c);
sl@0
   250
    g_assert (error == NULL);
sl@0
   251
    g_assert (c == 129);
sl@0
   252
  }  
sl@0
   253
sl@0
   254
  {
sl@0
   255
    gint c = 0;
sl@0
   256
sl@0
   257
    g_value_unset (&value);
sl@0
   258
    g_value_init (&value, G_TYPE_INT);
sl@0
   259
    g_value_set_int (&value, G_MAXINT);
sl@0
   260
    error = lcopy (&value, &c);
sl@0
   261
    g_assert (error == NULL);
sl@0
   262
    g_assert (c == G_MAXINT);
sl@0
   263
  }  
sl@0
   264
sl@0
   265
  {
sl@0
   266
    guint c = 0;
sl@0
   267
sl@0
   268
    g_value_unset (&value);
sl@0
   269
    g_value_init (&value, G_TYPE_UINT);
sl@0
   270
    g_value_set_uint (&value, G_MAXUINT);
sl@0
   271
    error = lcopy (&value, &c);
sl@0
   272
    g_assert (error == NULL);
sl@0
   273
    g_assert (c == G_MAXUINT);
sl@0
   274
  }  
sl@0
   275
sl@0
   276
  {
sl@0
   277
    glong c = 0;
sl@0
   278
sl@0
   279
    g_value_unset (&value);
sl@0
   280
    g_value_init (&value, G_TYPE_LONG);
sl@0
   281
    g_value_set_long (&value, G_MAXLONG);
sl@0
   282
    error = lcopy (&value, &c);
sl@0
   283
    g_assert (error == NULL);
sl@0
   284
    g_assert (c == G_MAXLONG);
sl@0
   285
  }  
sl@0
   286
sl@0
   287
  {
sl@0
   288
    gulong c = 0;
sl@0
   289
sl@0
   290
    g_value_unset (&value);
sl@0
   291
    g_value_init (&value, G_TYPE_ULONG);
sl@0
   292
    g_value_set_ulong (&value, G_MAXULONG);
sl@0
   293
    error = lcopy (&value, &c);
sl@0
   294
    g_assert (error == NULL);
sl@0
   295
    g_assert (c == G_MAXULONG);
sl@0
   296
  }  
sl@0
   297
sl@0
   298
  {
sl@0
   299
    gint64 c = 0;
sl@0
   300
sl@0
   301
    g_value_unset (&value);
sl@0
   302
    g_value_init (&value, G_TYPE_INT64);
sl@0
   303
    g_value_set_int64 (&value, G_MAXINT64);
sl@0
   304
    error = lcopy (&value, &c);
sl@0
   305
    g_assert (error == NULL);
sl@0
   306
    g_assert (c == G_MAXINT64);
sl@0
   307
  }  
sl@0
   308
sl@0
   309
  {
sl@0
   310
    guint64 c = 0;
sl@0
   311
sl@0
   312
    g_value_unset (&value);
sl@0
   313
    g_value_init (&value, G_TYPE_UINT64);
sl@0
   314
    g_value_set_uint64 (&value, G_MAXUINT64);
sl@0
   315
    error = lcopy (&value, &c);
sl@0
   316
    g_assert (error == NULL);
sl@0
   317
    g_assert (c == G_MAXUINT64);
sl@0
   318
  }  
sl@0
   319
sl@0
   320
  {
sl@0
   321
    gfloat c = 0;
sl@0
   322
sl@0
   323
    g_value_unset (&value);
sl@0
   324
    g_value_init (&value, G_TYPE_FLOAT);
sl@0
   325
    g_value_set_float (&value, G_MAXFLOAT);
sl@0
   326
    error = lcopy (&value, &c);
sl@0
   327
    g_assert (error == NULL);
sl@0
   328
    g_assert (c == G_MAXFLOAT);
sl@0
   329
  }  
sl@0
   330
sl@0
   331
  {
sl@0
   332
    gdouble c = 0;
sl@0
   333
sl@0
   334
    g_value_unset (&value);
sl@0
   335
    g_value_init (&value, G_TYPE_DOUBLE);
sl@0
   336
    g_value_set_double (&value, G_MAXDOUBLE);
sl@0
   337
    error = lcopy (&value, &c);
sl@0
   338
    g_assert (error == NULL);
sl@0
   339
    g_assert (c == G_MAXDOUBLE);
sl@0
   340
  }  
sl@0
   341
sl@0
   342
  {
sl@0
   343
    gchar *c = NULL;
sl@0
   344
sl@0
   345
    g_value_unset (&value);
sl@0
   346
    g_value_init (&value, G_TYPE_STRING);
sl@0
   347
    g_value_set_string (&value, "string ?");
sl@0
   348
    error = lcopy (&value, &c);
sl@0
   349
    g_assert (error == NULL);
sl@0
   350
    g_assert (strcmp (c, "string ?") == 0);
sl@0
   351
  }  
sl@0
   352
sl@0
   353
  {
sl@0
   354
    GType c = G_TYPE_NONE;
sl@0
   355
sl@0
   356
    g_value_unset (&value);
sl@0
   357
    g_value_init (&value, G_TYPE_GTYPE);
sl@0
   358
    g_value_set_gtype (&value, G_TYPE_BOXED);
sl@0
   359
    error = lcopy (&value, &c);
sl@0
   360
    g_assert (error == NULL);
sl@0
   361
    g_assert (c == G_TYPE_BOXED);
sl@0
   362
  }  
sl@0
   363
}
sl@0
   364
sl@0
   365
sl@0
   366
int
sl@0
   367
main (int argc, char *argv[])
sl@0
   368
{
sl@0
   369
  #ifdef __SYMBIAN32__
sl@0
   370
  
sl@0
   371
  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
   372
  g_set_print_handler(mrtPrintHandler);
sl@0
   373
  #endif /*__SYMBIAN32__*/
sl@0
   374
  g_type_init (); 
sl@0
   375
  
sl@0
   376
  test_enum_transformation ();
sl@0
   377
  test_gtype_value ();
sl@0
   378
  test_collection ();
sl@0
   379
  test_copying ();
sl@0
   380
  #if __SYMBIAN32__
sl@0
   381
  testResultXml("gvalue-test");
sl@0
   382
  #endif /* EMULATOR */
sl@0
   383
sl@0
   384
  return 0;
sl@0
   385
}