summaryrefslogtreecommitdiff
path: root/mock/gio_mock.h
blob: 3867d5c546dd2def81eb3edf2c772345a6565bd6 (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
/*
 * Copyright (c) 2020 Samsung Electronics Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef UNIT_TESTS_MOCK_GIO_MOCK_H_
#define UNIT_TESTS_MOCK_GIO_MOCK_H_

#include <gio/gio.h>
#include <gmock/gmock.h>

#include "module_mock.h"

class GioMock : public virtual ModuleMock {
 public:
  virtual ~GioMock() {}

  MOCK_METHOD3(g_bus_get_sync,
      GDBusConnection*(GBusType, GCancellable*, GError**));
  MOCK_METHOD7(g_bus_own_name_on_connection,
      guint(GDBusConnection*, const gchar*, GBusNameOwnerFlags,
          GBusNameAcquiredCallback, GBusNameLostCallback,
          gpointer, GDestroyNotify));

  MOCK_METHOD4(g_dbus_message_new_method_call,
      GDBusMessage*(const gchar*, const gchar*, const gchar*, const gchar*));
  MOCK_METHOD2(g_dbus_message_set_body, void(GDBusMessage*, GVariant*));
  MOCK_METHOD2(g_dbus_connection_unregister_object,
      gboolean(GDBusConnection*, guint));
  MOCK_METHOD1(g_dbus_message_get_body, GVariant*(GDBusMessage*));

  MOCK_METHOD7(g_dbus_connection_send_message_with_reply_sync,
      GDBusMessage*(GDBusConnection*, GDBusMessage*, GDBusSendMessageFlags,
          gint, volatile guint32*, GCancellable*, GError**));
  MOCK_METHOD7(g_dbus_connection_emit_signal,
      gboolean(GDBusConnection*, const gchar*, const gchar*, const gchar*,
          const gchar*, GVariant*, GError**));
  MOCK_METHOD7(g_dbus_connection_register_object,
      guint(GDBusConnection*, const gchar*, GDBusInterfaceInfo*,
          const GDBusInterfaceVTable*, gpointer, GDestroyNotify, GError**));
  MOCK_METHOD10(g_dbus_connection_signal_subscribe,
      guint(GDBusConnection*, const gchar*, const gchar*, const gchar*,
          const gchar*, const gchar*, GDBusSignalFlags, GDBusSignalCallback,
          gpointer, GDestroyNotify));
  MOCK_METHOD8(g_dbus_connection_send_message_with_reply,
      void(GDBusConnection*, GDBusMessage*, GDBusSendMessageFlags, gint,
          volatile guint32*, GCancellable*, GAsyncReadyCallback, gpointer));
  MOCK_METHOD3(g_dbus_connection_send_message_with_reply_finish,
      GDBusMessage*(GDBusConnection*, GAsyncResult*, GError**));

  MOCK_METHOD2(g_dbus_node_info_new_for_xml,
      GDBusNodeInfo*(const gchar*, GError**));

  MOCK_METHOD2(g_dbus_method_invocation_return_value,
      GDBusNodeInfo*(GDBusMethodInvocation*, GVariant*));

  MOCK_METHOD5(g_dbus_connection_send_message,
      gboolean(GDBusConnection*, GDBusMessage*, GDBusSendMessageFlags,
          volatile guint32*, GError**));
  MOCK_METHOD2(g_dbus_message_set_unix_fd_list,
      void(GDBusMessage*, GUnixFDList*));
  MOCK_METHOD7(g_bus_watch_name_on_connection,
      guint(GDBusConnection*, const gchar*, GBusNameWatcherFlags,
      GBusNameAppearedCallback, GBusNameVanishedCallback, gpointer,
      GDestroyNotify));
};

#endif  // UNIT_TESTS_MOCK_GIO_MOCK_H_