]> git.sesse.net Git - vlc/blob - src/test/url.c
Lalala
[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 void test_decode (const char *in, const char *out)
29 {
30     char *res;
31
32     printf ("\"%s\" -> \"%s\" ?\n", in, out);
33     res = decode_URI_duplicate (in);
34     if (res == NULL)
35         exit (1);
36
37     if (strcmp (res, out))
38         exit (2);
39
40     free (res);
41 }
42
43 int main (void)
44 {
45     (void)setvbuf (stdout, NULL, _IONBF, 0);
46     test_decode ("this_should_not_be_modified_1234",
47                  "this_should_not_be_modified_1234");
48
49     test_decode ("This+should+be+modified+1234!",
50                  "This should be modified 1234!");
51
52     test_decode ("This%20should%20be%20modified%201234!",
53                  "This should be modified 1234!");
54
55     test_decode ("%7E", "~");
56
57     /* tests with invalid input */
58     test_decode ("%", "%");
59     test_decode ("%2", "%2");
60     test_decode ("%0000", "");
61
62     /* UTF-8 tests */
63     test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac", "Télévision €");
64     test_decode ("T%E9l%E9vision", "T?l?vision");
65     test_decode ("%C1%94%C3%a9l%c3%A9vision", "??élévision"); /* overlong */
66
67     return 0;
68 }