Add some more tests.
[platform/upstream/glib.git] / 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 int array[10000];
35 gboolean failed = FALSE;
36
37 #define TEST(m,cond)    G_STMT_START { failed = !(cond); \
38 if (failed) \
39   { if (!m) \
40       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
41     else \
42       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
43   } \
44 else \
45   g_print ("."); fflush (stdout); \
46 } G_STMT_END
47
48 #define C2P(c)          ((gpointer) ((long) (c)))
49 #define P2C(p)          ((gchar) ((long) (p)))
50
51 #define GLIB_TEST_STRING "el dorado "
52 #define GLIB_TEST_STRING_5 "el do"
53
54 typedef struct {
55         guint age;
56         gchar name[40];
57 } GlibTestInfo;
58
59
60 static void 
61 sum_up (gpointer data, 
62         gpointer user_data)
63 {
64   gint *sum = (gint *)user_data;
65
66   *sum += GPOINTER_TO_INT (data);
67 }
68
69 int
70 main (int   argc,
71       char *argv[])
72 {
73   gint i;
74   GArray *garray;
75   GPtrArray *gparray;
76   GByteArray *gbarray;
77   gint sum = 0;
78
79   /* array tests */
80   garray = g_array_new (FALSE, FALSE, sizeof (gint));
81   for (i = 0; i < 10000; i++)
82     g_array_append_val (garray, i);
83
84   for (i = 0; i < 10000; i++)
85     g_assert (g_array_index (garray, gint, i) == i);
86
87   g_array_free (garray, TRUE);
88
89   garray = g_array_new (FALSE, FALSE, sizeof (gint));
90   for (i = 0; i < 100; i++)
91     g_array_prepend_val (garray, i);
92
93   for (i = 0; i < 100; i++)
94     g_assert (g_array_index (garray, gint, i) == (100 - i - 1));
95
96   g_array_free (garray, TRUE);
97
98   /* pointer arrays */
99   gparray = g_ptr_array_new ();
100   for (i = 0; i < 10000; i++)
101     g_ptr_array_add (gparray, GINT_TO_POINTER (i));
102
103   for (i = 0; i < 10000; i++)
104     if (g_ptr_array_index (gparray, i) != GINT_TO_POINTER (i))
105       g_print ("array fails: %p ( %p )\n", g_ptr_array_index (gparray, i), GINT_TO_POINTER (i));
106   
107   g_ptr_array_foreach (gparray, sum_up, &sum);
108   g_assert (sum == 49995000);
109
110   g_ptr_array_free (gparray, TRUE);
111
112   /* byte arrays */
113   gbarray = g_byte_array_new ();
114   for (i = 0; i < 10000; i++)
115     g_byte_array_append (gbarray, (guint8*) "abcd", 4);
116
117   for (i = 0; i < 10000; i++)
118     {
119       g_assert (gbarray->data[4*i] == 'a');
120       g_assert (gbarray->data[4*i+1] == 'b');
121       g_assert (gbarray->data[4*i+2] == 'c');
122       g_assert (gbarray->data[4*i+3] == 'd');
123     }
124
125   g_byte_array_free (gbarray, TRUE);
126
127   return 0;
128 }
129