X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dbus%2Fdbus-test.c;h=b707ee22da598c7fd72ade3a45e85efcaa5c1a47;hb=a0be921da79a78e2c0484d99aac9002a1de1d0cf;hp=05de8c751d999bdbb03a638fc135dc777e367e5b;hpb=6c07098c5ec68e78320a6f07e4c9e141a95729ed;p=platform%2Fupstream%2Fdbus.git diff --git a/dbus/dbus-test.c b/dbus/dbus-test.c index 05de8c7..b707ee2 100644 --- a/dbus/dbus-test.c +++ b/dbus/dbus-test.c @@ -1,9 +1,9 @@ -/* -*- mode: C; c-file-style: "gnu" -*- */ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* dbus-test.c Program to run all tests * - * Copyright (C) 2002, 2003 Red Hat Inc. + * Copyright (C) 2002, 2003, 2004, 2005 Red Hat Inc. * - * Licensed under the Academic Free License version 1.2 + * Licensed under the Academic Free License version 2.1 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,16 +17,18 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #include #include "dbus-test.h" #include "dbus-sysdeps.h" +#include "dbus-internals.h" #include #include +#ifdef DBUS_ENABLE_EMBEDDED_TESTS static void die (const char *failure) { @@ -34,6 +36,56 @@ die (const char *failure) exit (1); } +static void +check_memleaks (void) +{ + dbus_shutdown (); + + printf ("%s: checking for memleaks\n", "dbus-test"); + if (_dbus_get_malloc_blocks_outstanding () != 0) + { + _dbus_warn ("%d dbus_malloc blocks were not freed\n", + _dbus_get_malloc_blocks_outstanding ()); + die ("memleaks"); + } +} + +typedef dbus_bool_t (*TestFunc)(void); +typedef dbus_bool_t (*TestDataFunc)(const char *data); + +static void +run_test (const char *test_name, + const char *specific_test, + TestFunc test) +{ + if (!specific_test || strcmp (specific_test, test_name) == 0) + { + printf ("%s: running %s tests\n", "dbus-test", test_name); + if (!test ()) + die (test_name); + + check_memleaks (); + } +} + +static void +run_data_test (const char *test_name, + const char *specific_test, + TestDataFunc test, + const char *test_data_dir) +{ + if (!specific_test || strcmp (specific_test, test_name) == 0) + { + printf ("%s: running %s tests\n", "dbus-test", test_name); + if (!test (test_data_dir)) + die (test_name); + + check_memleaks (); + } +} + +#endif /* DBUS_ENABLE_EMBEDDED_TESTS */ + /** * An exported symbol to be run in order to execute * unit tests. Should not be used by @@ -42,11 +94,15 @@ die (const char *failure) * (with --enable-tests=no) * * @param test_data_dir the directory with test data (test/data normally) + * @param specific_test run specific test or #NULL to run all tests */ void -dbus_internal_do_not_use_run_tests (const char *test_data_dir) +dbus_internal_do_not_use_run_tests (const char *test_data_dir, const char *specific_test) { -#ifdef DBUS_BUILD_TESTS +#ifdef DBUS_ENABLE_EMBEDDED_TESTS + if (!_dbus_threads_init_debug ()) + die ("debug threads init"); + if (test_data_dir == NULL) test_data_dir = _dbus_getenv ("DBUS_TEST_DATA"); @@ -54,51 +110,64 @@ dbus_internal_do_not_use_run_tests (const char *test_data_dir) printf ("Test data in %s\n", test_data_dir); else printf ("No test data!\n"); + + run_test ("string", specific_test, _dbus_string_test); + + run_test ("sysdeps", specific_test, _dbus_sysdeps_test); - printf ("%s: running string tests\n", "dbus-test"); - if (!_dbus_string_test ()) - die ("strings"); + run_test ("data-slot", specific_test, _dbus_data_slot_test); + + run_test ("misc", specific_test, _dbus_misc_test); + + run_test ("address", specific_test, _dbus_address_test); + + run_test ("server", specific_test, _dbus_server_test); - printf ("%s: running md5 tests\n", "dbus-test"); - if (!_dbus_md5_test ()) - die ("md5"); + run_test ("object-tree", specific_test, _dbus_object_tree_test); - printf ("%s: running SHA-1 tests\n", "dbus-test"); - if (!_dbus_sha_test (test_data_dir)) - die ("SHA-1"); + run_test ("signature", specific_test, _dbus_signature_test); - printf ("%s: running auth tests\n", "dbus-test"); - if (!_dbus_auth_test (test_data_dir)) - die ("auth"); + run_test ("marshalling", specific_test, _dbus_marshal_test); + + run_test ("marshal-recursive", specific_test, _dbus_marshal_recursive_test); + + run_test ("byteswap", specific_test, _dbus_marshal_byteswap_test); + + run_test ("memory", specific_test, _dbus_memory_test); + +#if 1 + run_test ("mem-pool", specific_test, _dbus_mem_pool_test); +#endif - printf ("%s: running address parse tests\n", "dbus-test"); - if (!_dbus_address_test ()) - die ("address parsing"); + run_test ("list", specific_test, _dbus_list_test); + + run_test ("marshal-validate", specific_test, _dbus_marshal_validate_test); + + run_data_test ("message", specific_test, _dbus_message_test, test_data_dir); - printf ("%s: running marshalling tests\n", "dbus-test"); - if (!_dbus_marshal_test ()) - die ("marshalling"); + run_test ("hash", specific_test, _dbus_hash_test); - printf ("%s: running message tests\n", "dbus-test"); - if (!_dbus_message_test (test_data_dir)) - die ("messages"); +#if !defined(DBUS_WINCE) + run_data_test ("spawn", specific_test, _dbus_spawn_test, test_data_dir); +#endif + + run_data_test ("credentials", specific_test, _dbus_credentials_test, test_data_dir); - printf ("%s: running memory pool tests\n", "dbus-test"); - if (!_dbus_mem_pool_test ()) - die ("memory pools"); +#ifdef DBUS_UNIX + run_data_test ("userdb", specific_test, _dbus_userdb_test, test_data_dir); - printf ("%s: running linked list tests\n", "dbus-test"); - if (!_dbus_list_test ()) - die ("lists"); + run_test ("transport-unix", specific_test, _dbus_transport_unix_test); +#endif + + run_test ("keyring", specific_test, _dbus_keyring_test); - printf ("%s: running hash table tests\n", "dbus-test"); - if (!_dbus_hash_test ()) - die ("hash tables"); + run_data_test ("sha", specific_test, _dbus_sha_test, test_data_dir); + run_data_test ("auth", specific_test, _dbus_auth_test, test_data_dir); + printf ("%s: completed successfully\n", "dbus-test"); #else printf ("Not compiled with unit tests, not running any\n"); #endif } -