summaryrefslogtreecommitdiff
path: root/tests/mock/gio_mock.h
blob: 9898fba5709840f094b30b1d84d1d2ddf43d4787 (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
/*
 * 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 MOCK_GIO_MOCK_H_
#define 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_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_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_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_message_to_gerror,
      gboolean(GDBusMessage*, GError**));
  MOCK_METHOD7(g_bus_watch_name_on_connection,
      guint(GDBusConnection*, const gchar*, GBusNameWatcherFlags,
          GBusNameAppearedCallback, GBusNameVanishedCallback, gpointer,
          GDestroyNotify));
  MOCK_METHOD1(g_bus_unwatch_name, void(guint));
  MOCK_METHOD2(g_dbus_connection_signal_unsubscribe,
          void(GDBusConnection*, guint));
  MOCK_METHOD4(g_dbus_error_register_error_domain,
      void(const gchar*, volatile gsize*, const GDBusErrorEntry*, guint));
};

#endif  // MOCK_GIO_MOCK_H_