1 /*
2 * Copyright (c) 2012 Martin Storsjo
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include "libavformat/url.h"
22 #include "libavformat/avformat.h"
23
test(const char * base,const char * rel)24 static void test(const char *base, const char *rel)
25 {
26 char buf[200], buf2[200];
27 ff_make_absolute_url(buf, sizeof(buf), base, rel);
28 printf("%50s %-20s => %s\n", base, rel, buf);
29 if (base) {
30 /* Test in-buffer replacement */
31 snprintf(buf2, sizeof(buf2), "%s", base);
32 ff_make_absolute_url(buf2, sizeof(buf2), buf2, rel);
33 if (strcmp(buf, buf2)) {
34 printf("In-place handling of %s + %s failed\n", base, rel);
35 exit(1);
36 }
37 }
38 }
39
test2(const char * url)40 static void test2(const char *url)
41 {
42 char proto[64];
43 char auth[256];
44 char host[256];
45 char path[256];
46 int port=-1;
47
48 av_url_split(proto, sizeof(proto), auth, sizeof(auth), host, sizeof(host), &port, path, sizeof(path), url);
49 printf("%-60s => %-15s %-15s %-15s %5d %s\n", url, proto, auth, host, port, path);
50 }
51
main(void)52 int main(void)
53 {
54 printf("Testing ff_make_absolute_url:\n");
55 test(NULL, "baz");
56 test("/foo/bar", "baz");
57 test("/foo/bar", "../baz");
58 test("/foo/bar", "/baz");
59 test("/foo/bar", "../../../baz");
60 test("http://server/foo/", "baz");
61 test("http://server/foo/bar", "baz");
62 test("http://server/foo/", "../baz");
63 test("http://server/foo/bar/123", "../../baz");
64 test("http://server/foo/bar/123", "/baz");
65 test("http://server/foo/bar/123", "https://other/url");
66 test("http://server/foo/bar?param=value/with/slashes", "/baz");
67 test("http://server/foo/bar?param&otherparam", "?someparam");
68 test("http://server/foo/bar", "//other/url");
69 test("http://server/foo/bar", "../../../../../other/url");
70 test("http://server/foo/bar", "/../../../../../other/url");
71 test("http://server/foo/bar", "/test/../../../../../other/url");
72 test("http://server/foo/bar", "/test/../../test/../../../other/url");
73
74 printf("\nTesting av_url_split:\n");
75 test2("/foo/bar");
76 test2("http://server/foo/");
77 test2("http://example.com/foo/bar");
78 test2("http://user:pass@localhost:8080/foo/bar/123");
79 test2("http://server/foo/bar?param=value/with/slashes");
80 test2("https://1l-lh.a.net/i/1LIVE_HDS@179577/master.m3u8");
81 test2("ftp://u:p%2B%2F2@ftp.pbt.com/ExportHD.mpg");
82 test2("https://key.dns.com?key_id=2&model_id=12345&&access_key=");
83 test2("http://example.com#tag");
84
85 return 0;
86 }
87