1 /***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
13 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22 #include "curlcheck.h"
23
24 CURL *hnd;
25
unit_setup(void)26 static CURLcode unit_setup(void)
27 {
28 return CURLE_OK;
29 }
30
unit_stop(void)31 static void unit_stop(void)
32 {
33 if (hnd)
34 curl_easy_cleanup(hnd);
35 }
36
37 struct test {
38 const char *in;
39 int inlen;
40 const char *out;
41 int outlen;
42 };
43
44 UNITTEST_START
45 {
46 /* unescape, this => that */
47 const struct test list1[]={
48 {"%61", 3, "a", 1},
49 {"%61a", 4, "aa", 2},
50 {"%61b", 4, "ab", 2},
51 {"%6 1", 4, "%6 1", 4},
52 {"%61", 1, "%", 1},
53 {"%61", 2, "%6", 2},
54 {"%6%a", 4, "%6%a", 4},
55 {"%6a", 0, "j", 1},
56 {"%FF", 0, "\xff", 1},
57 {"%FF%00%ff", 9, "\xff\x00\xff", 3},
58 {"%-2", 0, "%-2", 3},
59 {"%FG", 0, "%FG", 3},
60 {NULL, 0, NULL, 0} /* end of list marker */
61 };
62 /* escape, this => that */
63 const struct test list2[]={
64 {"a", 1, "a", 1},
65 {"/", 1, "%2F", 3},
66 {"a=b", 3, "a%3Db", 5},
67 {"a=b", 0, "a%3Db", 5},
68 {"a=b", 1, "a", 1},
69 {"a=b", 2, "a%3D", 4},
70 {"1/./0", 5, "1%2F.%2F0", 9},
71 {"-._~!#%&", 0, "-._~%21%23%25%26", 16},
72 {"a", 2, "a%00", 4},
73 {"a\xff\x01g", 4, "a%FF%01g", 8},
74 {NULL, 0, NULL, 0} /* end of list marker */
75 };
76 int i;
77
78 hnd = curl_easy_init();
79 abort_unless(hnd != NULL, "returned NULL!");
80 for(i=0; list1[i].in; i++) {
81 int outlen;
82 char *out = curl_easy_unescape(hnd,
83 list1[i].in, list1[i].inlen,
84 &outlen);
85
86 abort_unless(out != NULL, "returned NULL!");
87 fail_unless(outlen == list1[i].outlen, "wrong output length returned");
88 fail_unless(!memcmp(out, list1[i].out, list1[i].outlen),
89 "bad output data returned");
90
91 printf("curl_easy_unescape test %d DONE\n", i);
92
93 curl_free(out);
94 }
95
96 for(i=0; list2[i].in; i++) {
97 int outlen;
98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
99 abort_unless(out != NULL, "returned NULL!");
100
101 outlen = (int)strlen(out);
102 fail_unless(outlen == list2[i].outlen, "wrong output length returned");
103 fail_unless(!memcmp(out, list2[i].out, list2[i].outlen),
104 "bad output data returned");
105
106 printf("curl_easy_escape test %d DONE (%s)\n", i, out);
107
108 curl_free(out);
109 }
110 }
111 UNITTEST_STOP
112