summaryrefslogtreecommitdiff
path: root/libpurple/tests/test_contact.c
blob: 0145535cd5009a1930642f6acf8b19f2fd8c2b72 (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
/*
 * 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"

/******************************************************************************
 * Tests
 *****************************************************************************/
static void
test_purple_contact_new(void) {
	PurpleAccount *account = NULL;
	PurpleContact *contact = NULL;
	PurpleContactInfo *info = NULL;

	account = purple_account_new("test", "test");
	contact = purple_contact_new(account, "id");
	info = PURPLE_CONTACT_INFO(contact);

	g_assert_true(purple_contact_get_account(contact) == account);
	g_assert_cmpstr(purple_contact_info_get_id(info), ==, "id");

	g_clear_object(&contact);
	g_clear_object(&account);
}

static void
test_purple_contact_properties(void) {
	PurpleAccount *account = NULL;
	PurpleAccount *account1 = NULL;
	PurpleContact *contact = NULL;
	char *id = NULL;

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

	/* Use g_object_new so we can test setting properties by name. All of them
	 * call the setter methods, so by doing it this way we exercise more of the
	 * code.
	 */
	contact = g_object_new(
		PURPLE_TYPE_CONTACT,
		"account", account,
		"id", "id1",
		NULL);

	/* Now use g_object_get to read all of the properties. */
	g_object_get(contact,
		"id", &id,
		"account", &account1,
		NULL);

	/* Compare all the things. */
	g_assert_cmpstr(id, ==, "id1");
	g_assert_true(account1 == account);

	/* Free/unref all the things. */
	g_clear_pointer(&id, g_free);
	g_clear_object(&account1);
	g_clear_object(&contact);
	g_clear_object(&account);
}

/******************************************************************************
 * Main
 *****************************************************************************/
gint
main(gint argc, gchar *argv[]) {
	g_test_init(&argc, &argv, NULL);

	test_ui_purple_init();

	g_test_add_func("/contact/new",
	                test_purple_contact_new);
	g_test_add_func("/contact/properties",
	                test_purple_contact_properties);

	return g_test_run();
}