/* * Copyright 2011 John Mark Bell * * This file is part of NetSurf, http://www.netsurf-browser.org/ * * NetSurf is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * NetSurf 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file * Test nsurl operations. */ #include #include #include #include #include #include #include "utils/corestrings.h" #include "utils/nsurl.h" #define NELEMS(x) (sizeof(x) / sizeof((x)[0])) struct test_pairs { const char* test; const char* res; }; struct test_triplets { const char* test1; const char* test2; const char* res; }; static void netsurf_lwc_iterator(lwc_string *str, void *pw) { fprintf(stderr, "[%3u] %.*s", str->refcnt, (int)lwc_string_length(str), lwc_string_data(str)); } static const struct test_pairs create_tests[] = { { "", NULL }, { "http:", NULL }, { "http:/", NULL }, { "http://", NULL }, { "http:a", "http://a/" }, { "http:a/", "http://a/" }, { "http:a/b", "http://a/b" }, { "http:/a", "http://a/" }, { "http:/a/b", "http://a/b" }, { "http://a", "http://a/" }, { "http://a/b", "http://a/b" }, { "www.example.org", "http://www.example.org/" }, { "www.example.org/x", "http://www.example.org/x" }, { "about:", "about:" }, { "about:blank", "about:blank" }, { "http://www.ns-b.org:8080/", "http://www.ns-b.org:8080/" }, { "http://user@www.ns-b.org:8080/hello", "http://user@www.ns-b.org:8080/hello" }, { "http://user:pass@www.ns-b.org:8080/hello", "http://user:pass@www.ns-b.org:8080/hello" }, { "http://www.ns-b.org:80/", "http://www.ns-b.org/" }, { "http://user@www.ns-b.org:80/hello", "http://user@www.ns-b.org/hello" }, { "http://user:pass@www.ns-b.org:80/hello", "http://user:pass@www.ns-b.org/hello" }, { "http://www.ns-b.org:/", "http://www.ns-b.org/" }, { "http://u@www.ns-b.org:/hello", "http://u@www.ns-b.org/hello" }, { "http://u:p@www.ns-b.org:/hello", "http://u:p@www.ns-b.org/hello" }, { "http:a/", "http://a/" }, { "http:/a/", "http://a/" }, { "http://u@a", "http://u@a/" }, { "http://@a", "http://a/" }, { "mailto:u@a", "mailto:u@a" }, { "mailto:@a", "mailto:a" }, }; static const struct test_pairs nice_tests[] = { { "about:", NULL }, { "www.foo.org", "www_foo_org" }, { "www.foo.org/index.html", "www_foo_org" }, { "www.foo.org/default.en", "www_foo_org" }, { "www.foo.org/about", "about" }, { "www.foo.org/about.jpg", "about.jpg" }, { "www.foo.org/moose/index.en", "moose" }, { "www.foo.org/a//index.en", "www_foo_org" }, { "www.foo.org/a//index.en", "www_foo_org" }, { "http://www.f.org//index.en", "www_f_org" }, }; static const struct test_pairs nice_strip_tests[] = { { "about:", NULL }, { "www.foo.org", "www_foo_org" }, { "www.foo.org/index.html", "www_foo_org" }, { "www.foo.org/default.en", "www_foo_org" }, { "www.foo.org/about", "about" }, { "www.foo.org/about.jpg", "about" }, { "www.foo.org/moose/index.en", "moose" }, { "www.foo.org/a//index.en", "www_foo_org" }, { "www.foo.org/a//index.en", "www_foo_org" }, { "http://www.f.org//index.en", "www_f_org" }, }; static const struct test_pairs join_tests[] = { /* Normal Examples rfc3986 5.4.1 */ { "g:h", "g:h" }, { "g", "http://a/b/c/g" }, { "./g", "http://a/b/c/g" }, { "g/", "http://a/b/c/g/" }, { "/g", "http://a/g" }, { "//g", "http://g" /* [1] */ "/" }, { "?y", "http://a/b/c/d;p?y" }, { "g?y", "http://a/b/c/g?y" }, { "#s", "http://a/b/c/d;p?q#s" }, { "g#s", "http://a/b/c/g#s" }, { "g?y#s", "http://a/b/c/g?y#s" }, { ";x", "http://a/b/c/;x" }, { "g;x", "http://a/b/c/g;x" }, { "g;x?y#s", "http://a/b/c/g;x?y#s" }, { "", "http://a/b/c/d;p?q" }, { ".", "http://a/b/c/" }, { "./", "http://a/b/c/" }, { "..", "http://a/b/" }, { "../", "http://a/b/" }, { "../g", "http://a/b/g" }, { "../..", "http://a/" }, { "../../", "http://a/" }, { "../../g", "http://a/g" }, /* Abnormal Examples rfc3986 5.4.2 */ { "../../../g", "http://a/g" }, { "../../../../g", "http://a/g" }, { "/./g", "http://a/g" }, { "/../g", "http://a/g" }, { "g.", "http://a/b/c/g." }, { ".g", "http://a/b/c/.g" }, { "g..", "http://a/b/c/g.." }, { "..g", "http://a/b/c/..g" }, { "./../g", "http://a/b/g" }, { "./g/.", "http://a/b/c/g/" }, { "g/./h", "http://a/b/c/g/h" }, { "g/../h", "http://a/b/c/h" }, { "g;x=1/./y", "http://a/b/c/g;x=1/y" }, { "g;x=1/../y", "http://a/b/c/y" }, { "g?y/./x", "http://a/b/c/g?y/./x" }, { "g?y/../x", "http://a/b/c/g?y/../x" }, { "g#s/./x", "http://a/b/c/g#s/./x" }, { "g#s/../x", "http://a/b/c/g#s/../x" }, { "http:g", "http:g" /* [2] */ }, /* Extra tests */ { " g", "http://a/b/c/g" }, { "g ", "http://a/b/c/g" }, { " g ", "http://a/b/c/g" }, { "http:/b/c", "http://b/c" }, { "http://", "http:" }, { "http:/", "http:" }, { "http:", "http:" }, { " ", "http://a/b/c/d;p?q" }, { " ", "http://a/b/c/d;p?q" }, { "/", "http://a/" }, { " / ", "http://a/" }, { " ? ", "http://a/b/c/d;p?" }, { " h ", "http://a/b/c/h" }, { "http://