]> git.sesse.net Git - vlc/blob - test/native/url.c
Some initial work for streaming profiles
[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: url.c 15178 2006-04-11 16:18:39Z courmisch $
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     (void)setvbuf (stdout, NULL, _IONBF, 0);
46     if( !test_decode ("this_should_not_be_modified_1234",
47                      "this_should_not_be_modified_1234") ) return NULL;
48
49     if( ! test_decode ("This+should+be+modified+1234!",
50                  "This should be modified 1234!") ) return NULL;;
51
52     if( !test_decode ("This%20should%20be%20modified%201234!",
53                  "This should be modified 1234!")) return NULL;;
54
55     if( ! test_decode ("%7E", "~")) return NULL;;
56
57     /* tests with invalid input */
58     if(!test_decode ("%", "%")) return NULL;;
59     if(!test_decode ("%2", "%2")) return NULL;;
60     if(!test_decode ("%0000", "")) return NULL;;
61
62     /* UTF-8 tests */
63     if(!test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac",
64                       "Télévision €" ) ) return NULL;
65     if(!test_decode ("T%E9l%E9vision", "T?l?vision")) return NULL;
66     if(!test_decode ("%C1%94%C3%a9l%c3%A9vision",
67                          "??élévision") ) return NULL; /* overlong */
68
69     Py_INCREF( Py_None);
70     return Py_None;
71 }