dbus-marshal-byteswap: Byte-swap Unix fd indexes if needed
[platform/upstream/dbus.git] / dbus / dbus-test.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-test.h  Declarations of test functions.
3  *
4  * Copyright (C) 2002  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 #ifndef DBUS_TEST_H
25 #define DBUS_TEST_H
26
27 #include <dbus/dbus-types.h>
28 #include <dbus/dbus-string.h>
29 #include <dbus/dbus-marshal-validate.h>
30
31 /* Only things that are in libdbus-1.la and used from libdbus-internal.la
32  * need to have DBUS_PRIVATE_EXPORT. If you get
33  *
34  * warning: 'foo' redeclared without dllimport attribute: previous
35  * dllimport ignored [-Wattributes]
36  *
37  * then you have added too many.
38  */
39
40 DBUS_PRIVATE_EXPORT
41 dbus_bool_t _dbus_hash_test              (void);
42
43 DBUS_PRIVATE_EXPORT
44 dbus_bool_t _dbus_list_test              (void);
45
46 DBUS_PRIVATE_EXPORT
47 dbus_bool_t _dbus_marshal_test           (void);
48
49 dbus_bool_t _dbus_marshal_recursive_test (void);
50 dbus_bool_t _dbus_marshal_byteswap_test  (void);
51 dbus_bool_t _dbus_marshal_validate_test  (void);
52
53 DBUS_PRIVATE_EXPORT
54 dbus_bool_t _dbus_misc_test              (void);
55
56 DBUS_PRIVATE_EXPORT
57 dbus_bool_t _dbus_signature_test         (void);
58
59 DBUS_PRIVATE_EXPORT
60 dbus_bool_t _dbus_mem_pool_test          (void);
61
62 dbus_bool_t _dbus_string_test            (void);
63
64 DBUS_PRIVATE_EXPORT
65 dbus_bool_t _dbus_address_test           (void);
66
67 DBUS_PRIVATE_EXPORT
68 dbus_bool_t _dbus_server_test            (void);
69
70 dbus_bool_t _dbus_message_test           (const char *test_data_dir);
71 dbus_bool_t _dbus_auth_test              (const char *test_data_dir);
72
73 DBUS_PRIVATE_EXPORT
74 dbus_bool_t _dbus_sha_test               (const char *test_data_dir);
75
76 DBUS_PRIVATE_EXPORT
77 dbus_bool_t _dbus_keyring_test           (void);
78
79 DBUS_PRIVATE_EXPORT
80 dbus_bool_t _dbus_data_slot_test         (void);
81
82 dbus_bool_t _dbus_sysdeps_test           (void);
83 dbus_bool_t _dbus_spawn_test             (const char *test_data_dir);
84
85 DBUS_PRIVATE_EXPORT
86 dbus_bool_t _dbus_userdb_test            (const char *test_data_dir);
87
88 DBUS_PRIVATE_EXPORT
89 dbus_bool_t _dbus_transport_unix_test    (void);
90
91 DBUS_PRIVATE_EXPORT
92 dbus_bool_t _dbus_memory_test            (void);
93
94 DBUS_PRIVATE_EXPORT
95 dbus_bool_t _dbus_object_tree_test       (void);
96
97 dbus_bool_t _dbus_credentials_test       (const char *test_data_dir);
98
99 void        dbus_internal_do_not_use_run_tests         (const char          *test_data_dir,
100                                                         const char          *specific_test);
101 dbus_bool_t dbus_internal_do_not_use_try_message_file  (const DBusString    *filename,
102                                                         DBusValidity         expected_validity);
103 dbus_bool_t dbus_internal_do_not_use_try_message_data  (const DBusString    *data,
104                                                         DBusValidity         expected_validity);
105 dbus_bool_t dbus_internal_do_not_use_load_message_file (const DBusString    *filename,
106                                                         DBusString          *data);
107
108
109 /* returns FALSE on fatal failure */
110 typedef dbus_bool_t (* DBusForeachMessageFileFunc) (const DBusString   *filename,
111                                                     DBusValidity        expected_validity,
112                                                     void               *data);
113
114 dbus_bool_t dbus_internal_do_not_use_foreach_message_file (const char                 *test_data_dir,
115                                                            DBusForeachMessageFileFunc  func,
116                                                            void                       *user_data);
117 dbus_bool_t dbus_internal_do_not_use_generate_bodies    (int           sequence,
118                                                          int           byte_order,
119                                                          DBusString   *signature,
120                                                          DBusString   *body);
121
122
123 #endif /* DBUS_TEST_H */