summaryrefslogtreecommitdiff
path: root/tst/stubs/gen/nsm-dbus-lc-control-stub.c
blob: 14e309688bd80db8c3632df0abc7e01762c9b1e7 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* NHM - NodeHealthMonitor
 *
 * Implementation of stubs for the nsm-dbus-lc-control
 *
 * Author: Jean-Pierre Bogler <Jean-Pierre.Bogler@continental-corporation.com>
 *
 * Copyright (C) 2013 Continental Automotive Systems, Inc.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public License,
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
 * obtain one at http://mozilla.org/MPL/2.0/.
 */

/*******************************************************************************
*
* Header includes
*
*******************************************************************************/

#include <gio/gio.h>
#include <gen/nsm-dbus-lc-control.h>
#include <tst/stubs/gen/nsm-dbus-lc-control-stub.h>

/*******************************************************************************
*
* Exported variables and constants
*
*******************************************************************************/

gboolean nsm_dbus_lc_control_proxy_new_sync_stub_set_error                     = FALSE;
gboolean nsm_dbus_lc_control_call_set_app_health_status_sync_stub_set_error    = FALSE;
gboolean nsm_dbus_lc_control_call_request_node_restart_sync_stub_set_error     = FALSE;
gint     nsm_dbus_lc_control_call_request_node_restart_sync_stub_out_ErrorCode = 0;

/*******************************************************************************
*
* Interfaces. Exported functions.
*
*******************************************************************************/

/**
 * nsm_dbus_lc_control_proxy_new_sync_stub:
 *
 * Stub for nsm_dbus_lc_control_proxy_new_sync()
 */
NsmDbusLcControl*
nsm_dbus_lc_control_proxy_new_sync_stub(GDBusConnection *connection,
                                        GDBusProxyFlags  flags,
                                        const gchar     *name,
                                        const gchar     *object_path,
                                        GCancellable    *cancellable,
                                        GError         **error)
{
  NsmDbusLcControl* retval = NULL;

  if(nsm_dbus_lc_control_proxy_new_sync_stub_set_error == FALSE)
  {
    retval = g_object_new(NSM_DBUS_LC_TYPE_CONTROL_PROXY, NULL);
  }
  else
  {
    retval = NULL;
    g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_DISCONNECTED, NULL);
  }

  return retval;
}

/**
 * nsm_dbus_lc_control_call_set_app_health_status_sync_stub:
 *
 * Stub for nsm_dbus_lc_control_call_set_app_health_status_sync()
 */
gboolean
nsm_dbus_lc_control_call_set_app_health_status_sync_stub(NsmDbusLcControl *proxy,
                                                         const gchar      *arg_AppName,
                                                         gboolean          arg_AppRunning,
                                                         gint             *out_ErrorCode,
                                                         GCancellable     *cancellable,
                                                         GError          **error)
{
  gboolean retval = FALSE;

  if(nsm_dbus_lc_control_call_set_app_health_status_sync_stub_set_error == FALSE)
  {
    retval = TRUE;
  }
  else
  {
    retval = FALSE;
    g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_DISCONNECTED, NULL);
  }

  return retval;
}

/**
 * nsm_dbus_lc_control_call_request_node_restart_sync_stub:
 *
 * Stub for nsm_dbus_lc_control_call_request_node_restart_sync()
 */
gboolean
nsm_dbus_lc_control_call_request_node_restart_sync_stub(NsmDbusLcControl *proxy,
                                                        gint              arg_RestartReason,
                                                        guint             arg_RestartType,
                                                        gint             *out_ErrorCode,
                                                        GCancellable     *cancellable,
                                                        GError          **error)
{
  gboolean retval = FALSE;

  if(nsm_dbus_lc_control_call_request_node_restart_sync_stub_set_error == FALSE)
  {
    *out_ErrorCode = nsm_dbus_lc_control_call_request_node_restart_sync_stub_out_ErrorCode;
  }
  else
  {
    retval = FALSE;
    g_set_error(error, G_DBUS_ERROR, G_DBUS_ERROR_DISCONNECTED, NULL);
  }

  return retval;
}