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