Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #undef G_DISABLE_ASSERT
20 #define LOG_FILENAME_LINE __FILE__, __LINE__
24 #define LOG_FILE "c:\\logs\\array2_test_log.txt"
25 #include "std_log_result.h"
28 void create_xml(int result)
33 testResultXml("ptrarray-test");
37 static gint psort (gconstpointer a, gconstpointer b)
39 if(**(guint32**)a == **(guint32**)b)
42 return **(guint32**)a < **(guint32**)b ? -1 : 1;
46 static gint psort_userdata (gconstpointer a, gconstpointer b, gpointer user_data)
48 if(**(guint32**)a == **(guint32**)b)
51 return **(guint32**)a < **(guint32**)b ? -1 : 1;
54 gboolean compare_pointer_array(GPtrArray *parray1, gint* array2, gint size )
59 if ( size != parray1->len)
61 for ( i = 0; i < size ; i++)
63 val = (int*)g_ptr_array_index(parray1, i) ;
66 if ( *val != array2[i])
74 void test_pointer_array_remove_range()
77 const gint ARRAY_SIZE = 15;
78 const gint ARRAY_SIZE_AFTER_REMOVE_RANGE = 12; /*removing 3 elements starting from index 3*/
80 gint array[ARRAY_SIZE]= {99,88,77,33,44,11,66,22,0,39,1,9,100,2,73};
81 gint array_after_remove_range[ARRAY_SIZE_AFTER_REMOVE_RANGE ]= {99,88,77,66,22,0,39,1,9,100,2,73};
86 gparray = g_ptr_array_new ();
89 std_log(LOG_FILENAME_LINE, "Pointer Array Not created");
94 /*Add elements to array*/
95 for (i = 0; i < ARRAY_SIZE; i++)
97 g_ptr_array_add (gparray, &(array[i]));
98 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, array[i]);
101 g_ptr_array_remove_range(gparray,3,3);
103 std_log(LOG_FILENAME_LINE, "AFTER DELETING THE RANGE");
105 /*Print the garray pointer->values*/
106 for(i=0;i<gparray->len;i++)
108 gpointer val = g_ptr_array_index (gparray,i);
109 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, *((int*)val));
112 ret = compare_pointer_array(gparray, array_after_remove_range, ARRAY_SIZE_AFTER_REMOVE_RANGE );
116 std_log(LOG_FILENAME_LINE, "Pointer Array Elements not properly deleted by g_ptr_array_remove_range");
118 g_ptr_array_free(gparray,TRUE);
121 g_ptr_array_free (gparray, TRUE);
125 void sort_pointer_array()
129 const gint ARRAY_SIZE = 15;
131 gint array[ARRAY_SIZE]= {99,88,77,33,44,11,66,22,0,39,1,9,100,2,73};
132 gint sorted_array[ARRAY_SIZE]= { 0,1,2,9,11,22,33,39,44,66,73,77,88,99,100};
136 /* Test to sort the pointer array*/
137 gparray = g_ptr_array_new ();
140 std_log(LOG_FILENAME_LINE, "Pointer Array not created");
142 g_ptr_array_free(gparray,TRUE);
146 for (i = 0; i < ARRAY_SIZE; i++)
148 g_ptr_array_add (gparray, &array[i]);
149 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, array[i]);
152 g_ptr_array_sort(gparray,psort);
154 /*Print the sorted Array*/
155 std_log(LOG_FILENAME_LINE, "SORTED ARRAY");
157 for(i=0;i<gparray->len;i++)
159 gpointer val = g_ptr_array_index (gparray,i);
160 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, *((int*)val));
164 ret = compare_pointer_array(gparray, sorted_array, ARRAY_SIZE);
167 std_log(LOG_FILENAME_LINE, "Pointer Array Elements not sorted by g_ptr_array_sort");
169 g_ptr_array_free(gparray,TRUE);
172 g_ptr_array_free (gparray, TRUE);
176 void sort_pointer_array_with_data()
180 const gint ARRAY_SIZE = 15;
182 gint array[ARRAY_SIZE]= {99,88,77,33,44,11,66,22,0,39,1,9,100,2,73};
183 gint sorted_array[ARRAY_SIZE]= { 0,1,2,9,11,22,33,39,44,66,73,77,88,99,100};
187 /* Test to sort the pointer array*/
188 gparray = g_ptr_array_new ();
191 std_log(LOG_FILENAME_LINE, "Pointer Array not created");
193 g_ptr_array_free(gparray,TRUE);
197 for (i = 0; i < ARRAY_SIZE; i++)
199 g_ptr_array_add (gparray, &array[i]);
201 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, array[i]);
204 g_ptr_array_sort_with_data(gparray,psort_userdata, NULL);
207 /*Print the sorted Array*/
208 std_log(LOG_FILENAME_LINE, "SORTED ARRAY");
210 for(i=0;i<gparray->len;i++)
212 gpointer val = g_ptr_array_index (gparray,i);
213 std_log(LOG_FILENAME_LINE, "Ptr Array element at index %d is %d",i, *((int*)val) );
217 ret = compare_pointer_array(gparray, sorted_array, ARRAY_SIZE);
221 std_log(LOG_FILENAME_LINE, "Pointer Array Elements not sorted by g_ptr_array_sort");
223 g_ptr_array_free(gparray,TRUE);
226 g_ptr_array_free (gparray, TRUE);
232 test_pointer_array_remove_range();
233 sort_pointer_array();
234 sort_pointer_array_with_data();
237 std_log(LOG_FILENAME_LINE,"Test Failed");
239 std_log(LOG_FILENAME_LINE,"Test Successful");