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
|
/*
* 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 <stdlib.h>
#include <locale.h>
#include <libebook/libebook.h>
#include "e-test-server-utils.h"
#include "data-test-utils.h"
struct {
gboolean empty_book;
gboolean store_vcards;
const gchar *path;
} params[] = {
{ FALSE, TRUE, "/EbSdbCursor/DefaultSummary/StoreVCards" },
{ FALSE, FALSE, "/EbSdbCursor/DefaultSummary/NoVCards" },
{ FALSE, TRUE, "/EbSdbCursor/EmptySummary/StoreVCards" },
{ FALSE, FALSE, "/EbSdbCursor/EmptySummary/NoVCards" }
};
gint
main (gint argc,
gchar **argv)
{
StepData *data;
gint i;
#if !GLIB_CHECK_VERSION (2, 35, 1)
g_type_init ();
#endif
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("https://gitlab.gnome.org/GNOME/evolution-data-server/");
data_test_utils_read_args (argc, argv);
for (i = 0; i < G_N_ELEMENTS (params); i++) {
data = step_test_new (
params[i].path, "/ChangeLocale/POSIX/en_US", "POSIX",
params[i].store_vcards, params[i].empty_book);
step_test_add_assertion (data, 5, 11, 2, 6, 3, 8);
step_test_add_assertion (data, 5, 1, 5, 4, 7, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 12, 13, 9, 19, 20);
step_test_change_locale (data, "en_US.UTF-8", 0);
step_test_add_assertion (data, 5, 11, 1, 2, 5, 6);
step_test_add_assertion (data, 5, 4, 3, 7, 8, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 12, 13, 9, 19, 20);
step_test_add (data, FALSE);
data = step_test_new (
params[i].path, "/ChangeLocale/en_US/fr_CA", "en_US.UTF-8",
params[i].store_vcards, params[i].empty_book);
step_test_add_assertion (data, 5, 11, 1, 2, 5, 6);
step_test_add_assertion (data, 5, 4, 3, 7, 8, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 12, 13, 9, 19, 20);
step_test_change_locale (data, "fr_CA.UTF-8", -1);
step_test_add_assertion (data, 5, 11, 1, 2, 5, 6);
step_test_add_assertion (data, 5, 4, 3, 7, 8, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 13, 12, 9, 19, 20);
step_test_add (data, FALSE);
data = step_test_new (
params[i].path, "/ChangeLocale/fr_CA/de_DE", "fr_CA.UTF-8",
params[i].store_vcards, params[i].empty_book);
step_test_add_assertion (data, 5, 11, 1, 2, 5, 6);
step_test_add_assertion (data, 5, 4, 3, 7, 8, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 13, 12, 9, 19, 20);
/* Depending on the libphonenumber, when changing from fr_CA to de_DE, two numbers change:
*
* sorted-5:
* 049-2459-4393 is now parsed with the national number as 4924594393
*
* sorted-4:
* 12 245999 is now parsed with national number 12245999 instead of 2245999
*
* or only one. Skip this check, because a lack of a way to get the libphonenumber version.
*/
step_test_change_locale (data, "de_DE.UTF-8", -1);
step_test_add_assertion (data, 5, 11, 1, 2, 5, 6);
step_test_add_assertion (data, 5, 7, 8, 4, 3, 15);
step_test_add_assertion (data, 5, 17, 16, 18, 10, 14);
step_test_add_assertion (data, 5, 12, 13, 9, 20, 19);
step_test_add (data, FALSE);
}
/* On this case, we want to delete the work directory and start afresh */
return e_test_server_utils_run_full (argc, argv, 0);
}
|