xref: /curl/tests/unit/unit2604.c (revision df2fbc27)
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 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 https://curl.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  * SPDX-License-Identifier: curl
22  *
23  ***************************************************************************/
24 #include "curlcheck.h"
25 #include "curl_path.h"
26 
unit_setup(void)27 static CURLcode unit_setup(void)
28 {
29   return CURLE_OK;
30 }
31 
unit_stop(void)32 static void unit_stop(void)
33 {
34 }
35 
36 
37 struct set {
38   const char *cp;
39   const char *expect; /* the returned content */
40   const char *next;   /* what cp points to after the call */
41   const char *home;
42   CURLcode result;
43 };
44 
45 UNITTEST_START
46 #ifdef USE_SSH
47 {
48 /* 60 a's */
49 #define SA60 "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
50 /* 540 a's */
51 #define SA540 SA60 SA60 SA60 SA60 SA60 SA60 SA60 SA60 SA60
52   int i;
53   size_t too_long = 90720;
54   struct set list[] = {
55     { "-too-long-", "", "", "", CURLE_TOO_LARGE},
56     { SA540 " c", SA540, "c", "/", CURLE_OK},
57     { "\" " SA540 "\" c", " " SA540, "c", "/", CURLE_OK},
58     { "a a", "a", "a", "/home/", CURLE_OK},
59     { "b a", "b", "a", "/", CURLE_OK},
60     { "a", "a", "", "/home/", CURLE_OK},
61     { "b", "b", "", "/", CURLE_OK},
62     { "\"foo bar\"\tb", "foo bar", "b", "/", CURLE_OK},
63     { "/~/hej", "/home/user/hej", "", "/home/user", CURLE_OK},
64     { "\"foo bar", "", "", "/", CURLE_QUOTE_ERROR},
65     { "\"foo\\\"bar\" a", "foo\"bar", "a", "/", CURLE_OK},
66     { "\"foo\\\'bar\" b", "foo\'bar", "b", "/", CURLE_OK},
67     { "\"foo\\\\bar\" c", "foo\\bar", "c", "/", CURLE_OK},
68     { "\"foo\\pbar\" c", "foo\\bar", "", "/", CURLE_QUOTE_ERROR},
69     { "\"\" c", "", "", "", CURLE_QUOTE_ERROR},
70     { "foo\"", "foo\"", "", "/", CURLE_OK},
71     { "foo \"", "foo", "\"", "/", CURLE_OK},
72     { NULL, NULL, NULL, NULL, CURLE_OK }
73   };
74 
75   list[0].cp = calloc(1, too_long + 1);
76   fail_unless(list[0].cp, "could not alloc too long value");
77   memset((void *)list[0].cp, 'a', too_long);
78 
79   for(i = 0; list[i].home; i++) {
80     char *path;
81     const char *cp = list[i].cp;
82     CURLcode result = Curl_get_pathname(&cp, &path, list[i].home);
83     printf("%u - Curl_get_pathname(\"%s\", ... \"%s\") == %u\n", i,
84            list[i].cp, list[i].home, list[i].result);
85     if(result != list[i].result) {
86       printf("... returned %d\n", result);
87       unitfail++;
88     }
89     if(!result) {
90       if(cp && strcmp(cp, list[i].next)) {
91         printf("... cp points to '%s', not '%s' as expected \n",
92                cp, list[i].next);
93         unitfail++;
94       }
95       if(path && strcmp(path, list[i].expect)) {
96         printf("... gave '%s', not '%s' as expected \n",
97                path, list[i].expect);
98         unitfail++;
99       }
100       curl_free(path);
101 
102     }
103   }
104 
105   free((void *)list[0].cp);
106 }
107 #endif
108 
109 UNITTEST_STOP
110