Makes building tests noticeably faster. Apply changes/fixes/workarounds to make Unity work: - rename test variables to avoid collisions or shadowing each other when combined into single units. - add workaround to avoid applying `lib/memdebug.h` overrides to system headers declaring/defining `getaddrinfo()`/`freeaddrinfo()` for `tests/server/resolve.c`. This replaces a previous workaround that worked for that specific source. - rename test macro `CTRL` clashing with Cygwin `sys/ioctl.h`. - add include guard to `test.h`. Also: - exclude `tests/http/clients` which are all single-source. (like `docs/examples`.) Build time improvements for tests: - AppVeyor CI: - MSVC 2008, 2010: 1 minute faster (4m8s -> 2m56s, 3m19s -> 2m24s) - MSVC 2022 arm64: 3.5 minutes faster (10m18s -> 6m48s) before: https://ci.appveyor.com/project/curlorg/curl/builds/50522785 after: https://ci.appveyor.com/project/curlorg/curl/builds/50522942 - GHA: - Cygwin: 1.5 minutes faster (3m13s -> 1m43s) before: https://github.com/curl/curl/actions/runs/10681535327/job/29605384398 after: https://github.com/curl/curl/actions/runs/10680818726/job/29603130637 - Windows: before: https://github.com/curl/curl/actions/runs/10680818713 after: https://github.com/curl/curl/actions/runs/10683850187 - MSYS2, mingw-w64: 1 minute faster - MSVC: 30 seconds faster (3m17s -> 2m48s) - macOS: double speed (39s -> 18s) before: https://github.com/curl/curl/actions/runs/10680818753/job/29603133447 after: https://github.com/curl/curl/actions/runs/10683850174/job/29612914515 - Linux: almost double speed (30/31s -> 18s) before: https://github.com/curl/curl/actions/runs/10681535311/job/29605387156 after: https://github.com/curl/curl/actions/runs/10680818721/job/29603133976 - non-native: no obvious effect. before: https://github.com/curl/curl/actions/runs/10680818722 after: https://github.com/curl/curl/actions/runs/10683850187 - Old Linux: Unity mode not supported by old CMake, no effect. Closes #14765
143 lines
4.4 KiB
C
143 lines
4.4 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
|
|
*
|
|
***************************************************************************/
|
|
#define CURL_NO_FMT_CHECKS
|
|
|
|
#include "curlcheck.h"
|
|
|
|
#include "urldata.h"
|
|
#include "sendf.h"
|
|
|
|
/*
|
|
* This test hardcodes the knowledge of the buffer size which is internal to
|
|
* Curl_infof(). If that buffer is changed in size, this tests needs to be
|
|
* updated to still be valid.
|
|
*/
|
|
|
|
static struct Curl_easy *data;
|
|
|
|
static char input[4096];
|
|
static char output[4096];
|
|
|
|
int debugf_cb(CURL *handle, curl_infotype type, char *buf, size_t size,
|
|
void *userptr);
|
|
|
|
/*
|
|
* This debugf callback is simply dumping the string into the static buffer
|
|
* for the unit test to inspect. Since we know that we're only dealing with
|
|
* text we can afford the luxury of skipping the type check here.
|
|
*/
|
|
int
|
|
debugf_cb(CURL *handle, curl_infotype type, char *buf, size_t size,
|
|
void *userptr)
|
|
{
|
|
(void)handle;
|
|
(void)type;
|
|
(void)userptr;
|
|
|
|
memset(output, '\0', sizeof(output));
|
|
memcpy(output, buf, size);
|
|
return 0;
|
|
}
|
|
|
|
static CURLcode
|
|
unit_setup(void)
|
|
{
|
|
CURLcode res = CURLE_OK;
|
|
|
|
global_init(CURL_GLOBAL_ALL);
|
|
data = curl_easy_init();
|
|
if(!data) {
|
|
curl_global_cleanup();
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
curl_easy_setopt(data, CURLOPT_DEBUGFUNCTION, debugf_cb);
|
|
curl_easy_setopt(data, CURLOPT_VERBOSE, 1L);
|
|
return res;
|
|
}
|
|
|
|
static void
|
|
unit_stop(void)
|
|
{
|
|
curl_easy_cleanup(data);
|
|
curl_global_cleanup();
|
|
}
|
|
|
|
static int verify(const char *info, const char *two)
|
|
{
|
|
/* the 'info' one has a newline appended */
|
|
char *nl = strchr(info, '\n');
|
|
if(!nl)
|
|
return 1; /* nope */
|
|
return strncmp(info, two, nl - info);
|
|
}
|
|
|
|
UNITTEST_START
|
|
|
|
/* Injecting a simple short string via a format */
|
|
msnprintf(input, sizeof(input), "Simple Test");
|
|
Curl_infof(data, "%s", input);
|
|
fail_unless(verify(output, input) == 0, "Simple string test");
|
|
|
|
/* Injecting a few different variables with a format */
|
|
Curl_infof(data, "%s %u testing %lu", input, 42, 43L);
|
|
fail_unless(verify(output, "Simple Test 42 testing 43\n") == 0,
|
|
"Format string");
|
|
|
|
/* Variations of empty strings */
|
|
Curl_infof(data, "");
|
|
fail_unless(strlen(output) == 1, "Empty string");
|
|
Curl_infof(data, "%s", (char *)NULL);
|
|
fail_unless(verify(output, "(nil)") == 0, "Passing NULL as string");
|
|
|
|
/* A string just long enough to not be truncated */
|
|
memset(input, '\0', sizeof(input));
|
|
memset(input, 'A', 2047);
|
|
Curl_infof(data, "%s", input);
|
|
fail_unless(strlen(output) == 2048, "No truncation of infof input");
|
|
fail_unless(verify(output, input) == 0, "No truncation of infof input");
|
|
fail_unless(output[sizeof(output) - 1] == '\0',
|
|
"No truncation of infof input");
|
|
|
|
/* Just over the limit without newline for truncation via '...' */
|
|
memset(input + 2047, 'A', 4);
|
|
Curl_infof(data, "%s", input);
|
|
fail_unless(strlen(output) == 2051, "Truncation of infof input 1");
|
|
fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 1");
|
|
|
|
/* Just over the limit with newline for truncation via '...' */
|
|
memset(input + 2047, 'A', 4);
|
|
memset(input + 2047 + 4, '\n', 1);
|
|
Curl_infof(data, "%s", input);
|
|
fail_unless(strlen(output) == 2051, "Truncation of infof input 2");
|
|
fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 2");
|
|
|
|
/* Way over the limit for truncation via '...' */
|
|
memset(input, '\0', sizeof(input));
|
|
memset(input, 'A', sizeof(input) - 1);
|
|
Curl_infof(data, "%s", input);
|
|
fail_unless(strlen(output) == 2051, "Truncation of infof input 3");
|
|
fail_unless(output[sizeof(output) - 1] == '\0', "Truncation of infof input 3");
|
|
|
|
UNITTEST_STOP
|