Added 'make check' tests, based on testglib code.
[platform/upstream/glib.git] / tests / relation-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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #undef G_LOG_DOMAIN
20
21 #include <stdio.h>
22 #include <string.h>
23 #include "glib.h"
24
25 int array[10000];
26 gboolean failed = FALSE;
27
28 #define TEST(m,cond)    G_STMT_START { failed = !(cond); \
29 if (failed) \
30   { if (!m) \
31       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
32     else \
33       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
34   } \
35 else \
36   g_print ("."); fflush (stdout); \
37 } G_STMT_END
38
39 #define C2P(c)          ((gpointer) ((long) (c)))
40 #define P2C(p)          ((gchar) ((long) (p)))
41
42 #define GLIB_TEST_STRING "el dorado "
43 #define GLIB_TEST_STRING_5 "el do"
44
45 typedef struct {
46         guint age;
47         gchar name[40];
48 } GlibTestInfo;
49
50
51
52 int
53 main (int   argc,
54       char *argv[])
55 {
56   gint i;
57   GRelation *relation;
58   GTuples *tuples;
59   gint data [1024];
60
61
62   relation = g_relation_new (2);
63
64   g_relation_index (relation, 0, g_int_hash, g_int_equal);
65   g_relation_index (relation, 1, g_int_hash, g_int_equal);
66
67   for (i = 0; i < 1024; i += 1)
68     data[i] = i;
69
70   for (i = 1; i < 1023; i += 1)
71     {
72       g_relation_insert (relation, data + i, data + i + 1);
73       g_relation_insert (relation, data + i, data + i - 1);
74     }
75
76   for (i = 2; i < 1022; i += 1)
77     {
78       g_assert (! g_relation_exists (relation, data + i, data + i));
79       g_assert (! g_relation_exists (relation, data + i, data + i + 2));
80       g_assert (! g_relation_exists (relation, data + i, data + i - 2));
81     }
82
83   for (i = 1; i < 1023; i += 1)
84     {
85       g_assert (g_relation_exists (relation, data + i, data + i + 1));
86       g_assert (g_relation_exists (relation, data + i, data + i - 1));
87     }
88
89   for (i = 2; i < 1022; i += 1)
90     {
91       g_assert (g_relation_count (relation, data + i, 0) == 2);
92       g_assert (g_relation_count (relation, data + i, 1) == 2);
93     }
94
95   g_assert (g_relation_count (relation, data, 0) == 0);
96
97   g_assert (g_relation_count (relation, data + 42, 0) == 2);
98   g_assert (g_relation_count (relation, data + 43, 1) == 2);
99   g_assert (g_relation_count (relation, data + 41, 1) == 2);
100   g_relation_delete (relation, data + 42, 0);
101   g_assert (g_relation_count (relation, data + 42, 0) == 0);
102   g_assert (g_relation_count (relation, data + 43, 1) == 1);
103   g_assert (g_relation_count (relation, data + 41, 1) == 1);
104
105   tuples = g_relation_select (relation, data + 200, 0);
106
107   g_assert (tuples->len == 2);
108
109 #if 0
110   for (i = 0; i < tuples->len; i += 1)
111     {
112       printf ("%d %d\n",
113               *(gint*) g_tuples_index (tuples, i, 0),
114               *(gint*) g_tuples_index (tuples, i, 1));
115     }
116 #endif
117
118   g_assert (g_relation_exists (relation, data + 300, data + 301));
119   g_relation_delete (relation, data + 300, 0);
120   g_assert (!g_relation_exists (relation, data + 300, data + 301));
121
122   g_tuples_destroy (tuples);
123
124   g_relation_destroy (relation);
125
126   relation = NULL;
127
128   return 0;
129 }
130