2007-07-24 Richard Hughes <richard@hughsie.com>
[platform/upstream/dbus.git] / bus / test-system.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.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., 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
31 #ifdef DBUS_BUILD_TESTS
32 static void
33 die (const char *failure)
34 {
35   fprintf (stderr, "Unit test failed: %s\n", failure);
36   exit (1);
37 }
38
39 static void
40 check_memleaks (const char *name)
41 {
42   dbus_shutdown ();
43
44   printf ("%s: checking for memleaks\n", name);
45   if (_dbus_get_malloc_blocks_outstanding () != 0)
46     {
47       _dbus_warn ("%d dbus_malloc blocks were not freed\n",
48                   _dbus_get_malloc_blocks_outstanding ());
49       die ("memleaks");
50     }
51 }
52 #endif /* DBUS_BUILD_TESTS */
53
54 static void
55 test_pre_hook (void)
56 {
57 }
58
59 static char *progname = "";
60 static void
61 test_post_hook (void)
62 {
63   check_memleaks (progname);
64 }
65
66 int
67 main (int argc, char **argv)
68 {
69 #ifdef DBUS_BUILD_TESTS
70   const char *dir;
71   DBusString test_data_dir;
72
73   progname = argv[0];
74
75   if (argc > 1)
76     dir = argv[1];
77   else
78     dir = _dbus_getenv ("DBUS_TEST_DATA");
79
80   if (dir == NULL)
81     {
82       fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
83       return 1;
84     }
85
86   _dbus_string_init_const (&test_data_dir, dir);
87
88   if (!_dbus_threads_init_debug ())
89     die ("initializing debug threads");
90
91   test_pre_hook ();
92   printf ("%s: Running config file parser (trivial) test\n", argv[0]);
93   if (!bus_config_parser_trivial_test (&test_data_dir))
94     die ("parser");
95   test_post_hook ();
96
97   printf ("%s: Success\n", argv[0]);
98
99   return 0;
100 #else /* DBUS_BUILD_TESTS */
101
102   printf ("Not compiled with test support\n");
103
104   return 0;
105 #endif
106 }