Move another test
[platform/upstream/glib.git] / glib / tests / array-test.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #undef G_DISABLE_ASSERT
28 #undef G_LOG_DOMAIN
29
30 #include <stdio.h>
31 #include <string.h>
32 #include "glib.h"
33
34 static void 
35 sum_up (gpointer data, 
36         gpointer user_data)
37 {
38   gint *sum = (gint *)user_data;
39
40   *sum += GPOINTER_TO_INT (data);
41 }
42
43 static void
44 array_append (void)
45 {
46   GArray *garray;
47   gint i;
48
49   garray = g_array_new (FALSE, FALSE, sizeof (gint));
50   for (i = 0; i < 10000; i++)
51     g_array_append_val (garray, i);
52
53   for (i = 0; i < 10000; i++)
54     g_assert_cmpint (g_array_index (garray, gint, i), ==, i);
55
56   g_array_free (garray, TRUE);
57 }
58
59 static void
60 array_prepend (void)
61 {
62   GArray *garray;
63   gint i;
64
65   garray = g_array_new (FALSE, FALSE, sizeof (gint));
66   for (i = 0; i < 100; i++)
67     g_array_prepend_val (garray, i);
68
69   for (i = 0; i < 100; i++)
70     g_assert_cmpint (g_array_index (garray, gint, i), ==, (100 - i - 1));
71
72   g_array_free (garray, TRUE);
73 }
74
75 static void
76 pointer_array_add (void)
77 {
78   GPtrArray *gparray;
79   gint i;
80   gint sum = 0;
81
82   gparray = g_ptr_array_new ();
83   for (i = 0; i < 10000; i++)
84     g_ptr_array_add (gparray, GINT_TO_POINTER (i));
85
86   for (i = 0; i < 10000; i++)
87     g_assert (g_ptr_array_index (gparray, i) == GINT_TO_POINTER (i));
88   
89   g_ptr_array_foreach (gparray, sum_up, &sum);
90   g_assert (sum == 49995000);
91
92   g_ptr_array_free (gparray, TRUE);
93 }
94
95 static void
96 byte_array_append (void)
97 {
98   GByteArray *gbarray;
99   gint i;
100
101   gbarray = g_byte_array_new ();
102   for (i = 0; i < 10000; i++)
103     g_byte_array_append (gbarray, (guint8*) "abcd", 4);
104
105   for (i = 0; i < 10000; i++)
106     {
107       g_assert (gbarray->data[4*i] == 'a');
108       g_assert (gbarray->data[4*i+1] == 'b');
109       g_assert (gbarray->data[4*i+2] == 'c');
110       g_assert (gbarray->data[4*i+3] == 'd');
111     }
112
113   g_byte_array_free (gbarray, TRUE);
114 }
115
116 int
117 main (int argc, char *argv[])
118 {
119   g_test_init (&argc, &argv, NULL);
120
121   /* array tests */
122   g_test_add_func ("/array/append", array_append);
123   g_test_add_func ("/array/prepend", array_prepend);
124
125   /* pointer arrays */
126   g_test_add_func ("/pointerarray/add", pointer_array_add);
127
128   /* byte arrays */
129   g_test_add_func ("/bytearray/append", byte_array_append);
130
131   return g_test_run ();
132 }
133