mirror of
https://github.com/curl/curl.git
synced 2026-07-30 13:48:06 +03:00
units: tidy up begin/end blocks
- use `UNITTEST_BEGIN_SIMPLE`/`UNITTEST_END_SIMPLE` where missing. - drop redundant `(void)arg;` where using `UNITTEST_BEGIN*`. - unit1636: drop redundant block after `UNITTEST_BEGIN*`. - unit1609: fix typo in comment. - unit1627: merge to `if`s. Closes #21715
This commit is contained in:
parent
a076f821e1
commit
bb5500a752
8 changed files with 56 additions and 61 deletions
|
|
@ -97,7 +97,7 @@ static CURLcode test_unit1609(const char *arg)
|
||||||
struct curl_slist *list = NULL;
|
struct curl_slist *list = NULL;
|
||||||
|
|
||||||
/* important: we setup cache outside of the loop
|
/* important: we setup cache outside of the loop
|
||||||
and also clean cache after the loop. In contrast,for example,
|
and also clean cache after the loop. In contrast, for example,
|
||||||
test 1607 sets up and cleans cache on each iteration. */
|
test 1607 sets up and cleans cache on each iteration. */
|
||||||
|
|
||||||
for(i = 0; i < CURL_ARRAYSIZE(tests); ++i) {
|
for(i = 0; i < CURL_ARRAYSIZE(tests); ++i) {
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,8 @@ struct check1625 {
|
||||||
|
|
||||||
static CURLcode test_unit1625(const char *arg)
|
static CURLcode test_unit1625(const char *arg)
|
||||||
{
|
{
|
||||||
|
UNITTEST_BEGIN_SIMPLE
|
||||||
|
|
||||||
size_t i;
|
size_t i;
|
||||||
static const struct check1625 list[] = {
|
static const struct check1625 list[] = {
|
||||||
/* basic case */
|
/* basic case */
|
||||||
|
|
@ -101,7 +103,6 @@ static CURLcode test_unit1625(const char *arg)
|
||||||
/* hyphenated second token */
|
/* hyphenated second token */
|
||||||
{ "Encoding: extra-good, super-nice", "Encoding:", "super-nice", TRUE },
|
{ "Encoding: extra-good, super-nice", "Encoding:", "super-nice", TRUE },
|
||||||
};
|
};
|
||||||
(void)arg;
|
|
||||||
|
|
||||||
for(i = 0; i < CURL_ARRAYSIZE(list); i++) {
|
for(i = 0; i < CURL_ARRAYSIZE(list); i++) {
|
||||||
bool check = Curl_compareheader(list[i].in,
|
bool check = Curl_compareheader(list[i].in,
|
||||||
|
|
@ -123,12 +124,12 @@ static CURLcode test_unit1625(const char *arg)
|
||||||
if(i != CURL_ARRAYSIZE(list))
|
if(i != CURL_ARRAYSIZE(list))
|
||||||
return CURLE_FAILED_INIT;
|
return CURLE_FAILED_INIT;
|
||||||
|
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#else /* CURL_DISABLE_HTTP */
|
#else /* CURL_DISABLE_HTTP */
|
||||||
static CURLcode test_unit1625(const char *arg)
|
static CURLcode test_unit1625(const char *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
UNITTEST_BEGIN_SIMPLE
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,8 @@ struct check1626 {
|
||||||
|
|
||||||
static CURLcode test_unit1626(const char *arg)
|
static CURLcode test_unit1626(const char *arg)
|
||||||
{
|
{
|
||||||
|
UNITTEST_BEGIN_SIMPLE
|
||||||
|
|
||||||
size_t i;
|
size_t i;
|
||||||
static const struct check1626 list[] = {
|
static const struct check1626 list[] = {
|
||||||
/* basic */
|
/* basic */
|
||||||
|
|
@ -94,8 +96,6 @@ static CURLcode test_unit1626(const char *arg)
|
||||||
{ "Header : value", "value" },
|
{ "Header : value", "value" },
|
||||||
};
|
};
|
||||||
|
|
||||||
(void)arg;
|
|
||||||
|
|
||||||
for(i = 0; i < CURL_ARRAYSIZE(list); i++) {
|
for(i = 0; i < CURL_ARRAYSIZE(list); i++) {
|
||||||
bool ok;
|
bool ok;
|
||||||
char *get = Curl_copy_header_value(list[i].in);
|
char *get = Curl_copy_header_value(list[i].in);
|
||||||
|
|
@ -117,13 +117,13 @@ static CURLcode test_unit1626(const char *arg)
|
||||||
if(i != CURL_ARRAYSIZE(list))
|
if(i != CURL_ARRAYSIZE(list))
|
||||||
return CURLE_FAILED_INIT;
|
return CURLE_FAILED_INIT;
|
||||||
|
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
/* for HTTP-disabled builds */
|
/* for HTTP-disabled builds */
|
||||||
static CURLcode test_unit1626(const char *arg)
|
static CURLcode test_unit1626(const char *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
UNITTEST_BEGIN_SIMPLE
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,8 @@
|
||||||
|
|
||||||
static CURLcode test_unit1627(const char *arg)
|
static CURLcode test_unit1627(const char *arg)
|
||||||
{
|
{
|
||||||
|
UNITTEST_BEGIN_SIMPLE
|
||||||
|
|
||||||
size_t i, j;
|
size_t i, j;
|
||||||
/* existing schemes in different cases */
|
/* existing schemes in different cases */
|
||||||
static const char *okay[] = {
|
static const char *okay[] = {
|
||||||
|
|
@ -65,8 +67,6 @@ static CURLcode test_unit1627(const char *arg)
|
||||||
"GhJk", "LzXc", "VbNm"
|
"GhJk", "LzXc", "VbNm"
|
||||||
};
|
};
|
||||||
|
|
||||||
(void)arg;
|
|
||||||
|
|
||||||
for(i = 0; i < CURL_ARRAYSIZE(okay); i++) {
|
for(i = 0; i < CURL_ARRAYSIZE(okay); i++) {
|
||||||
char buffer[32];
|
char buffer[32];
|
||||||
const struct Curl_scheme *get = Curl_get_scheme(okay[i]);
|
const struct Curl_scheme *get = Curl_get_scheme(okay[i]);
|
||||||
|
|
@ -96,10 +96,9 @@ static CURLcode test_unit1627(const char *arg)
|
||||||
|
|
||||||
curl_mprintf("%zu invokes\n", i + j);
|
curl_mprintf("%zu invokes\n", i + j);
|
||||||
|
|
||||||
if(i != CURL_ARRAYSIZE(okay))
|
if(i != CURL_ARRAYSIZE(okay) ||
|
||||||
return CURLE_FAILED_INIT;
|
j != CURL_ARRAYSIZE(notokay))
|
||||||
if(j != CURL_ARRAYSIZE(notokay))
|
|
||||||
return CURLE_FAILED_INIT;
|
return CURLE_FAILED_INIT;
|
||||||
|
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,56 +27,56 @@
|
||||||
static CURLcode test_unit1636(const char *arg)
|
static CURLcode test_unit1636(const char *arg)
|
||||||
{
|
{
|
||||||
UNITTEST_BEGIN_SIMPLE
|
UNITTEST_BEGIN_SIMPLE
|
||||||
{
|
|
||||||
char buffer[9];
|
|
||||||
curl_off_t secs;
|
|
||||||
int i;
|
|
||||||
static const curl_off_t check[] = {
|
|
||||||
/* bytes to check */
|
|
||||||
131072,
|
|
||||||
12645826,
|
|
||||||
1073741824,
|
|
||||||
12938588979,
|
|
||||||
1099445657078333,
|
|
||||||
0 /* end of list */
|
|
||||||
};
|
|
||||||
|
|
||||||
puts("time2str");
|
char buffer[9];
|
||||||
for(i = 0, secs = 0; i < 63; i++) {
|
curl_off_t secs;
|
||||||
time2str(buffer, sizeof(buffer), secs);
|
int i;
|
||||||
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
static const curl_off_t check[] = {
|
||||||
if(strlen(buffer) != 7) {
|
/* bytes to check */
|
||||||
curl_mprintf("^^ was too long!\n");
|
131072,
|
||||||
}
|
12645826,
|
||||||
secs *= 2;
|
1073741824,
|
||||||
secs++;
|
12938588979,
|
||||||
|
1099445657078333,
|
||||||
|
0 /* end of list */
|
||||||
|
};
|
||||||
|
|
||||||
|
puts("time2str");
|
||||||
|
for(i = 0, secs = 0; i < 63; i++) {
|
||||||
|
time2str(buffer, sizeof(buffer), secs);
|
||||||
|
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
||||||
|
if(strlen(buffer) != 7) {
|
||||||
|
curl_mprintf("^^ was too long!\n");
|
||||||
}
|
}
|
||||||
puts("max6out");
|
secs *= 2;
|
||||||
for(i = 0, secs = 0; i < 63; i++) {
|
secs++;
|
||||||
max6out(secs, buffer, sizeof(buffer));
|
}
|
||||||
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
puts("max6out");
|
||||||
if(strlen(buffer) != 6) {
|
for(i = 0, secs = 0; i < 63; i++) {
|
||||||
curl_mprintf("^^ was too long!\n");
|
max6out(secs, buffer, sizeof(buffer));
|
||||||
}
|
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
||||||
secs *= 2;
|
if(strlen(buffer) != 6) {
|
||||||
secs++;
|
curl_mprintf("^^ was too long!\n");
|
||||||
}
|
}
|
||||||
for(i = 0; check[i]; i++) {
|
secs *= 2;
|
||||||
secs = check[i];
|
secs++;
|
||||||
max6out(secs, buffer, sizeof(buffer));
|
}
|
||||||
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
for(i = 0; check[i]; i++) {
|
||||||
if(strlen(buffer) != 6) {
|
secs = check[i];
|
||||||
curl_mprintf("^^ was too long!\n");
|
max6out(secs, buffer, sizeof(buffer));
|
||||||
}
|
curl_mprintf("%20" FMT_OFF_T " - %s\n", secs, buffer);
|
||||||
|
if(strlen(buffer) != 6) {
|
||||||
|
curl_mprintf("^^ was too long!\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UNITTEST_END(curl_global_cleanup())
|
UNITTEST_END(curl_global_cleanup())
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* CURL_DISABLE_PROGRESS_METER */
|
#else /* CURL_DISABLE_PROGRESS_METER */
|
||||||
static CURLcode test_unit1636(const char *arg)
|
static CURLcode test_unit1636(const char *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
UNITTEST_BEGIN_SIMPLE
|
||||||
return CURLE_OK;
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,6 @@
|
||||||
|
|
||||||
static CURLcode test_unit1675(const char *arg)
|
static CURLcode test_unit1675(const char *arg)
|
||||||
{
|
{
|
||||||
(void)arg;
|
|
||||||
UNITTEST_BEGIN_SIMPLE
|
UNITTEST_BEGIN_SIMPLE
|
||||||
|
|
||||||
/* Test ipv4_normalize */
|
/* Test ipv4_normalize */
|
||||||
|
|
|
||||||
|
|
@ -154,11 +154,9 @@ static CURLcode test_unit3300(const char *arg)
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
static CURLcode test_unit3300(const char *arg)
|
static CURLcode test_unit3300(const char *arg)
|
||||||
{
|
{
|
||||||
UNITTEST_BEGIN_SIMPLE
|
UNITTEST_BEGIN_SIMPLE
|
||||||
(void)arg;
|
|
||||||
UNITTEST_END_SIMPLE
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#endif /* USE_THREADS */
|
#endif /* USE_THREADS */
|
||||||
|
|
|
||||||
|
|
@ -134,11 +134,9 @@ static CURLcode test_unit3301(const char *arg)
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
static CURLcode test_unit3301(const char *arg)
|
static CURLcode test_unit3301(const char *arg)
|
||||||
{
|
{
|
||||||
UNITTEST_BEGIN_SIMPLE
|
UNITTEST_BEGIN_SIMPLE
|
||||||
(void)arg;
|
|
||||||
UNITTEST_END_SIMPLE
|
UNITTEST_END_SIMPLE
|
||||||
}
|
}
|
||||||
#endif /* USE_THREADS */
|
#endif /* USE_THREADS */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue