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
|
/*
* 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/>.
*
*/
#include <libebook/libebook.h>
#include "ebook-test-utils.h"
#include "e-test-server-utils.h"
static ETestServerClosure book_closure =
{ E_TEST_SERVER_DEPRECATED_ADDRESS_BOOK, NULL, 0 };
static void
test_remove_contacts_sync (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBook *book;
EContact *contact_final = NULL;
gchar *uid_1, *uid_2;
GList *uids = NULL;
book = E_TEST_SERVER_UTILS_SERVICE (fixture, EBook);
uid_1 = ebook_test_utils_book_add_contact_from_test_case_verify (book, "simple-1", NULL);
uid_2 = ebook_test_utils_book_add_contact_from_test_case_verify (book, "simple-2", NULL);
uids = g_list_prepend (uids, uid_1);
uids = g_list_prepend (uids, uid_2);
ebook_test_utils_book_remove_contacts (book, uids);
contact_final = NULL;
e_book_get_contact (book, uid_1, &contact_final, NULL);
g_assert_true (contact_final == NULL);
e_book_get_contact (book, uid_2, &contact_final, NULL);
g_assert_true (contact_final == NULL);
test_print ("successfully added and removed contacts\n");
g_free (uid_1);
g_free (uid_2);
g_list_free (uids);
}
static void
test_remove_contacts_async (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBook *book;
gchar *uid_1, *uid_2;
GList *uids = NULL;
book = E_TEST_SERVER_UTILS_SERVICE (fixture, EBook);
uid_1 = ebook_test_utils_book_add_contact_from_test_case_verify (book, "simple-1", NULL);
uid_2 = ebook_test_utils_book_add_contact_from_test_case_verify (book, "simple-2", NULL);
uids = NULL;
uids = g_list_prepend (uids, uid_1);
uids = g_list_prepend (uids, uid_2);
ebook_test_utils_book_async_remove_contacts (
book, uids,
ebook_test_utils_callback_quit, fixture->loop);
g_main_loop_run (fixture->loop);
g_free (uid_1);
g_free (uid_2);
g_list_free (uids);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("https://gitlab.gnome.org/GNOME/evolution-data-server/");
ebook_test_utils_read_args (argc, argv);
g_test_add (
"/EBook/RemoveContacts/Sync",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_remove_contacts_sync,
e_test_server_utils_teardown);
g_test_add (
"/EBook/RemoveContacts/Async",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_remove_contacts_async,
e_test_server_utils_teardown);
return e_test_server_utils_run (argc, argv);
}
|