aboutsummaryrefslogtreecommitdiff
path: root/tests/test-loader.c
blob: d6dabc55620eeed0362dd2149528b9440c993579 (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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/*
Test for libindicator

Copyright 2009 Canonical Ltd.
Copyright 2021 AyatanaIndicators

Authors:
    Ted Gould <ted@canonical.com>
    Robert Tari <robert@tari.in>

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 3.0 as published by the Free Software Foundation.

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 General Public License version 3.0 for more details.

You should have received a copy of the GNU General Public
License along with this library. If not, see
<http://www.gnu.org/licenses/>.
*/

#include <gtk/gtk.h>
#include "indicator-object.h"

#include "dummy-indicator-entry-func.h"

void
entry_func_swap (IndicatorObject * io)
{
    static void (*saved_func) (IndicatorObject * io, IndicatorObjectEntry * entry, guint windowid, guint timestamp) = NULL;
    IndicatorObjectClass * klass = INDICATOR_OBJECT_GET_CLASS(io);

    if (saved_func == NULL) {
        saved_func = klass->entry_activate_window;
    }

    if (klass->entry_activate_window == NULL) {
        klass->entry_activate_window = saved_func;
    } else {
        klass->entry_activate_window = NULL;
    }

    return;
}

void
test_loader_entry_func_window (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-entry-func.so");
    g_assert(object != NULL);

    DummyIndicatorEntryFunc * entryfunc = (DummyIndicatorEntryFunc *)(object);

    entryfunc->entry_activate_called = FALSE;
    entryfunc->entry_activate_window_called = FALSE;
    entryfunc->entry_close_called = FALSE;

    entry_func_swap(object);
    indicator_object_entry_activate_window(object, NULL, 0, 0);
    g_assert(entryfunc->entry_activate_called);

    entry_func_swap(object);
    indicator_object_entry_activate_window(object, NULL, 0, 0);
    g_assert(entryfunc->entry_activate_window_called);

    g_object_unref(object);

    return;
}

void
test_loader_entry_funcs (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-entry-func.so");
    g_assert(object != NULL);

    DummyIndicatorEntryFunc * entryfunc = (DummyIndicatorEntryFunc *)(object);

    entryfunc->entry_activate_called = FALSE;
    entryfunc->entry_activate_window_called = FALSE;
    entryfunc->entry_close_called = FALSE;

    indicator_object_entry_activate(object, NULL, 0);
    g_assert(entryfunc->entry_activate_called);

    indicator_object_entry_activate_window(object, NULL, 0, 0);
    g_assert(entryfunc->entry_activate_window_called);

    indicator_object_entry_close(object, NULL, 0);
    g_assert(entryfunc->entry_close_called);

    g_object_unref(object);

    return;
}

void destroy_cb (gpointer data, GObject * object);

void
entry_change_cb (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer data)
{
    IndicatorObjectEntry *other_entry = data;
    other_entry->name_hint = entry->name_hint;
    other_entry->parent_object = entry->parent_object;
    return;
}

void
entry_move_cb (IndicatorObject * io, IndicatorObjectEntry * entry, gint old, gint new, gpointer data)
{
    return entry_change_cb(io, entry, data);
}

void
test_loader_filename_dummy_signaler (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-signaler.so");
    g_assert(object != NULL);

    IndicatorObjectEntry *added_entry, *moved_entry, *removed_entry;
    IndicatorObjectEntry entries[3];

    added_entry = &entries[0];
    moved_entry = &entries[1];
    removed_entry = &entries[2];

    g_signal_connect_after(G_OBJECT(object), INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED,   G_CALLBACK(entry_change_cb), added_entry);
    g_signal_connect_after(G_OBJECT(object), INDICATOR_OBJECT_SIGNAL_ENTRY_MOVED,   G_CALLBACK(entry_move_cb), moved_entry);
    g_signal_connect_after(G_OBJECT(object), INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED, G_CALLBACK(entry_change_cb), removed_entry);

    GList * list = indicator_object_get_entries(object);
    g_assert(list != NULL);
    g_list_free(list);

    while (g_main_context_pending(NULL)) {
        g_main_context_iteration(NULL, TRUE);
    }

    g_assert(g_strcmp0(added_entry->name_hint, "added") == 0);
    g_assert(g_strcmp0(removed_entry->name_hint, "removed") == 0);
    g_assert(g_strcmp0(moved_entry->name_hint, "moved") == 0);

    g_assert(added_entry->parent_object == object);
    g_assert(removed_entry->parent_object == NULL);

    g_object_unref(object);

    return;
}

/***
****
***/

static void
visible_entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer box)
{
    GtkWidget * child = GTK_WIDGET (entry->label);
    g_assert (child != NULL);

    if (g_object_get_data (G_OBJECT(child), "frame-parent") == NULL)
    {
        GtkWidget * frame = gtk_frame_new (NULL);
        gtk_container_add (GTK_CONTAINER(frame), child);
        gtk_box_pack_start (GTK_BOX(box), frame, FALSE, FALSE, 0);
        g_object_set_data (G_OBJECT(child), "frame-parent", frame);
    }
}

static void
visible_entry_removed (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer box)
{
    GtkWidget * child = GTK_WIDGET (entry->label);
    g_assert (child != NULL);
    g_assert (g_object_get_data (G_OBJECT(child), "frame-parent") != NULL);
}

void
test_loader_filename_dummy_visible (void)
{
    const GQuark is_hidden_quark = g_quark_from_static_string ("is-hidden");
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-visible.so");
    g_assert(object != NULL);

    // create our local parent widgetry
#if GTK_CHECK_VERSION(3,0,0)
    GtkWidget * box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
#else
    GtkWidget * box = gtk_hbox_new (TRUE, 0);
#endif
    g_signal_connect(object, INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED,
                     G_CALLBACK(visible_entry_added), box);
    g_signal_connect(object, INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED,
                     G_CALLBACK(visible_entry_removed), box);

    // on startup, DummyVisible has one entry and it has a label
    GList * list = indicator_object_get_entries(object);
    g_assert(g_list_length(list) == 1);
    IndicatorObjectEntry * entry = list->data;
    g_assert(entry != NULL);
    g_list_free(list);
    g_assert(GTK_IS_LABEL(entry->label));
    g_assert(entry->parent_object == object);
    g_assert(INDICATOR_IS_OBJECT(entry->parent_object));
    GtkWidget * label = GTK_WIDGET(entry->label);
        g_assert(g_object_get_qdata(G_OBJECT(label), is_hidden_quark) == NULL);

    // add the inital entry to our local parent widgetry
    visible_entry_added (object, entry, box);
    entry = NULL;
    list = gtk_container_get_children (GTK_CONTAINER(box));
    g_assert(g_list_length(list) == 1);
    g_list_free(list);

    // hide the entries and confirm that the label survived
    indicator_object_set_visible (object, FALSE);
    while (g_main_context_pending(NULL))
        g_main_context_iteration(NULL, TRUE);
    g_assert(GTK_IS_LABEL(label));
        g_assert(g_object_get_qdata(G_OBJECT(label), is_hidden_quark) != NULL);
    list = gtk_container_get_children (GTK_CONTAINER(box));
    g_assert(g_list_length(list) == 1);
    g_list_free(list);

    // restore the entries and confirm that the label survived
    indicator_object_set_visible (object, TRUE);
    while (g_main_context_pending(NULL))
        g_main_context_iteration(NULL, TRUE);
    g_assert(GTK_IS_LABEL(label));
        g_assert(g_object_get_qdata(G_OBJECT(label), is_hidden_quark) == NULL);
    list = gtk_container_get_children (GTK_CONTAINER(box));
    g_assert(g_list_length(list) == 1);
    g_list_free(list);

    // cleanup
    g_object_unref(object);
    gtk_widget_destroy(box);
}

/***
****
***/

void
test_loader_filename_dummy_simple_location (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-simple.so");
    g_assert(object != NULL);

    GList * entries = indicator_object_get_entries(object);
    g_assert(entries != NULL);
    g_assert(g_list_length(entries) == 1);

    IndicatorObjectEntry *entry = entries->data;

    g_assert(indicator_object_get_location(object, entry) == 0);
    g_assert(indicator_object_get_location(object, NULL) == 0);
    g_assert(entry->parent_object == object);

    g_object_unref(object);

    return;
}

void
test_loader_filename_dummy_simple_accessors (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-simple.so");
    g_assert(object != NULL);

    g_assert(indicator_object_get_entries(object) != NULL);

    g_object_unref(object);

    return;
}

void
test_loader_filename_dummy_simple (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-simple.so");
    g_assert(object != NULL);

    gboolean unreffed = FALSE;
    g_object_weak_ref(G_OBJECT(object), destroy_cb, &unreffed);

    g_object_unref(object);
    g_assert(unreffed == TRUE);

    return;
}

void
test_loader_filename_dummy_blank (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-blank.so");
    g_assert(object == NULL);
    return;
}

void
test_loader_filename_dummy_null (void)
{
    IndicatorObject * object = indicator_object_new_from_file(BUILD_DIR "/libdummy-indicator-null.so");
    g_assert(object != NULL);
    g_assert(indicator_object_get_entries(object) == NULL);
    g_object_unref(G_OBJECT(object));
    return;
}

void
test_loader_filename_bad (void)
{
    IndicatorObject * object = indicator_object_new_from_file("/this/file/should/not/exist.so");
    g_assert(object == NULL);
    return;
}

void
destroy_cb (gpointer data, GObject * object)
{
    gboolean * bob = (gboolean *)data;
    *bob = TRUE;
    return;
}

void
test_loader_refunref (void)
{
    GObject * object = g_object_new(INDICATOR_OBJECT_TYPE, NULL);

    gboolean unreffed = FALSE;
    g_object_weak_ref(object, destroy_cb, &unreffed);

    g_object_unref(object);

    g_assert(unreffed == TRUE);

    return;
}

void
test_loader_creation_deletion_suite (void)
{
    g_test_add_func ("/libindicator/loader/ref_and_unref", test_loader_refunref);
    g_test_add_func ("/libindicator/loader/filename_bad",  test_loader_filename_bad);
    g_test_add_func ("/libindicator/loader/dummy/null_load",  test_loader_filename_dummy_null);
    g_test_add_func ("/libindicator/loader/dummy/blank_load",  test_loader_filename_dummy_null);
    g_test_add_func ("/libindicator/loader/dummy/simple_load",  test_loader_filename_dummy_simple);
    g_test_add_func ("/libindicator/loader/dummy/simple_accessors", test_loader_filename_dummy_simple_accessors);
    g_test_add_func ("/libindicator/loader/dummy/simple_location", test_loader_filename_dummy_simple_location);
    g_test_add_func ("/libindicator/loader/dummy/signaler",  test_loader_filename_dummy_signaler);
    g_test_add_func ("/libindicator/loader/dummy/entry_funcs",  test_loader_entry_funcs);
    g_test_add_func ("/libindicator/loader/dummy/entry_func_window",  test_loader_entry_func_window);
    g_test_add_func ("/libindicator/loader/dummy/visible",  test_loader_filename_dummy_visible);

    return;
}


int
main (int argc, char ** argv)
{
    g_test_init (&argc, &argv, NULL);
    gtk_init(&argc, &argv);

    test_loader_creation_deletion_suite();

    g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);

    return g_test_run();
}