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
21 #define LOG_FILE "c:\\logs\\array1_test_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
26 void create_xml(int result)
31 testResultXml("array-test");
35 static gint sort (gconstpointer a, gconstpointer b)
37 if(*(guint32*)a == *(guint32*)b)
40 return *(guint32*)a < *(guint32*)b ? -1 : 1;
44 static gint sort_userdata (gconstpointer a, gconstpointer b, gpointer user_data)
46 if(*(guint32*)a == *(guint32*)b)
49 return *(guint32*)a < *(guint32*)b ? -1 : 1;
54 /*Will return TRUE if input GArray and int[] array 2 are same else FALSE*/
55 gboolean compare_array(GArray* array1, gint* array2, gint size)
59 if ( size != array1->len)
61 for ( i = 0; i < size ; i++)
63 if ( g_array_index(array1, gint, i) != array2[i])
71 void test_remove_array_index()
75 const gint ARRAY_SIZE = 7;
76 const gint ARRAY_SIZE_AFTER_REMOVE_INDEX = 6;
77 const gint ARRAY_SIZE_AFTER_REMOVE_INDEX_FAST = 5;
79 gint array[ARRAY_SIZE] = {4,5,6,7,8,9,10};
80 gint array_after_remove_index_1[ARRAY_SIZE_AFTER_REMOVE_INDEX]= {4,6,7,8,9,10}; /*array after removing index 1*/
81 gint array_after_remove_index_fast_2[ARRAY_SIZE_AFTER_REMOVE_INDEX_FAST] = {4,6,10,8,9}; /* array after removing index 2 fast. Input is array after removing index 1 */
86 garray = g_array_new (FALSE,FALSE,sizeof(gint));
89 std_log(LOG_FILENAME_LINE, "Array not created");
94 /*Insert values into array*/
95 g_array_insert_vals(garray,0,array,ARRAY_SIZE);
97 /* test for deleting single element in an array. Removing the element with index 1*/
98 std_log(LOG_FILENAME_LINE, "Delete array element at index 1");
99 garray = g_array_remove_index(garray,1);
103 std_log(LOG_FILENAME_LINE, "NULL return by g_array_remove_index");
108 /*Print the array elements after remove*/
109 for(i=0; i<garray->len; i++)
111 std_log(LOG_FILENAME_LINE, "Current array element at index %d is %d", i,g_array_index(garray, gint, i));
114 /*Check if the array size is now 4 and element at index 1 is not 5 after removal*/
116 ret = compare_array(garray, array_after_remove_index_1, ARRAY_SIZE_AFTER_REMOVE_INDEX);
119 std_log(LOG_FILENAME_LINE, "Array Element not properly deleted by g_array_remove_index");
121 g_array_free(garray,TRUE);
126 /* Test to remove index element 2 using g_array_remove_index_fast*/
128 std_log(LOG_FILENAME_LINE, "Delete array element at index 2");
129 garray =g_array_remove_index_fast(garray,2);
132 std_log(LOG_FILENAME_LINE, "NULL return by g_array_remove_index_fast");
137 for(i=0; i<garray->len; i++)
139 std_log(LOG_FILENAME_LINE, "Current array element at index %d is %d", i,g_array_index(garray, gint, i));
142 ret = compare_array(garray, array_after_remove_index_fast_2, ARRAY_SIZE_AFTER_REMOVE_INDEX_FAST);
145 std_log(LOG_FILENAME_LINE, "Array Element not properly deleted by g_array_remove_index_fast");
147 g_array_free(garray,TRUE);
150 g_array_free(garray,TRUE);
154 void test_test_remove_array_index_range()
156 const int ARRAY_SIZE = 10;
157 const int ARRAY_SIZE_AFTER_REMOVE_INDEX_RANGE = 8;
159 gint array[ARRAY_SIZE]= {10,5,16,7,11,0,20,1,9,8};
160 gint array_after_remove_index_range[ARRAY_SIZE_AFTER_REMOVE_INDEX_RANGE] = {10,5,16,0,20,1,9,8}; /*after removing 2 elements from index 3*/
166 garray = g_array_new (FALSE,FALSE,sizeof(gint));
169 std_log(LOG_FILENAME_LINE, "Array not created");
174 g_array_insert_vals(garray,0,array,ARRAY_SIZE);
175 for(i=0; i<garray->len;i++)
177 std_log(LOG_FILENAME_LINE, "Current array elements %d is %d", i,g_array_index(garray, gint, i));
180 garray = g_array_remove_range(garray,3,2); /*remove two elements from index 3 */
184 std_log(LOG_FILENAME_LINE,"Elements not deleted properly by g_array_remove_range");
190 /*print the array elements */
191 for(i=0; i<garray->len;i++)
193 std_log(LOG_FILENAME_LINE, "Curent array element(after deletion) %d is %d", i,g_array_index(garray, gint, i));
197 ret = compare_array(garray, array_after_remove_index_range, ARRAY_SIZE_AFTER_REMOVE_INDEX_RANGE);
200 std_log(LOG_FILENAME_LINE,"Elements not deleted properly");
202 g_array_free(garray,TRUE);
205 g_array_free(garray,TRUE);
209 void test_sort_array()
213 const int ARRAY_SIZE = 11;
214 gint array[ARRAY_SIZE] = {10,5,16,7,11,0,20,1,9,8,9};
215 gint sort_array[ARRAY_SIZE] = {0,1,5,7,8,9,9,10,11,16,20};
220 /* Test for sorting the array elements */
222 garray = g_array_new (FALSE,FALSE,sizeof(gint));
226 std_log(LOG_FILENAME_LINE, "Array not created");
230 g_array_insert_vals(garray,0,array,ARRAY_SIZE);
232 g_array_sort(garray, sort);
236 std_log(LOG_FILENAME_LINE, "Array not sorted");
241 std_log(LOG_FILENAME_LINE,"SORTED ARRAY");
243 for(i=0;i<garray->len;i++)
245 std_log(LOG_FILENAME_LINE, "Element %d is %d", i,g_array_index(garray, gint, i));
248 ret = compare_array(garray, sort_array, ARRAY_SIZE);
252 std_log(LOG_FILENAME_LINE, "Array not sorted correctly");
257 g_array_free(garray,TRUE);
260 garray = g_array_new (FALSE,FALSE,sizeof(gint));
263 std_log(LOG_FILENAME_LINE, "Array not created");
266 g_array_insert_vals(garray,0,array,ARRAY_SIZE);
268 g_array_sort_with_data (garray, sort_userdata, NULL);
272 std_log(LOG_FILENAME_LINE, "Array not sorted with user data");
277 std_log(LOG_FILENAME_LINE,"SORTED ARRAY WITH USERDATA");
278 for(i=0;i<garray->len;i++)
280 std_log(LOG_FILENAME_LINE, "Element %d is %d", i,g_array_index(garray, gint, i));
283 ret = compare_array(garray, sort_array, ARRAY_SIZE);
286 std_log(LOG_FILENAME_LINE, "Array not sorted correctly with user data");
290 g_array_free(garray,TRUE);
296 test_test_remove_array_index_range();
298 test_remove_array_index();
301 std_log(LOG_FILENAME_LINE,"Test Failed");
303 std_log(LOG_FILENAME_LINE,"Test Successful");