| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
#ifdef HAVE_CONFIG_H |
|---|
| 23 |
# include "config.h" |
|---|
| 24 |
#endif |
|---|
| 25 |
|
|---|
| 26 |
#include <vlc_common.h> |
|---|
| 27 |
#include "vlc_url.h" |
|---|
| 28 |
#include "vlc_strings.h" |
|---|
| 29 |
|
|---|
| 30 |
#include <stdio.h> |
|---|
| 31 |
#include <stdlib.h> |
|---|
| 32 |
|
|---|
| 33 |
typedef char * (*conv_t) (const char *); |
|---|
| 34 |
|
|---|
| 35 |
static void test (conv_t f, const char *in, const char *out) |
|---|
| 36 |
{ |
|---|
| 37 |
char *res; |
|---|
| 38 |
|
|---|
| 39 |
printf ("\"%s\" -> \"%s\" ?\n", in, out); |
|---|
| 40 |
res = f (in); |
|---|
| 41 |
if (res == NULL) |
|---|
| 42 |
exit (1); |
|---|
| 43 |
|
|---|
| 44 |
if (strcmp (res, out)) |
|---|
| 45 |
{ |
|---|
| 46 |
printf (" ERROR: got \"%s\"\n", res); |
|---|
| 47 |
exit (2); |
|---|
| 48 |
} |
|---|
| 49 |
|
|---|
| 50 |
free (res); |
|---|
| 51 |
} |
|---|
| 52 |
|
|---|
| 53 |
static inline void test_decode (const char *in, const char *out) |
|---|
| 54 |
{ |
|---|
| 55 |
test (decode_URI_duplicate, in, out); |
|---|
| 56 |
} |
|---|
| 57 |
|
|---|
| 58 |
static inline void test_b64 (const char *in, const char *out) |
|---|
| 59 |
{ |
|---|
| 60 |
test (vlc_b64_encode, in, out); |
|---|
| 61 |
} |
|---|
| 62 |
|
|---|
| 63 |
int main (void) |
|---|
| 64 |
{ |
|---|
| 65 |
(void)setvbuf (stdout, NULL, _IONBF, 0); |
|---|
| 66 |
test_decode ("this_should_not_be_modified_1234", |
|---|
| 67 |
"this_should_not_be_modified_1234"); |
|---|
| 68 |
|
|---|
| 69 |
test_decode ("This+should+be+modified+1234!", |
|---|
| 70 |
"This should be modified 1234!"); |
|---|
| 71 |
|
|---|
| 72 |
test_decode ("This%20should%20be%20modified%201234!", |
|---|
| 73 |
"This should be modified 1234!"); |
|---|
| 74 |
|
|---|
| 75 |
test_decode ("%7E", "~"); |
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
test_decode ("%", "%"); |
|---|
| 79 |
test_decode ("%2", "%2"); |
|---|
| 80 |
test_decode ("%0000", ""); |
|---|
| 81 |
|
|---|
| 82 |
|
|---|
| 83 |
test_decode ("T%C3%a9l%c3%A9vision+%e2%82%Ac", "Télévision €"); |
|---|
| 84 |
test_decode ("T%E9l%E9vision", "T?l?vision"); |
|---|
| 85 |
test_decode ("%C1%94%C3%a9l%c3%A9vision", "??élévision"); |
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
test_b64 ("", ""); |
|---|
| 89 |
test_b64 ("f", "Zg=="); |
|---|
| 90 |
test_b64 ("fo", "Zm8="); |
|---|
| 91 |
test_b64 ("foo", "Zm9v"); |
|---|
| 92 |
test_b64 ("foob", "Zm9vYg=="); |
|---|
| 93 |
test_b64 ("fooba", "Zm9vYmE="); |
|---|
| 94 |
test_b64 ("foobar", "Zm9vYmFy"); |
|---|
| 95 |
|
|---|
| 96 |
return 0; |
|---|
| 97 |
} |
|---|