]> git.sesse.net Git - vlc/blob - test/native/url.c
* Tests for previous commit
[vlc] / test / native / 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 "../pyunit.h"
23 #include <vlc/vlc.h>
24 #include "vlc_url.h"
25
26 PyObject * test_decode (const char *in, const char *out)
27 {
28     char *res;
29
30     printf ("\"%s\" -> \"%s\" ?\n", in, out);
31     res = decode_URI_duplicate (in);
32     ASSERT( res != NULL, "" );
33     if (res == NULL)
34         exit (1);
35
36     ASSERT( strcmp( res, out ) == NULL, "" );
37
38     Py_INCREF( Py_None );
39     return Py_None;
40 }
41
42 PyObject *url_decode_test( PyObject *self, PyObject *args )
43 {
44     printf( "\n" );
45     if( !test_decode ("this_should_not_be_modified_1234",
46                      "this_should_not_be_modified_1234") ) return NULL;
47
48     if( ! test_decode ("This+should+be+modified+1234!",
49                  "This should be modified 1234!") ) return NULL;;
50
51     if( !test_decode ("This%20should%20be%20modified%201234!",
52                  "This should be modified 1234!")) return NULL;;
53
54     if( ! test_decode ("%7E", "~")) return NULL;;
55
56     /* tests with invalid input */
57     if(!test_decode ("%", "%")) return NULL;;
58     if(!test_decode ("%2", "%2")) return NULL;;
59     if(!test_decode ("%0000", "")) return NULL;;
60
61     /* UTF-8 tests */
62     if(!test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac",
63                       "Télévision €" ) ) return NULL;
64     if(!test_decode ("T%E9l%E9vision", "T?l?vision")) return NULL;
65     if(!test_decode ("%C1%94%C3%a9l%c3%A9vision",
66                          "??élévision") ) return NULL; /* overlong */
67
68     Py_INCREF( Py_None);
69     return Py_None;
70 }