f96890b2bdda4ad3a55b22bdc15437092aa05aba
[platform/upstream/glib.git] / glib / tests / relation.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.1 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GLib Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GLib at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #define GLIB_DISABLE_DEPRECATION_WARNINGS
26
27 #include <glib.h>
28
29 int array[10000];
30 gboolean failed = FALSE;
31
32 #define TEST(m,cond)    G_STMT_START { failed = !(cond); \
33 if (failed) \
34   { if (!m) \
35       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
36     else \
37       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
38   } \
39 else \
40   g_print ("."); fflush (stdout); \
41 } G_STMT_END
42
43 #define C2P(c)          ((gpointer) ((long) (c)))
44 #define P2C(p)          ((gchar) ((long) (p)))
45
46 #define GLIB_TEST_STRING "el dorado "
47 #define GLIB_TEST_STRING_5 "el do"
48
49 typedef struct {
50   guint age;
51   gchar name[40];
52 } GlibTestInfo;
53
54 static void
55 test_relation (void)
56 {
57   gint i;
58   GRelation *relation;
59   GTuples *tuples;
60   gint data [1024];
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_false (g_relation_exists (relation, data + i, data + i));
79       g_assert_false (g_relation_exists (relation, data + i, data + i + 2));
80       g_assert_false (g_relation_exists (relation, data + i, data + i - 2));
81     }
82
83   for (i = 1; i < 1023; i += 1)
84     {
85       g_assert_true (g_relation_exists (relation, data + i, data + i + 1));
86       g_assert_true (g_relation_exists (relation, data + i, data + i - 1));
87     }
88
89   for (i = 2; i < 1022; i += 1)
90     {
91       g_assert_cmpint (g_relation_count (relation, data + i, 0), ==, 2);
92       g_assert_cmpint (g_relation_count (relation, data + i, 1), ==, 2);
93     }
94
95   g_assert_cmpint (g_relation_count (relation, data, 0), ==, 0);
96
97   g_assert_cmpint (g_relation_count (relation, data + 42, 0), ==, 2);
98   g_assert_cmpint (g_relation_count (relation, data + 43, 1), ==, 2);
99   g_assert_cmpint (g_relation_count (relation, data + 41, 1), ==, 2);
100
101   g_relation_delete (relation, data + 42, 0);
102
103   g_assert_cmpint (g_relation_count (relation, data + 42, 0), ==, 0);
104   g_assert_cmpint (g_relation_count (relation, data + 43, 1), ==, 1);
105   g_assert_cmpint (g_relation_count (relation, data + 41, 1), ==, 1);
106
107   tuples = g_relation_select (relation, data + 200, 0);
108
109   g_assert_cmpint (tuples->len, ==, 2);
110
111   g_assert_true (g_relation_exists (relation, data + 300, data + 301));
112   g_relation_delete (relation, data + 300, 0);
113   g_assert_false (g_relation_exists (relation, data + 300, data + 301));
114
115   g_tuples_destroy (tuples);
116   g_relation_destroy (relation);
117 }
118
119 int
120 main (int   argc,
121       char *argv[])
122 {
123   g_test_init (&argc, &argv, NULL);
124
125   g_test_add_func ("/glib/relation", test_relation);
126
127   return g_test_run ();
128 }