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
|
/*
* Copyright (C) 2013 Intel Corporation
*
* This program 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.
*
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors: Tristan Van Berkom <tristanvb@openismus.com>
*/
#include <stdlib.h>
#include <libebook/libebook.h>
#include "client-test-utils.h"
#include "e-test-server-utils.h"
#define TEST_CONTACT_UID "old-mac-donald-had-a-farm"
static ETestServerClosure book_closure = { E_TEST_SERVER_ADDRESS_BOOK, NULL, 0 };
static void
test_preserve_uid (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBookClient *book_client;
EContact *contact;
gchar *vcard;
gchar *uid = NULL;
GError *error = NULL;
book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
vcard = new_vcard_from_test_case ("simple-1");
contact = e_contact_new_from_vcard (vcard);
g_free (vcard);
e_contact_set (contact, E_CONTACT_UID, TEST_CONTACT_UID);
if (!e_book_client_add_contact_sync (book_client, contact, E_BOOK_OPERATION_FLAG_NONE, &uid, NULL, &error))
g_error ("Failed to add contact: %s", error->message);
g_assert_cmpstr (uid, ==, TEST_CONTACT_UID);
g_object_unref (contact);
g_free (uid);
}
static void
test_uid_conflict (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBookClient *book_client;
EContact *contact;
gchar *vcard;
GError *error = NULL;
book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
/* Hijack the first test case, ensure we already have the contact added */
test_preserve_uid (fixture, user_data);
vcard = new_vcard_from_test_case ("simple-2");
contact = e_contact_new_from_vcard (vcard);
g_free (vcard);
e_contact_set (contact, E_CONTACT_UID, TEST_CONTACT_UID);
if (!e_book_client_add_contact_sync (book_client, contact, E_BOOK_OPERATION_FLAG_NONE, NULL, NULL, &error)) {
g_assert_true (g_error_matches (error, E_BOOK_CLIENT_ERROR, E_BOOK_CLIENT_ERROR_CONTACT_ID_ALREADY_EXISTS));
g_error_free (error);
} else
g_error ("Succeeded in adding two contacts with the same UID !");
g_object_unref (contact);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("https://gitlab.gnome.org/GNOME/evolution-data-server/");
client_test_utils_read_args (argc, argv);
g_test_add (
"/EBookClient/AddContact/PreserveUid",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_preserve_uid,
e_test_server_utils_teardown);
g_test_add (
"/EBookClient/AddContact/UidConflict",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_uid_conflict,
e_test_server_utils_teardown);
return e_test_server_utils_run (argc, argv);
}
|