]> git.sesse.net Git - ffmpeg/blob - libavformat/tests/url.c
2eb597bb5efd42af2fe7ff87418ddbf389e58a4b
[ffmpeg] / libavformat / tests / url.c
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
24 static void test_decompose(const char *url)
25 {
26     URLComponents uc;
27     int len, ret;
28
29     printf("%s =>\n", url);
30     ret = ff_url_decompose(&uc, url, NULL);
31     if (ret < 0) {
32         printf("  error: %s\n", av_err2str(ret));
33         return;
34     }
35 #define PRINT_COMPONENT(comp) \
36     len = uc.url_component_end_##comp - uc.comp; \
37     if (len) printf("  "#comp": %.*s\n", len, uc.comp);
38     PRINT_COMPONENT(scheme);
39     PRINT_COMPONENT(authority);
40     PRINT_COMPONENT(userinfo);
41     PRINT_COMPONENT(host);
42     PRINT_COMPONENT(port);
43     PRINT_COMPONENT(path);
44     PRINT_COMPONENT(query);
45     PRINT_COMPONENT(fragment);
46     printf("\n");
47 }
48
49 static void test(const char *base, const char *rel)
50 {
51     char buf[200], buf2[200];
52     int ret;
53
54     ret = ff_make_absolute_url(buf, sizeof(buf), base, rel);
55     if (ret < 0) {
56         printf("%50s %-20s => error %s\n", base, rel, av_err2str(ret));
57         return;
58     }
59     printf("%50s %-20s => %s\n", base, rel, buf);
60     if (base) {
61         /* Test in-buffer replacement */
62         snprintf(buf2, sizeof(buf2), "%s", base);
63         ff_make_absolute_url(buf2, sizeof(buf2), buf2, rel);
64         if (strcmp(buf, buf2)) {
65             printf("In-place handling of %s + %s failed\n", base, rel);
66             exit(1);
67         }
68     }
69 }
70
71 static void test2(const char *url)
72 {
73     char proto[64];
74     char auth[256];
75     char host[256];
76     char path[256];
77     int port=-1;
78
79     av_url_split(proto, sizeof(proto), auth, sizeof(auth), host, sizeof(host), &port, path, sizeof(path), url);
80     printf("%-60s => %-15s %-15s %-15s %5d %s\n", url, proto, auth, host, port, path);
81 }
82
83 int main(void)
84 {
85     printf("Testing ff_url_decompose:\n\n");
86     test_decompose("http://user:pass@ffmpeg:8080/dir/file?query#fragment");
87     test_decompose("http://ffmpeg/dir/file");
88     test_decompose("file:///dev/null");
89     test_decompose("file:/dev/null");
90     test_decompose("http://[::1]/dev/null");
91     test_decompose("http://[::1]:8080/dev/null");
92     test_decompose("//ffmpeg/dev/null");
93     test_decompose("test?url=http://server/path");
94     test_decompose("dummy.mp4#t=0:02:00,121.5");
95
96     printf("Testing ff_make_absolute_url:\n");
97     test(NULL, "baz");
98     test("/foo/bar", "baz");
99     test("/foo/bar", "../baz");
100     test("/foo/bar", "/baz");
101     test("/foo/bar", "../../../baz");
102     test("http://server/foo/", "baz");
103     test("http://server/foo/bar", "baz");
104     test("http://server/foo/", "../baz");
105     test("http://server/foo/bar/123", "../../baz");
106     test("http://server/foo/bar/123", "/baz");
107     test("http://server/foo/bar/123", "https://other/url");
108     test("http://server/foo/bar?param=value/with/slashes", "/baz");
109     test("http://server/foo/bar?param&otherparam", "?someparam");
110     test("http://server/foo/bar", "//other/url");
111     test("http://server/foo/bar", "../../../../../other/url");
112     test("http://server/foo/bar", "/../../../../../other/url");
113     test("http://server/foo/bar", "/test/../../../../../other/url");
114     test("http://server/foo/bar", "/test/../../test/../../../other/url");
115     test("http://server/foo/bar", "file:../baz/qux");
116     test("http://server/foo//bar/", "../../");
117     test("file:../tmp/foo", "../bar/");
118     test("file:../tmp/foo", "file:../bar/");
119     test("http://server/foo/bar", "./");
120     test("http://server/foo/bar", ".dotfile");
121     test("http://server/foo/bar", "..doubledotfile");
122     test("http://server/foo/bar", "double..dotfile");
123     test("http://server/foo/bar", "doubledotfile..");
124
125     /* From https://tools.ietf.org/html/rfc3986#section-5.4 */
126     test("http://a/b/c/d;p?q", "g:h");           // g:h
127     test("http://a/b/c/d;p?q", "g");             // http://a/b/c/g
128     test("http://a/b/c/d;p?q", "./g");           // http://a/b/c/g
129     test("http://a/b/c/d;p?q", "g/");            // http://a/b/c/g/
130     test("http://a/b/c/d;p?q", "/g");            // http://a/g
131     test("http://a/b/c/d;p?q", "//g");           // http://g
132     test("http://a/b/c/d;p?q", "?y");            // http://a/b/c/d;p?y
133     test("http://a/b/c/d;p?q", "g?y");           // http://a/b/c/g?y
134     test("http://a/b/c/d;p?q", "#s");            // http://a/b/c/d;p?q#s
135     test("http://a/b/c/d;p?q", "g#s");           // http://a/b/c/g#s
136     test("http://a/b/c/d;p?q", "g?y#s");         // http://a/b/c/g?y#s
137     test("http://a/b/c/d;p?q", ";x");            // http://a/b/c/;x
138     test("http://a/b/c/d;p?q", "g;x");           // http://a/b/c/g;x
139     test("http://a/b/c/d;p?q", "g;x?y#s");       // http://a/b/c/g;x?y#s
140     test("http://a/b/c/d;p?q", "");              // http://a/b/c/d;p?q
141     test("http://a/b/c/d;p?q", ".");             // http://a/b/c/
142     test("http://a/b/c/d;p?q", "./");            // http://a/b/c/
143     test("http://a/b/c/d;p?q", "..");            // http://a/b/
144     test("http://a/b/c/d;p?q", "../");           // http://a/b/
145     test("http://a/b/c/d;p?q", "../g");          // http://a/b/g
146     test("http://a/b/c/d;p?q", "../..");         // http://a/
147     test("http://a/b/c/d;p?q", "../../");        // http://a/
148     test("http://a/b/c/d;p?q", "../../g");       // http://a/g
149     test("http://a/b/c/d;p?q", "../../../g");    // http://a/g
150     test("http://a/b/c/d;p?q", "../../../../g"); // http://a/g
151     test("http://a/b/c/d;p?q", "/./g");          // http://a/g
152     test("http://a/b/c/d;p?q", "/../g");         // http://a/g
153     test("http://a/b/c/d;p?q", "g.");            // http://a/b/c/g.
154     test("http://a/b/c/d;p?q", ".g");            // http://a/b/c/.g
155     test("http://a/b/c/d;p?q", "g..");           // http://a/b/c/g..
156     test("http://a/b/c/d;p?q", "..g");           // http://a/b/c/..g
157     test("http://a/b/c/d;p?q", "./../g");        // http://a/b/g
158     test("http://a/b/c/d;p?q", "./g/.");         // http://a/b/c/g/
159     test("http://a/b/c/d;p?q", "g/./h");         // http://a/b/c/g/h
160     test("http://a/b/c/d;p?q", "g/../h");        // http://a/b/c/h
161     test("http://a/b/c/d;p?q", "g;x=1/./y");     // http://a/b/c/g;x=1/y
162     test("http://a/b/c/d;p?q", "g;x=1/../y");    // http://a/b/c/y
163     test("http://a/b/c/d;p?q", "g?y/./x");       // http://a/b/c/g?y/./x
164     test("http://a/b/c/d;p?q", "g?y/../x");      // http://a/b/c/g?y/../x
165     test("http://a/b/c/d;p?q", "g#s/./x");       // http://a/b/c/g#s/./x
166     test("http://a/b/c/d;p?q", "g#s/../x");      // http://a/b/c/g#s/../x
167
168     printf("\nTesting av_url_split:\n");
169     test2("/foo/bar");
170     test2("http://server/foo/");
171     test2("http://example.com/foo/bar");
172     test2("http://user:pass@localhost:8080/foo/bar/123");
173     test2("http://server/foo/bar?param=value/with/slashes");
174     test2("https://1l-lh.a.net/i/1LIVE_HDS@179577/master.m3u8");
175     test2("ftp://u:p%2B%2F2@ftp.pbt.com/ExportHD.mpg");
176     test2("https://key.dns.com?key_id=2&model_id=12345&&access_key=");
177     test2("http://example.com#tag");
178
179     return 0;
180 }