Merge branch 'fd-passing'
[platform/upstream/dbus.git] / bus / test-main.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* test-main.c  main() for make check
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #include "test.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <dbus/dbus-string.h>
28 #include <dbus/dbus-sysdeps.h>
29 #include <dbus/dbus-internals.h>
30 #include <dbus/dbus-message-private.h>
31 #include "selinux.h"
32
33 #ifdef DBUS_BUILD_TESTS
34 static void
35 die (const char *failure)
36 {
37   fprintf (stderr, "Unit test failed: %s\n", failure);
38   exit (1);
39 }
40
41 static void
42 check_memleaks (const char *name)
43 {
44   dbus_shutdown ();
45   
46   printf ("%s: checking for memleaks\n", name);
47   if (_dbus_get_malloc_blocks_outstanding () != 0)
48     {
49       _dbus_warn ("%d dbus_malloc blocks were not freed\n",
50                   _dbus_get_malloc_blocks_outstanding ());
51       die ("memleaks");
52     }
53 }
54 #endif /* DBUS_BUILD_TESTS */
55
56 static void
57 test_pre_hook (void)
58 {
59   
60   if (_dbus_getenv ("DBUS_TEST_SELINUX")
61       && (!bus_selinux_pre_init ()
62           || !bus_selinux_full_init ()))
63     die ("could not init selinux support");
64 }
65
66 static char *progname = "";
67 static void
68 test_post_hook (void)
69 {
70   if (_dbus_getenv ("DBUS_TEST_SELINUX"))
71     bus_selinux_shutdown ();
72   check_memleaks (progname);
73   _dbus_check_fdleaks();
74 }
75
76 int
77 main (int argc, char **argv)
78 {
79 #ifdef DBUS_BUILD_TESTS
80   const char *dir;
81   DBusString test_data_dir;
82
83   progname = argv[0];
84
85   if (argc > 1)
86     dir = argv[1];
87   else
88     dir = _dbus_getenv ("DBUS_TEST_DATA");
89
90   if (dir == NULL)
91     {
92       fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
93       return 1;
94     }
95
96   _dbus_string_init_const (&test_data_dir, dir);
97
98   if (!_dbus_threads_init_debug ())
99     die ("initializing debug threads");
100  
101   test_pre_hook ();
102   printf ("%s: Running expire list test\n", argv[0]);
103   if (!bus_expire_list_test (&test_data_dir))
104     die ("expire list");
105   test_post_hook ();
106  
107   test_pre_hook ();
108   printf ("%s: Running config file parser test\n", argv[0]);
109   if (!bus_config_parser_test (&test_data_dir))
110     die ("parser");
111   test_post_hook ();
112
113   test_pre_hook ();
114   printf ("%s: Running policy test\n", argv[0]);
115   if (!bus_policy_test (&test_data_dir))
116     die ("policy");
117   test_post_hook ();
118
119   test_pre_hook ();
120   printf ("%s: Running signals test\n", argv[0]);
121   if (!bus_signals_test (&test_data_dir))
122     die ("signals");
123   test_post_hook ();
124
125   test_pre_hook ();
126   printf ("%s: Running SHA1 connection test\n", argv[0]);
127   if (!bus_dispatch_sha1_test (&test_data_dir))
128     die ("sha1");
129   test_post_hook ();
130
131   test_pre_hook ();
132   printf ("%s: Running message dispatch test\n", argv[0]);
133   if (!bus_dispatch_test (&test_data_dir)) 
134     die ("dispatch");
135   test_post_hook ();
136
137   test_pre_hook ();
138   printf ("%s: Running service files reloading test\n", argv[0]);
139   if (!bus_activation_service_reload_test (&test_data_dir))
140     die ("service reload");
141   test_post_hook ();
142
143 #ifdef HAVE_UNIX_FD_PASSING
144   test_pre_hook ();
145   printf ("%s: Running unix fd passing test\n", argv[0]);
146   if (!bus_unix_fds_passing_test (&test_data_dir))
147     die ("unix fd passing");
148   test_post_hook ();
149 #endif
150
151   printf ("%s: Success\n", argv[0]);
152
153   
154   return 0;
155 #else /* DBUS_BUILD_TESTS */
156
157   printf ("Not compiled with test support\n");
158   
159   return 0;
160 #endif
161 }