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