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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include <bonobo/bonobo-main.h>
#include <stdlib.h>
#include <libebook/e-book.h>
#define NEW_VCARD "BEGIN:VCARD\n\
X-EVOLUTION-FILE-AS:Toshok, Chris\n\
FN:Chris Toshok\n\
EMAIL;INTERNET:toshok@ximian.com\n\
ORG:Ximian, Inc.;\n\
END:VCARD"
int
main (int argc, char **argv)
{
EBook *book;
EContact *contact;
GList *changes;
GError *error = NULL;
EBookChange *change;
gchar *file_template;
gchar *uri;
if (bonobo_init (&argc, argv) == FALSE)
g_error ("Could not initialize Bonobo");
file_template = g_build_filename (g_get_tmp_dir (),
"change-test-XXXXXX",
NULL);
mktemp (file_template);
uri = g_filename_to_uri (file_template, NULL, &error);
if (!uri) {
printf ("failed to convert %s to an URI: %s\n",
file_template, error->message);
exit (0);
}
g_free (file_template);
/* create a temp addressbook in /tmp */
printf ("loading addressbook\n");
book = e_book_new_from_uri (uri, &error);
if (!book) {
printf ("failed to create addressbook: `%s': %s\n",
uri, error->message);
exit(0);
}
if (!e_book_open (book, FALSE, &error)) {
printf ("failed to open addressbook: `%s': %s\n",
uri, error->message);
exit(0);
}
/* get an initial change set */
if (!e_book_get_changes (book, "changeidtest", &changes, &error)) {
printf ("failed to get changes: %s\n", error->message);
exit(0);
}
/* make a change to the book */
contact = e_contact_new_from_vcard (NEW_VCARD);
if (!e_book_add_contact (book, contact, &error)) {
printf ("failed to add new contact: %s\n", error->message);
exit(0);
}
/* get another change set */
if (!e_book_get_changes (book, "changeidtest", &changes, &error)) {
printf ("failed to get second set of changes: %s\n", error->message);
exit(0);
}
/* make sure that 1 change has occurred */
if (g_list_length (changes) != 1) {
printf ("got back %d changes, was expecting 1\n", g_list_length (changes));
exit(0);
}
change = changes->data;
if (change->change_type != E_BOOK_CHANGE_CARD_ADDED) {
printf ("was expecting a CARD_ADDED change, but didn't get it.\n");
exit(0);
}
printf ("got changed vcard back: %s\n", (char*)e_contact_get_const (change->contact, E_CONTACT_UID));
e_book_free_change_list (changes);
if (!e_book_remove (book, &error)) {
printf ("failed to remove book; %s\n", error->message);
exit(0);
}
g_object_unref (book);
bonobo_main_quit();
return 0;
}
|