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