os/ossrv/glib/tests/list-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
sl@0
     2
#undef G_DISABLE_ASSERT
sl@0
     3
#undef G_LOG_DOMAIN
sl@0
     4
sl@0
     5
#include <glib.h>
sl@0
     6
#ifdef __SYMBIAN32__
sl@0
     7
#include "mrt2_glib2_test.h"
sl@0
     8
#endif /*__SYMBIAN32__*/
sl@0
     9
sl@0
    10
#define DEBUG_MSG(args)
sl@0
    11
/* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n");  */
sl@0
    12
#define PRINT_MSG(args)
sl@0
    13
/* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
sl@0
    14
sl@0
    15
#define SIZE       50
sl@0
    16
#define NUMBER_MIN 0000
sl@0
    17
#define NUMBER_MAX 9999
sl@0
    18
sl@0
    19
sl@0
    20
static guint32 array[SIZE];
sl@0
    21
sl@0
    22
sl@0
    23
static gint
sl@0
    24
sort (gconstpointer p1, gconstpointer p2)
sl@0
    25
{
sl@0
    26
  gint32 a, b;
sl@0
    27
sl@0
    28
  a = GPOINTER_TO_INT (p1);
sl@0
    29
  b = GPOINTER_TO_INT (p2);
sl@0
    30
sl@0
    31
  return (a > b ? +1 : a == b ? 0 : -1);
sl@0
    32
}
sl@0
    33
sl@0
    34
/*
sl@0
    35
 * glist sort tests
sl@0
    36
 */
sl@0
    37
static void
sl@0
    38
test_list_sort (void)
sl@0
    39
{
sl@0
    40
  GList *list = NULL;
sl@0
    41
  gint   i;
sl@0
    42
sl@0
    43
  PRINT_MSG (("testing g_list_sort()"));
sl@0
    44
sl@0
    45
  for (i = 0; i < SIZE; i++) {
sl@0
    46
    list = g_list_append (list, GINT_TO_POINTER (array[i]));
sl@0
    47
  }
sl@0
    48
sl@0
    49
  list = g_list_sort (list, sort);
sl@0
    50
  for (i = 0; i < SIZE - 1; i++) {
sl@0
    51
    gpointer p1, p2;
sl@0
    52
sl@0
    53
    p1 = g_list_nth_data (list, i);
sl@0
    54
    p2 = g_list_nth_data (list, i+1);
sl@0
    55
sl@0
    56
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
    57
    DEBUG_MSG (("list_sort #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
    58
  }
sl@0
    59
sl@0
    60
  g_list_free (list);
sl@0
    61
}
sl@0
    62
sl@0
    63
static void
sl@0
    64
test_list_sort_with_data (void)
sl@0
    65
{
sl@0
    66
  GList *list = NULL;
sl@0
    67
  gint   i;
sl@0
    68
sl@0
    69
  PRINT_MSG (("testing g_list_sort_with_data()"));
sl@0
    70
sl@0
    71
  for (i = 0; i < SIZE; i++) {
sl@0
    72
    list = g_list_append (list, GINT_TO_POINTER (array[i]));
sl@0
    73
  }
sl@0
    74
sl@0
    75
  list = g_list_sort_with_data (list, (GCompareDataFunc)sort, NULL);
sl@0
    76
  for (i = 0; i < SIZE - 1; i++) {
sl@0
    77
    gpointer p1, p2;
sl@0
    78
sl@0
    79
    p1 = g_list_nth_data (list, i);
sl@0
    80
    p2 = g_list_nth_data (list, i+1);
sl@0
    81
sl@0
    82
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
    83
    DEBUG_MSG (("list_sort_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
    84
  }
sl@0
    85
sl@0
    86
  g_list_free (list);
sl@0
    87
}
sl@0
    88
sl@0
    89
static void
sl@0
    90
test_list_insert_sorted (void)
sl@0
    91
{
sl@0
    92
  GList *list = NULL;
sl@0
    93
  gint   i;
sl@0
    94
sl@0
    95
  PRINT_MSG (("testing g_list_insert_sorted()"));
sl@0
    96
sl@0
    97
  for (i = 0; i < SIZE; i++) {
sl@0
    98
    list = g_list_insert_sorted (list, GINT_TO_POINTER (array[i]), sort);
sl@0
    99
  }
sl@0
   100
sl@0
   101
  for (i = 0; i < SIZE - 1; i++) {
sl@0
   102
    gpointer p1, p2;
sl@0
   103
sl@0
   104
    p1 = g_list_nth_data (list, i);
sl@0
   105
    p2 = g_list_nth_data (list, i+1);
sl@0
   106
sl@0
   107
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
   108
    DEBUG_MSG (("list_insert_sorted #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
   109
  }
sl@0
   110
sl@0
   111
  g_list_free (list);
sl@0
   112
}
sl@0
   113
sl@0
   114
static void
sl@0
   115
test_list_insert_sorted_with_data (void)
sl@0
   116
{
sl@0
   117
  GList *list = NULL;
sl@0
   118
  gint   i;
sl@0
   119
sl@0
   120
  PRINT_MSG (("testing g_list_insert_sorted_with_data()"));
sl@0
   121
sl@0
   122
  for (i = 0; i < SIZE; i++) {
sl@0
   123
    list = g_list_insert_sorted_with_data (list, 
sl@0
   124
					   GINT_TO_POINTER (array[i]), 
sl@0
   125
					   (GCompareDataFunc)sort, 
sl@0
   126
					   NULL);
sl@0
   127
  }
sl@0
   128
sl@0
   129
  for (i = 0; i < SIZE - 1; i++) {
sl@0
   130
    gpointer p1, p2;
sl@0
   131
sl@0
   132
    p1 = g_list_nth_data (list, i);
sl@0
   133
    p2 = g_list_nth_data (list, i+1);
sl@0
   134
sl@0
   135
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
   136
    DEBUG_MSG (("list_insert_sorted_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
   137
  }
sl@0
   138
sl@0
   139
  g_list_free (list);
sl@0
   140
}
sl@0
   141
sl@0
   142
static void
sl@0
   143
test_list_reverse (void)
sl@0
   144
{
sl@0
   145
  GList *list = NULL;
sl@0
   146
  GList *st;
sl@0
   147
  gint   nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
sl@0
   148
  gint   i;
sl@0
   149
sl@0
   150
  PRINT_MSG (("testing g_list_reverse()"));
sl@0
   151
sl@0
   152
  for (i = 0; i < 10; i++) {
sl@0
   153
    list = g_list_append (list, &nums[i]);
sl@0
   154
  }
sl@0
   155
sl@0
   156
  list = g_list_reverse (list);
sl@0
   157
sl@0
   158
  for (i = 0; i < 10; i++) {
sl@0
   159
    st = g_list_nth (list, i);
sl@0
   160
    g_assert (*((gint*) st->data) == (9 - i));
sl@0
   161
  }
sl@0
   162
sl@0
   163
  g_list_free (list);
sl@0
   164
}
sl@0
   165
sl@0
   166
static void
sl@0
   167
test_list_nth (void)
sl@0
   168
{
sl@0
   169
  GList *list = NULL;
sl@0
   170
  GList *st;
sl@0
   171
  gint   nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
sl@0
   172
  gint   i;
sl@0
   173
sl@0
   174
  PRINT_MSG (("testing g_list_nth()"));
sl@0
   175
sl@0
   176
  for (i = 0; i < 10; i++) {
sl@0
   177
    list = g_list_append (list, &nums[i]);
sl@0
   178
  }
sl@0
   179
sl@0
   180
  for (i = 0; i < 10; i++) {
sl@0
   181
    st = g_list_nth (list, i);
sl@0
   182
    g_assert (*((gint*) st->data) == i);
sl@0
   183
  }
sl@0
   184
sl@0
   185
  g_list_free (list);
sl@0
   186
}
sl@0
   187
sl@0
   188
int
sl@0
   189
main (int argc, char *argv[])
sl@0
   190
{
sl@0
   191
  gint i;
sl@0
   192
sl@0
   193
  DEBUG_MSG (("debugging messages turned on"));
sl@0
   194
sl@0
   195
  DEBUG_MSG (("creating %d random numbers", SIZE));
sl@0
   196
  #ifdef __SYMBIAN32__
sl@0
   197
  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
   198
  g_set_print_handler(mrtPrintHandler);
sl@0
   199
  #endif /*__SYMBIAN32__*/
sl@0
   200
	  
sl@0
   201
sl@0
   202
  /* Create an array of random numbers. */
sl@0
   203
  for (i = 0; i < SIZE; i++) {
sl@0
   204
    array[i] = g_random_int_range (NUMBER_MIN, NUMBER_MAX);
sl@0
   205
    DEBUG_MSG (("number #%3.3d ---> %d", i, array[i]));
sl@0
   206
  }
sl@0
   207
sl@0
   208
  /* Start tests. */
sl@0
   209
  test_list_sort ();
sl@0
   210
  test_list_sort_with_data ();
sl@0
   211
sl@0
   212
  test_list_insert_sorted ();
sl@0
   213
  test_list_insert_sorted_with_data ();
sl@0
   214
sl@0
   215
  test_list_reverse ();
sl@0
   216
  test_list_nth ();
sl@0
   217
sl@0
   218
  PRINT_MSG (("testing finished"));
sl@0
   219
  #ifdef __SYMBIAN32__
sl@0
   220
  testResultXml("list-test");
sl@0
   221
  #endif /* EMULATOR */
sl@0
   222
sl@0
   223
  return 0;
sl@0
   224
}