summaryrefslogtreecommitdiff
path: root/libpurple/tests/test_notification.c
blob: 05f74d3f9a433f9bee778f35c1af2c46ee2e8523 (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
/*
 * Purple - Internet Messaging Library
 * Copyright (C) Pidgin Developers <devel@pidgin.im>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <https://www.gnu.org/licenses/>.
 */

#include <glib.h>

#include <purple.h>

#include "test_ui.h"

/******************************************************************************
 * Helpers
 *****************************************************************************/
static void
test_purple_notification_destory_data_callback(gpointer data) {
	gboolean *called = data;

	*called = TRUE;
}

/******************************************************************************
 * Tests
 *****************************************************************************/
static void
test_purple_notification_new(void) {
	PurpleAccount *account1 = NULL, *account2 = NULL;
	PurpleNotification *notification = NULL;
	PurpleNotificationType type = PURPLE_NOTIFICATION_TYPE_UNKNOWN;
	GDateTime *created_timestamp = NULL;
	const gchar *id = NULL;

	account1 = purple_account_new("test", "test");

	notification = purple_notification_new(PURPLE_NOTIFICATION_TYPE_GENERIC,
	                                       account1,
	                                       NULL,
	                                       NULL);

	/* Make sure we got a valid notification. */
	g_assert_true(PURPLE_IS_NOTIFICATION(notification));

	/* Check the type. */
	type = purple_notification_get_notification_type(notification);
	g_assert_cmpint(PURPLE_NOTIFICATION_TYPE_GENERIC, ==, type);

	/* Verify the account is set properly. */
	account2 = purple_notification_get_account(notification);
	g_assert_nonnull(account2);
	g_assert_true(account1 == account2);

	/* Make sure that the id was generated. */
	id = purple_notification_get_id(notification);
	g_assert_nonnull(id);

	/* Make sure that the created-timestamp was set. */
	created_timestamp = purple_notification_get_created_timestamp(notification);
	g_assert_nonnull(created_timestamp);

	/* Unref it to destory it. */
	g_clear_object(&notification);

	/* Clean up the account. */
	g_clear_object(&account1);
}

static void
test_purple_notification_destory_data_func(void) {
	PurpleNotification *notification = NULL;
	gboolean called = FALSE;

	/* Create the notification. */
	notification = purple_notification_new(PURPLE_NOTIFICATION_TYPE_GENERIC,
	                                       NULL,
	                                       &called,
	                                       test_purple_notification_destory_data_callback);

	/* Sanity check. */
	g_assert_true(PURPLE_IS_NOTIFICATION(notification));

	/* Unref it to force the destory callback to be called. */
	g_clear_object(&notification);

	/* Make sure the callback was called. */
	g_assert_true(called);
}

static void
test_purple_notification_properties(void) {
	PurpleNotification *notification = NULL;
	GDateTime *ts1 = NULL, *ts2 = NULL;

	notification = purple_notification_new(PURPLE_NOTIFICATION_TYPE_GENERIC,
	                                       NULL,
	                                       NULL,
	                                       NULL);

	g_assert_true(PURPLE_IS_NOTIFICATION(notification));

	/* Set the timestamp to current utc and verify it was set properly. */
	ts1 = g_date_time_new_now_utc();
	purple_notification_set_created_timestamp(notification, ts1);
	ts2 = purple_notification_get_created_timestamp(notification);
	g_assert_true(g_date_time_equal(ts1, ts2));
	g_date_time_unref(ts1);

	/* Set the title and verify it was set properly. */
	purple_notification_set_title(notification, "title");
	g_assert_true(purple_strequal(purple_notification_get_title(notification),
	                              "title"));

	/* Set the title and verify it was set properly. */
	purple_notification_set_icon_name(notification, "icon-name");
	g_assert_true(purple_strequal(purple_notification_get_icon_name(notification),
	                              "icon-name"));

	/* Set the read state and verify it. */
	purple_notification_set_read(notification, TRUE);
	g_assert_true(purple_notification_get_read(notification));
	purple_notification_set_read(notification, FALSE);
	g_assert_false(purple_notification_get_read(notification));

	/* Set the interactive state and verify it. */
	purple_notification_set_interactive(notification, TRUE);
	g_assert_true(purple_notification_get_interactive(notification));
	purple_notification_set_interactive(notification, FALSE);
	g_assert_false(purple_notification_get_interactive(notification));

	/* Cleanup. */
	g_clear_object(&notification);
}

/******************************************************************************
 * Main
 *****************************************************************************/
gint
main(gint argc, gchar *argv[]) {
	gint ret = 0;

	g_test_init(&argc, &argv, NULL);

	test_ui_purple_init();

	g_test_add_func("/notification/new",
	                test_purple_notification_new);
	g_test_add_func("/notification/destory-data-func",
	                test_purple_notification_destory_data_func);
	g_test_add_func("/notification/properties",
	                test_purple_notification_properties);

	ret = g_test_run();

	test_ui_purple_uninit();

	return ret;
}