summaryrefslogtreecommitdiff
path: root/libavformat/tests
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2020-07-30 00:02:10 +0200
committerNicolas George <george@nsup.org>2020-08-12 16:45:21 +0200
commit1201687da268c11459891a80ca1972aeaca8db88 (patch)
tree957a7fa03127b4ba83ed810b8eccb0532dfda5f6 /libavformat/tests
parentd853293679f93ef882e6a5f1c47eb5a65ceddf3d (diff)
lavf/url: rewrite ff_make_absolute_url() using ff_url_decompose().
Also add and update some tests. Change the semantic a little, because for filesytem paths symlinks complicate things. See the comments in the code for detail. Fix trac tickets #8813 and 8814.
Diffstat (limited to 'libavformat/tests')
-rw-r--r--libavformat/tests/url.c60
1 files changed, 59 insertions, 1 deletions
diff --git a/libavformat/tests/url.c b/libavformat/tests/url.c
index e7d259ab7d..2440ae08bc 100644
--- a/libavformat/tests/url.c
+++ b/libavformat/tests/url.c
@@ -49,7 +49,13 @@ static void test_decompose(const char *url)
static void test(const char *base, const char *rel)
{
char buf[200], buf2[200];
- ff_make_absolute_url(buf, sizeof(buf), base, rel);
+ int ret;
+
+ ret = ff_make_absolute_url(buf, sizeof(buf), base, rel);
+ if (ret < 0) {
+ printf("%50s %-20s => error %s\n", base, rel, av_err2str(ret));
+ return;
+ }
printf("%50s %-20s => %s\n", base, rel, buf);
if (base) {
/* Test in-buffer replacement */
@@ -104,6 +110,58 @@ int main(void)
test("http://server/foo/bar", "/../../../../../other/url");
test("http://server/foo/bar", "/test/../../../../../other/url");
test("http://server/foo/bar", "/test/../../test/../../../other/url");
+ test("http://server/foo/bar", "file:../baz/qux");
+ test("http://server/foo//bar/", "../../");
+ test("file:../tmp/foo", "../bar/");
+ test("file:../tmp/foo", "file:../bar/");
+ test("http://server/foo/bar", "./");
+ test("http://server/foo/bar", ".dotfile");
+ test("http://server/foo/bar", "..doubledotfile");
+ test("http://server/foo/bar", "double..dotfile");
+ test("http://server/foo/bar", "doubledotfile..");
+
+ /* From https://tools.ietf.org/html/rfc3986#section-5.4 */
+ test("http://a/b/c/d;p?q", "g:h"); // g:h
+ test("http://a/b/c/d;p?q", "g"); // http://a/b/c/g
+ test("http://a/b/c/d;p?q", "./g"); // http://a/b/c/g
+ test("http://a/b/c/d;p?q", "g/"); // http://a/b/c/g/
+ test("http://a/b/c/d;p?q", "/g"); // http://a/g
+ test("http://a/b/c/d;p?q", "//g"); // http://g
+ test("http://a/b/c/d;p?q", "?y"); // http://a/b/c/d;p?y
+ test("http://a/b/c/d;p?q", "g?y"); // http://a/b/c/g?y
+ test("http://a/b/c/d;p?q", "#s"); // http://a/b/c/d;p?q#s
+ test("http://a/b/c/d;p?q", "g#s"); // http://a/b/c/g#s
+ test("http://a/b/c/d;p?q", "g?y#s"); // http://a/b/c/g?y#s
+ test("http://a/b/c/d;p?q", ";x"); // http://a/b/c/;x
+ test("http://a/b/c/d;p?q", "g;x"); // http://a/b/c/g;x
+ test("http://a/b/c/d;p?q", "g;x?y#s"); // http://a/b/c/g;x?y#s
+ test("http://a/b/c/d;p?q", ""); // http://a/b/c/d;p?q
+ test("http://a/b/c/d;p?q", "."); // http://a/b/c/
+ test("http://a/b/c/d;p?q", "./"); // http://a/b/c/
+ test("http://a/b/c/d;p?q", ".."); // http://a/b/
+ test("http://a/b/c/d;p?q", "../"); // http://a/b/
+ test("http://a/b/c/d;p?q", "../g"); // http://a/b/g
+ test("http://a/b/c/d;p?q", "../.."); // http://a/
+ test("http://a/b/c/d;p?q", "../../"); // http://a/
+ test("http://a/b/c/d;p?q", "../../g"); // http://a/g
+ test("http://a/b/c/d;p?q", "../../../g"); // http://a/g
+ test("http://a/b/c/d;p?q", "../../../../g"); // http://a/g
+ test("http://a/b/c/d;p?q", "/./g"); // http://a/g
+ test("http://a/b/c/d;p?q", "/../g"); // http://a/g
+ test("http://a/b/c/d;p?q", "g."); // http://a/b/c/g.
+ test("http://a/b/c/d;p?q", ".g"); // http://a/b/c/.g
+ test("http://a/b/c/d;p?q", "g.."); // http://a/b/c/g..
+ test("http://a/b/c/d;p?q", "..g"); // http://a/b/c/..g
+ test("http://a/b/c/d;p?q", "./../g"); // http://a/b/g
+ test("http://a/b/c/d;p?q", "./g/."); // http://a/b/c/g/
+ test("http://a/b/c/d;p?q", "g/./h"); // http://a/b/c/g/h
+ test("http://a/b/c/d;p?q", "g/../h"); // http://a/b/c/h
+ test("http://a/b/c/d;p?q", "g;x=1/./y"); // http://a/b/c/g;x=1/y
+ test("http://a/b/c/d;p?q", "g;x=1/../y"); // http://a/b/c/y
+ test("http://a/b/c/d;p?q", "g?y/./x"); // http://a/b/c/g?y/./x
+ test("http://a/b/c/d;p?q", "g?y/../x"); // http://a/b/c/g?y/../x
+ test("http://a/b/c/d;p?q", "g#s/./x"); // http://a/b/c/g#s/./x
+ test("http://a/b/c/d;p?q", "g#s/../x"); // http://a/b/c/g#s/../x
printf("\nTesting av_url_split:\n");
test2("/foo/bar");