xref: /aosp_15_r20/external/curl/tests/unit/unit1605.c (revision 6236dae45794135f37c4eb022389c904c8b0090d)
1*6236dae4SAndroid Build Coastguard Worker /***************************************************************************
2*6236dae4SAndroid Build Coastguard Worker  *                                  _   _ ____  _
3*6236dae4SAndroid Build Coastguard Worker  *  Project                     ___| | | |  _ \| |
4*6236dae4SAndroid Build Coastguard Worker  *                             / __| | | | |_) | |
5*6236dae4SAndroid Build Coastguard Worker  *                            | (__| |_| |  _ <| |___
6*6236dae4SAndroid Build Coastguard Worker  *                             \___|\___/|_| \_\_____|
7*6236dae4SAndroid Build Coastguard Worker  *
8*6236dae4SAndroid Build Coastguard Worker  * Copyright (C) Daniel Stenberg, <[email protected]>, et al.
9*6236dae4SAndroid Build Coastguard Worker  *
10*6236dae4SAndroid Build Coastguard Worker  * This software is licensed as described in the file COPYING, which
11*6236dae4SAndroid Build Coastguard Worker  * you should have received as part of this distribution. The terms
12*6236dae4SAndroid Build Coastguard Worker  * are also available at https://curl.se/docs/copyright.html.
13*6236dae4SAndroid Build Coastguard Worker  *
14*6236dae4SAndroid Build Coastguard Worker  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15*6236dae4SAndroid Build Coastguard Worker  * copies of the Software, and permit persons to whom the Software is
16*6236dae4SAndroid Build Coastguard Worker  * furnished to do so, under the terms of the COPYING file.
17*6236dae4SAndroid Build Coastguard Worker  *
18*6236dae4SAndroid Build Coastguard Worker  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19*6236dae4SAndroid Build Coastguard Worker  * KIND, either express or implied.
20*6236dae4SAndroid Build Coastguard Worker  *
21*6236dae4SAndroid Build Coastguard Worker  * SPDX-License-Identifier: curl
22*6236dae4SAndroid Build Coastguard Worker  *
23*6236dae4SAndroid Build Coastguard Worker  ***************************************************************************/
24*6236dae4SAndroid Build Coastguard Worker #include "curlcheck.h"
25*6236dae4SAndroid Build Coastguard Worker 
26*6236dae4SAndroid Build Coastguard Worker #include "llist.h"
27*6236dae4SAndroid Build Coastguard Worker 
28*6236dae4SAndroid Build Coastguard Worker static CURL *easy;
29*6236dae4SAndroid Build Coastguard Worker 
unit_setup(void)30*6236dae4SAndroid Build Coastguard Worker static CURLcode unit_setup(void)
31*6236dae4SAndroid Build Coastguard Worker {
32*6236dae4SAndroid Build Coastguard Worker   CURLcode res = CURLE_OK;
33*6236dae4SAndroid Build Coastguard Worker 
34*6236dae4SAndroid Build Coastguard Worker   global_init(CURL_GLOBAL_ALL);
35*6236dae4SAndroid Build Coastguard Worker   easy = curl_easy_init();
36*6236dae4SAndroid Build Coastguard Worker   if(!easy) {
37*6236dae4SAndroid Build Coastguard Worker     curl_global_cleanup();
38*6236dae4SAndroid Build Coastguard Worker     return CURLE_OUT_OF_MEMORY;
39*6236dae4SAndroid Build Coastguard Worker   }
40*6236dae4SAndroid Build Coastguard Worker   return res;
41*6236dae4SAndroid Build Coastguard Worker }
42*6236dae4SAndroid Build Coastguard Worker 
unit_stop(void)43*6236dae4SAndroid Build Coastguard Worker static void unit_stop(void)
44*6236dae4SAndroid Build Coastguard Worker {
45*6236dae4SAndroid Build Coastguard Worker   curl_easy_cleanup(easy);
46*6236dae4SAndroid Build Coastguard Worker   curl_global_cleanup();
47*6236dae4SAndroid Build Coastguard Worker }
48*6236dae4SAndroid Build Coastguard Worker 
49*6236dae4SAndroid Build Coastguard Worker UNITTEST_START
50*6236dae4SAndroid Build Coastguard Worker   int len;
51*6236dae4SAndroid Build Coastguard Worker   char *esc;
52*6236dae4SAndroid Build Coastguard Worker 
53*6236dae4SAndroid Build Coastguard Worker   esc = curl_easy_escape(easy, "", -1);
54*6236dae4SAndroid Build Coastguard Worker   fail_unless(esc == NULL, "negative string length can't work");
55*6236dae4SAndroid Build Coastguard Worker 
56*6236dae4SAndroid Build Coastguard Worker   esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);
57*6236dae4SAndroid Build Coastguard Worker   fail_unless(esc == NULL, "negative string length can't work");
58*6236dae4SAndroid Build Coastguard Worker 
59*6236dae4SAndroid Build Coastguard Worker UNITTEST_STOP
60