xref: /curl/tests/unit/unit2604.c (revision 25cbc2f7)
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   int error = 0;
54   size_t too_long = 90720;
55   struct set list[] = {
56     { "-too-long-", "", "", "", CURLE_TOO_LARGE},
57     { SA540 " c", SA540, "c", "/", CURLE_OK},
58     { "\" " SA540 "\" c", " " SA540, "c", "/", CURLE_OK},
59     { "a a", "a", "a", "/home/", CURLE_OK},
60     { "b a", "b", "a", "/", CURLE_OK},
61     { "a", "a", "", "/home/", CURLE_OK},
62     { "b", "b", "", "/", CURLE_OK},
63     { "\"foo bar\"\tb", "foo bar", "b", "/", CURLE_OK},
64     { "/~/hej", "/home/user/hej", "", "/home/user", CURLE_OK},
65     { "\"foo bar", "", "", "/", CURLE_QUOTE_ERROR},
66     { "\"foo\\\"bar\" a", "foo\"bar", "a", "/", CURLE_OK},
67     { "\"foo\\\'bar\" b", "foo\'bar", "b", "/", CURLE_OK},
68     { "\"foo\\\\bar\" c", "foo\\bar", "c", "/", CURLE_OK},
69     { "\"foo\\pbar\" c", "foo\\bar", "", "/", CURLE_QUOTE_ERROR},
70     { "\"\" c", "", "", "", CURLE_QUOTE_ERROR},
71     { "foo\"", "foo\"", "", "/", CURLE_OK},
72     { "foo \"", "foo", "\"", "/", CURLE_OK},
73     { NULL, NULL, NULL, NULL, CURLE_OK }
74   };
75 
76   list[0].cp = calloc(1, too_long + 1);
77   fail_unless(list[0].cp, "could not alloc too long value");
78   memset((void *)list[0].cp, 'a', too_long);
79 
80   for(i = 0; list[i].home; i++) {
81     char *path;
82     const char *cp = list[i].cp;
83     CURLcode result = Curl_get_pathname(&cp, &path, list[i].home);
84     printf("%u - Curl_get_pathname(\"%s\", ... \"%s\") == %u\n", i,
85            list[i].cp, list[i].home, list[i].result);
86     if(result != list[i].result) {
87       printf("... returned %d\n", result);
88       error++;
89     }
90     if(!result) {
91       if(cp && strcmp(cp, list[i].next)) {
92         printf("... cp points to '%s', not '%s' as expected \n",
93                cp, list[i].next);
94         error++;
95       }
96       if(path && strcmp(path, list[i].expect)) {
97         printf("... gave '%s', not '%s' as expected \n",
98                path, list[i].expect);
99         error++;
100       }
101       curl_free(path);
102 
103     }
104   }
105 
106   free((void *)list[0].cp);
107   return error == 0 ? CURLE_OK : TEST_ERR_FAILURE;
108 }
109 #endif
110 
111 UNITTEST_STOP
112