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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23 
24 #include <config.h>
25 #include "test.h"
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <dbus/dbus-string.h>
29 #include <dbus/dbus-sysdeps.h>
30 #include <dbus/dbus-internals.h>
31 
32 #if !defined(DBUS_ENABLE_EMBEDDED_TESTS) || !defined(DBUS_UNIX)
33 #error This file is only relevant for the embedded tests on Unix
34 #endif
35 
36 static void die (const char *failure) _DBUS_GNUC_NORETURN;
37 
38 static void
die(const char * failure)39 die (const char *failure)
40 {
41   fprintf (stderr, "Unit test failed: %s\n", failure);
42   exit (1);
43 }
44 
45 static void
check_memleaks(const char * name)46 check_memleaks (const char *name)
47 {
48   dbus_shutdown ();
49 
50   printf ("%s: checking for memleaks\n", name);
51   if (_dbus_get_malloc_blocks_outstanding () != 0)
52     {
53       _dbus_warn ("%d dbus_malloc blocks were not freed",
54                   _dbus_get_malloc_blocks_outstanding ());
55       die ("memleaks");
56     }
57 }
58 
59 static void
test_pre_hook(void)60 test_pre_hook (void)
61 {
62 }
63 
64 static const char *progname = "";
65 static void
test_post_hook(void)66 test_post_hook (void)
67 {
68   check_memleaks (progname);
69 }
70 
71 int
main(int argc,char ** argv)72 main (int argc, char **argv)
73 {
74   const char *dir;
75   DBusString test_data_dir;
76 
77   progname = argv[0];
78 
79   if (argc > 1 && strcmp (argv[1], "--tap") != 0)
80     dir = argv[1];
81   else
82     dir = _dbus_getenv ("DBUS_TEST_DATA");
83 
84   if (dir == NULL)
85     {
86       fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
87       return 1;
88     }
89 
90   _dbus_string_init_const (&test_data_dir, dir);
91 
92   if (!_dbus_threads_init_debug ())
93     die ("initializing debug threads");
94 
95   test_pre_hook ();
96   printf ("%s: Running config file parser (trivial) test\n", argv[0]);
97   if (!bus_config_parser_trivial_test (&test_data_dir))
98     die ("parser");
99   test_post_hook ();
100 
101   printf ("%s: Success\n", argv[0]);
102 
103   return 0;
104 }
105