2004-07-24 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / bus / test-main.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
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.0
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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 "selinux.h"
31
32 #ifdef DBUS_BUILD_TESTS
33 static void
34 die (const char *failure)
35 {
36   fprintf (stderr, "Unit test failed: %s\n", failure);
37   exit (1);
38 }
39
40 static void
41 check_memleaks (const char *name)
42 {
43   dbus_shutdown ();
44   
45   printf ("%s: checking for memleaks\n", name);
46   if (_dbus_get_malloc_blocks_outstanding () != 0)
47     {
48       _dbus_warn ("%d dbus_malloc blocks were not freed\n",
49                   _dbus_get_malloc_blocks_outstanding ());
50       die ("memleaks");
51     }
52 }
53 #endif /* DBUS_BUILD_TESTS */
54
55 int
56 main (int argc, char **argv)
57 {
58 #ifdef DBUS_BUILD_TESTS
59   const char *dir;
60   DBusString test_data_dir;
61
62   if (argc > 1)
63     dir = argv[1];
64   else
65     dir = _dbus_getenv ("DBUS_TEST_DATA");
66
67   if (dir == NULL)
68     {
69       fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
70       return 1;
71     }
72
73   if (!bus_selinux_init ())
74     die ("could not init selinux support");
75
76   _dbus_string_init_const (&test_data_dir, dir);
77
78 #if 0
79   /* FIXME this is disabled because of thread bugs that need fixing... */
80   if (!_dbus_threads_init_debug ())
81     die ("initializing debug threads");
82 #endif
83  
84   printf ("%s: Running expire list test\n", argv[0]);
85   if (!bus_expire_list_test (&test_data_dir))
86     die ("expire list");
87   
88   check_memleaks (argv[0]);
89   
90   printf ("%s: Running config file parser test\n", argv[0]);
91   if (!bus_config_parser_test (&test_data_dir))
92     die ("parser");
93   
94   check_memleaks (argv[0]);  
95   
96   printf ("%s: Running policy test\n", argv[0]);
97   if (!bus_policy_test (&test_data_dir))
98     die ("policy");
99
100   check_memleaks (argv[0]);
101
102   printf ("%s: Running signals test\n", argv[0]);
103   if (!bus_signals_test (&test_data_dir))
104     die ("signals");
105
106   check_memleaks (argv[0]);
107   
108   printf ("%s: Running SHA1 connection test\n", argv[0]);
109   if (!bus_dispatch_sha1_test (&test_data_dir))
110     die ("sha1");
111
112   check_memleaks (argv[0]);
113   printf ("%s: Running message dispatch test\n", argv[0]);
114   if (!bus_dispatch_test (&test_data_dir)) 
115     die ("dispatch");
116
117   check_memleaks (argv[0]);
118
119   printf ("%s: Running service files reloading test\n", argv[0]);
120   if (!bus_activation_service_reload_test (&test_data_dir))
121     die ("service reload");
122
123   check_memleaks (argv[0]);
124   
125   printf ("%s: Success\n", argv[0]);
126
127   bus_selinux_shutdown ();
128   
129   return 0;
130 #else /* DBUS_BUILD_TESTS */
131
132   printf ("Not compiled with test support\n");
133   
134   return 0;
135 #endif
136 }