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
|
/*
* 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 "e-test-server-utils.h"
#include <libedataserver/libedataserver.h>
static ETestServerClosure test_closure = { E_TEST_SERVER_NONE, NULL, 0, FALSE, NULL };
static void
test_webdav_href_compare (ETestServerFixture *fixture,
gconstpointer user_data)
{
struct _hrefs {
const gchar *href1;
const gchar *href2;
gboolean same;
} hrefs[] = {
/* 0 */ { "http://www.gnome.org/", "http://www.gnome.org/", TRUE },
{ "https://www.gnome.org/", "http://www.gnome.org/", TRUE },
{ "http://user@www.gnome.org/", "https://www.gnome.org/", TRUE },
{ "http://www.gnome.org/index", "http://www.gnome.org/", FALSE },
{ "http://www.GNOME.org/index", "http://www.gnome.org/index", TRUE },
{ "http://www.GNOME.org/Index", "http://www.gnome.org/index", FALSE },
{ "http://www.gnome.org/index/", "http://www.gnome.org/index", FALSE },
{ "http://www.gnome.org/path/collection/data.ext", "http://www.gnome.org/path/collection/data.ext", TRUE },
{ "https://www.gnome.org/path/collection/data.ext", "http://www.gnome.org/path/collection/data.ext", TRUE },
{ "http://user@www.gnome.org/path/collection/data.ext", "http://www.gnome.org/path/collection/data.ext", TRUE },
/* 10 */{ "http://www.gnome.org/Path/collection/data.ext", "http://www.gnome.org/path/collection/data.ext", FALSE },
{ "http://www.gnome.org/path/Collection/data.ext", "http://www.gnome.org/path/collection/data.ext", FALSE },
{ "http://www.gnome.org/path/collection/Data.ext", "http://www.gnome.org/path/collection/data.ext", FALSE },
{ "http://www.GNOME.org/path/collection/data.ext", "http://www.gnome.org/path/collection/data.ext", TRUE },
{ "http://www.gnome.org/path/collection/data.ext", "http://www.server.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org", "https://www.gnome.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org/", "https://www.gnome.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org/path", "https://www.gnome.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org/path/", "https://www.gnome.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org/path/collection", "https://www.gnome.org/path/collection/data.ext", FALSE },
/* 20 */{ "https://www.gnome.org/path/collection/", "https://www.gnome.org/path/collection/data.ext", FALSE },
{ "https://www.gnome.org/path/user@no.where/", "http://www.gnome.org/path/user@no.where/", TRUE },
{ "https://www.gnome.org/path/user%40no.where/", "http://www.gnome.org/path/user@no.where/", TRUE },
{ "https://www.gnome.org/path/user%40no.where/", "http://www.gnome.org/path/user@no.where", FALSE },
{ "https://www.gnome.org/user%40no.where/", "http://www.gnome.org/path/user@no.where", FALSE },
{ "https://www.gnome.org/user%40no.where", "http://www.gnome.org/user%40no%2Ewhere", TRUE },
{ "https://www.gnome.org/user%40no.where", "http://www.gnome.org/user%40no%2ewhere", TRUE },
{ "https://www.gnome.org/path/user%40no.where/path", "http://www.gnome.org/path/user%40no%2Ewhere/path", TRUE },
{ "https://user@www.gnome.org/path/user%40no.where/path", "http://www.gnome.org/path/user%40no%2Ewhere/path", TRUE },
{ "https://user@www.gnome.org/path/user%40no.where/path", "http://www.gnome.org/path/user%40no%2Ewhere/path", TRUE },
/* 30 */{ "https://user@www.gnome.org/path/user@no.where/path", "http://www.gnome.org/path/user%40no%2Ewhere/path", TRUE },
{ "https://user@www.gnome.org/path/user@no.where/path", "http://no@www.gnome.org/path/user@no%2Ewhere/path", TRUE },
{ "https://www.gnome.org/path%", "https://www.gnome.org/path%", TRUE },
{ "https://www.gnome.org/path%g", "https://www.gnome.org/path%g", TRUE },
{ "https://www.gnome.org/path%ah", "https://www.gnome.org/path%ah", TRUE },
{ "https://www.gnome.org/path%32", "https://www.gnome.org/path%32", TRUE },
{ "https://www.gnome.org/path%20%2e", "https://www.gnome.org/path .", TRUE },
{ "https://Xww.gnome.org", "https://www.gnome.org", FALSE },
{ "http://www.gnome.org/a%2e%2e%2e/b", "https://www.gnome.org/a.../b", TRUE },
{ "http://www.gnome.org/a%2e%2e%2eb", "https://www.gnome.org/a...b", TRUE },
/* 40 */{ "http://www.gnome.org/a%2e%2e%2e//", "https://www.gnome.org/a.../", FALSE },
{ "https://www.gnome.ORG", "https://www.gnome.org", TRUE },
{ "https://www.gnome.orG", "https://www.gnome.org", TRUE },
{ "https://www.gnome.org/2", "https://www.gnome.org/234", FALSE }
};
gint ii;
for (ii = 0; ii < G_N_ELEMENTS (hrefs); ii++) {
if (hrefs[ii].same) {
g_assert_cmpint (ii, ==, e_webdav_session_util_item_href_equal (hrefs[ii].href1, hrefs[ii].href2) ? ii : -1);
g_assert_cmpint (ii, ==, e_webdav_session_util_item_href_equal (hrefs[ii].href2, hrefs[ii].href1) ? ii : -1);
} else {
g_assert_cmpint (ii, !=, e_webdav_session_util_item_href_equal (hrefs[ii].href1, hrefs[ii].href2) ? ii : -1);
g_assert_cmpint (ii, !=, e_webdav_session_util_item_href_equal (hrefs[ii].href2, hrefs[ii].href1) ? ii : -1);
}
}
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("https://gitlab.gnome.org/GNOME/evolution-data-server/issues");
g_test_add (
"/libedataserver-test/WebDAVhrefCompare",
ETestServerFixture, &test_closure,
e_test_server_utils_setup,
test_webdav_href_compare,
e_test_server_utils_teardown);
return e_test_server_utils_run (argc, argv);
}
|