curl/tests/tunit/tool1720.c
Viktor Szakats 13b6a6036c
tool_dirhie: fix to create drive-relative directory
Fix to create the top directory `foo` when specified as
`X:foo\bar\filename`, on Windows and MS-DOS. Add test to verify.

Caught by Codex Security

Follow-up to 787ee935ac #16566

Closes #21449
2026-04-27 12:09:09 +02:00

79 lines
2.2 KiB
C

/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
* SPDX-License-Identifier: curl
*
***************************************************************************/
#include "unitcheck.h"
#include "tool_dirhie.h"
static CURLcode test_tool1720(const char *arg)
{
UNITTEST_BEGIN_SIMPLE
static const char *check[] = {
"",
"(null)",
"filename",
"(null)",
"foo/bar/",
"foo|foo/bar|",
"foo/bar/filename",
"foo|foo/bar|",
"/foo/bar/filename",
"/foo|/foo/bar|",
#if defined(_WIN32) || defined(MSDOS)
"C:/foo/bar/filename",
"C:/foo|C:/foo/bar|",
"C:foo/bar/filename",
"C:foo|C:foo/bar|",
"foo\\bar\\filename",
"foo|foo\\bar|",
"\\foo\\bar\\filename",
"\\foo|\\foo\\bar|",
"C:\\foo\\bar\\filename",
"C:\\foo|C:\\foo\\bar|",
"C:foo\\bar\\filename",
"C:foo|C:foo\\bar|",
#endif
};
size_t i;
struct dynbuf *res = create_dir_hierarchy_trace_dynres();
curlx_dyn_init(res, 256);
for(i = 0; i < CURL_ARRAYSIZE(check); i += 2) {
const char *actual;
curlx_dyn_reset(res);
create_dir_hierarchy(check[i]);
actual = curlx_dyn_ptr(res);
if(!actual)
actual = "(null)";
if(strcmp(check[i + 1], actual)) {
curl_mprintf("Expected '%s' got '%s'\n", check[i + 1], actual);
unitfail++;
}
}
curlx_dyn_free(res);
UNITTEST_END_SIMPLE
}