]> git.sesse.net Git - vlc/blob - src/test/url.c
Use RFC4648 test vectors
[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 #include <vlc/vlc.h>
23 #include "vlc_url.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 typedef char * (*conv_t) (const char *);
29
30 static void test (conv_t f, const char *in, const char *out)
31 {
32     char *res;
33
34     printf ("\"%s\" -> \"%s\" ?\n", in, out);
35     res = f (in);
36     if (res == NULL)
37         exit (1);
38
39     if (strcmp (res, out))
40     {
41         printf (" ERROR: got \"%s\"\n", res);
42         exit (2);
43     }
44
45     free (res);
46 }
47
48 static inline void test_decode (const char *in, const char *out)
49 {
50     test (decode_URI_duplicate, in, out);
51 }
52
53 static inline void test_b64 (const char *in, const char *out)
54 {
55     test (vlc_b64_encode, in, out);
56 }
57
58 int main (void)
59 {
60     (void)setvbuf (stdout, NULL, _IONBF, 0);
61     test_decode ("this_should_not_be_modified_1234",
62                  "this_should_not_be_modified_1234");
63
64     test_decode ("This+should+be+modified+1234!",
65                  "This should be modified 1234!");
66
67     test_decode ("This%20should%20be%20modified%201234!",
68                  "This should be modified 1234!");
69
70     test_decode ("%7E", "~");
71
72     /* tests with invalid input */
73     test_decode ("%", "%");
74     test_decode ("%2", "%2");
75     test_decode ("%0000", "");
76
77     /* UTF-8 tests */
78     test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac", "Télévision €");
79     test_decode ("T%E9l%E9vision", "T?l?vision");
80     test_decode ("%C1%94%C3%a9l%c3%A9vision", "??élévision"); /* overlong */
81
82     /* Base 64 tests */
83     test_b64 ("", "");
84     test_b64 ("f", "Zg==");
85     test_b64 ("fo", "Zm8=");
86     test_b64 ("foo", "Zm9v");
87     test_b64 ("foob", "Zm9vYg==");
88     test_b64 ("fooba", "Zm9vYmE=");
89     test_b64 ("foobar", "Zm9vYmFy");
90
91     return 0;
92 }