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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include <stdlib.h>
#include <libebook/libebook.h>
#include "client-test-utils.h"
#include "e-test-server-utils.h"
static ETestServerClosure book_closure = { E_TEST_SERVER_ADDRESS_BOOK, NULL, 0, FALSE, NULL, FALSE };
#define N_CONTACTS 6
static gint fetched_contacts = 0;
static gint fetched_uids = 0;
static void
count_all_uids (EBookClient *book)
{
GError *error = NULL;
EBookQuery *query;
gchar *sexp;
GSList *uids;
query = e_book_query_field_exists (E_CONTACT_FULL_NAME);
sexp = e_book_query_to_string (query);
e_book_query_unref (query);
if (!e_book_client_get_contacts_uids_sync (book, sexp, &uids, NULL, &error))
g_error ("Error getting contact uids: %s", error->message);
g_free (sexp);
fetched_uids = g_slist_length (uids);
g_slist_foreach (uids, (GFunc) g_free, NULL);
g_slist_free (uids);
}
static void
count_all_contacts (EBookClient *book)
{
GError *error = NULL;
EBookQuery *query;
gchar *sexp;
GSList *cards;
query = e_book_query_field_exists (E_CONTACT_FULL_NAME);
sexp = e_book_query_to_string (query);
e_book_query_unref (query);
if (!e_book_client_get_contacts_sync (book, sexp, &cards, NULL, &error))
g_error ("Error getting contacts: %s", error->message);
g_free (sexp);
fetched_contacts = g_slist_length (cards);
g_slist_foreach (cards, (GFunc) g_object_unref, NULL);
g_slist_free (cards);
}
static void
test_client (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBookClient *book_client;
book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
/* Add some contacts */
if (!add_contact_from_test_case_verify (book_client, "custom-1", NULL) ||
!add_contact_from_test_case_verify (book_client, "custom-2", NULL) ||
!add_contact_from_test_case_verify (book_client, "custom-3", NULL) ||
!add_contact_from_test_case_verify (book_client, "custom-4", NULL) ||
!add_contact_from_test_case_verify (book_client, "custom-5", NULL) ||
!add_contact_from_test_case_verify (book_client, "custom-6", NULL)) {
g_object_unref (book_client);
g_error ("Failed to add contacts");
}
count_all_contacts (book_client);
count_all_uids (book_client);
g_assert_cmpint (fetched_contacts, ==, N_CONTACTS);
g_assert_cmpint (fetched_uids, ==, N_CONTACTS);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add (
"/EBookClient/AddAndGet/Sync",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_client,
e_test_server_utils_teardown);
return e_test_server_utils_run ();
}
|