]> git.sesse.net Git - vlc/blob - src/test/url.c
Don't include config.h from the headers - refs #297.
[vlc] / src / test / url.c
1 /*****************************************************************************
2  * url.c: Test for url encoding/decoding stuff
3  *****************************************************************************
4  * Copyright (C) 2006 Rémi Denis-Courmont
5  * $Id$
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #include <vlc/vlc.h>
27 #include "vlc_url.h"
28 #include "vlc_strings.h"
29
30 #include <stdio.h>
31 #include <stdlib.h>
32
33 typedef char * (*conv_t) (const char *);
34
35 static void test (conv_t f, const char *in, const char *out)
36 {
37     char *res;
38
39     printf ("\"%s\" -> \"%s\" ?\n", in, out);
40     res = f (in);
41     if (res == NULL)
42         exit (1);
43
44     if (strcmp (res, out))
45     {
46         printf (" ERROR: got \"%s\"\n", res);
47         exit (2);
48     }
49
50     free (res);
51 }
52
53 static inline void test_decode (const char *in, const char *out)
54 {
55     test (decode_URI_duplicate, in, out);
56 }
57
58 static inline void test_b64 (const char *in, const char *out)
59 {
60     test (vlc_b64_encode, in, out);
61 }
62
63 int main (void)
64 {
65     (void)setvbuf (stdout, NULL, _IONBF, 0);
66     test_decode ("this_should_not_be_modified_1234",
67                  "this_should_not_be_modified_1234");
68
69     test_decode ("This+should+be+modified+1234!",
70                  "This should be modified 1234!");
71
72     test_decode ("This%20should%20be%20modified%201234!",
73                  "This should be modified 1234!");
74
75     test_decode ("%7E", "~");
76
77     /* tests with invalid input */
78     test_decode ("%", "%");
79     test_decode ("%2", "%2");
80     test_decode ("%0000", "");
81
82     /* UTF-8 tests */
83     test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac", "Télévision €");
84     test_decode ("T%E9l%E9vision", "T?l?vision");
85     test_decode ("%C1%94%C3%a9l%c3%A9vision", "??élévision"); /* overlong */
86
87     /* Base 64 tests */
88     test_b64 ("", "");
89     test_b64 ("f", "Zg==");
90     test_b64 ("fo", "Zm8=");
91     test_b64 ("foo", "Zm9v");
92     test_b64 ("foob", "Zm9vYg==");
93     test_b64 ("fooba", "Zm9vYmE=");
94     test_b64 ("foobar", "Zm9vYmFy");
95
96     return 0;
97 }