summaryrefslogtreecommitdiff
path: root/tests/virgdbusmock.c
blob: 8f5cc97911ecaace968b86f991ecdd9922012361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * virgdbusmock.c: mocking of dbus message send/reply
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <config.h>

#include <gio/gio.h>

#include "virmock.h"

VIR_MOCK_STUB_RET_ARGS(g_bus_get_sync,
                       GDBusConnection *, (GDBusConnection *)0x1,
                       GBusType, type,
                       GCancellable, *cancellable,
                       GError, **error)

VIR_MOCK_STUB_RET_ARGS(g_dbus_address_get_for_bus_sync,
                       gchar *, (gchar *)0x1,
                       GBusType, type,
                       GCancellable *, cancellable,
                       GError **, error)

VIR_MOCK_STUB_RET_ARGS(g_dbus_connection_new_for_address_sync,
                       GDBusConnection *, (GDBusConnection *)0x1,
                       const gchar *, address,
                       GDBusConnectionFlags, flags,
                       GDBusAuthObserver *, observer,
                       GCancellable *, cancellable,
                       GError **, error)

VIR_MOCK_STUB_RET_ARGS(g_dbus_connection_flush_sync,
                       gboolean, true,
                       GDBusConnection *, connection,
                       GCancellable *, cancellable,
                       GError **, error)

VIR_MOCK_STUB_RET_ARGS(g_dbus_connection_close_sync,
                       gboolean, true,
                       GDBusConnection *, connection,
                       GCancellable *, cancellable,
                       GError **, error)

VIR_MOCK_LINK_RET_ARGS(g_dbus_connection_call_sync,
                       GVariant *,
                       GDBusConnection *, connection,
                       const gchar *, bus_name,
                       const gchar *, object_path,
                       const gchar *, interface_name,
                       const gchar *, method_name,
                       GVariant *, parameters,
                       const GVariantType *, reply_type,
                       GDBusCallFlags, flags,
                       gint, timeout_msec,
                       GCancellable *, cancellable,
                       GError **, error)

#ifdef G_OS_UNIX
VIR_MOCK_LINK_RET_ARGS(g_dbus_connection_call_with_unix_fd_list_sync,
                       GVariant *,
                       GDBusConnection *, connection,
                       const gchar *, bus_name,
                       const gchar *, object_path,
                       const gchar *, interface_name,
                       const gchar *, method_name,
                       GVariant *, parameters,
                       const GVariantType *, reply_type,
                       GDBusCallFlags, flags,
                       gint, timeout_msec,
                       GUnixFDList *, fd_list,
                       GUnixFDList **, out_fd_list,
                       GCancellable *, cancellable,
                       GError **, error)
#endif /* G_OS_UNIX */