]> git.sesse.net Git - ffmpeg/blob - libavformat/tests/url.c
avformat/tests/url: add av_url_split tests
[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(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
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
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("http://server/foo/", "baz");
60     test("http://server/foo/bar", "baz");
61     test("http://server/foo/", "../baz");
62     test("http://server/foo/bar/123", "../../baz");
63     test("http://server/foo/bar/123", "/baz");
64     test("http://server/foo/bar/123", "https://other/url");
65     test("http://server/foo/bar?param=value/with/slashes", "/baz");
66     test("http://server/foo/bar?param&otherparam", "?someparam");
67     test("http://server/foo/bar", "//other/url");
68
69     printf("\nTesting av_url_split:\n");
70     test2("/foo/bar");
71     test2("http://server/foo/");
72     test2("http://example.com/foo/bar");
73     test2("http://user:pass@localhost:8080/foo/bar/123");
74     test2("http://server/foo/bar?param=value/with/slashes");
75     test2("https://1l-lh.a.net/i/1LIVE_HDS@179577/master.m3u8");
76     test2("ftp://u:p%2B%2F2@ftp.pbt.com/ExportHD.mpg");
77     test2("https://key.dns.com?key_id=2&model_id=12345&&access_key=");
78
79     return 0;
80 }