]> git.sesse.net Git - vlc/blob - src/test/url.c
Basic unit test for URI decoding
[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 #undef NDEBUG
26 #include <assert.h>
27
28 int main (void)
29 {
30     const char url1[] = "this_should_not_be_modified_1234";
31     const char url2[] = "This+should+be+modified+1234!";
32     const char url3[] = "This%20should%20be%20modified%201234!";
33
34     char *durl = decode_URI_duplicate (url1);
35     assert (durl != NULL);
36     assert (!strcmp (durl, url1));
37     free (durl);
38
39     durl = decode_URI_duplicate (url2);
40     assert (durl != NULL);
41     assert (!strcmp (durl, "This should be modified 1234!"));
42     free (durl);
43
44     durl = decode_URI_duplicate (url3);
45     assert (durl != NULL);
46     assert (!strcmp (durl, "This should be modified 1234!"));
47     free (durl);
48
49     return 0;
50 }