797443dec899b0f4787b4713501de95c4838ec9a
[platform/upstream/curl.git] / tests / unit / unit1396.c
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 static CURLcode unit_setup(void)
25 {
26   return CURLE_OK;
27 }
28
29 static void unit_stop(void)
30 {
31 }
32
33 struct test {
34   const char *in;
35   int inlen;
36   const char *out;
37   int outlen;
38 };
39
40 UNITTEST_START
41 {
42   /* unescape, this => that */
43   struct test list1[]={
44     {"%61", 3, "a", 1},
45     {"%61a", 4, "aa", 2},
46     {"%61b", 4, "ab", 2},
47     {"%6 1", 4, "%6 1", 4},
48     {"%61", 1, "%", 1},
49     {"%61", 2, "%6", 2},
50     {"%6%a", 4, "%6%a", 4},
51     {"%6a", 0, "j", 1},
52     {"%FF", 0, "\xff", 1},
53     {"%FF%00%ff", 9, "\xff\x00\xff", 3},
54     {"%-2", 0, "%-2", 3},
55     {"%FG", 0, "%FG", 3},
56     {NULL, 0, NULL, 0} /* end of list marker */
57   };
58   /* escape, this => that */
59   struct test list2[]={
60     {"a", 1, "a", 1},
61     {"/", 1, "%2F", 3},
62     {"a=b", 3, "a%3Db", 5},
63     {"a=b", 0, "a%3Db", 5},
64     {"a=b", 1, "a", 1},
65     {"a=b", 2, "a%3D", 4},
66     {"1/./0", 5, "1%2F.%2F0", 9},
67     {"-._~!#%&", 0, "-._~%21%23%25%26", 16},
68     {"a", 2, "a%00", 4},
69     {"a\xff\x01g", 4, "a%FF%01g", 8},
70     {NULL, 0, NULL, 0} /* end of list marker */
71   };
72   int i;
73   CURL *hnd;
74
75   hnd = curl_easy_init();
76   for(i=0; list1[i].in; i++) {
77     int outlen;
78     char *out = curl_easy_unescape(hnd,
79                                    list1[i].in, list1[i].inlen,
80                                    &outlen);
81
82     fail_unless(out != NULL, "returned NULL!");
83     fail_unless(outlen == list1[i].outlen, "wrong output length returned");
84     fail_unless(!memcmp(out, list1[i].out, list1[i].outlen),
85                 "bad output data returned");
86
87     printf("curl_easy_unescape test %d DONE\n", i);
88
89     curl_free(out);
90   }
91
92   for(i=0; list2[i].in; i++) {
93     char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
94     int outlen = (int)strlen(out);
95
96     fail_unless(out != NULL, "returned NULL!");
97     fail_unless(outlen == list2[i].outlen, "wrong output length returned");
98     fail_unless(!memcmp(out, list2[i].out, list2[i].outlen),
99                 "bad output data returned");
100
101     printf("curl_easy_escape test %d DONE (%s)\n", i, out);
102
103     curl_free(out);
104   }
105
106   curl_easy_cleanup(hnd);
107
108 }
109 UNITTEST_STOP