aboutsummaryrefslogtreecommitdiff
path: root/tests/backend-mock-actions.c
blob: 15a0bd9489ad536540d0d63ef771b1a82b2022e5 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
 * Copyright 2013 Canonical Ltd.
 *
 * Authors:
 *   Charles Kerr <charles.kerr@canonical.com>
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3, as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

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

#include "backend-mock.h"
#include "backend-mock-actions.h"

G_DEFINE_TYPE (IndicatorSessionActionsMock,
               indicator_session_actions_mock,
               INDICATOR_TYPE_SESSION_ACTIONS)

/***
****  Virtual Functions
***/

static gboolean
my_can_lock (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-lock");
}

static gboolean
my_can_logout (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-logout");
}

static gboolean
my_can_reboot (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-reboot");
}

static gboolean
my_can_switch (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-switch-sessions");
}

static gboolean
my_can_suspend (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-suspend");
}

static gboolean
my_can_hibernate (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-hibernate");
}

static void
my_logout (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "logout");
}

static void
my_suspend (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "suspend");
}

static void
my_hibernate (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "hibernate");
}

static void
my_reboot (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "reboot");
}

static void
my_power_off (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "power-off");
}

static void
my_switch_to_screensaver (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "switch-to-screensaver");
}

static void
my_switch_to_greeter (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "switch-to-greeter");
}

static void
my_switch_to_guest (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "switch-to-guest");
}

static void
my_switch_to_username (IndicatorSessionActions * self G_GNUC_UNUSED,
                       const char * username)
{
  gchar * str = g_strdup_printf ("switch-to-user::%s", username);
  g_settings_set_string (mock_settings, "last-command", str);
}

static void
my_desktop_help (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "desktop_help");
}

static void
my_distro_help (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "distro_help");
}

static void
my_about (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "about");
}

static void
my_settings (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "settings");
}

static void
my_online_accounts (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  g_settings_set_string (mock_settings, "last-command", "online-accounts");
}

static gboolean
my_can_prompt (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "can-prompt");
}

static gboolean
my_has_online_account_error (IndicatorSessionActions * self G_GNUC_UNUSED)
{
  return g_settings_get_boolean (mock_settings, "has-online-account-error");
}

static void
my_dispose (GObject * o)
{
  G_OBJECT_CLASS (indicator_session_actions_mock_parent_class)->dispose (o);
}

static void
my_finalize (GObject * o)
{
  G_OBJECT_CLASS (indicator_session_actions_mock_parent_class)->finalize (o);
}

/***
****  GObject Boilerplate
***/

static void
/* cppcheck-suppress unusedFunction */
indicator_session_actions_mock_class_init (IndicatorSessionActionsMockClass * klass)
{
  GObjectClass * object_class;
  IndicatorSessionActionsClass * actions_class;

  object_class = G_OBJECT_CLASS (klass);
  object_class->dispose = my_dispose;
  object_class->finalize = my_finalize;

  actions_class = INDICATOR_SESSION_ACTIONS_CLASS (klass);
  actions_class->can_lock = my_can_lock;
  actions_class->can_logout = my_can_logout;
  actions_class->can_reboot = my_can_reboot;
  actions_class->can_switch = my_can_switch;
  actions_class->can_suspend = my_can_suspend;
  actions_class->can_hibernate = my_can_hibernate;
  actions_class->can_prompt = my_can_prompt;
  actions_class->has_online_account_error = my_has_online_account_error;
  actions_class->logout = my_logout;
  actions_class->suspend = my_suspend;
  actions_class->hibernate = my_hibernate;
  actions_class->reboot = my_reboot;
  actions_class->power_off = my_power_off;
  actions_class->settings = my_settings;
  actions_class->online_accounts = my_online_accounts;
  actions_class->desktop_help = my_desktop_help;
  actions_class->distro_help = my_distro_help;
  actions_class->about = my_about;
  actions_class->switch_to_screensaver = my_switch_to_screensaver;
  actions_class->switch_to_greeter = my_switch_to_greeter;
  actions_class->switch_to_guest = my_switch_to_guest;
  actions_class->switch_to_username = my_switch_to_username;
}

static void
/* cppcheck-suppress unusedFunction */
indicator_session_actions_mock_init (IndicatorSessionActionsMock * self)
{
  g_signal_connect_swapped (mock_settings, "changed::can-lock",
                            G_CALLBACK(indicator_session_actions_notify_can_lock), self);
  g_signal_connect_swapped (mock_settings, "changed::can-logout",
                            G_CALLBACK(indicator_session_actions_notify_can_logout), self);
  g_signal_connect_swapped (mock_settings, "changed::can-switch-sessions",
                            G_CALLBACK(indicator_session_actions_notify_can_switch), self);
  g_signal_connect_swapped (mock_settings, "changed::can-suspend",
                            G_CALLBACK(indicator_session_actions_notify_can_suspend), self);
  g_signal_connect_swapped (mock_settings, "changed::can-hibernate",
                            G_CALLBACK(indicator_session_actions_notify_can_hibernate), self);
  g_signal_connect_swapped (mock_settings, "changed::can-prompt",
                            G_CALLBACK(indicator_session_actions_notify_can_prompt), self);
  g_signal_connect_swapped (mock_settings, "changed::has-online-account-error",
                            G_CALLBACK(indicator_session_actions_notify_has_online_account_error), self);
}

/***
****  Public
***/

IndicatorSessionActions *
indicator_session_actions_mock_new (void)
{
  gpointer o = g_object_new (INDICATOR_TYPE_SESSION_ACTIONS_MOCK, NULL);

  return INDICATOR_SESSION_ACTIONS (o);
}