os/ossrv/glib/tests/slist-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
sl@0
     7
#define DEBUG_MSG(args) 
sl@0
     8
/* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
sl@0
     9
#define PRINT_MSG(args) 
sl@0
    10
/* #define PRINT_MSG(args) g_print args ; g_print ("\n"); */
sl@0
    11
sl@0
    12
#define SIZE       50
sl@0
    13
#define NUMBER_MIN 0000
sl@0
    14
#define NUMBER_MAX 9999
sl@0
    15
sl@0
    16
#ifdef __SYMBIAN32__
sl@0
    17
#include "mrt2_glib2_test.h"
sl@0
    18
#endif /*__SYMBIAN32__*/
sl@0
    19
sl@0
    20
sl@0
    21
static guint32 array[SIZE];
sl@0
    22
sl@0
    23
sl@0
    24
static gint
sl@0
    25
sort (gconstpointer p1, gconstpointer p2)
sl@0
    26
{
sl@0
    27
  gint32 a, b;
sl@0
    28
sl@0
    29
  a = GPOINTER_TO_INT (p1);
sl@0
    30
  b = GPOINTER_TO_INT (p2);
sl@0
    31
sl@0
    32
  return (a > b ? +1 : a == b ? 0 : -1);
sl@0
    33
}
sl@0
    34
sl@0
    35
/*
sl@0
    36
 * gslist sort tests
sl@0
    37
 */
sl@0
    38
static void
sl@0
    39
test_slist_sort (void)
sl@0
    40
{
sl@0
    41
  GSList *slist = NULL;
sl@0
    42
  gint    i;
sl@0
    43
sl@0
    44
  PRINT_MSG (("testing g_slist_sort()"));
sl@0
    45
sl@0
    46
  for (i = 0; i < SIZE; i++) {
sl@0
    47
    slist = g_slist_append (slist, GINT_TO_POINTER (array[i]));
sl@0
    48
  }
sl@0
    49
sl@0
    50
  slist = g_slist_sort (slist, sort);
sl@0
    51
  for (i = 0; i < SIZE - 1; i++) {
sl@0
    52
    gpointer p1, p2;
sl@0
    53
sl@0
    54
    p1 = g_slist_nth_data (slist, i);
sl@0
    55
    p2 = g_slist_nth_data (slist, i+1);
sl@0
    56
sl@0
    57
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
    58
    DEBUG_MSG (("slist_sort #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
    59
  }
sl@0
    60
}
sl@0
    61
sl@0
    62
static void
sl@0
    63
test_slist_sort_with_data (void)
sl@0
    64
{
sl@0
    65
  GSList *slist = NULL;
sl@0
    66
  gint    i;
sl@0
    67
sl@0
    68
  PRINT_MSG (("testing g_slist_sort_with_data()"));
sl@0
    69
sl@0
    70
  for (i = 0; i < SIZE; i++) {
sl@0
    71
    slist = g_slist_append (slist, GINT_TO_POINTER (array[i]));
sl@0
    72
  }
sl@0
    73
sl@0
    74
  slist = g_slist_sort_with_data (slist, (GCompareDataFunc)sort, NULL);
sl@0
    75
  for (i = 0; i < SIZE - 1; i++) {
sl@0
    76
    gpointer p1, p2;
sl@0
    77
sl@0
    78
    p1 = g_slist_nth_data (slist, i);
sl@0
    79
    p2 = g_slist_nth_data (slist, i+1);
sl@0
    80
sl@0
    81
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
    82
    DEBUG_MSG (("slist_sort_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
    83
  }
sl@0
    84
}
sl@0
    85
sl@0
    86
static void
sl@0
    87
test_slist_insert_sorted (void)
sl@0
    88
{
sl@0
    89
  GSList *slist = NULL;
sl@0
    90
  gint    i;
sl@0
    91
sl@0
    92
  PRINT_MSG (("testing g_slist_insert_sorted()"));
sl@0
    93
sl@0
    94
  for (i = 0; i < SIZE; i++) {
sl@0
    95
    slist = g_slist_insert_sorted (slist, GINT_TO_POINTER (array[i]), sort);
sl@0
    96
  }
sl@0
    97
sl@0
    98
  for (i = 0; i < SIZE - 1; i++) {
sl@0
    99
    gpointer p1, p2;
sl@0
   100
sl@0
   101
    p1 = g_slist_nth_data (slist, i);
sl@0
   102
    p2 = g_slist_nth_data (slist, i+1);
sl@0
   103
sl@0
   104
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
   105
    DEBUG_MSG (("slist_insert_sorted #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
   106
  }
sl@0
   107
}
sl@0
   108
sl@0
   109
static void
sl@0
   110
test_slist_insert_sorted_with_data (void)
sl@0
   111
{
sl@0
   112
  GSList *slist = NULL;
sl@0
   113
  gint    i;
sl@0
   114
sl@0
   115
  PRINT_MSG (("testing g_slist_insert_sorted_with_data()"));
sl@0
   116
sl@0
   117
  for (i = 0; i < SIZE; i++) {
sl@0
   118
    slist = g_slist_insert_sorted_with_data (slist, 
sl@0
   119
					   GINT_TO_POINTER (array[i]), 
sl@0
   120
					   (GCompareDataFunc)sort, 
sl@0
   121
					   NULL);
sl@0
   122
  }
sl@0
   123
sl@0
   124
  for (i = 0; i < SIZE - 1; i++) {
sl@0
   125
    gpointer p1, p2;
sl@0
   126
sl@0
   127
    p1 = g_slist_nth_data (slist, i);
sl@0
   128
    p2 = g_slist_nth_data (slist, i+1);
sl@0
   129
sl@0
   130
    g_assert (GPOINTER_TO_INT (p1) <= GPOINTER_TO_INT (p2));
sl@0
   131
    DEBUG_MSG (("slist_insert_sorted_with_data #%3.3d ---> %d", i, GPOINTER_TO_INT (p1)));
sl@0
   132
  }
sl@0
   133
}
sl@0
   134
sl@0
   135
static void
sl@0
   136
test_slist_reverse (void)
sl@0
   137
{
sl@0
   138
  GSList *slist = NULL;
sl@0
   139
  GSList *st;
sl@0
   140
  gint    nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
sl@0
   141
  gint    i;
sl@0
   142
sl@0
   143
  PRINT_MSG (("testing g_slist_reverse()"));
sl@0
   144
sl@0
   145
  for (i = 0; i < 10; i++) {
sl@0
   146
    slist = g_slist_append (slist, &nums[i]);
sl@0
   147
  }
sl@0
   148
sl@0
   149
  slist = g_slist_reverse (slist);
sl@0
   150
sl@0
   151
  for (i = 0; i < 10; i++) {
sl@0
   152
    st = g_slist_nth (slist, i);
sl@0
   153
    g_assert (*((gint*) st->data) == (9 - i));
sl@0
   154
  }
sl@0
   155
sl@0
   156
  g_slist_free (slist);
sl@0
   157
}
sl@0
   158
sl@0
   159
static void
sl@0
   160
test_slist_nth (void)
sl@0
   161
{
sl@0
   162
  GSList *slist = NULL;
sl@0
   163
  GSList *st;
sl@0
   164
  gint    nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
sl@0
   165
  gint    i;
sl@0
   166
sl@0
   167
  PRINT_MSG (("testing g_slist_nth()"));
sl@0
   168
sl@0
   169
  for (i = 0; i < 10; i++) {
sl@0
   170
    slist = g_slist_append (slist, &nums[i]);
sl@0
   171
  }
sl@0
   172
sl@0
   173
  for (i = 0; i < 10; i++) {
sl@0
   174
    st = g_slist_nth (slist, i);
sl@0
   175
    g_assert (*((gint*) st->data) == i);
sl@0
   176
  }
sl@0
   177
sl@0
   178
  g_slist_free (slist);
sl@0
   179
}
sl@0
   180
sl@0
   181
int
sl@0
   182
main (int argc, char *argv[])
sl@0
   183
{
sl@0
   184
  gint i;
sl@0
   185
sl@0
   186
  #ifdef __SYMBIAN32__
sl@0
   187
  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
   188
  g_set_print_handler(mrtPrintHandler);
sl@0
   189
  #endif /*__SYMBIAN32__*/
sl@0
   190
sl@0
   191
  
sl@0
   192
  
sl@0
   193
sl@0
   194
  DEBUG_MSG (("debugging messages turned on"));
sl@0
   195
sl@0
   196
  DEBUG_MSG (("creating %d random numbers", SIZE));
sl@0
   197
sl@0
   198
  /* Create an array of random numbers. */
sl@0
   199
  for (i = 0; i < SIZE; i++) {
sl@0
   200
    array[i] = g_random_int_range (NUMBER_MIN, NUMBER_MAX);
sl@0
   201
    DEBUG_MSG (("number #%3.3d ---> %d", i, array[i]));
sl@0
   202
  }
sl@0
   203
sl@0
   204
  /* Start tests. */
sl@0
   205
  test_slist_sort ();
sl@0
   206
  test_slist_sort_with_data ();
sl@0
   207
sl@0
   208
  test_slist_insert_sorted ();
sl@0
   209
  test_slist_insert_sorted_with_data ();
sl@0
   210
sl@0
   211
  test_slist_reverse ();
sl@0
   212
  test_slist_nth ();
sl@0
   213
sl@0
   214
  PRINT_MSG (("testing finished"));
sl@0
   215
sl@0
   216
#ifdef __SYMBIAN32__
sl@0
   217
  testResultXml("slist-test");
sl@0
   218
#endif /* EMULATOR */
sl@0
   219
  return 0;
sl@0
   220
}