Unnamed: 0
int64
0
0
repo_id
stringlengths
5
186
file_path
stringlengths
15
223
content
stringlengths
1
32.8M
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib524.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_UPLOAD, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib559.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testtrace.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_BUFFERSIZE, 1L); /* the smallest! */ res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/test307.pl
#!/usr/bin/env perl #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2020, 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. # ########################################################################### # Determine if the given curl executable supports the 'openssl' SSL engine if ( $#ARGV != 0 ) { print "Usage: $0 curl-executable\n"; exit 3; } if (!open(CURL, "@ARGV[0] -s --engine list|")) { print "Can't get SSL engine list\n"; exit 2; } while( <CURL> ) { exit 0 if ( /openssl/ ); } close CURL; print "openssl engine not supported\n"; exit 1;
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib651.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char buffer[17000]; /* more than 16K */ int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; CURLFORMcode formrc; struct curl_httppost *formpost = NULL; struct curl_httppost *lastptr = NULL; /* create a buffer with AAAA...BBBBB...CCCC...etc */ int i; int size = (int)sizeof(buffer)/1000; for(i = 0; i < size ; i++) memset(&buffer[i * 1000], 65 + i, 1000); buffer[ sizeof(buffer)-1] = 0; /* null-terminate */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } /* Check proper name and data copying. */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "hello", CURLFORM_COPYCONTENTS, buffer, CURLFORM_END); if(formrc) printf("curl_formadd(1) = %d\n", (int) formrc); curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_formfree(formpost); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* send a multi-part formpost */ test_setopt(curl, CURLOPT_HTTPPOST, formpost); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); /* now cleanup the formpost chain */ curl_formfree(formpost); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/chkhostname.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "curl_setup.h" #include "curl_gethostname.h" #define HOSTNAME_MAX 1024 int main(int argc, char *argv[]) { char buff[HOSTNAME_MAX]; if(argc != 2) { printf("Usage: %s EXPECTED_HOSTNAME\n", argv[0]); return 1; } if(Curl_gethostname(buff, HOSTNAME_MAX)) { printf("Curl_gethostname() failed\n"); return 1; } /* compare the name returned by Curl_gethostname() with the expected one */ if(strncmp(buff, argv[1], HOSTNAME_MAX)) { printf("got unexpected host name back, LD_PRELOAD failed\n"); return 1; } return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1938.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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.haxx.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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURL *curl; CURLcode res = TEST_ERR_MAJOR_BAD; struct curl_slist *list = NULL; unsigned char data[] = {0x70, 0x6f, 0x73, 0x74, 0, 0x44, 0x61, 0x74, 0x61}; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_POST, 1L); test_setopt(curl, CURLOPT_AWS_SIGV4, "provider1:provider2:region:service"); test_setopt(curl, CURLOPT_USERPWD, "keyId:SecretKey"); test_setopt(curl, CURLOPT_HEADER, 0L); test_setopt(curl, CURLOPT_URL, URL); list = curl_slist_append(list, "Content-Type: application/json"); test_setopt(curl, CURLOPT_HTTPHEADER, list); test_setopt(curl, CURLOPT_POSTFIELDS, data); test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)sizeof(data)); res = curl_easy_perform(curl); test_cleanup: curl_slist_free_all(list); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib667.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[]= #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x64\x75\x6d\x6d\x79"; #else "dummy"; #endif struct WriteThis { char *readptr; curl_off_t sizeleft; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct WriteThis *pooh = (struct WriteThis *)userp; int eof = !*pooh->readptr; if(size*nmemb < 1) return 0; eof = pooh->sizeleft <= 0; if(!eof) pooh->sizeleft--; if(!eof) { *ptr = *pooh->readptr; /* copy one single byte */ pooh->readptr++; /* advance pointer */ return 1; /* we return 1 byte at a time! */ } return 0; /* no more data left to deliver */ } int test(char *URL) { CURL *easy = NULL; curl_mime *mime = NULL; curl_mimepart *part; CURLcode result; int res = TEST_ERR_FAILURE; struct WriteThis pooh; /* * Check proper handling of mime encoder feature when the part read callback * delivers data bytes one at a time. Use chunked encoding for accurate test. */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } easy = curl_easy_init(); /* First set the URL that is about to receive our POST. */ test_setopt(easy, CURLOPT_URL, URL); /* get verbose debug output please */ test_setopt(easy, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(easy, CURLOPT_HEADER, 1L); /* Prepare the callback structure. */ pooh.readptr = data; pooh.sizeleft = (curl_off_t) strlen(data); /* Build the mime tree. */ mime = curl_mime_init(easy); part = curl_mime_addpart(mime); curl_mime_name(part, "field"); curl_mime_encoder(part, "base64"); /* Using an undefined length forces chunked transfer. */ curl_mime_data_cb(part, (curl_off_t) -1, read_callback, NULL, NULL, &pooh); /* Bind mime data to its easy handle. */ test_setopt(easy, CURLOPT_MIMEPOST, mime); /* Send data. */ result = curl_easy_perform(easy); if(result) { fprintf(stderr, "curl_easy_perform() failed\n"); res = (int) result; } test_cleanup: curl_easy_cleanup(easy); curl_mime_free(mime); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1592.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* * See https://github.com/curl/curl/issues/3371 * * This test case checks whether curl_multi_remove_handle() cancels * asynchronous DNS resolvers without blocking where possible. Obviously, it * only tests whichever resolver cURL is actually built with. */ /* We're willing to wait a very generous two seconds for the removal. This is as low as we can go while still easily supporting SIGALRM timing for the non-threaded blocking resolver. It doesn't matter that much because when the test passes, we never wait this long. */ #define TEST_HANG_TIMEOUT 2 * 1000 #include "test.h" #include "testutil.h" #include <sys/stat.h> int test(char *URL) { int stillRunning; CURLM *multiHandle = NULL; CURL *curl = NULL; CURLcode res = CURLE_OK; CURLMcode mres; int timeout; global_init(CURL_GLOBAL_ALL); multi_init(multiHandle); easy_init(curl); easy_setopt(curl, CURLOPT_VERBOSE, 1L); easy_setopt(curl, CURLOPT_URL, URL); /* Set a DNS server that hopefully will not respond when using c-ares. */ if(curl_easy_setopt(curl, CURLOPT_DNS_SERVERS, "0.0.0.0") == CURLE_OK) /* Since we could set the DNS server, presume we are working with a resolver that can be cancelled (i.e. c-ares). Thus, curl_multi_remove_handle() should not block even when the resolver request is outstanding. So, set a request timeout _longer_ than the test hang timeout so we will fail if the handle removal call incorrectly blocks. */ timeout = TEST_HANG_TIMEOUT * 2; else { /* If we can't set the DNS server, presume that we are configured to use a resolver that can't be cancelled (i.e. the threaded resolver or the non-threaded blocking resolver). So, we just test that the curl_multi_remove_handle() call does finish well within our test timeout. But, it is very unlikely that the resolver request will take any time at all because we haven't been able to configure the resolver to use an non-responsive DNS server. At least we exercise the flow. */ fprintf(stderr, "CURLOPT_DNS_SERVERS not supported; " "assuming curl_multi_remove_handle() will block\n"); timeout = TEST_HANG_TIMEOUT / 2; } /* Setting a timeout on the request should ensure that even if we have to wait for the resolver during curl_multi_remove_handle(), it won't take longer than this, because the resolver request inherits its timeout from this. */ easy_setopt(curl, CURLOPT_TIMEOUT_MS, timeout); multi_add_handle(multiHandle, curl); /* This should move the handle from INIT => CONNECT => WAITRESOLVE. */ fprintf(stderr, "curl_multi_perform()...\n"); multi_perform(multiHandle, &stillRunning); fprintf(stderr, "curl_multi_perform() succeeded\n"); /* Start measuring how long it takes to remove the handle. */ fprintf(stderr, "curl_multi_remove_handle()...\n"); start_test_timing(); mres = curl_multi_remove_handle(multiHandle, curl); if(mres) { fprintf(stderr, "curl_multi_remove_handle() failed, " "with code %d\n", (int)res); res = TEST_ERR_MULTI; goto test_cleanup; } fprintf(stderr, "curl_multi_remove_handle() succeeded\n"); /* Fail the test if it took too long to remove. This happens after the fact, and says "it seems that it would have run forever", which isn't true, but it's close enough, and simple to do. */ abort_on_test_timeout(); test_cleanup: curl_easy_cleanup(curl); curl_multi_cleanup(multiHandle); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib589.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); /* show verbose for debug */ test_setopt(curl, CURLOPT_HEADER, 1L); /* include header */ #ifdef LIB584 { curl_mime *mime = curl_mime_init(curl); curl_mimepart *part = curl_mime_addpart(mime); curl_mime_name(part, "fake"); curl_mime_data(part, "party", 5); test_setopt(curl, CURLOPT_MIMEPOST, mime); res = curl_easy_perform(curl); curl_mime_free(mime); } #endif test_setopt(curl, CURLOPT_MIMEPOST, NULL); /* Now, we should be making a zero byte POST request */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib668.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[]= #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x64\x75\x6d\x6d\x79"; #else "dummy"; #endif struct WriteThis { char *readptr; curl_off_t sizeleft; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct WriteThis *pooh = (struct WriteThis *)userp; size_t len = strlen(pooh->readptr); (void) size; /* Always 1.*/ if(len > nmemb) len = nmemb; if(len) { memcpy(ptr, pooh->readptr, len); pooh->readptr += len; } return len; } int test(char *URL) { CURL *easy = NULL; curl_mime *mime = NULL; curl_mimepart *part; CURLcode result; int res = TEST_ERR_FAILURE; struct WriteThis pooh1, pooh2; /* * Check early end of part data detection. */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } easy = curl_easy_init(); /* First set the URL that is about to receive our POST. */ test_setopt(easy, CURLOPT_URL, URL); /* get verbose debug output please */ test_setopt(easy, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(easy, CURLOPT_HEADER, 1L); /* Prepare the callback structures. */ pooh1.readptr = data; pooh1.sizeleft = (curl_off_t) strlen(data); pooh2 = pooh1; /* Build the mime tree. */ mime = curl_mime_init(easy); part = curl_mime_addpart(mime); curl_mime_name(part, "field1"); /* Early end of data detection can be done because the data size is known. */ curl_mime_data_cb(part, (curl_off_t) strlen(data), read_callback, NULL, NULL, &pooh1); part = curl_mime_addpart(mime); curl_mime_name(part, "field2"); /* Using an undefined length forces chunked transfer and disables early end of data detection for this part. */ curl_mime_data_cb(part, (curl_off_t) -1, read_callback, NULL, NULL, &pooh2); part = curl_mime_addpart(mime); curl_mime_name(part, "field3"); /* Regular file part sources early end of data can be detected because the file size is known. In addition, and EOF test is performed. */ curl_mime_filedata(part, "log/file668.txt"); /* Bind mime data to its easy handle. */ test_setopt(easy, CURLOPT_MIMEPOST, mime); /* Send data. */ result = curl_easy_perform(easy); if(result) { fprintf(stderr, "curl_easy_perform() failed\n"); res = (int) result; } test_cleanup: curl_easy_cleanup(easy); curl_mime_free(mime); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/test1022.pl
#!/usr/bin/env perl #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2020, 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. # ########################################################################### # Determine if curl-config --version matches the curl --version if ( $#ARGV != 2 ) { print "Usage: $0 curl-config-script curl-version-output-file version|vernum\n"; exit 3; } my $what=$ARGV[2]; # Read the output of curl --version open(CURL, "$ARGV[1]") || die "Can't open curl --version list in $ARGV[1]\n"; $_ = <CURL>; chomp; /libcurl\/([\.\d]+((-DEV)|(-\d+))?)/; my $version = $1; close CURL; my $curlconfigversion; # Read the output of curl-config --version/--vernum open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what list\n"; $_ = <CURLCONFIG>; chomp; my $filever=$_; if ( $what eq "version" ) { if($filever =~ /^libcurl ([\.\d]+((-DEV)|(-\d+))?)$/) { $curlconfigversion = $1; } else { $curlconfigversion = "illegal value"; } } else { # "vernum" case # Convert hex version to decimal for comparison's sake if($filever =~ /^(..)(..)(..)$/) { $curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3); } else { $curlconfigversion = "illegal value"; } # Strip off the -DEV from the curl version if it's there $version =~ s/-\w*$//; } close CURLCONFIG; my $different = $version ne $curlconfigversion; if ($different || !$version) { print "Mismatch in --version:\n"; print "curl: $version\n"; print "curl-config: $curlconfigversion\n"; exit 1; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib573.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testtrace.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 /* * Get a single URL without select(). */ int test(char *URL) { CURL *c = NULL; CURLM *m = NULL; int res = 0; int running = 1; double connect_time = 0.0; double dbl_epsilon; dbl_epsilon = 1.0; do { dbl_epsilon /= 2.0; } while((double)(1.0 + (dbl_epsilon/2.0)) > (double)1.0); start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(c); easy_setopt(c, CURLOPT_HEADER, 1L); easy_setopt(c, CURLOPT_URL, URL); libtest_debug_config.nohex = 1; libtest_debug_config.tracetime = 1; easy_setopt(c, CURLOPT_DEBUGDATA, &libtest_debug_config); easy_setopt(c, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); easy_setopt(c, CURLOPT_VERBOSE, 1L); multi_init(m); multi_add_handle(m, c); while(running) { struct timeval timeout; fd_set fdread, fdwrite, fdexcep; int maxfd = -99; timeout.tv_sec = 0; timeout.tv_usec = 100000L; /* 100 ms */ multi_perform(m, &running); abort_on_test_timeout(); if(!running) break; /* done */ FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); multi_fdset(m, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); abort_on_test_timeout(); } curl_easy_getinfo(c, CURLINFO_CONNECT_TIME, &connect_time); if(connect_time < dbl_epsilon) { fprintf(stderr, "connect time %e is < epsilon %e\n", connect_time, dbl_epsilon); res = TEST_ERR_MAJOR_BAD; } test_cleanup: /* proper cleanup sequence - type PA */ curl_multi_remove_handle(m, c); curl_multi_cleanup(m); curl_easy_cleanup(c); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib502.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 /* * Get a single URL without select(). */ int test(char *URL) { CURL *c = NULL; CURLM *m = NULL; int res = 0; int running; start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(c); easy_setopt(c, CURLOPT_URL, URL); multi_init(m); multi_add_handle(m, c); for(;;) { struct timeval timeout; fd_set fdread, fdwrite, fdexcep; int maxfd = -99; timeout.tv_sec = 0; timeout.tv_usec = 100000L; /* 100 ms */ multi_perform(m, &running); abort_on_test_timeout(); if(!running) break; /* done */ FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); multi_fdset(m, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); abort_on_test_timeout(); } test_cleanup: /* proper cleanup sequence - type PA */ curl_multi_remove_handle(m, c); curl_multi_cleanup(m); curl_easy_cleanup(c); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib513.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { (void)ptr; (void)size; (void)nmemb; (void)userp; return CURL_READFUNC_ABORT; } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* Now specify we want to POST data */ test_setopt(curl, CURLOPT_POST, 1L); /* Set the expected POST size */ test_setopt(curl, CURLOPT_POSTFIELDSIZE, 1L); /* we want to use our own read function */ test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* pointer to pass to our read function */ test_setopt(curl, CURLOPT_READDATA, NULL); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib500.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testtrace.h" #include "memdebug.h" #ifdef LIB585 static int counter; static curl_socket_t tst_opensocket(void *clientp, curlsocktype purpose, struct curl_sockaddr *addr) { (void)clientp; (void)purpose; printf("[OPEN] counter: %d\n", ++counter); return socket(addr->family, addr->socktype, addr->protocol); } static int tst_closesocket(void *clientp, curl_socket_t sock) { (void)clientp; printf("[CLOSE] counter: %d\n", counter--); return sclose(sock); } static void setupcallbacks(CURL *curl) { curl_easy_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, tst_opensocket); curl_easy_setopt(curl, CURLOPT_CLOSESOCKETFUNCTION, tst_closesocket); counter = 0; } #else #define setupcallbacks(x) Curl_nop_stmt #endif int test(char *URL) { CURLcode res; CURL *curl; char *ipstr = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); libtest_debug_config.nohex = 1; libtest_debug_config.tracetime = 1; test_setopt(curl, CURLOPT_DEBUGDATA, &libtest_debug_config); test_setopt(curl, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); test_setopt(curl, CURLOPT_VERBOSE, 1L); if(libtest_arg3 && !strcmp(libtest_arg3, "activeftp")) test_setopt(curl, CURLOPT_FTPPORT, "-"); setupcallbacks(curl); res = curl_easy_perform(curl); if(!res) { res = curl_easy_getinfo(curl, CURLINFO_PRIMARY_IP, &ipstr); if(libtest_arg2) { FILE *moo = fopen(libtest_arg2, "wb"); if(moo) { curl_off_t time_namelookup; curl_off_t time_connect; curl_off_t time_pretransfer; curl_off_t time_starttransfer; curl_off_t time_total; fprintf(moo, "IP %s\n", ipstr); curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME_T, &time_namelookup); curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME_T, &time_connect); curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME_T, &time_pretransfer); curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, &time_starttransfer); curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &time_total); /* since the timing will always vary we only compare relative differences between these 5 times */ if(time_namelookup > time_connect) { fprintf(moo, "namelookup vs connect: %" CURL_FORMAT_CURL_OFF_T ".%06ld %" CURL_FORMAT_CURL_OFF_T ".%06ld\n", (time_namelookup / 1000000), (long)(time_namelookup % 1000000), (time_connect / 1000000), (long)(time_connect % 1000000)); } if(time_connect > time_pretransfer) { fprintf(moo, "connect vs pretransfer: %" CURL_FORMAT_CURL_OFF_T ".%06ld %" CURL_FORMAT_CURL_OFF_T ".%06ld\n", (time_connect / 1000000), (long)(time_connect % 1000000), (time_pretransfer / 1000000), (long)(time_pretransfer % 1000000)); } if(time_pretransfer > time_starttransfer) { fprintf(moo, "pretransfer vs starttransfer: %" CURL_FORMAT_CURL_OFF_T ".%06ld %" CURL_FORMAT_CURL_OFF_T ".%06ld\n", (time_pretransfer / 1000000), (long)(time_pretransfer % 1000000), (time_starttransfer / 1000000), (long)(time_starttransfer % 1000000)); } if(time_starttransfer > time_total) { fprintf(moo, "starttransfer vs total: %" CURL_FORMAT_CURL_OFF_T ".%06ld %" CURL_FORMAT_CURL_OFF_T ".%06ld\n", (time_starttransfer / 1000000), (long)(time_starttransfer % 1000000), (time_total / 1000000), (long)(time_total % 1000000)); } fclose(moo); } } } test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1913.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" int test(char *URL) { CURLcode ret = CURLE_OK; CURL *hnd; start_test_timing(); curl_global_init(CURL_GLOBAL_ALL); hnd = curl_easy_init(); if(hnd) { curl_easy_setopt(hnd, CURLOPT_URL, URL); curl_easy_setopt(hnd, CURLOPT_NOBODY, 1L); if(libtest_arg2) /* test1914 sets this extra arg */ curl_easy_setopt(hnd, CURLOPT_FILETIME, 1L); ret = curl_easy_perform(hnd); curl_easy_cleanup(hnd); } curl_global_cleanup(); return (int)ret; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib519.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_USERPWD, "monster:underbed"); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); /* get first page */ res = curl_easy_perform(curl); test_setopt(curl, CURLOPT_USERPWD, "anothermonster:inwardrobe"); /* get second page */ res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1560.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ /* * Note: * * Since the URL parser by default only accepts schemes that *this instance* * of libcurl supports, make sure that the test1560 file lists all the schemes * that this test will assume to be present! */ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" /* LAST include file */ struct part { CURLUPart part; const char *name; }; static int checkparts(CURLU *u, const char *in, const char *wanted, unsigned int getflags) { int i; CURLUcode rc; char buf[256]; char *bufp = &buf[0]; size_t len = sizeof(buf); struct part parts[] = { {CURLUPART_SCHEME, "scheme"}, {CURLUPART_USER, "user"}, {CURLUPART_PASSWORD, "password"}, {CURLUPART_OPTIONS, "options"}, {CURLUPART_HOST, "host"}, {CURLUPART_PORT, "port"}, {CURLUPART_PATH, "path"}, {CURLUPART_QUERY, "query"}, {CURLUPART_FRAGMENT, "fragment"}, {0, NULL} }; memset(buf, 0, sizeof(buf)); for(i = 0; parts[i].name; i++) { char *p = NULL; size_t n; rc = curl_url_get(u, parts[i].part, &p, getflags); if(!rc && p) { msnprintf(bufp, len, "%s%s", buf[0]?" | ":"", p); } else msnprintf(bufp, len, "%s[%d]", buf[0]?" | ":"", (int)rc); n = strlen(bufp); bufp += n; len -= n; curl_free(p); } if(strcmp(buf, wanted)) { fprintf(stderr, "in: %s\nwanted: %s\ngot: %s\n", in, wanted, buf); return 1; } return 0; } struct redircase { const char *in; const char *set; const char *out; unsigned int urlflags; unsigned int setflags; CURLUcode ucode; }; struct setcase { const char *in; const char *set; const char *out; unsigned int urlflags; unsigned int setflags; CURLUcode ucode; /* for the main URL set */ CURLUcode pcode; /* for updating parts */ }; struct testcase { const char *in; const char *out; unsigned int urlflags; unsigned int getflags; CURLUcode ucode; }; struct urltestcase { const char *in; const char *out; unsigned int urlflags; /* pass to curl_url() */ unsigned int getflags; /* pass to curl_url_get() */ CURLUcode ucode; }; struct querycase { const char *in; const char *q; const char *out; unsigned int urlflags; /* pass to curl_url() */ unsigned int qflags; /* pass to curl_url_get() */ CURLUcode ucode; }; static const struct testcase get_parts_list[] ={ {"https://user:password@example.net/get?this=and what", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://user:password@example.net/ge t?this=and-what", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://user:pass word@example.net/get?this=and-what", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://u ser:password@example.net/get?this=and-what", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, /* no space allowed in scheme */ {"htt ps://user:password@example.net/get?this=and-what", "", CURLU_NON_SUPPORT_SCHEME|CURLU_ALLOW_SPACE, 0, CURLUE_MALFORMED_INPUT}, {"https://user:password@example.net/get?this=and what", "https | user | password | [13] | example.net | [15] | /get | " "this=and what | [17]", CURLU_ALLOW_SPACE, 0, CURLUE_OK}, {"https://user:password@example.net/ge t?this=and-what", "https | user | password | [13] | example.net | [15] | /ge t | " "this=and-what | [17]", CURLU_ALLOW_SPACE, 0, CURLUE_OK}, {"https://user:pass word@example.net/get?this=and-what", "https | user | pass word | [13] | example.net | [15] | /get | " "this=and-what | [17]", CURLU_ALLOW_SPACE, 0, CURLUE_OK}, {"https://u ser:password@example.net/get?this=and-what", "https | u ser | password | [13] | example.net | [15] | /get | " "this=and-what | [17]", CURLU_ALLOW_SPACE, 0, CURLUE_OK}, {"https://user:password@example.net/ge t?this=and-what", "https | user | password | [13] | example.net | [15] | /ge%20t | " "this=and-what | [17]", CURLU_ALLOW_SPACE | CURLU_URLENCODE, 0, CURLUE_OK}, {"[::1]", "http | [11] | [12] | [13] | [::1] | [15] | / | [16] | [17]", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, {"[::]", "http | [11] | [12] | [13] | [::] | [15] | / | [16] | [17]", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, {"https://[::1]", "https | [11] | [12] | [13] | [::1] | [15] | / | [16] | [17]", 0, 0, CURLUE_OK }, {"user:moo@ftp.example.com/color/#green?no-red", "ftp | user | moo | [13] | ftp.example.com | [15] | /color/ | [16] | " "green?no-red", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, {"ftp.user:moo@example.com/color/#green?no-red", "http | ftp.user | moo | [13] | example.com | [15] | /color/ | [16] | " "green?no-red", CURLU_GUESS_SCHEME, 0, CURLUE_OK }, #ifdef WIN32 {"file:/C:\\programs\\foo", "file | [11] | [12] | [13] | [14] | [15] | C:\\programs\\foo | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"file://C:\\programs\\foo", "file | [11] | [12] | [13] | [14] | [15] | C:\\programs\\foo | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"file:///C:\\programs\\foo", "file | [11] | [12] | [13] | [14] | [15] | C:\\programs\\foo | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"file://host.example.com/Share/path/to/file.txt", "file | [11] | [12] | [13] | host.example.com | [15] | " "//host.example.com/Share/path/to/file.txt | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, #endif {"https://example.com/color/#green?no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " "green?no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"https://example.com/color/#green#no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " "green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"https://example.com/color/?green#no-red", "https | [11] | [12] | [13] | example.com | [15] | /color/ | green | " "no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"https://example.com/#color/?green#no-red", "https | [11] | [12] | [13] | example.com | [15] | / | [16] | " "color/?green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"https://example.#com/color/?green#no-red", "https | [11] | [12] | [13] | example. | [15] | / | [16] | " "com/color/?green#no-red", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"http://[ab.be:1]/x", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"http://[ab.be]/x", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, /* URL without host name */ {"http://a:b@/x", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_NO_HOST}, {"boing:80", "https | [11] | [12] | [13] | boing | 80 | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://[fd00:a41::50]:8080", "http | [11] | [12] | [13] | [fd00:a41::50] | 8080 | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://[fd00:a41::50]/", "http | [11] | [12] | [13] | [fd00:a41::50] | [15] | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://[fd00:a41::50]", "http | [11] | [12] | [13] | [fd00:a41::50] | [15] | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://[::1%252]:1234", "https | [11] | [12] | [13] | [::1] | 1234 | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, /* here's "bad" zone id */ {"https://[fe80::20c:29ff:fe9c:409b%eth0]:1234", "https | [11] | [12] | [13] | [fe80::20c:29ff:fe9c:409b] | 1234 " "| / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://127.0.0.1:443", "https | [11] | [12] | [13] | 127.0.0.1 | [15] | / | [16] | [17]", 0, CURLU_NO_DEFAULT_PORT, CURLUE_OK}, {"http://%3a:%3a@ex4mple/%3f+?+%3f+%23#+%23%3f%g7", "http | : | : | [13] | ex4mple | [15] | /?+ | ? # | +#?%g7", 0, CURLU_URLDECODE, CURLUE_OK}, {"http://%3a:%3a@ex4mple/%3f?%3f%35#%35%3f%g7", "http | %3a | %3a | [13] | ex4mple | [15] | /%3f | %3f%35 | %35%3f%g7", 0, 0, CURLUE_OK}, {"http://HO0_-st%41/", "http | [11] | [12] | [13] | HO0_-stA | [15] | / | [16] | [17]", 0, 0, CURLUE_OK}, {"file://hello.html", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"http://HO0_-st/", "http | [11] | [12] | [13] | HO0_-st | [15] | / | [16] | [17]", 0, 0, CURLUE_OK}, {"imap://user:pass;option@server/path", "imap | user | pass | option | server | [15] | /path | [16] | [17]", 0, 0, CURLUE_OK}, {"http://user:pass;option@server/path", "http | user | pass;option | [13] | server | [15] | /path | [16] | [17]", 0, 0, CURLUE_OK}, {"file:/hello.html", "file | [11] | [12] | [13] | [14] | [15] | /hello.html | [16] | [17]", 0, 0, CURLUE_OK}, {"file://127.0.0.1/hello.html", "file | [11] | [12] | [13] | [14] | [15] | /hello.html | [16] | [17]", 0, 0, CURLUE_OK}, {"file:////hello.html", "file | [11] | [12] | [13] | [14] | [15] | //hello.html | [16] | [17]", 0, 0, CURLUE_OK}, {"file:///hello.html", "file | [11] | [12] | [13] | [14] | [15] | /hello.html | [16] | [17]", 0, 0, CURLUE_OK}, {"https://127.0.0.1", "https | [11] | [12] | [13] | 127.0.0.1 | 443 | / | [16] | [17]", 0, CURLU_DEFAULT_PORT, CURLUE_OK}, {"https://127.0.0.1", "https | [11] | [12] | [13] | 127.0.0.1 | [15] | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://[::1]:1234", "https | [11] | [12] | [13] | [::1] | 1234 | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://127abc.com", "https | [11] | [12] | [13] | 127abc.com | [15] | / | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https:// example.com?check", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://e x a m p l e.com?check", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://example.com?check", "https | [11] | [12] | [13] | example.com | [15] | / | check | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://example.com:65536", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_BAD_PORT_NUMBER}, {"https://example.com:0#moo", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_BAD_PORT_NUMBER}, {"https://example.com:01#moo", "https | [11] | [12] | [13] | example.com | 1 | / | " "[16] | moo", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://example.com:1#moo", "https | [11] | [12] | [13] | example.com | 1 | / | " "[16] | moo", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com#moo", "http | [11] | [12] | [13] | example.com | [15] | / | " "[16] | moo", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com", "http | [11] | [12] | [13] | example.com | [15] | / | " "[16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com/path/html", "http | [11] | [12] | [13] | example.com | [15] | /path/html | " "[16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com/path/html?query=name", "http | [11] | [12] | [13] | example.com | [15] | /path/html | " "query=name | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com/path/html?query=name#anchor", "http | [11] | [12] | [13] | example.com | [15] | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://example.com:1234/path/html?query=name#anchor", "http | [11] | [12] | [13] | example.com | 1234 | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http:///user:password@example.com:1234/path/html?query=name#anchor", "http | user | password | [13] | example.com | 1234 | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"https://user:password@example.com:1234/path/html?query=name#anchor", "https | user | password | [13] | example.com | 1234 | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http://user:password@example.com:1234/path/html?query=name#anchor", "http | user | password | [13] | example.com | 1234 | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http:/user:password@example.com:1234/path/html?query=name#anchor", "http | user | password | [13] | example.com | 1234 | /path/html | " "query=name | anchor", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"http:////user:password@example.com:1234/path/html?query=name#anchor", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {NULL, NULL, 0, 0, CURLUE_OK}, }; static const struct urltestcase get_url_list[] = { /* percent encoded host names */ {"https://%this", "https://%25this/", 0, 0, CURLUE_OK}, {"https://h%c", "https://h%25c/", 0, 0, CURLUE_OK}, {"https://%%%%%%", "https://%25%25%25%25%25%25/", 0, 0, CURLUE_OK}, {"https://%41", "https://A/", 0, 0, CURLUE_OK}, {"https://%20", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"https://%41%0d", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"https://%25", "https://%25/", 0, 0, CURLUE_OK}, {"https://_%c0_", "https://_\xC0_/", 0, 0, CURLUE_OK}, {"https://_%c0_", "https://_%C0_/", 0, CURLU_URLENCODE, CURLUE_OK}, /* IPv4 trickeries */ {"https://16843009", "https://1.1.1.1/", 0, 0, CURLUE_OK}, {"https://0x7f.1", "https://127.0.0.1/", 0, 0, CURLUE_OK}, {"https://0177.1", "https://127.0.0.1/", 0, 0, CURLUE_OK}, {"https://0111.02.0x3", "https://73.2.0.3/", 0, 0, CURLUE_OK}, {"https://0xff.0xff.0377.255", "https://255.255.255.255/", 0, 0, CURLUE_OK}, {"https://1.0xffffff", "https://1.255.255.255/", 0, 0, CURLUE_OK}, /* IPv4 numerical overflows or syntax errors will not normalize */ {"https://+127.0.0.1", "https://+127.0.0.1/", 0, 0, CURLUE_OK}, {"https://+127.0.0.1", "https://%2B127.0.0.1/", 0, CURLU_URLENCODE, CURLUE_OK}, {"https://127.-0.0.1", "https://127.-0.0.1/", 0, 0, CURLUE_OK}, {"https://127.0. 1", "https://127.0.0.1/", 0, 0, CURLUE_MALFORMED_INPUT}, {"https://1.0x1000000", "https://1.0x1000000/", 0, 0, CURLUE_OK}, {"https://1.2.3.256", "https://1.2.3.256/", 0, 0, CURLUE_OK}, {"https://1.2.3.4.5", "https://1.2.3.4.5/", 0, 0, CURLUE_OK}, {"https://1.2.0x100.3", "https://1.2.0x100.3/", 0, 0, CURLUE_OK}, {"https://4294967296", "https://4294967296/", 0, 0, CURLUE_OK}, /* 40 bytes scheme is the max allowed */ {"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA://hostname/path", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa://hostname/path", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_OK}, /* 41 bytes scheme is not allowed */ {"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA://hostname/path", "", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"https://[fe80::20c:29ff:fe9c:409b%]:1234", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"https://[fe80::20c:29ff:fe9c:409b%25]:1234", "https://[fe80::20c:29ff:fe9c:409b%2525]:1234/", 0, 0, CURLUE_OK}, {"https://[fe80::20c:29ff:fe9c:409b%eth0]:1234", "https://[fe80::20c:29ff:fe9c:409b%25eth0]:1234/", 0, 0, CURLUE_OK}, {"https://[::%25fakeit]/moo", "https://[::%25fakeit]/moo", 0, 0, CURLUE_OK}, {"smtp.example.com/path/html", "smtp://smtp.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"https.example.com/path/html", "http://https.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"dict.example.com/path/html", "dict://dict.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"pop3.example.com/path/html", "pop3://pop3.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"ldap.example.com/path/html", "ldap://ldap.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"imap.example.com/path/html", "imap://imap.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"ftp.example.com/path/html", "ftp://ftp.example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"example.com/path/html", "http://example.com/path/html", CURLU_GUESS_SCHEME, 0, CURLUE_OK}, {"HTTP://test/", "http://test/", 0, 0, CURLUE_OK}, {"http://HO0_-st..~./", "http://HO0_-st..~./", 0, 0, CURLUE_OK}, {"http:/@example.com: 123/", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"http:/@example.com:123 /", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"http:/@example.com:123a/", "", 0, 0, CURLUE_BAD_PORT_NUMBER}, {"http://host/file\r", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"http://host/file\n\x03", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"htt\x02://host/file", "", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {" http://host/file", "", 0, 0, CURLUE_MALFORMED_INPUT}, /* here the password ends at the semicolon and options is 'word' */ {"imap://user:pass;word@host/file", "imap://user:pass;word@host/file", 0, 0, CURLUE_OK}, /* here the password has the semicolon */ {"http://user:pass;word@host/file", "http://user:pass;word@host/file", 0, 0, CURLUE_OK}, {"file:///file.txt#moo", "file:///file.txt#moo", 0, 0, CURLUE_OK}, {"file:////file.txt", "file:////file.txt", 0, 0, CURLUE_OK}, {"file:///file.txt", "file:///file.txt", 0, 0, CURLUE_OK}, {"file:./", "file://", 0, 0, CURLUE_MALFORMED_INPUT}, {"http://example.com/hello/../here", "http://example.com/hello/../here", CURLU_PATH_AS_IS, 0, CURLUE_OK}, {"http://example.com/hello/../here", "http://example.com/here", 0, 0, CURLUE_OK}, {"http://example.com:80", "http://example.com/", 0, CURLU_NO_DEFAULT_PORT, CURLUE_OK}, {"tp://example.com/path/html", "", 0, 0, CURLUE_UNSUPPORTED_SCHEME}, {"http://hello:fool@example.com", "", CURLU_DISALLOW_USER, 0, CURLUE_USER_NOT_ALLOWED}, {"http:/@example.com:123", "http://example.com:123/", 0, 0, CURLUE_OK}, {"http:/:password@example.com", "http://:password@example.com/", 0, 0, CURLUE_OK}, {"http://user@example.com?#", "http://user@example.com/", 0, 0, CURLUE_OK}, {"http://user@example.com?", "http://user@example.com/", 0, 0, CURLUE_OK}, {"http://user@example.com#anchor", "http://user@example.com/#anchor", 0, 0, CURLUE_OK}, {"example.com/path/html", "https://example.com/path/html", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, {"example.com/path/html", "", 0, 0, CURLUE_MALFORMED_INPUT}, {"http://user:password@example.com:1234/path/html?query=name#anchor", "http://user:password@example.com:1234/path/html?query=name#anchor", 0, 0, CURLUE_OK}, {"http://example.com:1234/path/html?query=name#anchor", "http://example.com:1234/path/html?query=name#anchor", 0, 0, CURLUE_OK}, {"http://example.com/path/html?query=name#anchor", "http://example.com/path/html?query=name#anchor", 0, 0, CURLUE_OK}, {"http://example.com/path/html?query=name", "http://example.com/path/html?query=name", 0, 0, CURLUE_OK}, {"http://example.com/path/html", "http://example.com/path/html", 0, 0, CURLUE_OK}, {"tp://example.com/path/html", "tp://example.com/path/html", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_OK}, {"custom-scheme://host?expected=test-good", "custom-scheme://host/?expected=test-good", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_OK}, {"custom-scheme://?expected=test-bad", "", CURLU_NON_SUPPORT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"custom-scheme://?expected=test-new-good", "custom-scheme:///?expected=test-new-good", CURLU_NON_SUPPORT_SCHEME | CURLU_NO_AUTHORITY, 0, CURLUE_OK}, {"custom-scheme://host?expected=test-still-good", "custom-scheme://host/?expected=test-still-good", CURLU_NON_SUPPORT_SCHEME | CURLU_NO_AUTHORITY, 0, CURLUE_OK}, {NULL, NULL, 0, 0, 0} }; static int checkurl(const char *url, const char *out) { if(strcmp(out, url)) { fprintf(stderr, "Wanted: %s\nGot : %s\n", out, url); return 1; } return 0; } /* !checksrc! disable SPACEBEFORECOMMA 1 */ static const struct setcase set_parts_list[] = { {"https://example.com/", "host=++,", /* '++' there's no automatic URL decode when settin this part */ "https://++/", 0, /* get */ 0, /* set */ CURLUE_OK, CURLUE_OK}, {"https://example.com/", "query=Al2cO3tDkcDZ3EWE5Lh+LX8TPHs,", /* contains '+' */ "https://example.com/?Al2cO3tDkcDZ3EWE5Lh%2bLX8TPHs", CURLU_URLDECODE, /* decode on get */ CURLU_URLENCODE, /* encode on set */ CURLUE_OK, CURLUE_OK}, {"https://example.com/", /* Set a 41 bytes scheme. That's too long so the old scheme remains set. */ "scheme=bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc,", "https://example.com/", 0, CURLU_NON_SUPPORT_SCHEME, CURLUE_OK, CURLUE_MALFORMED_INPUT}, {"https://example.com/", /* set a 40 bytes scheme */ "scheme=bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb,", "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb://example.com/", 0, CURLU_NON_SUPPORT_SCHEME, CURLUE_OK, CURLUE_OK}, {"https://[::1%25fake]:1234/", "zoneid=NULL,", "https://[::1]:1234/", 0, 0, CURLUE_OK, CURLUE_OK}, {"https://host:1234/", "port=NULL,", "https://host/", 0, 0, CURLUE_OK, CURLUE_OK}, {"https://host:1234/", "port=\"\",", "https://host:1234/", 0, 0, CURLUE_OK, CURLUE_BAD_PORT_NUMBER}, {"https://host:1234/", "port=56 78,", "https://host:1234/", 0, 0, CURLUE_OK, CURLUE_MALFORMED_INPUT}, {"https://host:1234/", "port=0,", "https://host:1234/", 0, 0, CURLUE_OK, CURLUE_BAD_PORT_NUMBER}, {"https://host:1234/", "port=65535,", "https://host:65535/", 0, 0, CURLUE_OK, CURLUE_OK}, {"https://host:1234/", "port=65536,", "https://host:1234/", 0, 0, CURLUE_OK, CURLUE_BAD_PORT_NUMBER}, {"https://host/", "path=%4A%4B%4C,", "https://host/%4a%4b%4c", 0, 0, CURLUE_OK, CURLUE_OK}, {"https://host/mooo?q#f", "path=NULL,query=NULL,fragment=NULL,", "https://host/", 0, 0, CURLUE_OK, CURLUE_OK}, {"https://user:secret@host/", "user=NULL,password=NULL,", "https://host/", 0, 0, CURLUE_OK, CURLUE_OK}, {NULL, "scheme=https,user= @:,host=foobar,", "https://%20%20%20%40%3a@foobar/", 0, CURLU_URLENCODE, CURLUE_OK, CURLUE_OK}, /* Setting a host name with spaces is not OK: */ {NULL, "scheme=https,host= ,path= ,user= ,password= ,query= ,fragment= ,", "[nothing]", 0, CURLU_URLENCODE, CURLUE_OK, CURLUE_MALFORMED_INPUT}, {NULL, "scheme=https,host=foobar,path=/this /path /is /here,", "https://foobar/this%20/path%20/is%20/here", 0, CURLU_URLENCODE, CURLUE_OK, CURLUE_OK}, {NULL, "scheme=https,host=foobar,path=\xc3\xa4\xc3\xb6\xc3\xbc,", "https://foobar/%c3%a4%c3%b6%c3%bc", 0, CURLU_URLENCODE, CURLUE_OK, CURLUE_OK}, {"imap://user:secret;opt@host/", "options=updated,scheme=imaps,password=p4ssw0rd,", "imaps://user:p4ssw0rd;updated@host/", 0, 0, CURLUE_NO_HOST, CURLUE_OK}, {"imap://user:secret;optit@host/", "scheme=https,", "https://user:secret@host/", 0, 0, CURLUE_NO_HOST, CURLUE_OK}, {"file:///file#anchor", "scheme=https,host=example,", "https://example/file#anchor", 0, 0, CURLUE_NO_HOST, CURLUE_OK}, {NULL, /* start fresh! */ "scheme=file,host=127.0.0.1,path=/no,user=anonymous,", "file:///no", 0, 0, CURLUE_OK, CURLUE_OK}, {NULL, /* start fresh! */ "scheme=ftp,host=127.0.0.1,path=/no,user=anonymous,", "ftp://anonymous@127.0.0.1/no", 0, 0, CURLUE_OK, CURLUE_OK}, {NULL, /* start fresh! */ "scheme=https,host=example.com,", "https://example.com/", 0, CURLU_NON_SUPPORT_SCHEME, CURLUE_OK, CURLUE_OK}, {"http://user:foo@example.com/path?query#frag", "fragment=changed,", "http://user:foo@example.com/path?query#changed", 0, CURLU_NON_SUPPORT_SCHEME, CURLUE_OK, CURLUE_OK}, {"http://example.com/", "scheme=foo,", /* not accepted */ "http://example.com/", 0, 0, CURLUE_OK, CURLUE_UNSUPPORTED_SCHEME}, {"http://example.com/", "scheme=https,path=/hello,fragment=snippet,", "https://example.com/hello#snippet", 0, 0, CURLUE_OK, CURLUE_OK}, {"http://example.com:80", "user=foo,port=1922,", "http://foo@example.com:1922/", 0, 0, CURLUE_OK, CURLUE_OK}, {"http://example.com:80", "user=foo,password=bar,", "http://foo:bar@example.com:80/", 0, 0, CURLUE_OK, CURLUE_OK}, {"http://example.com:80", "user=foo,", "http://foo@example.com:80/", 0, 0, CURLUE_OK, CURLUE_OK}, {"http://example.com", "host=www.example.com,", "http://www.example.com/", 0, 0, CURLUE_OK, CURLUE_OK}, {"http://example.com:80", "scheme=ftp,", "ftp://example.com:80/", 0, 0, CURLUE_OK, CURLUE_OK}, {"custom-scheme://host", "host=\"\",", "custom-scheme://host/", CURLU_NON_SUPPORT_SCHEME, CURLU_NON_SUPPORT_SCHEME, CURLUE_OK, CURLUE_MALFORMED_INPUT}, {"custom-scheme://host", "host=\"\",", "custom-scheme:///", CURLU_NON_SUPPORT_SCHEME, CURLU_NON_SUPPORT_SCHEME | CURLU_NO_AUTHORITY, CURLUE_OK, CURLUE_OK}, {NULL, NULL, NULL, 0, 0, 0, 0} }; static CURLUPart part2id(char *part) { if(!strcmp("url", part)) return CURLUPART_URL; if(!strcmp("scheme", part)) return CURLUPART_SCHEME; if(!strcmp("user", part)) return CURLUPART_USER; if(!strcmp("password", part)) return CURLUPART_PASSWORD; if(!strcmp("options", part)) return CURLUPART_OPTIONS; if(!strcmp("host", part)) return CURLUPART_HOST; if(!strcmp("port", part)) return CURLUPART_PORT; if(!strcmp("path", part)) return CURLUPART_PATH; if(!strcmp("query", part)) return CURLUPART_QUERY; if(!strcmp("fragment", part)) return CURLUPART_FRAGMENT; if(!strcmp("zoneid", part)) return CURLUPART_ZONEID; return (CURLUPart)9999; /* bad input => bad output */ } static CURLUcode updateurl(CURLU *u, const char *cmd, unsigned int setflags) { const char *p = cmd; CURLUcode uc; /* make sure the last command ends with a comma too! */ while(p) { char *e = strchr(p, ','); if(e) { size_t n = e-p; char buf[80]; char part[80]; char value[80]; memset(part, 0, sizeof(part)); /* Avoid valgrind false positive. */ memset(value, 0, sizeof(value)); /* Avoid valgrind false positive. */ memcpy(buf, p, n); buf[n] = 0; if(2 == sscanf(buf, "%79[^=]=%79[^,]", part, value)) { CURLUPart what = part2id(part); #if 0 /* for debugging this */ fprintf(stderr, "%s = \"%s\" [%d]\n", part, value, (int)what); #endif if(what > CURLUPART_ZONEID) fprintf(stderr, "UNKNOWN part '%s'\n", part); if(!strcmp("NULL", value)) uc = curl_url_set(u, what, NULL, setflags); else if(!strcmp("\"\"", value)) uc = curl_url_set(u, what, "", setflags); else uc = curl_url_set(u, what, value, setflags); if(uc) return uc; } p = e + 1; continue; } break; } return CURLUE_OK; } static const struct redircase set_url_list[] = { {"http://example.org/static/favicon/wikipedia.ico", "//fake.example.com/licenses/by-sa/3.0/", "http://fake.example.com/licenses/by-sa/3.0/", 0, 0, 0}, {"https://example.org/static/favicon/wikipedia.ico", "//fake.example.com/licenses/by-sa/3.0/", "https://fake.example.com/licenses/by-sa/3.0/", 0, 0, 0}, {"file://localhost/path?query#frag", "foo#another", "file:///foo#another", 0, 0, 0}, {"http://example.com/path?query#frag", "https://two.example.com/bradnew", "https://two.example.com/bradnew", 0, 0, 0}, {"http://example.com/path?query#frag", "../../newpage#foo", "http://example.com/newpage#foo", 0, 0, 0}, {"http://user:foo@example.com/path?query#frag", "../../newpage", "http://user:foo@example.com/newpage", 0, 0, 0}, {"http://user:foo@example.com/path?query#frag", "../newpage", "http://user:foo@example.com/newpage", 0, 0, 0}, {NULL, NULL, NULL, 0, 0, 0} }; static int set_url(void) { int i; int error = 0; for(i = 0; set_url_list[i].in && !error; i++) { CURLUcode rc; CURLU *urlp = curl_url(); if(!urlp) break; rc = curl_url_set(urlp, CURLUPART_URL, set_url_list[i].in, set_url_list[i].urlflags); if(!rc) { rc = curl_url_set(urlp, CURLUPART_URL, set_url_list[i].set, set_url_list[i].setflags); if(rc) { fprintf(stderr, "%s:%d Set URL %s returned %d (%s)\n", __FILE__, __LINE__, set_url_list[i].set, (int)rc, curl_url_strerror(rc)); error++; } else { char *url = NULL; rc = curl_url_get(urlp, CURLUPART_URL, &url, 0); if(rc) { fprintf(stderr, "%s:%d Get URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { if(checkurl(url, set_url_list[i].out)) { error++; } } curl_free(url); } } else if(rc != set_url_list[i].ucode) { fprintf(stderr, "Set URL\nin: %s\nreturned %d (expected %d)\n", set_url_list[i].in, (int)rc, set_url_list[i].ucode); error++; } curl_url_cleanup(urlp); } return error; } static int set_parts(void) { int i; int error = 0; for(i = 0; set_parts_list[i].set && !error; i++) { CURLUcode rc; CURLU *urlp = curl_url(); if(!urlp) { error++; break; } if(set_parts_list[i].in) rc = curl_url_set(urlp, CURLUPART_URL, set_parts_list[i].in, set_parts_list[i].urlflags); else rc = CURLUE_OK; if(!rc) { char *url = NULL; CURLUcode uc = updateurl(urlp, set_parts_list[i].set, set_parts_list[i].setflags); if(uc != set_parts_list[i].pcode) { fprintf(stderr, "updateurl\nin: %s\nreturned %d (expected %d)\n", set_parts_list[i].set, (int)uc, set_parts_list[i].pcode); error++; } if(!uc) { /* only do this if it worked */ rc = curl_url_get(urlp, CURLUPART_URL, &url, 0); if(rc) { fprintf(stderr, "%s:%d Get URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else if(checkurl(url, set_parts_list[i].out)) { error++; } } curl_free(url); } else if(rc != set_parts_list[i].ucode) { fprintf(stderr, "Set parts\nin: %s\nreturned %d (expected %d)\n", set_parts_list[i].in, (int)rc, set_parts_list[i].ucode); error++; } curl_url_cleanup(urlp); } return error; } static int get_url(void) { int i; int error = 0; for(i = 0; get_url_list[i].in && !error; i++) { CURLUcode rc; CURLU *urlp = curl_url(); if(!urlp) { error++; break; } rc = curl_url_set(urlp, CURLUPART_URL, get_url_list[i].in, get_url_list[i].urlflags); if(!rc) { char *url = NULL; rc = curl_url_get(urlp, CURLUPART_URL, &url, get_url_list[i].getflags); if(rc) { fprintf(stderr, "%s:%d returned %d (%s). URL: '%s'\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc), get_url_list[i].in); error++; } else { if(checkurl(url, get_url_list[i].out)) { error++; } } curl_free(url); } else if(rc != get_url_list[i].ucode) { fprintf(stderr, "Get URL\nin: %s\nreturned %d (expected %d)\n", get_url_list[i].in, (int)rc, get_url_list[i].ucode); error++; } curl_url_cleanup(urlp); } return error; } static int get_parts(void) { int i; int error = 0; for(i = 0; get_parts_list[i].in && !error; i++) { CURLUcode rc; CURLU *urlp = curl_url(); if(!urlp) { error++; break; } rc = curl_url_set(urlp, CURLUPART_URL, get_parts_list[i].in, get_parts_list[i].urlflags); if(rc != get_parts_list[i].ucode) { fprintf(stderr, "Get parts\nin: %s\nreturned %d (expected %d)\n", get_parts_list[i].in, (int)rc, get_parts_list[i].ucode); error++; } else if(get_parts_list[i].ucode) { /* the expected error happened */ } else if(checkparts(urlp, get_parts_list[i].in, get_parts_list[i].out, get_parts_list[i].getflags)) error++; curl_url_cleanup(urlp); } return error; } static const struct querycase append_list[] = { {"HTTP://test/?s", "name=joe\x02", "http://test/?s&name=joe%02", 0, CURLU_URLENCODE, CURLUE_OK}, {"HTTP://test/?size=2#f", "name=joe=", "http://test/?size=2&name=joe%3d#f", 0, CURLU_URLENCODE, CURLUE_OK}, {"HTTP://test/?size=2#f", "name=joe doe", "http://test/?size=2&name=joe+doe#f", 0, CURLU_URLENCODE, CURLUE_OK}, {"HTTP://test/", "name=joe", "http://test/?name=joe", 0, 0, CURLUE_OK}, {"HTTP://test/?size=2", "name=joe", "http://test/?size=2&name=joe", 0, 0, CURLUE_OK}, {"HTTP://test/?size=2&", "name=joe", "http://test/?size=2&name=joe", 0, 0, CURLUE_OK}, {"HTTP://test/?size=2#f", "name=joe", "http://test/?size=2&name=joe#f", 0, 0, CURLUE_OK}, {NULL, NULL, NULL, 0, 0, 0} }; static int append(void) { int i; int error = 0; for(i = 0; append_list[i].in && !error; i++) { CURLUcode rc; CURLU *urlp = curl_url(); if(!urlp) { error++; break; } rc = curl_url_set(urlp, CURLUPART_URL, append_list[i].in, append_list[i].urlflags); if(rc) error++; else rc = curl_url_set(urlp, CURLUPART_QUERY, append_list[i].q, append_list[i].qflags | CURLU_APPENDQUERY); if(error) ; else if(rc != append_list[i].ucode) { fprintf(stderr, "Append\nin: %s\nreturned %d (expected %d)\n", append_list[i].in, (int)rc, append_list[i].ucode); error++; } else if(append_list[i].ucode) { /* the expected error happened */ } else { char *url; rc = curl_url_get(urlp, CURLUPART_URL, &url, 0); if(rc) { fprintf(stderr, "%s:%d Get URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { if(checkurl(url, append_list[i].out)) { error++; } curl_free(url); } } curl_url_cleanup(urlp); } return error; } static int scopeid(void) { CURLU *u = curl_url(); int error = 0; CURLUcode rc; char *url; rc = curl_url_set(u, CURLUPART_URL, "https://[fe80::20c:29ff:fe9c:409b%25eth0]/hello.html", 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_set returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } rc = curl_url_get(u, CURLUPART_HOST, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_HOST returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_set(u, CURLUPART_HOST, "[::1]", 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_set CURLUPART_HOST returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } rc = curl_url_get(u, CURLUPART_URL, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_set(u, CURLUPART_HOST, "example.com", 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_set CURLUPART_HOST returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } rc = curl_url_get(u, CURLUPART_URL, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_set(u, CURLUPART_HOST, "[fe80::20c:29ff:fe9c:409b%25eth0]", 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_set CURLUPART_HOST returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } rc = curl_url_get(u, CURLUPART_URL, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_get(u, CURLUPART_HOST, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_HOST returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_get(u, CURLUPART_ZONEID, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_ZONEID returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } rc = curl_url_set(u, CURLUPART_ZONEID, "clown", 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_set CURLUPART_ZONEID returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } rc = curl_url_get(u, CURLUPART_URL, &url, 0); if(rc != CURLUE_OK) { fprintf(stderr, "%s:%d curl_url_get CURLUPART_URL returned %d (%s)\n", __FILE__, __LINE__, (int)rc, curl_url_strerror(rc)); error++; } else { printf("we got %s\n", url); curl_free(url); } curl_url_cleanup(u); return error; } int test(char *URL) { (void)URL; /* not used */ if(scopeid()) return 6; if(append()) return 5; if(set_url()) return 1; if(set_parts()) return 2; if(get_url()) return 3; if(get_parts()) return 4; printf("success\n"); return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1915.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2020 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" struct entry { const char *name; const char *exp; }; static const struct entry preload_hosts[] = { /* curl turns 39 that day just before 31-bit time_t overflow */ { "1.example.com", "20370320 01:02:03" }, { "2.example.com", "20370320 03:02:01" }, { "3.example.com", "20370319 01:02:03" }, { "4.example.com", "" }, { NULL, NULL } /* end of list marker */ }; struct state { int index; }; /* "read" is from the point of the library, it wants data from us */ static CURLSTScode hstsread(CURL *easy, struct curl_hstsentry *e, void *userp) { const char *host; const char *expire; struct state *s = (struct state *)userp; (void)easy; host = preload_hosts[s->index].name; expire = preload_hosts[s->index++].exp; if(host && (strlen(host) < e->namelen)) { strcpy(e->name, host); e->includeSubDomains = FALSE; strcpy(e->expire, expire); fprintf(stderr, "add '%s'\n", host); } else return CURLSTS_DONE; return CURLSTS_OK; } /* verify error from callback */ static CURLSTScode hstsreadfail(CURL *easy, struct curl_hstsentry *e, void *userp) { (void)easy; (void)e; (void)userp; return CURLSTS_FAIL; } /* check that we get the hosts back in the save */ static CURLSTScode hstswrite(CURL *easy, struct curl_hstsentry *e, struct curl_index *i, void *userp) { (void)easy; (void)userp; printf("[%zu/%zu] %s %s\n", i->index, i->total, e->name, e->expire); return CURLSTS_OK; } /* * Read/write HSTS cache entries via callback. */ int test(char *URL) { CURLcode ret = CURLE_OK; CURL *hnd; struct state st = {0}; curl_global_init(CURL_GLOBAL_ALL); hnd = curl_easy_init(); if(hnd) { curl_easy_setopt(hnd, CURLOPT_URL, URL); curl_easy_setopt(hnd, CURLOPT_HSTSREADFUNCTION, hstsread); curl_easy_setopt(hnd, CURLOPT_HSTSREADDATA, &st); curl_easy_setopt(hnd, CURLOPT_HSTSWRITEFUNCTION, hstswrite); curl_easy_setopt(hnd, CURLOPT_HSTSWRITEDATA, &st); curl_easy_setopt(hnd, CURLOPT_HSTS_CTRL, CURLHSTS_ENABLE); ret = curl_easy_perform(hnd); curl_easy_cleanup(hnd); printf("First request returned %d\n", (int)ret); } hnd = curl_easy_init(); if(hnd) { curl_easy_setopt(hnd, CURLOPT_URL, URL); curl_easy_setopt(hnd, CURLOPT_HSTSREADFUNCTION, hstsreadfail); curl_easy_setopt(hnd, CURLOPT_HSTSREADDATA, &st); curl_easy_setopt(hnd, CURLOPT_HSTSWRITEFUNCTION, hstswrite); curl_easy_setopt(hnd, CURLOPT_HSTSWRITEDATA, &st); curl_easy_setopt(hnd, CURLOPT_HSTS_CTRL, CURLHSTS_ENABLE); ret = curl_easy_perform(hnd); curl_easy_cleanup(hnd); printf("Second request returned %d\n", (int)ret); } curl_global_cleanup(); return (int)ret; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1933.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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.haxx.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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURL *curl; CURLcode res = TEST_ERR_MAJOR_BAD; struct curl_slist *list = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_AWS_SIGV4, "xxx"); test_setopt(curl, CURLOPT_HEADER, 0L); test_setopt(curl, CURLOPT_URL, URL); list = curl_slist_append(list, "Content-Type: application/json"); test_setopt(curl, CURLOPT_HTTPHEADER, list); res = curl_easy_perform(curl); test_cleanup: curl_slist_free_all(list); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib661.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl = NULL; char *newURL = NULL; struct curl_slist *slist = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } /* test: CURLFTPMETHOD_SINGLECWD with absolute path should skip CWD to entry path */ newURL = aprintf("%s/folderA/661", URL); test_setopt(curl, CURLOPT_URL, newURL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_IGNORE_CONTENT_LENGTH, 1L); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_SINGLECWD); res = curl_easy_perform(curl); free(newURL); newURL = aprintf("%s/folderB/661", URL); test_setopt(curl, CURLOPT_URL, newURL); res = curl_easy_perform(curl); /* test: CURLFTPMETHOD_NOCWD with absolute path should never emit CWD (for both new and reused easy handle) */ curl_easy_cleanup(curl); curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } free(newURL); newURL = aprintf("%s/folderA/661", URL); test_setopt(curl, CURLOPT_URL, newURL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_IGNORE_CONTENT_LENGTH, 1L); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_NOCWD); res = curl_easy_perform(curl); /* curve ball: CWD /folderB before reusing connection with _NOCWD */ free(newURL); newURL = aprintf("%s/folderB/661", URL); test_setopt(curl, CURLOPT_URL, newURL); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_SINGLECWD); res = curl_easy_perform(curl); free(newURL); newURL = aprintf("%s/folderA/661", URL); test_setopt(curl, CURLOPT_URL, newURL); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_NOCWD); res = curl_easy_perform(curl); /* test: CURLFTPMETHOD_NOCWD with home-relative path should not emit CWD for first FTP access after login */ curl_easy_cleanup(curl); curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } slist = curl_slist_append(NULL, "SYST"); if(!slist) { fprintf(stderr, "curl_slist_append() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_NOBODY, 1L); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_NOCWD); test_setopt(curl, CURLOPT_QUOTE, slist); res = curl_easy_perform(curl); /* test: CURLFTPMETHOD_SINGLECWD with home-relative path should not emit CWD for first FTP access after login */ curl_easy_cleanup(curl); curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_NOBODY, 1L); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_SINGLECWD); test_setopt(curl, CURLOPT_QUOTE, slist); res = curl_easy_perform(curl); /* test: CURLFTPMETHOD_NOCWD with home-relative path should not emit CWD for second FTP access when not needed + bonus: see if path buffering survives curl_easy_reset() */ curl_easy_reset(curl); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_NOBODY, 1L); test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_NOCWD); test_setopt(curl, CURLOPT_QUOTE, slist); res = curl_easy_perform(curl); test_cleanup: curl_slist_free_all(slist); free(newURL); curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib547.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* argv1 = URL * argv2 = proxy * argv3 = proxyuser:password */ #include "test.h" #include "memdebug.h" #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ # define UPLOADTHIS "\x74\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x62" \ "\x6c\x75\x72\x62\x20\x77\x65\x20\x77\x61\x6e\x74\x20" \ "\x74\x6f\x20\x75\x70\x6c\x6f\x61\x64\x0a" #else # define UPLOADTHIS "this is the blurb we want to upload\n" #endif #ifndef LIB548 static size_t readcallback(char *ptr, size_t size, size_t nmemb, void *clientp) { int *counter = (int *)clientp; if(*counter) { /* only do this once and then require a clearing of this */ fprintf(stderr, "READ ALREADY DONE!\n"); return 0; } (*counter)++; /* bump */ if(size * nmemb > strlen(UPLOADTHIS)) { fprintf(stderr, "READ!\n"); strcpy(ptr, UPLOADTHIS); return strlen(UPLOADTHIS); } fprintf(stderr, "READ NOT FINE!\n"); return 0; } static curlioerr ioctlcallback(CURL *handle, int cmd, void *clientp) { int *counter = (int *)clientp; (void)handle; /* unused */ if(cmd == CURLIOCMD_RESTARTREAD) { fprintf(stderr, "REWIND!\n"); *counter = 0; /* clear counter to make the read callback restart */ } return CURLIOE_OK; } #endif int test(char *URL) { CURLcode res; CURL *curl; #ifndef LIB548 int counter = 0; #endif if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_HEADER, 1L); #ifdef LIB548 /* set the data to POST with a mere pointer to a null-terminated string */ test_setopt(curl, CURLOPT_POSTFIELDS, UPLOADTHIS); #else /* 547 style, which means reading the POST data from a callback */ test_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctlcallback); test_setopt(curl, CURLOPT_IOCTLDATA, &counter); test_setopt(curl, CURLOPT_READFUNCTION, readcallback); test_setopt(curl, CURLOPT_READDATA, &counter); /* We CANNOT do the POST fine without setting the size (or choose chunked)! */ test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(UPLOADTHIS)); #endif test_setopt(curl, CURLOPT_POST, 1L); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_PROXYUSERPWD, libtest_arg3); test_setopt(curl, CURLOPT_PROXYAUTH, (long) (CURLAUTH_NTLM | CURLAUTH_DIGEST | CURLAUTH_BASIC) ); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1537.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { const unsigned char a[] = {0x2f, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x91, 0xa2, 0xb3, 0xc4, 0xd5, 0xe6, 0xf7}; CURLcode res = CURLE_OK; char *ptr = NULL; int asize; int outlen = 0; char *raw; (void)URL; /* we don't use this */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } asize = (int)sizeof(a); ptr = curl_easy_escape(NULL, (char *)a, asize); printf("%s\n", ptr); curl_free(ptr); /* deprecated API */ ptr = curl_escape((char *)a, asize); if(!ptr) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } printf("%s\n", ptr); raw = curl_easy_unescape(NULL, ptr, (int)strlen(ptr), &outlen); printf("outlen == %d\n", outlen); printf("unescape == original? %s\n", memcmp(raw, a, outlen) ? "no" : "YES"); curl_free(raw); /* deprecated API */ raw = curl_unescape(ptr, (int)strlen(ptr)); if(!raw) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } outlen = (int)strlen(raw); printf("[old] outlen == %d\n", outlen); printf("[old] unescape == original? %s\n", memcmp(raw, a, outlen) ? "no" : "YES"); curl_free(raw); curl_free(ptr); /* weird input length */ ptr = curl_easy_escape(NULL, (char *)a, -1); printf("escape -1 length: %s\n", ptr); /* weird input length */ outlen = 2017; /* just a value */ ptr = curl_easy_unescape(NULL, (char *)"moahahaha", -1, &outlen); printf("unescape -1 length: %s %d\n", ptr, outlen); test_cleanup: curl_free(ptr); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1502.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ /* * This source code is used for lib1502, lib1503, lib1504 and lib1505 with * only #ifdefs controlling the cleanup sequence. * * Test case 1502 converted from bug report #3575448, identifying a memory * leak in the CURLOPT_RESOLVE handling with the multi interface. */ #include "test.h" #include <limits.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 int test(char *URL) { CURL *easy = NULL; CURL *dup; CURLM *multi = NULL; int still_running; int res = 0; char redirect[160]; /* DNS cache injection */ struct curl_slist *dns_cache_list; res_global_init(CURL_GLOBAL_ALL); if(res) { return res; } msnprintf(redirect, sizeof(redirect), "google.com:%s:%s", libtest_arg2, libtest_arg3); start_test_timing(); dns_cache_list = curl_slist_append(NULL, redirect); if(!dns_cache_list) { fprintf(stderr, "curl_slist_append() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } easy_init(easy); easy_setopt(easy, CURLOPT_URL, URL); easy_setopt(easy, CURLOPT_HEADER, 1L); easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list); dup = curl_easy_duphandle(easy); if(dup) { curl_easy_cleanup(easy); easy = dup; } else { curl_slist_free_all(dns_cache_list); curl_easy_cleanup(easy); curl_global_cleanup(); return CURLE_OUT_OF_MEMORY; } multi_init(multi); multi_add_handle(multi, easy); multi_perform(multi, &still_running); abort_on_test_timeout(); while(still_running) { struct timeval timeout; fd_set fdread; fd_set fdwrite; fd_set fdexcep; int maxfd = -99; FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); timeout.tv_sec = 1; timeout.tv_usec = 0; multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); abort_on_test_timeout(); multi_perform(multi, &still_running); abort_on_test_timeout(); } test_cleanup: #ifdef LIB1502 /* undocumented cleanup sequence - type UA */ curl_multi_cleanup(multi); curl_easy_cleanup(easy); curl_global_cleanup(); #endif #ifdef LIB1503 /* proper cleanup sequence - type PA */ curl_multi_remove_handle(multi, easy); curl_multi_cleanup(multi); curl_easy_cleanup(easy); curl_global_cleanup(); #endif #ifdef LIB1504 /* undocumented cleanup sequence - type UB */ curl_easy_cleanup(easy); curl_multi_cleanup(multi); curl_global_cleanup(); #endif #ifdef LIB1505 /* proper cleanup sequence - type PB */ curl_multi_remove_handle(multi, easy); curl_easy_cleanup(easy); curl_multi_cleanup(multi); curl_global_cleanup(); #endif curl_slist_free_all(dns_cache_list); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1527.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, Vijay Panghal, <vpanghal@maginatics.com>, 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. * ***************************************************************************/ /* * This unit test PUT http data over proxy. Same http header will be generated * for server and proxy */ #include "test.h" #include "memdebug.h" static char data [] = "Hello Cloud!\n"; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream) { size_t amount = nmemb * size; /* Total bytes curl wants */ if(amount < strlen(data)) { return strlen(data); } (void)stream; memcpy(ptr, data, strlen(data)); return strlen(data); } int test(char *URL) { CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http header list*/ struct curl_slist *hhl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); if(!hhl) { goto test_cleanup; } tmp = curl_slist_append(hhl, "Expect: 100-continue"); if(!tmp) { goto test_cleanup; } hhl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_HTTPHEADER, hhl); test_setopt(curl, CURLOPT_POST, 0L); test_setopt(curl, CURLOPT_UPLOAD, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite); test_setopt(curl, CURLOPT_READFUNCTION, read_callback); test_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1L); test_setopt(curl, CURLOPT_INFILESIZE, (long)strlen(data)); test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_UNIFIED); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_slist_free_all(hhl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib523.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PORT, 19999L); test_setopt(curl, CURLOPT_USERPWD, "xxx:yyy"); test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/libntlmconnect.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2012 - 2020, 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. * ***************************************************************************/ #include "test.h" #include <limits.h> #include <assert.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 5 * 1000 #define MAX_EASY_HANDLES 3 static int counter[MAX_EASY_HANDLES]; static CURL *easy[MAX_EASY_HANDLES]; static curl_socket_t sockets[MAX_EASY_HANDLES]; static int res = 0; static size_t callback(char *ptr, size_t size, size_t nmemb, void *data) { ssize_t idx = ((CURL **) data) - easy; curl_socket_t sock; long longdata; CURLcode code; const size_t failure = (size && nmemb) ? 0 : 1; (void)ptr; counter[idx] += (int)(size * nmemb); /* Get socket being used for this easy handle, otherwise CURL_SOCKET_BAD */ code = curl_easy_getinfo(easy[idx], CURLINFO_LASTSOCKET, &longdata); if(CURLE_OK != code) { fprintf(stderr, "%s:%d curl_easy_getinfo() failed, " "with code %d (%s)\n", __FILE__, __LINE__, (int)code, curl_easy_strerror(code)); res = TEST_ERR_MAJOR_BAD; return failure; } if(longdata == -1L) sock = CURL_SOCKET_BAD; else sock = (curl_socket_t)longdata; if(sock != CURL_SOCKET_BAD) { /* Track relationship between this easy handle and the socket. */ if(sockets[idx] == CURL_SOCKET_BAD) { /* An easy handle without previous socket, record the socket. */ sockets[idx] = sock; } else if(sock != sockets[idx]) { /* An easy handle with a socket different to previously tracked one, log and fail right away. Known bug #37. */ fprintf(stderr, "Handle %d started on socket %d and moved to %d\n", curlx_sztosi(idx), (int)sockets[idx], (int)sock); res = TEST_ERR_MAJOR_BAD; return failure; } } return size * nmemb; } enum HandleState { ReadyForNewHandle, NeedSocketForNewHandle, NoMoreHandles }; int test(char *url) { CURLM *multi = NULL; int running; int i; int num_handles = 0; enum HandleState state = ReadyForNewHandle; size_t urllen = strlen(url) + 4 + 1; char *full_url = malloc(urllen); start_test_timing(); if(!full_url) { fprintf(stderr, "Not enough memory for full url\n"); return TEST_ERR_MAJOR_BAD; } for(i = 0; i < MAX_EASY_HANDLES; ++i) { easy[i] = NULL; sockets[i] = CURL_SOCKET_BAD; } res_global_init(CURL_GLOBAL_ALL); if(res) { free(full_url); return res; } multi_init(multi); #ifdef USE_PIPELINING multi_setopt(multi, CURLMOPT_PIPELINING, 1L); multi_setopt(multi, CURLMOPT_MAX_HOST_CONNECTIONS, 5L); multi_setopt(multi, CURLMOPT_MAX_TOTAL_CONNECTIONS, 10L); #endif for(;;) { struct timeval interval; fd_set fdread; fd_set fdwrite; fd_set fdexcep; long timeout = -99; int maxfd = -99; bool found_new_socket = FALSE; /* Start a new handle if we aren't at the max */ if(state == ReadyForNewHandle) { easy_init(easy[num_handles]); if(num_handles % 3 == 2) { msnprintf(full_url, urllen, "%s0200", url); easy_setopt(easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_NTLM); } else { msnprintf(full_url, urllen, "%s0100", url); easy_setopt(easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_BASIC); } easy_setopt(easy[num_handles], CURLOPT_FRESH_CONNECT, 1L); easy_setopt(easy[num_handles], CURLOPT_URL, full_url); easy_setopt(easy[num_handles], CURLOPT_VERBOSE, 1L); easy_setopt(easy[num_handles], CURLOPT_HTTPGET, 1L); easy_setopt(easy[num_handles], CURLOPT_USERPWD, "testuser:testpass"); easy_setopt(easy[num_handles], CURLOPT_WRITEFUNCTION, callback); easy_setopt(easy[num_handles], CURLOPT_WRITEDATA, easy + num_handles); easy_setopt(easy[num_handles], CURLOPT_HEADER, 1L); multi_add_handle(multi, easy[num_handles]); num_handles += 1; state = NeedSocketForNewHandle; } multi_perform(multi, &running); fprintf(stderr, "%s:%d running %d state %d\n", __FILE__, __LINE__, running, state); abort_on_test_timeout(); if(!running && state == NoMoreHandles) break; /* done */ FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ if(state == NeedSocketForNewHandle) { if(maxfd != -1 && !found_new_socket) { fprintf(stderr, "Warning: socket did not open immediately for new " "handle (trying again)\n"); continue; } state = num_handles < MAX_EASY_HANDLES ? ReadyForNewHandle : NoMoreHandles; fprintf(stderr, "%s:%d new state %d\n", __FILE__, __LINE__, state); } multi_timeout(multi, &timeout); /* At this point, timeout is guaranteed to be greater or equal than -1. */ fprintf(stderr, "%s:%d num_handles %d timeout %ld running %d\n", __FILE__, __LINE__, num_handles, timeout, running); if(timeout != -1L) { int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout; interval.tv_sec = itimeout/1000; interval.tv_usec = (itimeout%1000)*1000; } else { interval.tv_sec = 0; interval.tv_usec = 5000; /* if there's no timeout and we get here on the last handle, we may already have read the last part of the stream so waiting makes no sense */ if(!running && num_handles == MAX_EASY_HANDLES) { break; } } select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &interval); abort_on_test_timeout(); } test_cleanup: /* proper cleanup sequence - type PB */ for(i = 0; i < MAX_EASY_HANDLES; i++) { printf("Data connection %d: %d\n", i, counter[i]); curl_multi_remove_handle(multi, easy[i]); curl_easy_cleanup(easy[i]); } curl_multi_cleanup(multi); curl_global_cleanup(); free(full_url); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1511.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { long unmet; CURL *curl = NULL; int res = 0; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_HEADER, 1L); easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE); /* TIMEVALUE in the future */ easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L); res = curl_easy_perform(curl); if(res) goto test_cleanup; curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); if(unmet != 1L) { res = TEST_ERR_FAILURE; /* not correct */ goto test_cleanup; } /* TIMEVALUE in the past */ easy_setopt(curl, CURLOPT_TIMEVALUE, 1L); res = curl_easy_perform(curl); if(res) goto test_cleanup; curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); if(unmet) { res = TEST_ERR_FAILURE; /* not correct */ goto test_cleanup; } res = TEST_ERR_SUCCESS; /* this is where we should be */ test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib3010.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2020 - 2021, Nicolas Sterchele, <nicolas@sterchelen.net> * * 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode ret = CURLE_OK; CURL *curl = NULL; curl_off_t retry_after; char *follow_url = NULL; curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, URL); ret = curl_easy_perform(curl); if(ret) { fprintf(stderr, "%s:%d curl_easy_perform() failed with code %d (%s)\n", __FILE__, __LINE__, ret, curl_easy_strerror(ret)); goto test_cleanup; } curl_easy_getinfo(curl, CURLINFO_REDIRECT_URL, &follow_url); curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); printf("Retry-After %" CURL_FORMAT_CURL_OFF_T "\n", retry_after); curl_easy_setopt(curl, CURLOPT_URL, follow_url); ret = curl_easy_perform(curl); if(ret) { fprintf(stderr, "%s:%d curl_easy_perform() failed with code %d (%s)\n", __FILE__, __LINE__, ret, curl_easy_strerror(ret)); goto test_cleanup; } curl_easy_reset(curl); curl_easy_getinfo(curl, CURLINFO_RETRY_AFTER, &retry_after); printf("Retry-After %" CURL_FORMAT_CURL_OFF_T "\n", retry_after); } test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return ret; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib517.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" struct dcheck { const char *input; time_t output; }; static const struct dcheck dates[] = { {"Sun, 06 Nov 1994 08:49:37 GMT", 784111777 }, {"Sunday, 06-Nov-94 08:49:37 GMT", 784111777 }, {"Sun Nov 6 08:49:37 1994", 784111777 }, {"06 Nov 1994 08:49:37 GMT", 784111777 }, {"06-Nov-94 08:49:37 GMT", 784111777 }, {"Nov 6 08:49:37 1994", 784111777 }, {"06 Nov 1994 08:49:37", 784111777 }, {"06-Nov-94 08:49:37", 784111777 }, {"1994 Nov 6 08:49:37", 784111777 }, {"GMT 08:49:37 06-Nov-94 Sunday", 784111777 }, {"94 6 Nov 08:49:37", 784111777 }, {"1994 Nov 6", 784080000 }, {"06-Nov-94", 784080000 }, {"Sun Nov 6 94", 784080000 }, {"1994.Nov.6", 784080000 }, {"Sun/Nov/6/94/GMT", 784080000 }, {"Sun, 06 Nov 1994 08:49:37 CET", 784108177 }, {"06 Nov 1994 08:49:37 EST", 784129777 }, {"Sun, 06 Nov 1994 08:49:37 UT", 784111777 }, {"Sun, 12 Sep 2004 15:05:58 -0700", 1095026758 }, {"Sat, 11 Sep 2004 21:32:11 +0200", 1094931131 }, {"20040912 15:05:58 -0700", 1095026758 }, {"20040911 +0200", 1094853600 }, {"Thu, 01-Jan-1970 00:59:59 GMT", 3599 }, {"Thu, 01-Jan-1970 01:00:00 GMT", 3600 }, {"Sat, 15-Apr-17 21:01:22 GMT", 1492290082 }, {"Thu, 19-Apr-2007 16:00:00 GMT", 1176998400 }, {"Wed, 25 Apr 2007 21:02:13 GMT", 1177534933 }, {"Thu, 19/Apr\\2007 16:00:00 GMT", 1176998400 }, {"Fri, 1 Jan 2010 01:01:50 GMT", 1262307710 }, {"Wednesday, 1-Jan-2003 00:00:00 GMT", 1041379200 }, {", 1-Jan-2003 00:00:00 GMT", 1041379200 }, {"1-Jan-2003 00:00:00 GMT", 1041379200 }, {"1-Jan-2003 00:00:00 GMT", 1041379200 }, {"Wed,18-Apr-07 22:50:12 GMT", 1176936612 }, {"WillyWonka , 18-Apr-07 22:50:12 GMT", -1 }, {"WillyWonka , 18-Apr-07 22:50:12", -1 }, {"WillyWonka , 18-apr-07 22:50:12", -1 }, {"Mon, 18-Apr-1977 22:50:13 GMT", 230251813 }, {"Mon, 18-Apr-77 22:50:13 GMT", 230251813 }, {"Sat, 15-Apr-17\"21:01:22\"GMT", 1492290082 }, {"Partyday, 18- April-07 22:50:12", -1 }, {"Partyday, 18 - Apri-07 22:50:12", -1 }, {"Wednes, 1-Januar-2003 00:00:00 GMT", -1 }, {"Sat, 15-Apr-17 21:01:22", 1492290082 }, {"Sat, 15-Apr-17 21:01:22 GMT-2", 1492290082 }, {"Sat, 15-Apr-17 21:01:22 GMT BLAH", 1492290082 }, {"Sat, 15-Apr-17 21:01:22 GMT-0400", 1492290082 }, {"Sat, 15-Apr-17 21:01:22 GMT-0400 (EDT)", 1492290082 }, {"Sat, 15-Apr-17 21:01:22 DST", -1 }, {"Sat, 15-Apr-17 21:01:22 -0400", 1492304482 }, {"Sat, 15-Apr-17 21:01:22 (hello there)", -1 }, {"Sat, 15-Apr-17 21:01:22 11:22:33", -1 }, {"Sat, 15-Apr-17 ::00 21:01:22", -1 }, {"Sat, 15-Apr-17 boink:z 21:01:22", -1 }, {"Sat, 15-Apr-17 91:22:33 21:01:22", -1 }, {"Thu Apr 18 22:50:12 2007 GMT", 1176936612 }, {"22:50:12 Thu Apr 18 2007 GMT", 1176936612 }, {"Thu 22:50:12 Apr 18 2007 GMT", 1176936612 }, {"Thu Apr 22:50:12 18 2007 GMT", 1176936612 }, {"Thu Apr 18 22:50:12 2007 GMT", 1176936612 }, {"Thu Apr 18 2007 22:50:12 GMT", 1176936612 }, {"Thu Apr 18 2007 GMT 22:50:12", 1176936612 }, {"Sat, 15-Apr-17 21:01:22 GMT", 1492290082 }, {"15-Sat, Apr-17 21:01:22 GMT", 1492290082 }, {"15-Sat, Apr 21:01:22 GMT 17", 1492290082 }, {"15-Sat, Apr 21:01:22 GMT 2017", 1492290082 }, {"15 Apr 21:01:22 2017", 1492290082 }, {"15 17 Apr 21:01:22", 1492290082 }, {"Apr 15 17 21:01:22", 1492290082 }, {"Apr 15 21:01:22 17", 1492290082 }, {"2017 April 15 21:01:22", -1 }, {"15 April 2017 21:01:22", -1 }, {"98 April 17 21:01:22", -1 }, {"Thu, 012-Aug-2008 20:49:07 GMT", 1218574147 }, {"Thu, 999999999999-Aug-2007 20:49:07 GMT", -1 }, {"Thu, 12-Aug-2007 20:61:99999999999 GMT", -1 }, {"IAintNoDateFool", -1 }, {"Thu Apr 18 22:50 2007 GMT", 1176936600 }, {"20110623 12:34:56", 1308832496 }, {"20110632 12:34:56", -1 }, {"20110623 56:34:56", -1 }, {"20111323 12:34:56", -1 }, {"20110623 12:34:79", -1 }, {"Wed, 31 Dec 2008 23:59:60 GMT", 1230768000 }, {"20110623 12:3", 1308830580 }, {"20110623 1:3", 1308790980 }, {"20110623 1:30", 1308792600 }, {"20110623 12:12:3", 1308831123 }, {"20110623 01:12:3", 1308791523 }, {"20110623 01:99:30", -1 }, {"Thu, 01-Jan-1970 00:00:00 GMT", 0 }, {"Thu, 31-Dec-1969 23:59:58 GMT", -2 }, {"Thu, 31-Dec-1969 23:59:59 GMT", 0 }, /* avoids -1 ! */ #if SIZEOF_TIME_T > 4 {"Sun, 06 Nov 2044 08:49:37 GMT", 2362034977 }, {"Sun, 06 Nov 3144 08:49:37 GMT", 37074617377 }, #ifndef HAVE_TIME_T_UNSIGNED #if 0 /* causes warning on MSVC */ {"Sun, 06 Nov 1900 08:49:37 GMT", -2182259423 }, #endif {"Sun, 06 Nov 1800 08:49:37 GMT", -5337933023 }, {"Thu, 01-Jan-1583 00:00:00 GMT", -12212553600 }, #endif {"Thu, 01-Jan-1499 00:00:00 GMT", -1 }, #else {"Sun, 06 Nov 2044 08:49:37 GMT", -1 }, #endif #ifndef HAVE_TIME_T_UNSIGNED {"Sun, 06 Nov 1968 08:49:37 GMT", -36342623 }, #endif { NULL, 0 } }; int test(char *URL) { int i; int error = 0; (void)URL; /* not used */ for(i = 0; dates[i].input; i++) { time_t out = curl_getdate(dates[i].input, NULL); if(out != dates[i].output) { printf("WRONGLY %s => %ld (instead of %ld)\n", dates[i].input, out, dates[i].output); error++; } } return error; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/testutil.h
#ifndef HEADER_CURL_LIBTEST_TESTUTIL_H #define HEADER_CURL_LIBTEST_TESTUTIL_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "curl_setup.h" struct timeval tutil_tvnow(void); /* * Make sure that the first argument (t1) is the more recent time and t2 is * the older time, as otherwise you get a weird negative time-diff back... * * Returns: the time difference in number of milliseconds. */ long tutil_tvdiff(struct timeval t1, struct timeval t2); /* * Same as tutil_tvdiff but with full usec resolution. * * Returns: the time difference in seconds with subsecond resolution. */ double tutil_tvdiff_secs(struct timeval t1, struct timeval t2); #endif /* HEADER_CURL_LIBTEST_TESTUTIL_H */
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1916.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2020, 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. * ***************************************************************************/ #include "test.h" #include "warnless.h" #include "memdebug.h" int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, URL); #ifdef LIB1917 /* without any postfields set! */ curl_easy_setopt(curl, CURLOPT_POST, 1L); #else curl_easy_setopt(curl, CURLOPT_POSTFIELDS, ""); #endif res = curl_easy_perform(curl); if(res) { printf("res: %d\n", res); } curl_easy_cleanup(curl); } curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib570.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" /* build request url */ static char *suburl(const char *base, int i) { return curl_maprintf("%s%.4d", base, i); } int test(char *URL) { int res; CURL *curl; int request = 1; char *stream_uri = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_HEADERDATA, stdout); test_setopt(curl, CURLOPT_WRITEDATA, stdout); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS); stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; res = curl_easy_perform(curl); if(res != (int)CURLE_RTSP_CSEQ_ERROR) { fprintf(stderr, "Failed to detect CSeq mismatch"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_CLIENT_CSEQ, 999L); test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "RAW/RAW/UDP;unicast;client_port=3056-3057"); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; res = curl_easy_perform(curl); if(res) goto test_cleanup; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; res = curl_easy_perform(curl); if(res == CURLE_RTSP_SESSION_ERROR) { res = 0; } else { fprintf(stderr, "Failed to detect a Session ID mismatch"); res = 1; } test_cleanup: free(stream_uri); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/testtrace.h
#ifndef HEADER_LIBTEST_TESTTRACE_H #define HEADER_LIBTEST_TESTTRACE_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ struct libtest_trace_cfg { int tracetime; /* 0 represents FALSE, anything else TRUE */ int nohex; /* 0 represents FALSE, anything else TRUE */ }; extern struct libtest_trace_cfg libtest_debug_config; int libtest_debug_cb(CURL *handle, curl_infotype type, unsigned char *data, size_t size, void *userp); #endif /* HEADER_LIBTEST_TESTTRACE_H */
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/sethostname.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "curl_setup.h" #include "sethostname.h" /* * we force our own host name, in order to make some tests machine independent */ int gethostname(char *name, GETHOSTNAME_TYPE_ARG2 namelen) { const char *force_hostname = getenv("CURL_GETHOSTNAME"); if(force_hostname) { strncpy(name, force_hostname, namelen); name[namelen-1] = '\0'; return 0; } /* LD_PRELOAD used, but no hostname set, we'll just return a failure */ return -1; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib562.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include "memdebug.h" /* * From "KNOWN_BUGS" April 2009: 59. If the CURLOPT_PORT option is used on an FTP URL like "ftp://example.com/file;type=A" the ";type=A" is stripped off. */ int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } /* get a curl handle */ curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* enable verbose */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* set port number */ test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10)); /* specify target */ test_setopt(curl, CURLOPT_URL, URL); /* Now run off and do what you've been told! */ res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib518.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #endif #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include <limits.h> #include "warnless.h" #include "memdebug.h" #ifndef FD_SETSIZE #error "this test requires FD_SETSIZE" #endif #define SAFETY_MARGIN (16) #define NUM_OPEN (FD_SETSIZE + 10) #define NUM_NEEDED (NUM_OPEN + SAFETY_MARGIN) #if defined(WIN32) || defined(_WIN32) || defined(MSDOS) #define DEV_NULL "NUL" #else #define DEV_NULL "/dev/null" #endif #if defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) static int *fd = NULL; static struct rlimit num_open; static char msgbuff[256]; static void store_errmsg(const char *msg, int err) { if(!err) msnprintf(msgbuff, sizeof(msgbuff), "%s", msg); else msnprintf(msgbuff, sizeof(msgbuff), "%s, errno %d, %s", msg, err, strerror(err)); } static void close_file_descriptors(void) { for(num_open.rlim_cur = 0; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) if(fd[num_open.rlim_cur] > 0) close(fd[num_open.rlim_cur]); free(fd); fd = NULL; } static int fopen_works(void) { FILE *fpa[3]; int i; int ret = 1; for(i = 0; i < 3; i++) { fpa[i] = NULL; } for(i = 0; i < 3; i++) { fpa[i] = fopen(DEV_NULL, FOPEN_READTEXT); if(!fpa[i]) { store_errmsg("fopen failed", errno); fprintf(stderr, "%s\n", msgbuff); ret = 0; break; } } for(i = 0; i < 3; i++) { if(fpa[i] != NULL) fclose(fpa[i]); } return ret; } static int rlimit(int keep_open) { int nitems, i; int *memchunk = NULL; char *fmt; struct rlimit rl; char strbuff[256]; char strbuff1[81]; char strbuff2[81]; char fmt_u[] = "%u"; char fmt_lu[] = "%lu"; #ifdef HAVE_LONGLONG char fmt_llu[] = "%llu"; if(sizeof(rl.rlim_max) > sizeof(long)) fmt = fmt_llu; else #endif fmt = (sizeof(rl.rlim_max) < sizeof(long))?fmt_u:fmt_lu; /* get initial open file limits */ if(getrlimit(RLIMIT_NOFILE, &rl) != 0) { store_errmsg("getrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -1; } /* show initial open file limits */ #ifdef RLIM_INFINITY if(rl.rlim_cur == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur); fprintf(stderr, "initial soft limit: %s\n", strbuff); #ifdef RLIM_INFINITY if(rl.rlim_max == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max); fprintf(stderr, "initial hard limit: %s\n", strbuff); /* show our constants */ fprintf(stderr, "test518 FD_SETSIZE: %d\n", FD_SETSIZE); fprintf(stderr, "test518 NUM_OPEN : %d\n", NUM_OPEN); fprintf(stderr, "test518 NUM_NEEDED: %d\n", NUM_NEEDED); /* * if soft limit and hard limit are different we ask the * system to raise soft limit all the way up to the hard * limit. Due to some other system limit the soft limit * might not be raised up to the hard limit. So from this * point the resulting soft limit is our limit. Trying to * open more than soft limit file descriptors will fail. */ if(rl.rlim_cur != rl.rlim_max) { #ifdef OPEN_MAX if((rl.rlim_cur > 0) && (rl.rlim_cur < OPEN_MAX)) { fprintf(stderr, "raising soft limit up to OPEN_MAX\n"); rl.rlim_cur = OPEN_MAX; if(setrlimit(RLIMIT_NOFILE, &rl) != 0) { /* on failure don't abort just issue a warning */ store_errmsg("setrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); msgbuff[0] = '\0'; } } #endif fprintf(stderr, "raising soft limit up to hard limit\n"); rl.rlim_cur = rl.rlim_max; if(setrlimit(RLIMIT_NOFILE, &rl) != 0) { /* on failure don't abort just issue a warning */ store_errmsg("setrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); msgbuff[0] = '\0'; } /* get current open file limits */ if(getrlimit(RLIMIT_NOFILE, &rl) != 0) { store_errmsg("getrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -3; } /* show current open file limits */ #ifdef RLIM_INFINITY if(rl.rlim_cur == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur); fprintf(stderr, "current soft limit: %s\n", strbuff); #ifdef RLIM_INFINITY if(rl.rlim_max == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max); fprintf(stderr, "current hard limit: %s\n", strbuff); } /* (rl.rlim_cur != rl.rlim_max) */ /* * test 518 is all about testing libcurl functionality * when more than FD_SETSIZE file descriptors are open. * This means that if for any reason we are not able to * open more than FD_SETSIZE file descriptors then test * 518 should not be run. */ /* * verify that soft limit is higher than NUM_NEEDED, * which is the number of file descriptors we would * try to open plus SAFETY_MARGIN to not exhaust the * file descriptor pool */ num_open.rlim_cur = NUM_NEEDED; if((rl.rlim_cur > 0) && #ifdef RLIM_INFINITY (rl.rlim_cur != RLIM_INFINITY) && #endif (rl.rlim_cur <= num_open.rlim_cur)) { msnprintf(strbuff2, sizeof(strbuff2), fmt, rl.rlim_cur); msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "fds needed %s > system limit %s", strbuff1, strbuff2); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); return -4; } /* * reserve a chunk of memory before opening file descriptors to * avoid a low memory condition once the file descriptors are * open. System conditions that could make the test fail should * be addressed in the precheck phase. This chunk of memory shall * be always free()ed before exiting the rlimit() function so * that it becomes available to the test. */ for(nitems = i = 1; nitems <= i; i *= 2) nitems = i; if(nitems > 0x7fff) nitems = 0x40000; do { num_open.rlim_max = sizeof(*memchunk) * (size_t)nitems; msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "allocating memchunk %s byte array\n", strbuff); memchunk = malloc(sizeof(*memchunk) * (size_t)nitems); if(!memchunk) { fprintf(stderr, "memchunk, malloc() failed\n"); nitems /= 2; } } while(nitems && !memchunk); if(!memchunk) { store_errmsg("memchunk, malloc() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -5; } /* initialize it to fight lazy allocation */ fprintf(stderr, "initializing memchunk array\n"); for(i = 0; i < nitems; i++) memchunk[i] = -1; /* set the number of file descriptors we will try to open */ num_open.rlim_max = NUM_OPEN; /* verify that we won't overflow size_t in malloc() */ if((size_t)(num_open.rlim_max) > ((size_t)-1) / sizeof(*fd)) { msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_max); msnprintf(strbuff, sizeof(strbuff), "unable to allocate an array for %s " "file descriptors, would overflow size_t", strbuff1); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); free(memchunk); return -6; } /* allocate array for file descriptors */ msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "allocating array for %s file descriptors\n", strbuff); fd = malloc(sizeof(*fd) * (size_t)(num_open.rlim_max)); if(!fd) { store_errmsg("fd, malloc() failed", errno); fprintf(stderr, "%s\n", msgbuff); free(memchunk); return -7; } /* initialize it to fight lazy allocation */ fprintf(stderr, "initializing fd array\n"); for(num_open.rlim_cur = 0; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) fd[num_open.rlim_cur] = -1; msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "trying to open %s file descriptors\n", strbuff); /* open a dummy descriptor */ fd[0] = open(DEV_NULL, O_RDONLY); if(fd[0] < 0) { msnprintf(strbuff, sizeof(strbuff), "opening of %s failed", DEV_NULL); store_errmsg(strbuff, errno); fprintf(stderr, "%s\n", msgbuff); free(fd); fd = NULL; free(memchunk); return -8; } /* create a bunch of file descriptors */ for(num_open.rlim_cur = 1; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) { fd[num_open.rlim_cur] = dup(fd[0]); if(fd[num_open.rlim_cur] < 0) { fd[num_open.rlim_cur] = -1; msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "dup() attempt %s failed", strbuff1); fprintf(stderr, "%s\n", strbuff); msnprintf(strbuff1, sizeof(strbuff), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "fds system limit seems close to %s", strbuff1); fprintf(stderr, "%s\n", strbuff); num_open.rlim_max = NUM_NEEDED; msnprintf(strbuff2, sizeof(strbuff2), fmt, num_open.rlim_max); msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "fds needed %s > system limit %s", strbuff2, strbuff1); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); for(num_open.rlim_cur = 0; fd[num_open.rlim_cur] >= 0; num_open.rlim_cur++) close(fd[num_open.rlim_cur]); free(fd); fd = NULL; free(memchunk); return -9; } } msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "%s file descriptors open\n", strbuff); #if !defined(HAVE_POLL_FINE) && \ !defined(USE_WINSOCK) && \ !defined(TPF) /* * when using select() instead of poll() we cannot test * libcurl functionality with a socket number equal or * greater than FD_SETSIZE. In any case, macro VERIFY_SOCK * in lib/select.c enforces this check and protects libcurl * from a possible crash. The effect of this protection * is that test 518 will always fail, since the actual * call to select() never takes place. We skip test 518 * with an indication that select limit would be exceeded. */ num_open.rlim_cur = FD_SETSIZE - SAFETY_MARGIN; if(num_open.rlim_max > num_open.rlim_cur) { msnprintf(strbuff, sizeof(strbuff), "select limit is FD_SETSIZE %d", FD_SETSIZE); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); close_file_descriptors(); free(memchunk); return -10; } num_open.rlim_cur = FD_SETSIZE - SAFETY_MARGIN; for(rl.rlim_cur = 0; rl.rlim_cur < num_open.rlim_max; rl.rlim_cur++) { if((fd[rl.rlim_cur] > 0) && ((unsigned int)fd[rl.rlim_cur] > num_open.rlim_cur)) { msnprintf(strbuff, sizeof(strbuff), "select limit is FD_SETSIZE %d", FD_SETSIZE); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); close_file_descriptors(); free(memchunk); return -11; } } #endif /* using a FD_SETSIZE bound select() */ /* * Old or 'backwards compatible' implementations of stdio do not allow * handling of streams with an underlying file descriptor number greater * than 255, even when allowing high numbered file descriptors for sockets. * At this point we have a big number of file descriptors which have been * opened using dup(), so lets test the stdio implementation and discover * if it is capable of fopen()ing some additional files. */ if(!fopen_works()) { msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_max); msnprintf(strbuff, sizeof(strbuff), "fopen fails with %s fds open()", strbuff1); fprintf(stderr, "%s\n", msgbuff); msnprintf(strbuff, sizeof(strbuff), "fopen fails with lots of fds open()"); store_errmsg(strbuff, 0); close_file_descriptors(); free(memchunk); return -12; } /* free the chunk of memory we were reserving so that it becomes becomes available to the test */ free(memchunk); /* close file descriptors unless instructed to keep them */ if(!keep_open) { close_file_descriptors(); } return 0; } int test(char *URL) { CURLcode res; CURL *curl; if(!strcmp(URL, "check")) { /* used by the test script to ask if we can run this test or not */ if(rlimit(FALSE)) { fprintf(stdout, "rlimit problem: %s\n", msgbuff); return 1; } return 0; /* sure, run this! */ } if(rlimit(TRUE)) { /* failure */ return TEST_ERR_MAJOR_BAD; } /* run the test with the bunch of open file descriptors and close them all once the test is over */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); close_file_descriptors(); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); close_file_descriptors(); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); res = curl_easy_perform(curl); test_cleanup: close_file_descriptors(); curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; } #else /* defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) */ int test(char *URL) { (void)URL; printf("system lacks necessary system function(s)"); return 1; /* skip test */ } #endif /* defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) */
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1522.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" /* test case and code based on https://github.com/curl/curl/issues/2847 */ #include "testtrace.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" static char g_Data[40 * 1024]; /* POST 40KB */ static int sockopt_callback(void *clientp, curl_socket_t curlfd, curlsocktype purpose) { #if defined(SOL_SOCKET) && defined(SO_SNDBUF) int sndbufsize = 4 * 1024; /* 4KB send buffer */ (void) clientp; (void) purpose; setsockopt(curlfd, SOL_SOCKET, SO_SNDBUF, (const char *)&sndbufsize, sizeof(sndbufsize)); #else (void)clientp; (void)curlfd; (void)purpose; #endif return CURL_SOCKOPT_OK; } int test(char *URL) { CURLcode code; CURLcode res; struct curl_slist *pHeaderList = NULL; CURL *curl = curl_easy_init(); memset(g_Data, 'A', sizeof(g_Data)); /* send As! */ curl_easy_setopt(curl, CURLOPT_SOCKOPTFUNCTION, sockopt_callback); curl_easy_setopt(curl, CURLOPT_URL, URL); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, g_Data); curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)sizeof(g_Data)); libtest_debug_config.nohex = 1; libtest_debug_config.tracetime = 1; test_setopt(curl, CURLOPT_DEBUGDATA, &libtest_debug_config); test_setopt(curl, CURLOPT_DEBUGFUNCTION, libtest_debug_cb); test_setopt(curl, CURLOPT_VERBOSE, 1L); /* Remove "Expect: 100-continue" */ pHeaderList = curl_slist_append(pHeaderList, "Expect:"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, pHeaderList); code = curl_easy_perform(curl); if(code == CURLE_OK) { curl_off_t uploadSize; curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD_T, &uploadSize); printf("uploadSize = %ld\n", (long)uploadSize); if((size_t) uploadSize == sizeof(g_Data)) { printf("!!!!!!!!!! PASS\n"); } else { printf("sent %d, libcurl says %d\n", (int)sizeof(g_Data), (int)uploadSize); } } else { printf("curl_easy_perform() failed. e = %d\n", code); } test_cleanup: curl_slist_free_all(pHeaderList); curl_easy_cleanup(curl); curl_global_cleanup(); return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1593.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* Test suppressing the If-Modified-Since header */ #include "test.h" #include "memdebug.h" int test(char *URL) { struct curl_slist *header = NULL; long unmet; CURL *curl = NULL; int res = 0; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE); /* Some TIMEVALUE; it doesn't matter. */ easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L); header = curl_slist_append(NULL, "If-Modified-Since:"); if(!header) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } easy_setopt(curl, CURLOPT_HTTPHEADER, header); res = curl_easy_perform(curl); if(res) goto test_cleanup; /* Confirm that the condition checking still worked, even though we * suppressed the actual header. * The server returns 304, which means the condition is "unmet". */ res = curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet); if(res) goto test_cleanup; if(unmet != 1L) { res = TEST_ERR_FAILURE; goto test_cleanup; } test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_slist_free_all(header); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib599.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static int progress_callback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow) { (void)clientp; (void)ulnow; (void)ultotal; if((dltotal > 0.0) && (dlnow > dltotal)) { /* this should not happen with test case 599 */ printf("%.0f > %.0f !!\n", dltotal, dlnow); return -1; } return 0; } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; double content_length = 0.0; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* we want to use our own progress function */ test_setopt(curl, CURLOPT_NOPROGRESS, 0L); test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* follow redirects */ test_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); if(!res) { FILE *moo; res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &content_length); moo = fopen(libtest_arg2, "wb"); if(moo) { fprintf(moo, "CL %.0f\n", content_length); fclose(moo); } } test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib510.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static const char *post[]={ "one", "two", "three", "and a final longer crap: four", NULL }; struct WriteThis { int counter; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct WriteThis *pooh = (struct WriteThis *)userp; const char *data; if(size*nmemb < 1) return 0; data = post[pooh->counter]; if(data) { size_t len = strlen(data); if(size*nmemb < len) { fprintf(stderr, "read buffer is too small to run test\n"); return 0; } memcpy(ptr, data, len); pooh->counter++; /* advance pointer */ return len; } return 0; /* no more data left to deliver */ } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; struct curl_slist *slist = NULL; struct WriteThis pooh; pooh.counter = 0; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } slist = curl_slist_append(slist, "Transfer-Encoding: chunked"); if(!slist) { fprintf(stderr, "curl_slist_append() failed\n"); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* Now specify we want to POST data */ test_setopt(curl, CURLOPT_POST, 1L); #ifdef CURL_DOES_CONVERSIONS /* Convert the POST data to ASCII */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); #endif /* we want to use our own read function */ test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* pointer to pass to our read function */ test_setopt(curl, CURLOPT_READDATA, &pooh); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* enforce chunked transfer by setting the header */ test_setopt(curl, CURLOPT_HTTPHEADER, slist); #ifdef LIB565 test_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST); test_setopt(curl, CURLOPT_USERPWD, "foo:bar"); #endif /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* clean up the headers list */ if(slist) curl_slist_free_all(slist); /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1530.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static curl_socket_t opensocket(void *clientp, curlsocktype purpose, struct curl_sockaddr *address) { (void)purpose; (void)address; (void)clientp; fprintf(stderr, "opensocket() returns CURL_SOCKET_BAD\n"); return CURL_SOCKET_BAD; } int test(char *URL) { CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; (void)URL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, "http://99.99.99.99:9999"); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, opensocket); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1538.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { int res = 0; CURLcode easyret; CURLMcode multiret; CURLSHcode shareret; CURLUcode urlret; (void)URL; curl_easy_strerror((CURLcode)INT_MAX); curl_multi_strerror((CURLMcode)INT_MAX); curl_share_strerror((CURLSHcode)INT_MAX); curl_url_strerror((CURLUcode)INT_MAX); curl_easy_strerror((CURLcode)-INT_MAX); curl_multi_strerror((CURLMcode)-INT_MAX); curl_share_strerror((CURLSHcode)-INT_MAX); curl_url_strerror((CURLUcode)-INT_MAX); for(easyret = CURLE_OK; easyret <= CURL_LAST; easyret++) { printf("e%d: %s\n", (int)easyret, curl_easy_strerror(easyret)); } for(multiret = CURLM_CALL_MULTI_PERFORM; multiret <= CURLM_LAST; multiret++) { printf("m%d: %s\n", (int)multiret, curl_multi_strerror(multiret)); } for(shareret = CURLSHE_OK; shareret <= CURLSHE_LAST; shareret++) { printf("s%d: %s\n", (int)shareret, curl_share_strerror(shareret)); } for(urlret = CURLUE_OK; urlret <= CURLUE_LAST; urlret++) { printf("u%d: %s\n", (int)urlret, curl_url_strerror(urlret)); } return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib504.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 /* * Source code in here hugely as reported in bug report 651464 by * Christopher R. Palmer. * * Use multi interface to get document over proxy with bad port number. * This caused the interface to "hang" in libcurl 7.10.2. */ int test(char *URL) { CURL *c = NULL; int res = 0; CURLM *m = NULL; fd_set rd, wr, exc; int running; start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(c); /* The point here is that there must not be anything running on the given proxy port */ if(libtest_arg2) easy_setopt(c, CURLOPT_PROXY, libtest_arg2); easy_setopt(c, CURLOPT_URL, URL); easy_setopt(c, CURLOPT_VERBOSE, 1L); multi_init(m); multi_add_handle(m, c); for(;;) { struct timeval interval; int maxfd = -99; interval.tv_sec = 1; interval.tv_usec = 0; fprintf(stderr, "curl_multi_perform()\n"); multi_perform(m, &running); abort_on_test_timeout(); if(!running) { /* This is where this code is expected to reach */ int numleft; CURLMsg *msg = curl_multi_info_read(m, &numleft); fprintf(stderr, "Expected: not running\n"); if(msg && !numleft) res = TEST_ERR_SUCCESS; /* this is where we should be */ else res = TEST_ERR_FAILURE; /* not correct */ break; /* done */ } fprintf(stderr, "running == %d\n", running); FD_ZERO(&rd); FD_ZERO(&wr); FD_ZERO(&exc); fprintf(stderr, "curl_multi_fdset()\n"); multi_fdset(m, &rd, &wr, &exc, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &rd, &wr, &exc, &interval); abort_on_test_timeout(); } test_cleanup: /* proper cleanup sequence - type PA */ curl_multi_remove_handle(m, c); curl_multi_cleanup(m); curl_easy_cleanup(c); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib541.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include "memdebug.h" /* * Two FTP uploads, the second with no content sent. */ int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; FILE *hd_src; int hd; struct_stat file_info; if(!libtest_arg2) { fprintf(stderr, "Usage: <url> <file-to-upload>\n"); return TEST_ERR_USAGE; } hd_src = fopen(libtest_arg2, "rb"); if(NULL == hd_src) { fprintf(stderr, "fopen failed with error: %d %s\n", errno, strerror(errno)); fprintf(stderr, "Error opening file: %s\n", libtest_arg2); return -2; /* if this happens things are major weird */ } /* get the file size of the local file */ hd = fstat(fileno(hd_src), &file_info); if(hd == -1) { /* can't open file, bail out */ fprintf(stderr, "fstat() failed with error: %d %s\n", errno, strerror(errno)); fprintf(stderr, "ERROR: cannot open file %s\n", libtest_arg2); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } if(!file_info.st_size) { fprintf(stderr, "ERROR: file %s has zero size!\n", libtest_arg2); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } /* get a curl handle */ curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } /* enable uploading */ test_setopt(curl, CURLOPT_UPLOAD, 1L); /* enable verbose */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* specify target */ test_setopt(curl, CURLOPT_URL, URL); /* now specify which file to upload */ test_setopt(curl, CURLOPT_READDATA, hd_src); /* Now run off and do what you've been told! */ curl_easy_perform(curl); /* and now upload the exact same again, but without rewinding so it already is at end of file */ res = curl_easy_perform(curl); test_cleanup: /* close the local file */ fclose(hd_src); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib554.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[]= #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x74\x68\x69\x73\x20\x69\x73\x20\x77\x68\x61\x74\x20\x77\x65\x20\x70" "\x6f\x73\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x69\x6c\x6c\x79\x20" "\x77\x65\x62\x20\x73\x65\x72\x76\x65\x72\x0a"; #else "this is what we post to the silly web server\n"; #endif struct WriteThis { char *readptr; size_t sizeleft; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { #ifdef LIB587 (void)ptr; (void)size; (void)nmemb; (void)userp; return CURL_READFUNC_ABORT; #else struct WriteThis *pooh = (struct WriteThis *)userp; if(size*nmemb < 1) return 0; if(pooh->sizeleft) { *ptr = pooh->readptr[0]; /* copy one single byte */ pooh->readptr++; /* advance pointer */ pooh->sizeleft--; /* less data left */ return 1; /* we return 1 byte at a time! */ } return 0; /* no more data left to deliver */ #endif } static int once(char *URL, bool oldstyle) { CURL *curl; CURLcode res = CURLE_OK; CURLFORMcode formrc; struct curl_httppost *formpost = NULL; struct curl_httppost *lastptr = NULL; struct WriteThis pooh; struct WriteThis pooh2; pooh.readptr = data; pooh.sizeleft = strlen(data); /* Fill in the file upload field */ if(oldstyle) { formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "sendfile", CURLFORM_STREAM, &pooh, CURLFORM_CONTENTSLENGTH, (long)pooh.sizeleft, CURLFORM_FILENAME, "postit2.c", CURLFORM_END); } else { /* new style */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "sendfile alternative", CURLFORM_STREAM, &pooh, CURLFORM_CONTENTLEN, (curl_off_t)pooh.sizeleft, CURLFORM_FILENAME, "file name 2", CURLFORM_END); } if(formrc) printf("curl_formadd(1) = %d\n", (int)formrc); /* Now add the same data with another name and make it not look like a file upload but still using the callback */ pooh2.readptr = data; pooh2.sizeleft = strlen(data); /* Fill in the file upload field */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "callbackdata", CURLFORM_STREAM, &pooh2, CURLFORM_CONTENTSLENGTH, (long)pooh2.sizeleft, CURLFORM_END); if(formrc) printf("curl_formadd(2) = %d\n", (int)formrc); /* Fill in the filename field */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "filename", #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ CURLFORM_COPYCONTENTS, "\x70\x6f\x73\x74\x69\x74\x32\x2e\x63", #else CURLFORM_COPYCONTENTS, "postit2.c", #endif CURLFORM_END); if(formrc) printf("curl_formadd(3) = %d\n", (int)formrc); /* Fill in a submit field too */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "submit", #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ CURLFORM_COPYCONTENTS, "\x73\x65\x6e\x64", #else CURLFORM_COPYCONTENTS, "send", #endif CURLFORM_CONTENTTYPE, "text/plain", CURLFORM_END); if(formrc) printf("curl_formadd(4) = %d\n", (int)formrc); formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "somename", CURLFORM_BUFFER, "somefile.txt", CURLFORM_BUFFERPTR, "blah blah", CURLFORM_BUFFERLENGTH, (long)9, CURLFORM_END); if(formrc) printf("curl_formadd(5) = %d\n", (int)formrc); curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_formfree(formpost); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* Now specify we want to POST data */ test_setopt(curl, CURLOPT_POST, 1L); /* Set the expected POST size */ test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)pooh.sizeleft); /* we want to use our own read function */ test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* send a multi-part formpost */ test_setopt(curl, CURLOPT_HTTPPOST, formpost); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); /* now cleanup the formpost chain */ curl_formfree(formpost); return res; } int test(char *URL) { int res; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } res = once(URL, TRUE); /* old */ if(!res) res = once(URL, FALSE); /* new */ curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib552.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ /* argv1 = URL * argv2 = proxy with embedded user+password */ #include "test.h" #include "warnless.h" #include "memdebug.h" struct data { char trace_ascii; /* 1 or 0 */ }; static void dump(const char *text, FILE *stream, unsigned char *ptr, size_t size, char nohex) { size_t i; size_t c; unsigned int width = 0x10; if(nohex) /* without the hex output, we can fit more on screen */ width = 0x40; fprintf(stream, "%s, %zu bytes (0x%zx)\n", text, size, size); for(i = 0; i<size; i += width) { fprintf(stream, "%04zx: ", i); if(!nohex) { /* hex not disabled, show it */ for(c = 0; c < width; c++) if(i + c < size) fprintf(stream, "%02x ", ptr[i + c]); else fputs(" ", stream); } for(c = 0; (c < width) && (i + c < size); c++) { /* check for 0D0A; if found, skip past and start a new line of output */ if(nohex && (i + c + 1 < size) && ptr[i + c] == 0x0D && ptr[i + c + 1] == 0x0A) { i += (c + 2 - width); break; } fprintf(stream, "%c", (ptr[i + c] >= 0x20) && (ptr[i + c]<0x80)? ptr[i + c] : '.'); /* check again for 0D0A, to avoid an extra \n if it's at width */ if(nohex && (i + c + 2 < size) && ptr[i + c + 1] == 0x0D && ptr[i + c + 2] == 0x0A) { i += (c + 3 - width); break; } } fputc('\n', stream); /* newline */ } fflush(stream); } static int my_trace(CURL *handle, curl_infotype type, char *data, size_t size, void *userp) { struct data *config = (struct data *)userp; const char *text; (void)handle; /* prevent compiler warning */ switch(type) { case CURLINFO_TEXT: fprintf(stderr, "== Info: %s", (char *)data); /* FALLTHROUGH */ default: /* in case a new one is introduced to shock us */ return 0; case CURLINFO_HEADER_OUT: text = "=> Send header"; break; case CURLINFO_DATA_OUT: text = "=> Send data"; break; case CURLINFO_SSL_DATA_OUT: text = "=> Send SSL data"; break; case CURLINFO_HEADER_IN: text = "<= Recv header"; break; case CURLINFO_DATA_IN: text = "<= Recv data"; break; case CURLINFO_SSL_DATA_IN: text = "<= Recv SSL data"; break; } dump(text, stderr, (unsigned char *)data, size, config->trace_ascii); return 0; } static size_t current_offset = 0; static char databuf[70000]; /* MUST be more than 64k OR MAX_INITIAL_POST_SIZE */ static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream) { size_t amount = nmemb * size; /* Total bytes curl wants */ size_t available = sizeof(databuf) - current_offset; /* What we have to give */ size_t given = amount < available ? amount : available; /* What is given */ (void)stream; memcpy(ptr, databuf + current_offset, given); current_offset += given; return given; } static size_t write_callback(void *ptr, size_t size, size_t nmemb, void *stream) { int amount = curlx_uztosi(size * nmemb); printf("%.*s", amount, (char *)ptr); (void)stream; return size * nmemb; } static curlioerr ioctl_callback(CURL *handle, int cmd, void *clientp) { (void)clientp; if(cmd == CURLIOCMD_RESTARTREAD) { printf("APPLICATION received a CURLIOCMD_RESTARTREAD request\n"); printf("APPLICATION ** REWINDING! **\n"); current_offset = 0; return CURLIOE_OK; } (void)handle; return CURLIOE_UNKNOWNCMD; } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; struct data config; size_t i; static const char fill[] = "test data"; config.trace_ascii = 1; /* enable ascii tracing */ global_init(CURL_GLOBAL_ALL); easy_init(curl); test_setopt(curl, CURLOPT_DEBUGFUNCTION, my_trace); test_setopt(curl, CURLOPT_DEBUGDATA, &config); /* the DEBUGFUNCTION has no effect until we enable VERBOSE */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* setup repeated data string */ for(i = 0; i < sizeof(databuf); ++i) databuf[i] = fill[i % sizeof(fill)]; /* Post */ test_setopt(curl, CURLOPT_POST, 1L); #ifdef CURL_DOES_CONVERSIONS /* Convert the POST data to ASCII */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); #endif /* Setup read callback */ test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof(databuf)); test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* Write callback */ test_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback); /* Ioctl function */ test_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctl_callback); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_URL, URL); /* Accept any auth. But for this bug configure proxy with DIGEST, basic might work too, not NTLM */ test_setopt(curl, CURLOPT_PROXYAUTH, (long)CURLAUTH_ANY); res = curl_easy_perform(curl); fprintf(stderr, "curl_easy_perform = %d\n", (int)res); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib598.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_REFERER, "http://example.com/the-moo"); test_setopt(curl, CURLOPT_USERAGENT, "the-moo agent next generation"); test_setopt(curl, CURLOPT_COOKIE, "name=moo"); test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); if(res) { fprintf(stderr, "retrieve 1 failed\n"); goto test_cleanup; } curl_easy_reset(curl); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); if(res) fprintf(stderr, "retrieve 2 failed\n"); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib501.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; (void)URL; /* we don't use this */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_HEADER, 1L); /* just verify that setting this to -1 is fine */ test_setopt(curl, CURLOPT_MAXREDIRS, -1L); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib658.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" /* * Get a single URL without select(). */ int test(char *URL) { CURL *handle = NULL; CURLcode res = 0; CURLU *urlp = NULL; CURLUcode uc = 0; global_init(CURL_GLOBAL_ALL); easy_init(handle); urlp = curl_url(); if(!urlp) { fprintf(stderr, "problem init URL api."); goto test_cleanup; } uc = curl_url_set(urlp, CURLUPART_URL, URL, 0); if(uc) { fprintf(stderr, "problem setting CURLUPART_URL: %s.", curl_url_strerror(uc)); goto test_cleanup; } /* demonstrate override behavior */ easy_setopt(handle, CURLOPT_URL, "http://www.example.com"); easy_setopt(handle, CURLOPT_CURLU, urlp); easy_setopt(handle, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(handle); if(res) { fprintf(stderr, "%s:%d curl_easy_perform() failed with code %d (%s)\n", __FILE__, __LINE__, res, curl_easy_strerror(res)); goto test_cleanup; } test_cleanup: curl_url_cleanup(urlp); curl_easy_cleanup(handle); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1520.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2014 - 2020, Steve Holme, <steve_holme@hotmail.com>. * * 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" /* * This is the list of basic details you need to tweak to get things right. */ #define TO "<recipient@example.com>" #define FROM "<sender@example.com>" static const char *payload_text[] = { "From: different\r\n", "To: another\r\n", "\r\n", "\r\n", ".\r\n", ".\r\n", "\r\n", ".\r\n", "\r\n", "body", NULL }; struct upload_status { int lines_read; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct upload_status *upload_ctx = (struct upload_status *)userp; const char *data; if((size == 0) || (nmemb == 0) || ((size*nmemb) < 1)) { return 0; } data = payload_text[upload_ctx->lines_read]; if(data) { size_t len = strlen(data); memcpy(ptr, data, len); upload_ctx->lines_read++; return len; } return 0; } int test(char *URL) { CURLcode res; CURL *curl; struct curl_slist *rcpt_list = NULL; struct upload_status upload_ctx = {0}; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } rcpt_list = curl_slist_append(rcpt_list, TO); /* more addresses can be added here rcpt_list = curl_slist_append(rcpt_list, "<others@example.com>"); */ test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_UPLOAD, 1L); test_setopt(curl, CURLOPT_READFUNCTION, read_callback); test_setopt(curl, CURLOPT_READDATA, &upload_ctx); test_setopt(curl, CURLOPT_MAIL_FROM, FROM); test_setopt(curl, CURLOPT_MAIL_RCPT, rcpt_list); test_setopt(curl, CURLOPT_VERBOSE, 1L); res = curl_easy_perform(curl); test_cleanup: curl_slist_free_all(rcpt_list); curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib677.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" static const char cmd[] = "A1 IDLE\r\n"; static char buf[1024]; int test(char *URL) { CURLM *mcurl; CURL *curl = NULL; int mrun; curl_socket_t sock = CURL_SOCKET_BAD; time_t start = time(NULL); int state = 0; ssize_t pos = 0; curl_global_init(CURL_GLOBAL_DEFAULT); mcurl = curl_multi_init(); if(!mcurl) goto fail; curl = curl_easy_init(); if(!curl) goto fail; curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); if(curl_easy_setopt(curl, CURLOPT_URL, URL)) goto fail; curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1L); if(curl_multi_add_handle(mcurl, curl)) goto fail; while(time(NULL) - start < 5) { struct curl_waitfd waitfd; if(curl_multi_perform(mcurl, &mrun)) goto fail; for(;;) { int i; struct CURLMsg *m = curl_multi_info_read(mcurl, &i); if(!m) break; if(m->msg == CURLMSG_DONE && m->easy_handle == curl) { curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); if(sock == CURL_SOCKET_BAD) goto fail; printf("Connected fine, extracted socket. Moving on\n"); } } if(sock != CURL_SOCKET_BAD) { waitfd.events = state ? CURL_WAIT_POLLIN : CURL_WAIT_POLLOUT; waitfd.revents = 0; curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sock); waitfd.fd = sock; } curl_multi_wait(mcurl, &waitfd, sock == CURL_SOCKET_BAD ? 0 : 1, 500, &mrun); if((sock != CURL_SOCKET_BAD) && (waitfd.revents & waitfd.events)) { size_t len = 0; if(!state) { curl_easy_send(curl, cmd + pos, sizeof(cmd) - 1 - pos, &len); if(len > 0) pos += len; else pos = 0; if(pos == sizeof(cmd) - 1) { state++; pos = 0; } } else if(pos < (ssize_t)sizeof(buf)) { curl_easy_recv(curl, buf + pos, sizeof(buf) - pos, &len); if(len > 0) pos += len; } if(len <= 0) sock = CURL_SOCKET_BAD; } } if(state) { fwrite(buf, pos, 1, stdout); putchar('\n'); } curl_multi_remove_handle(mcurl, curl); fail: curl_easy_cleanup(curl); curl_multi_cleanup(mcurl); curl_global_cleanup(); return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib597.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include <limits.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 5 * 1000 /* * Test case for below scenario: * - Connect to an FTP server using CONNECT_ONLY option * * The test case originated for verifying CONNECT_ONLY option shall not * block after protocol connect is done, but it returns the message * with function curl_multi_info_read(). */ int test(char *URL) { CURL *easy = NULL; CURLM *multi = NULL; int res = 0; int running; int msgs_left; CURLMsg *msg; start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(easy); multi_init(multi); /* go verbose */ easy_setopt(easy, CURLOPT_VERBOSE, 1L); /* specify target */ easy_setopt(easy, CURLOPT_URL, URL); easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L); multi_add_handle(multi, easy); for(;;) { struct timeval interval; fd_set fdread; fd_set fdwrite; fd_set fdexcep; long timeout = -99; int maxfd = -99; multi_perform(multi, &running); abort_on_test_timeout(); if(!running) break; /* done */ FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ multi_timeout(multi, &timeout); /* At this point, timeout is guaranteed to be greater or equal than -1. */ if(timeout != -1L) { int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout; interval.tv_sec = itimeout/1000; interval.tv_usec = (itimeout%1000)*1000; } else { interval.tv_sec = TEST_HANG_TIMEOUT/1000 + 1; interval.tv_usec = 0; } select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &interval); abort_on_test_timeout(); } msg = curl_multi_info_read(multi, &msgs_left); if(msg) res = msg->data.result; multi_remove_handle(multi, easy); test_cleanup: /* undocumented cleanup sequence - type UA */ curl_multi_cleanup(multi); curl_easy_cleanup(easy); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1911.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" /* The maximum string length limit (CURL_MAX_INPUT_LENGTH) is an internal define not publicly exposed so we set our own */ #define MAX_INPUT_LENGTH 8000000 static char buffer[MAX_INPUT_LENGTH + 2]; int test(char *URL) { const struct curl_easyoption *o; CURL *easy; int error = 0; (void)URL; curl_global_init(CURL_GLOBAL_ALL); easy = curl_easy_init(); if(!easy) { curl_global_cleanup(); return 1; } /* make it a zero terminated C string with just As */ memset(buffer, 'A', MAX_INPUT_LENGTH + 1); buffer[MAX_INPUT_LENGTH + 1] = 0; printf("string length: %d\n", (int)strlen(buffer)); for(o = curl_easy_option_next(NULL); o; o = curl_easy_option_next(o)) { if(o->type == CURLOT_STRING) { CURLcode result; /* * Whitelist string options that are safe for abuse */ switch(o->id) { case CURLOPT_PROXY_TLSAUTH_TYPE: case CURLOPT_TLSAUTH_TYPE: continue; default: /* check this */ break; } /* This is a string. Make sure that passing in a string longer CURL_MAX_INPUT_LENGTH returns an error */ result = curl_easy_setopt(easy, o->id, buffer); switch(result) { case CURLE_BAD_FUNCTION_ARGUMENT: /* the most normal */ case CURLE_UNKNOWN_OPTION: /* left out from the build */ case CURLE_NOT_BUILT_IN: /* not supported */ break; default: /* all other return codes are unexpected */ fprintf(stderr, "curl_easy_setopt(%s...) returned %d\n", o->name, (int)result); error++; break; } } } curl_easy_cleanup(easy); curl_global_cleanup(); return error; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1507.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" /* * This is the list of basic details you need to tweak to get things right. */ #define USERNAME "user@example.com" #define PASSWORD "123qwerty" #define RECIPIENT "<1507-recipient@example.com>" #define MAILFROM "<1507-realuser@example.com>" #define MULTI_PERFORM_HANG_TIMEOUT 60 * 1000 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { (void)ptr; (void)size; (void)nmemb; (void)userp; return CURL_READFUNC_ABORT; } int test(char *URL) { int res = 0; CURL *curl = NULL; CURLM *mcurl = NULL; int still_running = 1; struct timeval mp_start; struct curl_slist *rcpt_list = NULL; curl_global_init(CURL_GLOBAL_DEFAULT); easy_init(curl); multi_init(mcurl); rcpt_list = curl_slist_append(rcpt_list, RECIPIENT); /* more addresses can be added here rcpt_list = curl_slist_append(rcpt_list, "<others@example.com>"); */ curl_easy_setopt(curl, CURLOPT_URL, URL); #if 0 curl_easy_setopt(curl, CURLOPT_USERNAME, USERNAME); curl_easy_setopt(curl, CURLOPT_PASSWORD, PASSWORD); #endif curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L); curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_callback); curl_easy_setopt(curl, CURLOPT_MAIL_FROM, MAILFROM); curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, rcpt_list); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); multi_add_handle(mcurl, curl); mp_start = tutil_tvnow(); /* we start some action by calling perform right away */ curl_multi_perform(mcurl, &still_running); while(still_running) { struct timeval timeout; int rc; /* select() return code */ fd_set fdread; fd_set fdwrite; fd_set fdexcep; int maxfd = -1; long curl_timeo = -1; FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); /* set a suitable timeout to play around with */ timeout.tv_sec = 1; timeout.tv_usec = 0; curl_multi_timeout(mcurl, &curl_timeo); if(curl_timeo >= 0) { timeout.tv_sec = curl_timeo / 1000; if(timeout.tv_sec > 1) timeout.tv_sec = 1; else timeout.tv_usec = (curl_timeo % 1000) * 1000; } /* get file descriptors from the transfers */ curl_multi_fdset(mcurl, &fdread, &fdwrite, &fdexcep, &maxfd); /* In a real-world program you OF COURSE check the return code of the function calls. On success, the value of maxfd is guaranteed to be greater or equal than -1. We call select(maxfd + 1, ...), specially in case of (maxfd == -1), we call select(0, ...), which is basically equal to sleep. */ rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); if(tutil_tvdiff(tutil_tvnow(), mp_start) > MULTI_PERFORM_HANG_TIMEOUT) { fprintf(stderr, "ABORTING TEST, since it seems " "that it would have run forever.\n"); break; } switch(rc) { case -1: /* select error */ break; case 0: /* timeout */ default: /* action */ curl_multi_perform(mcurl, &still_running); break; } } test_cleanup: curl_slist_free_all(rcpt_list); curl_multi_remove_handle(mcurl, curl); curl_multi_cleanup(mcurl); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/test613.pl
#!/usr/bin/env perl #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2020, 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. # ########################################################################### # Prepare a directory with known files and clean up afterwards use Time::Local; if ( $#ARGV < 1 ) { print "Usage: $0 prepare|postprocess dir [logfile]\n"; exit 1; } # <precheck> expects an error message on stdout sub errout { print $_[0] . "\n"; exit 1; } if ($ARGV[0] eq "prepare") { my $dirname = $ARGV[1]; mkdir $dirname || errout "$!"; chdir $dirname; # Create the files in alphabetical order, to increase the chances # of receiving a consistent set of directory contents regardless # of whether the server alphabetizes the results or not. mkdir "asubdir" || errout "$!"; chmod 0777, "asubdir"; open(FILE, ">plainfile.txt") || errout "$!"; binmode FILE; print FILE "Test file to support curl test suite\n"; close(FILE); # The mtime is specifically chosen to be an even number so that it can be # represented exactly on a FAT filesystem. utime time, timegm(0,0,12,1,0,100), "plainfile.txt"; chmod 0666, "plainfile.txt"; open(FILE, ">rofile.txt") || errout "$!"; binmode FILE; print FILE "Read-only test file to support curl test suite\n"; close(FILE); # The mtime is specifically chosen to be an even number so that it can be # represented exactly on a FAT filesystem. utime time, timegm(0,0,12,31,11,100), "rofile.txt"; chmod 0444, "rofile.txt"; exit 0; } elsif ($ARGV[0] eq "postprocess") { my $dirname = $ARGV[1]; my $logfile = $ARGV[2]; # Clean up the test directory unlink "$dirname/rofile.txt"; unlink "$dirname/plainfile.txt"; rmdir "$dirname/asubdir"; rmdir $dirname || die "$!"; if ($logfile) { # Process the directory file to remove all information that # could be inconsistent from one test run to the next (e.g. # file date) or may be unsupported on some platforms (e.g. # Windows). Also, since 7.17.0, the sftp directory listing # format can be dependent on the server (with a recent # enough version of libssh2) so this script must also # canonicalize the format. Here are examples of the general # format supported: # -r--r--r-- 12 ausername grp 47 Dec 31 2000 rofile.txt # -r--r--r-- 1 1234 4321 47 Dec 31 2000 rofile.txt # The "canonical" format is similar to the first (which is # the one generated on a typical Linux installation): # -r-?r-?r-? 12 U U 47 Dec 31 2000 rofile.txt my @canondir; open(IN, "<$logfile") || die "$!"; while (<IN>) { /^(.)(..).(..).(..).\s*(\S+)\s+\S+\s+\S+\s+(\S+)\s+(\S+\s+\S+\s+\S+)\s+(.*)$/; if ($1 eq "d") { # Skip current and parent directory listing, because some SSH # servers (eg. OpenSSH for Windows) are not listing those if ($8 eq "." || $8 eq "..") { next; } # Erase all directory metadata except for the name, as it is not # consistent for across all test systems and filesystems push @canondir, "d????????? N U U N ??? N NN:NN $8\n"; } elsif ($1 eq "-") { # Replace missing group and other permissions with user # permissions (eg. on Windows) due to them being shown as * my ($u, $g, $o) = ($2, $3, $4); if($g eq "**") { $g = $u; } if($o eq "**") { $o = $u; } # Erase user and group names, as they are not consistent across # all test systems my $line = sprintf("%s%s?%s?%s?%5d U U %15d %s %s\n", $1,$u,$g,$o,$5,$6,$7,$8); push @canondir, $line; } else { # Unexpected format; just pass it through and let the test fail push @canondir, $_; } } close(IN); @canondir = sort {substr($a,57) cmp substr($b,57)} @canondir; my $newfile = $logfile . ".new"; open(OUT, ">$newfile") || die "$!"; print OUT join('', @canondir); close(OUT); unlink $logfile; rename $newfile, $logfile; } exit 0; } print "Unsupported command $ARGV[0]\n"; exit 1;
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib650.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[] = #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x74\x68\x69\x73\x20\x69\x73\x20\x77\x68\x61\x74\x20\x77\x65\x20\x70" "\x6f\x73\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x69\x6c\x6c\x79\x20" "\x77\x65\x62\x20\x73\x65\x72\x76\x65\x72"; #else "this is what we post to the silly web server"; #endif static const char name[] = "fieldname"; /* This test attempts to use all form API features that are not * used elsewhere. */ /* curl_formget callback to count characters. */ static size_t count_chars(void *userp, const char *buf, size_t len) { size_t *pcounter = (size_t *) userp; (void) buf; *pcounter += len; return len; } int test(char *URL) { CURL *curl = NULL; CURLcode res = TEST_ERR_MAJOR_BAD; CURLFORMcode formrc; struct curl_slist *headers, *headers2 = NULL; struct curl_httppost *formpost = NULL; struct curl_httppost *lastptr = NULL; struct curl_forms formarray[3]; size_t formlength = 0; char flbuf[32]; long contentlength = 0; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } /* Check proper name and data copying, as well as headers. */ headers = curl_slist_append(NULL, "X-customheader-1: Header 1 data"); if(!headers) { goto test_cleanup; } headers2 = curl_slist_append(headers, "X-customheader-2: Header 2 data"); if(!headers2) { goto test_cleanup; } headers = headers2; headers2 = curl_slist_append(headers, "Content-Type: text/plain"); if(!headers2) { goto test_cleanup; } headers = headers2; formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, &name, CURLFORM_COPYCONTENTS, &data, CURLFORM_CONTENTHEADER, headers, CURLFORM_END); if(formrc) { printf("curl_formadd(1) = %d\n", (int) formrc); goto test_cleanup; } contentlength = (long)(strlen(data) - 1); /* Use a form array for the non-copy test. */ formarray[0].option = CURLFORM_PTRCONTENTS; formarray[0].value = data; formarray[1].option = CURLFORM_CONTENTSLENGTH; formarray[1].value = (char *)(size_t)contentlength; formarray[2].option = CURLFORM_END; formarray[2].value = NULL; formrc = curl_formadd(&formpost, &lastptr, CURLFORM_PTRNAME, name, CURLFORM_NAMELENGTH, strlen(name) - 1, CURLFORM_ARRAY, formarray, CURLFORM_FILENAME, "remotefile.txt", CURLFORM_END); if(formrc) { printf("curl_formadd(2) = %d\n", (int) formrc); goto test_cleanup; } /* Now change in-memory data to affect CURLOPT_PTRCONTENTS value. Copied values (first field) must not be affected. CURLOPT_PTRNAME actually copies the name thus we do not test this here. */ data[0]++; /* Check multi-files and content type propagation. */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "multifile", CURLFORM_FILE, libtest_arg2, /* Set in first.c. */ CURLFORM_FILE, libtest_arg2, CURLFORM_CONTENTTYPE, "text/whatever", CURLFORM_FILE, libtest_arg2, CURLFORM_END); if(formrc) { printf("curl_formadd(3) = %d\n", (int) formrc); goto test_cleanup; } /* Check data from file content. */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "filecontents", CURLFORM_FILECONTENT, libtest_arg2, CURLFORM_END); if(formrc) { printf("curl_formadd(4) = %d\n", (int) formrc); goto test_cleanup; } /* Measure the current form length. * This is done before including stdin data because we want to reuse it * and stdin cannot be rewound. */ curl_formget(formpost, (void *) &formlength, count_chars); /* Include length in data for external check. */ curl_msnprintf(flbuf, sizeof(flbuf), "%lu", (unsigned long) formlength); formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "formlength", CURLFORM_COPYCONTENTS, &flbuf, CURLFORM_END); if(formrc) { printf("curl_formadd(5) = %d\n", (int) formrc); goto test_cleanup; } /* Check stdin (may be problematic on some platforms). */ formrc = curl_formadd(&formpost, &lastptr, CURLFORM_COPYNAME, "standardinput", CURLFORM_FILE, "-", CURLFORM_END); if(formrc) { printf("curl_formadd(6) = %d\n", (int) formrc); goto test_cleanup; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); goto test_cleanup; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* send a multi-part formpost */ test_setopt(curl, CURLOPT_HTTPPOST, formpost); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); /* now cleanup the formpost chain */ curl_formfree(formpost); curl_slist_free_all(headers); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1523.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" /* test case and code based on https://github.com/curl/curl/issues/3927 */ #include "testutil.h" #include "warnless.h" #include "memdebug.h" static int dload_progress_cb(void *a, curl_off_t b, curl_off_t c, curl_off_t d, curl_off_t e) { (void)a; (void)b; (void)c; (void)d; (void)e; return 0; } static size_t write_cb(char *d, size_t n, size_t l, void *p) { /* take care of the data here, ignored in this example */ (void)d; (void)p; return n*l; } static CURLcode run(CURL *hnd, long limit, long time) { curl_easy_setopt(hnd, CURLOPT_LOW_SPEED_LIMIT, limit); curl_easy_setopt(hnd, CURLOPT_LOW_SPEED_TIME, time); return curl_easy_perform(hnd); } int test(char *URL) { CURLcode ret; CURL *hnd; char buffer[CURL_ERROR_SIZE]; curl_global_init(CURL_GLOBAL_ALL); hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_URL, URL); curl_easy_setopt(hnd, CURLOPT_WRITEFUNCTION, write_cb); curl_easy_setopt(hnd, CURLOPT_ERRORBUFFER, buffer); curl_easy_setopt(hnd, CURLOPT_NOPROGRESS, 0L); curl_easy_setopt(hnd, CURLOPT_XFERINFOFUNCTION, dload_progress_cb); printf("Start: %d\n", time(NULL)); ret = run(hnd, 1, 2); if(ret) fprintf(stderr, "error %d: %s\n", ret, buffer); ret = run(hnd, 12000, 1); if(ret != CURLE_OPERATION_TIMEDOUT) fprintf(stderr, "error %d: %s\n", ret, buffer); else ret = 0; printf("End: %d\n", time(NULL)); curl_easy_cleanup(hnd); curl_global_cleanup(); return (int)ret; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib540.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* This is the 'proxyauth.c' test app posted by Shmulik Regev on the libcurl * mailing list on 10 Jul 2007, converted to a test case. * * argv1 = URL * argv2 = proxy * argv3 = proxyuser:password * argv4 = host name to use for the custom Host: header */ #include "test.h" #include <limits.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 #define PROXY libtest_arg2 #define PROXYUSERPWD libtest_arg3 #define HOST test_argv[4] #define NUM_HANDLES 2 static CURL *eh[NUM_HANDLES]; static int init(int num, CURLM *cm, const char *url, const char *userpwd, struct curl_slist *headers) { int res = 0; res_easy_init(eh[num]); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_URL, url); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_PROXY, PROXY); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_PROXYUSERPWD, userpwd); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_PROXYAUTH, (long)CURLAUTH_ANY); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_VERBOSE, 1L); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_HEADER, 1L); if(res) goto init_failed; res_easy_setopt(eh[num], CURLOPT_HTTPHEADER, headers); /* custom Host: */ if(res) goto init_failed; res_multi_add_handle(cm, eh[num]); if(res) goto init_failed; return 0; /* success */ init_failed: curl_easy_cleanup(eh[num]); eh[num] = NULL; return res; /* failure */ } static int loop(int num, CURLM *cm, const char *url, const char *userpwd, struct curl_slist *headers) { CURLMsg *msg; long L; int Q, U = -1; fd_set R, W, E; struct timeval T; int res = 0; res = init(num, cm, url, userpwd, headers); if(res) return res; while(U) { int M = -99; res_multi_perform(cm, &U); if(res) return res; res_test_timedout(); if(res) return res; if(U) { FD_ZERO(&R); FD_ZERO(&W); FD_ZERO(&E); res_multi_fdset(cm, &R, &W, &E, &M); if(res) return res; /* At this point, M is guaranteed to be greater or equal than -1. */ res_multi_timeout(cm, &L); if(res) return res; /* At this point, L is guaranteed to be greater or equal than -1. */ if(L != -1) { int itimeout = (L > (long)INT_MAX) ? INT_MAX : (int)L; T.tv_sec = itimeout/1000; T.tv_usec = (itimeout%1000)*1000; } else { T.tv_sec = 5; T.tv_usec = 0; } res_select_test(M + 1, &R, &W, &E, &T); if(res) return res; } while((msg = curl_multi_info_read(cm, &Q)) != NULL) { if(msg->msg == CURLMSG_DONE) { int i; CURL *e = msg->easy_handle; fprintf(stderr, "R: %d - %s\n", (int)msg->data.result, curl_easy_strerror(msg->data.result)); curl_multi_remove_handle(cm, e); curl_easy_cleanup(e); for(i = 0; i < NUM_HANDLES; i++) { if(eh[i] == e) { eh[i] = NULL; break; } } } else fprintf(stderr, "E: CURLMsg (%d)\n", (int)msg->msg); } res_test_timedout(); if(res) return res; } return 0; /* success */ } int test(char *URL) { CURLM *cm = NULL; struct curl_slist *headers = NULL; char buffer[246]; /* naively fixed-size */ int res = 0; int i; for(i = 0; i < NUM_HANDLES; i++) eh[i] = NULL; start_test_timing(); if(test_argc < 4) return 99; msnprintf(buffer, sizeof(buffer), "Host: %s", HOST); /* now add a custom Host: header */ headers = curl_slist_append(headers, buffer); if(!headers) { fprintf(stderr, "curl_slist_append() failed\n"); return TEST_ERR_MAJOR_BAD; } res_global_init(CURL_GLOBAL_ALL); if(res) { curl_slist_free_all(headers); return res; } res_multi_init(cm); if(res) { curl_global_cleanup(); curl_slist_free_all(headers); return res; } res = loop(0, cm, URL, PROXYUSERPWD, headers); if(res) goto test_cleanup; fprintf(stderr, "lib540: now we do the request again\n"); res = loop(1, cm, URL, PROXYUSERPWD, headers); test_cleanup: /* proper cleanup sequence - type PB */ for(i = 0; i < NUM_HANDLES; i++) { curl_multi_remove_handle(cm, eh[i]); curl_easy_cleanup(eh[i]); } curl_multi_cleanup(cm); curl_global_cleanup(); curl_slist_free_all(headers); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib542.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include "memdebug.h" /* * FTP get with NOBODY but no HEADER */ int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } /* get a curl handle */ curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* enable verbose */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* enable NOBODY */ test_setopt(curl, CURLOPT_NOBODY, 1L); /* disable HEADER */ test_setopt(curl, CURLOPT_HEADER, 0L); /* specify target */ test_setopt(curl, CURLOPT_URL, URL); /* Now run off and do what you've been told! */ res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib643.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[]= #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x64\x75\x6d\x6d\x79\x0a"; #else "dummy\n"; #endif struct WriteThis { char *readptr; curl_off_t sizeleft; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { #ifdef LIB644 static int count = 0; (void)ptr; (void)size; (void)nmemb; (void)userp; switch(count++) { case 0: /* Return a single byte. */ *ptr = '\n'; return 1; case 1: /* Request abort. */ return CURL_READFUNC_ABORT; } printf("Wrongly called >2 times\n"); exit(1); /* trigger major failure */ #else struct WriteThis *pooh = (struct WriteThis *)userp; int eof = !*pooh->readptr; if(size*nmemb < 1) return 0; #ifndef LIB645 eof = pooh->sizeleft <= 0; if(!eof) pooh->sizeleft--; #endif if(!eof) { *ptr = *pooh->readptr; /* copy one single byte */ pooh->readptr++; /* advance pointer */ return 1; /* we return 1 byte at a time! */ } return 0; /* no more data left to deliver */ #endif } static int once(char *URL, bool oldstyle) { CURL *curl; CURLcode res = CURLE_OK; curl_mime *mime = NULL; curl_mimepart *part = NULL; struct WriteThis pooh; struct WriteThis pooh2; curl_off_t datasize = -1; pooh.readptr = data; #ifndef LIB645 datasize = (curl_off_t)strlen(data); #endif pooh.sizeleft = datasize; curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } mime = curl_mime_init(curl); if(!mime) { fprintf(stderr, "curl_mime_init() failed\n"); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart(1) failed\n"); curl_mime_free(mime); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* Fill in the file upload part */ if(oldstyle) { res = curl_mime_name(part, "sendfile"); if(!res) res = curl_mime_data_cb(part, datasize, read_callback, NULL, NULL, &pooh); if(!res) res = curl_mime_filename(part, "postit2.c"); } else { /* new style */ res = curl_mime_name(part, "sendfile alternative"); if(!res) res = curl_mime_data_cb(part, datasize, read_callback, NULL, NULL, &pooh); if(!res) res = curl_mime_filename(part, "file name 2"); } if(res) printf("curl_mime_xxx(1) = %s\n", curl_easy_strerror(res)); /* Now add the same data with another name and make it not look like a file upload but still using the callback */ pooh2.readptr = data; #ifndef LIB645 datasize = (curl_off_t)strlen(data); #endif pooh2.sizeleft = datasize; part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart(2) failed\n"); curl_mime_free(mime); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* Fill in the file upload part */ res = curl_mime_name(part, "callbackdata"); if(!res) res = curl_mime_data_cb(part, datasize, read_callback, NULL, NULL, &pooh2); if(res) printf("curl_mime_xxx(2) = %s\n", curl_easy_strerror(res)); part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart(3) failed\n"); curl_mime_free(mime); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* Fill in the filename field */ res = curl_mime_name(part, "filename"); if(!res) res = curl_mime_data(part, #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x70\x6f\x73\x74\x69\x74\x32\x2e\x63", #else "postit2.c", #endif CURL_ZERO_TERMINATED); if(res) printf("curl_mime_xxx(3) = %s\n", curl_easy_strerror(res)); /* Fill in a submit field too */ part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart(4) failed\n"); curl_mime_free(mime); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } res = curl_mime_name(part, "submit"); if(!res) res = curl_mime_data(part, #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ "\x73\x65\x6e\x64", #else "send", #endif CURL_ZERO_TERMINATED); if(res) printf("curl_mime_xxx(4) = %s\n", curl_easy_strerror(res)); part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart(5) failed\n"); curl_mime_free(mime); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } res = curl_mime_name(part, "somename"); if(!res) res = curl_mime_filename(part, "somefile.txt"); if(!res) res = curl_mime_data(part, "blah blah", 9); if(res) printf("curl_mime_xxx(5) = %s\n", curl_easy_strerror(res)); /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* send a multi-part mimepost */ test_setopt(curl, CURLOPT_MIMEPOST, mime); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); /* now cleanup the mimepost structure */ curl_mime_free(mime); return res; } static int cyclic_add(void) { CURL *easy = curl_easy_init(); curl_mime *mime = curl_mime_init(easy); curl_mimepart *part = curl_mime_addpart(mime); CURLcode a1 = curl_mime_subparts(part, mime); if(a1 == CURLE_BAD_FUNCTION_ARGUMENT) { curl_mime *submime = curl_mime_init(easy); curl_mimepart *subpart = curl_mime_addpart(submime); curl_mime_subparts(part, submime); a1 = curl_mime_subparts(subpart, mime); } curl_mime_free(mime); curl_easy_cleanup(easy); if(a1 != CURLE_BAD_FUNCTION_ARGUMENT) /* that should have failed */ return 1; return 0; } int test(char *URL) { int res; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } res = once(URL, TRUE); /* old */ if(!res) res = once(URL, FALSE); /* new */ if(!res) res = cyclic_add(); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib583.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* * This test case is based on the sample code provided by Saqib Ali * https://curl.se/mail/lib-2011-03/0066.html */ #include "test.h" #include <sys/stat.h> #include "memdebug.h" int test(char *URL) { int stillRunning; CURLM *multiHandle = NULL; CURL *curl = NULL; CURLcode res = CURLE_OK; CURLMcode mres; global_init(CURL_GLOBAL_ALL); multi_init(multiHandle); easy_init(curl); easy_setopt(curl, CURLOPT_USERPWD, libtest_arg2); easy_setopt(curl, CURLOPT_SSH_PUBLIC_KEYFILE, "curl_client_key.pub"); easy_setopt(curl, CURLOPT_SSH_PRIVATE_KEYFILE, "curl_client_key"); easy_setopt(curl, CURLOPT_UPLOAD, 1L); easy_setopt(curl, CURLOPT_VERBOSE, 1L); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_INFILESIZE, (long)5); multi_add_handle(multiHandle, curl); /* this tests if removing an easy handle immediately after multi perform has been called succeeds or not. */ fprintf(stderr, "curl_multi_perform()...\n"); multi_perform(multiHandle, &stillRunning); fprintf(stderr, "curl_multi_perform() succeeded\n"); fprintf(stderr, "curl_multi_remove_handle()...\n"); mres = curl_multi_remove_handle(multiHandle, curl); if(mres) { fprintf(stderr, "curl_multi_remove_handle() failed, " "with code %d\n", (int)mres); res = TEST_ERR_MULTI; } else fprintf(stderr, "curl_multi_remove_handle() succeeded\n"); test_cleanup: /* undocumented cleanup sequence - type UB */ curl_easy_cleanup(curl); curl_multi_cleanup(multiHandle); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1526.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, Vijay Panghal, <vpanghal@maginatics.com>, 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. * ***************************************************************************/ /* * This unit test PUT http data over proxy. Proxy header will be different * from server http header */ #include "test.h" #include "memdebug.h" static char data [] = "Hello Cloud!\n"; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream) { size_t amount = nmemb * size; /* Total bytes curl wants */ if(amount < strlen(data)) { return strlen(data); } (void)stream; memcpy(ptr, data, strlen(data)); return strlen(data); } int test(char *URL) { CURL *curl = NULL; CURLcode res = CURLE_FAILED_INIT; /* http and proxy header list*/ struct curl_slist *hhl = NULL, *phl = NULL, *tmp = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } hhl = curl_slist_append(hhl, "User-Agent: Http Agent"); phl = curl_slist_append(phl, "User-Agent: Proxy Agent"); if(!hhl || !phl) { goto test_cleanup; } tmp = curl_slist_append(phl, "Expect:"); if(!tmp) { goto test_cleanup; } phl = tmp; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_HTTPHEADER, hhl); test_setopt(curl, CURLOPT_PROXYHEADER, phl); test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE); test_setopt(curl, CURLOPT_POST, 0L); test_setopt(curl, CURLOPT_UPLOAD, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite); test_setopt(curl, CURLOPT_READFUNCTION, read_callback); test_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1L); test_setopt(curl, CURLOPT_INFILESIZE, (long)strlen(data)); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_slist_free_all(hhl); curl_slist_free_all(phl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib560.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 /* * Simply download a HTTPS file! * * This test was added after the HTTPS-using-multi-interface with OpenSSL * regression of 7.19.1 to hopefully prevent this embarrassing mistake from * appearing again... Unfortunately the bug wasn't triggered by this test, * which presumably is because the connect to a local server is too * fast/different compared to the real/distant servers we saw the bug happen * with. */ int test(char *URL) { CURL *http_handle = NULL; CURLM *multi_handle = NULL; int res = 0; int still_running; /* keep number of running handles */ start_test_timing(); /* ** curl_global_init called indirectly from curl_easy_init. */ easy_init(http_handle); /* set options */ easy_setopt(http_handle, CURLOPT_URL, URL); easy_setopt(http_handle, CURLOPT_HEADER, 1L); easy_setopt(http_handle, CURLOPT_SSL_VERIFYPEER, 0L); easy_setopt(http_handle, CURLOPT_SSL_VERIFYHOST, 0L); /* init a multi stack */ multi_init(multi_handle); /* add the individual transfers */ multi_add_handle(multi_handle, http_handle); /* we start some action by calling perform right away */ multi_perform(multi_handle, &still_running); abort_on_test_timeout(); while(still_running) { struct timeval timeout; fd_set fdread; fd_set fdwrite; fd_set fdexcep; int maxfd = -99; FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); /* set a suitable timeout to play around with */ timeout.tv_sec = 1; timeout.tv_usec = 0; /* get file descriptors from the transfers */ multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); abort_on_test_timeout(); /* timeout or readable/writable sockets */ multi_perform(multi_handle, &still_running); abort_on_test_timeout(); } test_cleanup: /* undocumented cleanup sequence - type UA */ curl_multi_cleanup(multi_handle); curl_easy_cleanup(http_handle); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/test610.pl
#!/usr/bin/env perl #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2020, 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. # ########################################################################### # Perform simple file and directory manipulation in a portable way if ( $#ARGV <= 0 ) { print "Usage: $0 mkdir|rmdir|rm|move|gone path1 [path2] [more commands...]\n"; exit 1; } use File::Copy; while(@ARGV) { my $cmd = shift @ARGV; my $arg = shift @ARGV; if ($cmd eq "mkdir") { mkdir $arg || die "$!"; } elsif ($cmd eq "rmdir") { rmdir $arg || die "$!"; } elsif ($cmd eq "rm") { unlink $arg || die "$!"; } elsif ($cmd eq "move") { my $arg2 = shift @ARGV; move($arg,$arg2) || die "$!"; } elsif ($cmd eq "gone") { ! -e $arg || die "Path $arg exists"; } else { print "Unsupported command $cmd\n"; exit 1; } } exit 0;
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/test.h
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ /* Now include the curl_setup.h file from libcurl's private libdir (the source version, but that might include "curl_config.h" from the build dir so we need both of them in the include path), so that we get good in-depth knowledge about the system we're building this on */ #define CURL_NO_OLDIES #include "curl_setup.h" #include <curl/curl.h> #ifdef HAVE_SYS_SELECT_H /* since so many tests use select(), we can just as well include it here */ #include <sys/select.h> #elif defined(HAVE_UNISTD_H) #include <unistd.h> #endif #ifdef TPF # include "select.h" #endif #include "curl_printf.h" #define test_setopt(A,B,C) \ if((res = curl_easy_setopt((A), (B), (C))) != CURLE_OK) \ goto test_cleanup #define test_multi_setopt(A,B,C) \ if((res = curl_multi_setopt((A), (B), (C))) != CURLE_OK) \ goto test_cleanup extern char *libtest_arg2; /* set by first.c to the argv[2] or NULL */ extern char *libtest_arg3; /* set by first.c to the argv[3] or NULL */ /* argc and argv as passed in to the main() function */ extern int test_argc; extern char **test_argv; extern struct timeval tv_test_start; /* for test timing */ extern int select_wrapper(int nfds, fd_set *rd, fd_set *wr, fd_set *exc, struct timeval *tv); extern void wait_ms(int ms); /* wait this many milliseconds */ extern int test(char *URL); /* the actual test function provided by each individual libXXX.c file */ extern char *hexdump(const unsigned char *buffer, size_t len); #ifdef UNITTESTS extern int unitfail; #endif /* ** TEST_ERR_* values must be greater than CURL_LAST CURLcode in order ** to avoid confusion with any CURLcode or CURLMcode. These TEST_ERR_* ** codes are returned to signal test specific situations and should ** not get mixed with CURLcode or CURLMcode values. ** ** For portability reasons TEST_ERR_* values should be less than 127. */ #define TEST_ERR_MAJOR_BAD (CURLcode) 126 #define TEST_ERR_RUNS_FOREVER (CURLcode) 125 #define TEST_ERR_EASY_INIT (CURLcode) 124 #define TEST_ERR_MULTI (CURLcode) 123 #define TEST_ERR_NUM_HANDLES (CURLcode) 122 #define TEST_ERR_SELECT (CURLcode) 121 #define TEST_ERR_SUCCESS (CURLcode) 120 #define TEST_ERR_FAILURE (CURLcode) 119 #define TEST_ERR_USAGE (CURLcode) 118 #define TEST_ERR_FOPEN (CURLcode) 117 #define TEST_ERR_FSTAT (CURLcode) 116 #define TEST_ERR_BAD_TIMEOUT (CURLcode) 115 /* ** Macros for test source code readability/maintainability. ** ** All of the following macros require that an int data type 'res' variable ** exists in scope where macro is used, and that it has been initialized to ** zero before the macro is used. ** ** exe_* and chk_* macros are helper macros not intended to be used from ** outside of this header file. Arguments 'Y' and 'Z' of these represent ** source code file and line number, while Arguments 'A', 'B', etc, are ** the arguments used to actually call a libcurl function. ** ** All easy_* and multi_* macros call a libcurl function and evaluate if ** the function has succeeded or failed. When the function succeeds 'res' ** variable is not set nor cleared and program continues normal flow. On ** the other hand if function fails 'res' variable is set and a jump to ** label 'test_cleanup' is performed. ** ** Every easy_* and multi_* macros have a res_easy_* and res_multi_* macro ** counterpart that operates in the same way with the exception that no ** jump takes place in case of failure. res_easy_* and res_multi_* macros ** should be immediately followed by checking if 'res' variable has been ** set. ** ** 'res' variable when set will hold a CURLcode, CURLMcode, or any of the ** TEST_ERR_* values defined above. It is advisable to return this value ** as test result. */ /* ---------------------------------------------------------------- */ #define exe_easy_init(A,Y,Z) do { \ if(((A) = curl_easy_init()) == NULL) { \ fprintf(stderr, "%s:%d curl_easy_init() failed\n", (Y), (Z)); \ res = TEST_ERR_EASY_INIT; \ } \ } while(0) #define res_easy_init(A) \ exe_easy_init((A), (__FILE__), (__LINE__)) #define chk_easy_init(A,Y,Z) do { \ exe_easy_init((A), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define easy_init(A) \ chk_easy_init((A), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_init(A,Y,Z) do { \ if(((A) = curl_multi_init()) == NULL) { \ fprintf(stderr, "%s:%d curl_multi_init() failed\n", (Y), (Z)); \ res = TEST_ERR_MULTI; \ } \ } while(0) #define res_multi_init(A) \ exe_multi_init((A), (__FILE__), (__LINE__)) #define chk_multi_init(A,Y,Z) do { \ exe_multi_init((A), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_init(A) \ chk_multi_init((A), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_easy_setopt(A,B,C,Y,Z) do { \ CURLcode ec; \ if((ec = curl_easy_setopt((A), (B), (C))) != CURLE_OK) { \ fprintf(stderr, "%s:%d curl_easy_setopt() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_easy_strerror(ec)); \ res = ec; \ } \ } while(0) #define res_easy_setopt(A, B, C) \ exe_easy_setopt((A), (B), (C), (__FILE__), (__LINE__)) #define chk_easy_setopt(A, B, C, Y, Z) do { \ exe_easy_setopt((A), (B), (C), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define easy_setopt(A, B, C) \ chk_easy_setopt((A), (B), (C), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_setopt(A, B, C, Y, Z) do { \ CURLMcode ec; \ if((ec = curl_multi_setopt((A), (B), (C))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_setopt() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ } while(0) #define res_multi_setopt(A,B,C) \ exe_multi_setopt((A), (B), (C), (__FILE__), (__LINE__)) #define chk_multi_setopt(A,B,C,Y,Z) do { \ exe_multi_setopt((A), (B), (C), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_setopt(A,B,C) \ chk_multi_setopt((A), (B), (C), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_add_handle(A,B,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_add_handle((A), (B))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_add_handle() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ } while(0) #define res_multi_add_handle(A, B) \ exe_multi_add_handle((A), (B), (__FILE__), (__LINE__)) #define chk_multi_add_handle(A, B, Y, Z) do { \ exe_multi_add_handle((A), (B), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_add_handle(A, B) \ chk_multi_add_handle((A), (B), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_remove_handle(A,B,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_remove_handle((A), (B))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_remove_handle() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ } while(0) #define res_multi_remove_handle(A, B) \ exe_multi_remove_handle((A), (B), (__FILE__), (__LINE__)) #define chk_multi_remove_handle(A, B, Y, Z) do { \ exe_multi_remove_handle((A), (B), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_remove_handle(A, B) \ chk_multi_remove_handle((A), (B), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_perform(A,B,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_perform((A), (B))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_perform() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ else if(*((B)) < 0) { \ fprintf(stderr, "%s:%d curl_multi_perform() succeeded, " \ "but returned invalid running_handles value (%d)\n", \ (Y), (Z), (int)*((B))); \ res = TEST_ERR_NUM_HANDLES; \ } \ } while(0) #define res_multi_perform(A, B) \ exe_multi_perform((A), (B), (__FILE__), (__LINE__)) #define chk_multi_perform(A, B, Y, Z) do { \ exe_multi_perform((A), (B), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_perform(A,B) \ chk_multi_perform((A), (B), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_fdset(A, B, C, D, E, Y, Z) do { \ CURLMcode ec; \ if((ec = curl_multi_fdset((A), (B), (C), (D), (E))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_fdset() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ else if(*((E)) < -1) { \ fprintf(stderr, "%s:%d curl_multi_fdset() succeeded, " \ "but returned invalid max_fd value (%d)\n", \ (Y), (Z), (int)*((E))); \ res = TEST_ERR_NUM_HANDLES; \ } \ } while(0) #define res_multi_fdset(A, B, C, D, E) \ exe_multi_fdset((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) #define chk_multi_fdset(A, B, C, D, E, Y, Z) do { \ exe_multi_fdset((A), (B), (C), (D), (E), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_fdset(A, B, C, D, E) \ chk_multi_fdset((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_timeout(A,B,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_timeout((A), (B))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_timeout() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_BAD_TIMEOUT; \ } \ else if(*((B)) < -1L) { \ fprintf(stderr, "%s:%d curl_multi_timeout() succeeded, " \ "but returned invalid timeout value (%ld)\n", \ (Y), (Z), (long)*((B))); \ res = TEST_ERR_BAD_TIMEOUT; \ } \ } while(0) #define res_multi_timeout(A, B) \ exe_multi_timeout((A), (B), (__FILE__), (__LINE__)) #define chk_multi_timeout(A, B, Y, Z) do { \ exe_multi_timeout((A), (B), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_timeout(A, B) \ chk_multi_timeout((A), (B), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_poll(A,B,C,D,E,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_poll((A), (B), (C), (D), (E))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_poll() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ else if(*((E)) < 0) { \ fprintf(stderr, "%s:%d curl_multi_poll() succeeded, " \ "but returned invalid numfds value (%d)\n", \ (Y), (Z), (int)*((E))); \ res = TEST_ERR_NUM_HANDLES; \ } \ } while(0) #define res_multi_poll(A, B, C, D, E) \ exe_multi_poll((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) #define chk_multi_poll(A, B, C, D, E, Y, Z) do { \ exe_multi_poll((A), (B), (C), (D), (E), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_poll(A, B, C, D, E) \ chk_multi_poll((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_multi_wakeup(A,Y,Z) do { \ CURLMcode ec; \ if((ec = curl_multi_wakeup((A))) != CURLM_OK) { \ fprintf(stderr, "%s:%d curl_multi_wakeup() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_multi_strerror(ec)); \ res = TEST_ERR_MULTI; \ } \ } while(0) #define res_multi_wakeup(A) \ exe_multi_wakeup((A), (__FILE__), (__LINE__)) #define chk_multi_wakeup(A, Y, Z) do { \ exe_multi_wakeup((A), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define multi_wakeup(A) \ chk_multi_wakeup((A), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_select_test(A, B, C, D, E, Y, Z) do { \ int ec; \ if(select_wrapper((A), (B), (C), (D), (E)) == -1) { \ ec = SOCKERRNO; \ fprintf(stderr, "%s:%d select() failed, with " \ "errno %d (%s)\n", \ (Y), (Z), ec, strerror(ec)); \ res = TEST_ERR_SELECT; \ } \ } while(0) #define res_select_test(A, B, C, D, E) \ exe_select_test((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) #define chk_select_test(A, B, C, D, E, Y, Z) do { \ exe_select_test((A), (B), (C), (D), (E), (Y), (Z)); \ if(res) \ goto test_cleanup; \ } while(0) #define select_test(A, B, C, D, E) \ chk_select_test((A), (B), (C), (D), (E), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define start_test_timing() do { \ tv_test_start = tutil_tvnow(); \ } while(0) #define exe_test_timedout(Y,Z) do { \ if(tutil_tvdiff(tutil_tvnow(), tv_test_start) > TEST_HANG_TIMEOUT) { \ fprintf(stderr, "%s:%d ABORTING TEST, since it seems " \ "that it would have run forever.\n", (Y), (Z)); \ res = TEST_ERR_RUNS_FOREVER; \ } \ } while(0) #define res_test_timedout() \ exe_test_timedout((__FILE__), (__LINE__)) #define chk_test_timedout(Y, Z) do { \ exe_test_timedout(Y, Z); \ if(res) \ goto test_cleanup; \ } while(0) #define abort_on_test_timeout() \ chk_test_timedout((__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */ #define exe_global_init(A,Y,Z) do { \ CURLcode ec; \ if((ec = curl_global_init((A))) != CURLE_OK) { \ fprintf(stderr, "%s:%d curl_global_init() failed, " \ "with code %d (%s)\n", \ (Y), (Z), (int)ec, curl_easy_strerror(ec)); \ res = ec; \ } \ } while(0) #define res_global_init(A) \ exe_global_init((A), (__FILE__), (__LINE__)) #define chk_global_init(A, Y, Z) do { \ exe_global_init((A), (Y), (Z)); \ if(res) \ return res; \ } while(0) /* global_init() is different than other macros. In case of failure it 'return's instead of going to 'test_cleanup'. */ #define global_init(A) \ chk_global_init((A), (__FILE__), (__LINE__)) /* ---------------------------------------------------------------- */
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1564.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 #define WAKEUP_NUM 10 int test(char *URL) { CURLM *multi = NULL; int numfds; int i; int res = 0; struct timeval time_before_wait, time_after_wait; (void)URL; start_test_timing(); global_init(CURL_GLOBAL_ALL); multi_init(multi); /* no wakeup */ time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); time_after_wait = tutil_tvnow(); if(tutil_tvdiff(time_after_wait, time_before_wait) < 500) { fprintf(stderr, "%s:%d curl_multi_poll returned too early\n", __FILE__, __LINE__); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } abort_on_test_timeout(); /* try a single wakeup */ res_multi_wakeup(multi); time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); time_after_wait = tutil_tvnow(); if(tutil_tvdiff(time_after_wait, time_before_wait) > 500) { fprintf(stderr, "%s:%d curl_multi_poll returned too late\n", __FILE__, __LINE__); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } abort_on_test_timeout(); /* previous wakeup should not wake up this */ time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); time_after_wait = tutil_tvnow(); if(tutil_tvdiff(time_after_wait, time_before_wait) < 500) { fprintf(stderr, "%s:%d curl_multi_poll returned too early\n", __FILE__, __LINE__); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } abort_on_test_timeout(); /* try lots of wakeup */ for(i = 0; i < WAKEUP_NUM; ++i) res_multi_wakeup(multi); time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); time_after_wait = tutil_tvnow(); if(tutil_tvdiff(time_after_wait, time_before_wait) > 500) { fprintf(stderr, "%s:%d curl_multi_poll returned too late\n", __FILE__, __LINE__); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } abort_on_test_timeout(); /* Even lots of previous wakeups should not wake up this. */ time_before_wait = tutil_tvnow(); multi_poll(multi, NULL, 0, 1000, &numfds); time_after_wait = tutil_tvnow(); if(tutil_tvdiff(time_after_wait, time_before_wait) < 500) { fprintf(stderr, "%s:%d curl_multi_poll returned too early\n", __FILE__, __LINE__); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } abort_on_test_timeout(); test_cleanup: curl_multi_cleanup(multi); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1501.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include <fcntl.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 30 * 1000 /* 500 milliseconds allowed. An extreme number but lets be really conservative to allow old and slow machines to run this test too */ #define MAX_BLOCKED_TIME_MS 500 int test(char *URL) { CURL *handle = NULL; CURLM *mhandle = NULL; int res = 0; int still_running = 0; start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(handle); easy_setopt(handle, CURLOPT_URL, URL); easy_setopt(handle, CURLOPT_VERBOSE, 1L); multi_init(mhandle); multi_add_handle(mhandle, handle); multi_perform(mhandle, &still_running); abort_on_test_timeout(); while(still_running) { struct timeval timeout; fd_set fdread; fd_set fdwrite; fd_set fdexcep; int maxfd = -99; struct timeval before; struct timeval after; long e; timeout.tv_sec = 0; timeout.tv_usec = 100000L; /* 100 ms */ FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); multi_fdset(mhandle, &fdread, &fdwrite, &fdexcep, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); abort_on_test_timeout(); fprintf(stderr, "ping\n"); before = tutil_tvnow(); multi_perform(mhandle, &still_running); abort_on_test_timeout(); after = tutil_tvnow(); e = tutil_tvdiff(after, before); fprintf(stderr, "pong = %ld\n", e); if(e > MAX_BLOCKED_TIME_MS) { res = 100; break; } } test_cleanup: /* undocumented cleanup sequence - type UA */ curl_multi_cleanup(mhandle); curl_easy_cleanup(handle); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/CMakeLists.txt
#*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2021, 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. # ########################################################################### set(TARGET_LABEL_PREFIX "Test ") function(setup_test TEST_NAME) # ARGN are the files in the test add_executable(${TEST_NAME} EXCLUDE_FROM_ALL ${ARGN}) add_dependencies(testdeps ${TEST_NAME}) string(TOUPPER ${TEST_NAME} UPPER_TEST_NAME) include_directories( ${CURL_SOURCE_DIR}/lib # To be able to reach "curl_setup_once.h" ${CURL_BINARY_DIR}/lib # To be able to reach "curl_config.h" ${CURL_BINARY_DIR}/include # To be able to reach "curl/curl.h" ${CURL_SOURCE_DIR}/tests/libtest # To be able to build generated tests ) if(USE_ARES) include_directories(${CARES_INCLUDE_DIR}) endif() target_link_libraries(${TEST_NAME} libcurl ${CURL_LIBS}) set_target_properties(${TEST_NAME} PROPERTIES COMPILE_DEFINITIONS ${UPPER_TEST_NAME}) set_target_properties(${TEST_NAME} PROPERTIES PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}") endfunction() transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake") include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake) foreach(TEST_NAME ${noinst_PROGRAMS}) if(DEFINED ${TEST_NAME}_SOURCES) setup_test(${TEST_NAME} ${${TEST_NAME}_SOURCES}) else() setup_test(${TEST_NAME} ${nodist_${TEST_NAME}_SOURCES}) endif() endforeach() # Allows for hostname override to make tests machine independent. # TODO this cmake build assumes a shared build, detect static linking here! if(NOT WIN32) add_library(hostname MODULE EXCLUDE_FROM_ALL sethostname.c sethostname.h) add_dependencies(testdeps hostname) # Output to .libs for compatibility with autotools, the test data expects a # library at (tests)/libtest/.libs/libhostname.so set_target_properties(hostname PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/.libs) if(HIDES_CURL_PRIVATE_SYMBOLS) set_property(TARGET hostname APPEND PROPERTY COMPILE_DEFINITIONS "CURL_HIDDEN_SYMBOLS") set_property(TARGET hostname APPEND PROPERTY COMPILE_FLAGS ${CURL_CFLAG_SYMBOLS_HIDE}) endif() endif() add_custom_command( OUTPUT lib1521.c COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl < ${CURL_SOURCE_DIR}/include/curl/curl.h > lib1521.c DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/mk-lib1521.pl" "${CURL_SOURCE_DIR}/include/curl/curl.h" VERBATIM) set_property(TARGET chkdecimalpoint APPEND PROPERTY COMPILE_DEFINITIONS "CURLX_NO_MEMORY_CALLBACKS;CURL_STATICLIB")
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib512.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" /* Test case code based on source in a bug report filed by James Bursa on 28 Apr 2004 */ int test(char *URL) { CURLcode code; int rc = 99; code = curl_global_init(CURL_GLOBAL_ALL); if(code == CURLE_OK) { CURL *curl = curl_easy_init(); if(curl) { CURL *curl2; curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); curl_easy_setopt(curl, CURLOPT_HEADER, 1L); curl2 = curl_easy_duphandle(curl); if(curl2) { code = curl_easy_setopt(curl2, CURLOPT_URL, URL); if(code == CURLE_OK) { code = curl_easy_perform(curl2); if(code == CURLE_OK) rc = 0; else rc = 1; } else rc = 2; curl_easy_cleanup(curl2); } else rc = 3; curl_easy_cleanup(curl); } else rc = 4; curl_global_cleanup(); } else rc = 5; return rc; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1509.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" size_t WriteOutput(void *ptr, size_t size, size_t nmemb, void *stream); size_t WriteHeader(void *ptr, size_t size, size_t nmemb, void *stream); static unsigned long realHeaderSize = 0; int test(char *URL) { long headerSize; CURLcode code; CURL *curl = NULL; int res = 0; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_PROXY, libtest_arg2); /* set in first.c */ easy_setopt(curl, CURLOPT_WRITEFUNCTION, *WriteOutput); easy_setopt(curl, CURLOPT_HEADERFUNCTION, *WriteHeader); easy_setopt(curl, CURLOPT_HEADER, 1L); easy_setopt(curl, CURLOPT_VERBOSE, 1L); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, 1L); code = curl_easy_perform(curl); if(CURLE_OK != code) { fprintf(stderr, "%s:%d curl_easy_perform() failed, " "with code %d (%s)\n", __FILE__, __LINE__, (int)code, curl_easy_strerror(code)); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } code = curl_easy_getinfo(curl, CURLINFO_HEADER_SIZE, &headerSize); if(CURLE_OK != code) { fprintf(stderr, "%s:%d curl_easy_getinfo() failed, " "with code %d (%s)\n", __FILE__, __LINE__, (int)code, curl_easy_strerror(code)); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } printf("header length is ........: %ld\n", headerSize); printf("header length should be..: %lu\n", realHeaderSize); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return res; } size_t WriteOutput(void *ptr, size_t size, size_t nmemb, void *stream) { fwrite(ptr, size, nmemb, stream); return nmemb * size; } size_t WriteHeader(void *ptr, size_t size, size_t nmemb, void *stream) { (void)ptr; (void)stream; realHeaderSize += curlx_uztoul(size * nmemb); return nmemb * size; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/testutil.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "curl_setup.h" #include <curl/curl.h> #include "testutil.h" #include "memdebug.h" #if defined(WIN32) && !defined(MSDOS) struct timeval tutil_tvnow(void) { /* ** GetTickCount() is available on _all_ Windows versions from W95 up ** to nowadays. Returns milliseconds elapsed since last system boot, ** increases monotonically and wraps once 49.7 days have elapsed. */ struct timeval now; DWORD milliseconds = GetTickCount(); now.tv_sec = milliseconds / 1000; now.tv_usec = (milliseconds % 1000) * 1000; return now; } #elif defined(HAVE_CLOCK_GETTIME_MONOTONIC) struct timeval tutil_tvnow(void) { /* ** clock_gettime() is granted to be increased monotonically when the ** monotonic clock is queried. Time starting point is unspecified, it ** could be the system start-up time, the Epoch, or something else, ** in any case the time starting point does not change once that the ** system has started up. */ struct timeval now; struct timespec tsnow; if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) { now.tv_sec = tsnow.tv_sec; now.tv_usec = (int)(tsnow.tv_nsec / 1000); } /* ** Even when the configure process has truly detected monotonic clock ** availability, it might happen that it is not actually available at ** run-time. When this occurs simply fallback to other time source. */ #ifdef HAVE_GETTIMEOFDAY else (void)gettimeofday(&now, NULL); #else else { now.tv_sec = time(NULL); now.tv_usec = 0; } #endif return now; } #elif defined(HAVE_GETTIMEOFDAY) struct timeval tutil_tvnow(void) { /* ** gettimeofday() is not granted to be increased monotonically, due to ** clock drifting and external source time synchronization it can jump ** forward or backward in time. */ struct timeval now; (void)gettimeofday(&now, NULL); return now; } #else struct timeval tutil_tvnow(void) { /* ** time() returns the value of time in seconds since the Epoch. */ struct timeval now; now.tv_sec = time(NULL); now.tv_usec = 0; return now; } #endif /* * Make sure that the first argument is the more recent time, as otherwise * we'll get a weird negative time-diff back... * * Returns: the time difference in number of milliseconds. */ long tutil_tvdiff(struct timeval newer, struct timeval older) { return (long)(newer.tv_sec-older.tv_sec)*1000+ (long)(newer.tv_usec-older.tv_usec)/1000; } /* * Same as tutil_tvdiff but with full usec resolution. * * Returns: the time difference in seconds with subsecond resolution. */ double tutil_tvdiff_secs(struct timeval newer, struct timeval older) { if(newer.tv_sec != older.tv_sec) return (double)(newer.tv_sec-older.tv_sec)+ (double)(newer.tv_usec-older.tv_usec)/1000000.0; return (double)(newer.tv_usec-older.tv_usec)/1000000.0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib564.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include <fcntl.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 int test(char *URL) { int res = 0; CURL *curl = NULL; int running; CURLM *m = NULL; start_test_timing(); global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_VERBOSE, 1L); easy_setopt(curl, CURLOPT_PROXY, libtest_arg2); easy_setopt(curl, CURLOPT_PROXYTYPE, (long)CURLPROXY_SOCKS4); multi_init(m); multi_add_handle(m, curl); fprintf(stderr, "Start at URL 0\n"); for(;;) { struct timeval interval; fd_set rd, wr, exc; int maxfd = -99; interval.tv_sec = 1; interval.tv_usec = 0; multi_perform(m, &running); abort_on_test_timeout(); if(!running) break; /* done */ FD_ZERO(&rd); FD_ZERO(&wr); FD_ZERO(&exc); multi_fdset(m, &rd, &wr, &exc, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &rd, &wr, &exc, &interval); abort_on_test_timeout(); } test_cleanup: /* undocumented cleanup sequence - type UB */ curl_easy_cleanup(curl); curl_multi_cleanup(m); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/Makefile.inc
#*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2021, 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. # ########################################################################### # files used only in some libcurl test programs TESTUTIL = testutil.c testutil.h # files used only in some libcurl test programs TSTTRACE = testtrace.c testtrace.h # files used only in some libcurl test programs WARNLESS = ../../lib/warnless.c ../../lib/warnless.h # files used only in some libcurl test programs MULTIBYTE = ../../lib/curl_multibyte.c ../../lib/curl_multibyte.h # these files are used in every single test program below SUPPORTFILES = first.c test.h # These are all libcurl test programs noinst_PROGRAMS = chkhostname libauthretry libntlmconnect \ chkdecimalpoint libprereq \ lib500 lib501 lib502 lib503 lib504 lib505 lib506 lib507 lib508 lib509 \ lib510 lib511 lib512 lib513 lib514 lib515 lib516 lib517 lib518 lib519 \ lib520 lib521 lib523 lib524 lib525 lib526 lib527 lib529 lib532 \ lib533 lib537 lib539 lib540 lib541 lib542 lib543 lib544 lib545 \ lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib556 lib557 lib558 \ lib559 lib560 lib562 lib564 lib565 lib566 lib567 lib568 lib569 lib570 \ lib571 lib572 lib573 lib574 lib575 lib576 lib578 lib579 lib582 \ lib583 lib584 lib585 lib586 lib587 lib589 lib590 lib591 lib597 lib598 \ lib599 \ lib643 lib645 lib650 lib651 lib652 lib653 lib654 lib655 lib658 \ lib659 lib661 lib666 lib667 lib668 \ lib670 lib671 lib672 lib673 lib674 lib676 lib677 lib678 \ lib1156 \ lib1500 lib1501 lib1502 lib1503 lib1504 lib1505 lib1506 lib1507 lib1508 \ lib1509 lib1510 lib1511 lib1512 lib1513 lib1514 lib1515 lib1517 \ lib1518 lib1520 lib1521 lib1522 lib1523 \ lib1525 lib1526 lib1527 lib1528 lib1529 lib1530 lib1531 lib1532 lib1533 \ lib1534 lib1535 lib1536 lib1537 lib1538 lib1539 \ lib1540 lib1542 \ lib1550 lib1551 lib1552 lib1553 lib1554 lib1555 lib1556 lib1557 \ lib1558 lib1559 lib1560 lib1564 lib1565 lib1567 lib1568 lib1569 \ lib1591 lib1592 lib1593 lib1594 lib1596 \ lib1905 lib1906 lib1907 lib1908 lib1910 lib1911 lib1912 lib1913 \ lib1915 lib1916 lib1917 lib1918 lib1933 lib1934 lib1935 lib1936 \ lib1937 lib1938 lib3010 chkdecimalpoint_SOURCES = chkdecimalpoint.c ../../lib/mprintf.c \ ../../lib/curl_ctype.c ../../lib/dynbuf.c ../../lib/strdup.c chkdecimalpoint_LDADD = chkdecimalpoint_CPPFLAGS = $(AM_CPPFLAGS) -DCURL_STATICLIB \ -DCURLX_NO_MEMORY_CALLBACKS -DBUILDING_LIBCURL chkhostname_SOURCES = chkhostname.c ../../lib/curl_gethostname.c chkhostname_LDADD = @CURL_NETWORK_LIBS@ chkhostname_DEPENDENCIES = chkhostname_CPPFLAGS = $(AM_CPPFLAGS) libntlmconnect_SOURCES = libntlmconnect.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) libntlmconnect_LDADD = $(TESTUTIL_LIBS) libntlmconnect_CPPFLAGS = $(AM_CPPFLAGS) libauthretry_SOURCES = libauthretry.c $(SUPPORTFILES) libauthretry_CPPFLAGS = $(AM_CPPFLAGS) libprereq_SOURCES = libprereq.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) libprereq_LDADD = $(TESTUTIL_LIBS) libprereq_CPPFLAGS = $(AM_CPPFLAGS) lib500_SOURCES = lib500.c $(SUPPORTFILES) $(TESTUTIL) $(TSTTRACE) $(MULTIBYTE) lib500_LDADD = $(TESTUTIL_LIBS) lib500_CPPFLAGS = $(AM_CPPFLAGS) lib501_SOURCES = lib501.c $(SUPPORTFILES) lib501_CPPFLAGS = $(AM_CPPFLAGS) lib502_SOURCES = lib502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib502_LDADD = $(TESTUTIL_LIBS) lib502_CPPFLAGS = $(AM_CPPFLAGS) lib503_SOURCES = lib503.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib503_LDADD = $(TESTUTIL_LIBS) lib503_CPPFLAGS = $(AM_CPPFLAGS) lib504_SOURCES = lib504.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib504_LDADD = $(TESTUTIL_LIBS) lib504_CPPFLAGS = $(AM_CPPFLAGS) lib505_SOURCES = lib505.c $(SUPPORTFILES) $(MULTIBYTE) lib505_CPPFLAGS = $(AM_CPPFLAGS) lib506_SOURCES = lib506.c $(SUPPORTFILES) lib506_CPPFLAGS = $(AM_CPPFLAGS) lib507_SOURCES = lib507.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib507_LDADD = $(TESTUTIL_LIBS) lib507_CPPFLAGS = $(AM_CPPFLAGS) lib508_SOURCES = lib508.c $(SUPPORTFILES) lib508_CPPFLAGS = $(AM_CPPFLAGS) lib509_SOURCES = lib509.c $(SUPPORTFILES) lib509_CPPFLAGS = $(AM_CPPFLAGS) lib510_SOURCES = lib510.c $(SUPPORTFILES) lib510_CPPFLAGS = $(AM_CPPFLAGS) lib511_SOURCES = lib511.c $(SUPPORTFILES) lib511_CPPFLAGS = $(AM_CPPFLAGS) lib512_SOURCES = lib512.c $(SUPPORTFILES) lib512_CPPFLAGS = $(AM_CPPFLAGS) lib513_SOURCES = lib513.c $(SUPPORTFILES) lib513_CPPFLAGS = $(AM_CPPFLAGS) lib514_SOURCES = lib514.c $(SUPPORTFILES) lib514_CPPFLAGS = $(AM_CPPFLAGS) lib515_SOURCES = lib515.c $(SUPPORTFILES) lib515_CPPFLAGS = $(AM_CPPFLAGS) lib516_SOURCES = lib516.c $(SUPPORTFILES) lib516_CPPFLAGS = $(AM_CPPFLAGS) lib517_SOURCES = lib517.c $(SUPPORTFILES) lib517_CPPFLAGS = $(AM_CPPFLAGS) lib518_SOURCES = lib518.c $(SUPPORTFILES) $(WARNLESS) $(MULTIBYTE) lib518_CPPFLAGS = $(AM_CPPFLAGS) lib519_SOURCES = lib519.c $(SUPPORTFILES) lib519_CPPFLAGS = $(AM_CPPFLAGS) lib520_SOURCES = lib520.c $(SUPPORTFILES) lib520_CPPFLAGS = $(AM_CPPFLAGS) lib521_SOURCES = lib521.c $(SUPPORTFILES) lib521_CPPFLAGS = $(AM_CPPFLAGS) lib523_SOURCES = lib523.c $(SUPPORTFILES) lib523_CPPFLAGS = $(AM_CPPFLAGS) lib524_SOURCES = lib524.c $(SUPPORTFILES) lib524_CPPFLAGS = $(AM_CPPFLAGS) lib525_SOURCES = lib525.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib525_LDADD = $(TESTUTIL_LIBS) lib525_CPPFLAGS = $(AM_CPPFLAGS) lib526_SOURCES = lib526.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib526_LDADD = $(TESTUTIL_LIBS) lib526_CPPFLAGS = $(AM_CPPFLAGS) -DLIB526 lib527_SOURCES = lib526.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib527_LDADD = $(TESTUTIL_LIBS) lib527_CPPFLAGS = $(AM_CPPFLAGS) -DLIB527 lib529_SOURCES = lib525.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib529_LDADD = $(TESTUTIL_LIBS) lib529_CPPFLAGS = $(AM_CPPFLAGS) -DLIB529 lib532_SOURCES = lib526.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib532_LDADD = $(TESTUTIL_LIBS) lib532_CPPFLAGS = $(AM_CPPFLAGS) -DLIB532 lib533_SOURCES = lib533.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib533_LDADD = $(TESTUTIL_LIBS) lib533_CPPFLAGS = $(AM_CPPFLAGS) lib537_SOURCES = lib537.c $(SUPPORTFILES) $(WARNLESS) $(MULTIBYTE) lib537_CPPFLAGS = $(AM_CPPFLAGS) lib539_SOURCES = lib539.c $(SUPPORTFILES) lib539_CPPFLAGS = $(AM_CPPFLAGS) lib540_SOURCES = lib540.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib540_LDADD = $(TESTUTIL_LIBS) lib540_CPPFLAGS = $(AM_CPPFLAGS) lib541_SOURCES = lib541.c $(SUPPORTFILES) $(MULTIBYTE) lib541_CPPFLAGS = $(AM_CPPFLAGS) lib542_SOURCES = lib542.c $(SUPPORTFILES) lib542_CPPFLAGS = $(AM_CPPFLAGS) lib543_SOURCES = lib543.c $(SUPPORTFILES) lib543_CPPFLAGS = $(AM_CPPFLAGS) lib544_SOURCES = lib544.c $(SUPPORTFILES) lib544_CPPFLAGS = $(AM_CPPFLAGS) lib545_SOURCES = lib544.c $(SUPPORTFILES) lib545_CPPFLAGS = $(AM_CPPFLAGS) -DLIB545 lib547_SOURCES = lib547.c $(SUPPORTFILES) lib547_CPPFLAGS = $(AM_CPPFLAGS) lib548_SOURCES = lib547.c $(SUPPORTFILES) lib548_CPPFLAGS = $(AM_CPPFLAGS) -DLIB548 lib549_SOURCES = lib549.c $(SUPPORTFILES) lib549_CPPFLAGS = $(AM_CPPFLAGS) lib552_SOURCES = lib552.c $(SUPPORTFILES) $(WARNLESS) lib552_CPPFLAGS = $(AM_CPPFLAGS) lib553_SOURCES = lib553.c $(SUPPORTFILES) lib553_CPPFLAGS = $(AM_CPPFLAGS) lib554_SOURCES = lib554.c $(SUPPORTFILES) lib554_CPPFLAGS = $(AM_CPPFLAGS) lib555_SOURCES = lib555.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib555_LDADD = $(TESTUTIL_LIBS) lib555_CPPFLAGS = $(AM_CPPFLAGS) lib556_SOURCES = lib556.c $(SUPPORTFILES) $(WARNLESS) lib556_CPPFLAGS = $(AM_CPPFLAGS) lib557_SOURCES = lib557.c $(SUPPORTFILES) lib557_CPPFLAGS = $(AM_CPPFLAGS) lib558_SOURCES = lib558.c $(SUPPORTFILES) lib558_CPPFLAGS = $(AM_CPPFLAGS) lib559_SOURCES = lib559.c $(SUPPORTFILES) lib559_CPPFLAGS = $(AM_CPPFLAGS) lib560_SOURCES = lib560.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib560_LDADD = $(TESTUTIL_LIBS) lib560_CPPFLAGS = $(AM_CPPFLAGS) lib562_SOURCES = lib562.c $(SUPPORTFILES) lib562_CPPFLAGS = $(AM_CPPFLAGS) lib564_SOURCES = lib564.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib564_LDADD = $(TESTUTIL_LIBS) lib564_CPPFLAGS = $(AM_CPPFLAGS) lib565_SOURCES = lib510.c $(SUPPORTFILES) lib565_CPPFLAGS = $(AM_CPPFLAGS) -DLIB565 lib566_SOURCES = lib566.c $(SUPPORTFILES) $(MULTIBYTE) lib566_CPPFLAGS = $(AM_CPPFLAGS) lib567_SOURCES = lib567.c $(SUPPORTFILES) lib567_CPPFLAGS = $(AM_CPPFLAGS) lib568_SOURCES = lib568.c $(SUPPORTFILES) $(MULTIBYTE) lib568_CPPFLAGS = $(AM_CPPFLAGS) lib569_SOURCES = lib569.c $(SUPPORTFILES) $(MULTIBYTE) lib569_CPPFLAGS = $(AM_CPPFLAGS) lib570_SOURCES = lib570.c $(SUPPORTFILES) lib570_CPPFLAGS = $(AM_CPPFLAGS) lib571_SOURCES = lib571.c $(SUPPORTFILES) $(WARNLESS) $(MULTIBYTE) lib571_CPPFLAGS = $(AM_CPPFLAGS) lib572_SOURCES = lib572.c $(SUPPORTFILES) $(MULTIBYTE) lib572_CPPFLAGS = $(AM_CPPFLAGS) lib573_SOURCES = lib573.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(TSTTRACE) lib573_LDADD = $(TESTUTIL_LIBS) lib573_CPPFLAGS = $(AM_CPPFLAGS) lib574_SOURCES = lib574.c $(SUPPORTFILES) lib574_CPPFLAGS = $(AM_CPPFLAGS) lib575_SOURCES = lib575.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib575_LDADD = $(TESTUTIL_LIBS) lib575_CPPFLAGS = $(AM_CPPFLAGS) lib576_SOURCES = lib576.c $(SUPPORTFILES) lib576_CPPFLAGS = $(AM_CPPFLAGS) lib578_SOURCES = lib578.c $(SUPPORTFILES) $(MULTIBYTE) lib578_CPPFLAGS = $(AM_CPPFLAGS) lib579_SOURCES = lib579.c $(SUPPORTFILES) $(MULTIBYTE) lib579_CPPFLAGS = $(AM_CPPFLAGS) lib582_SOURCES = lib582.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib582_LDADD = $(TESTUTIL_LIBS) lib582_CPPFLAGS = $(AM_CPPFLAGS) lib583_SOURCES = lib583.c $(SUPPORTFILES) lib583_CPPFLAGS = $(AM_CPPFLAGS) lib584_SOURCES = lib589.c $(SUPPORTFILES) lib584_CPPFLAGS = $(AM_CPPFLAGS) -DLIB584 lib585_SOURCES = lib500.c $(SUPPORTFILES) $(TESTUTIL) $(TSTTRACE) $(MULTIBYTE) lib585_LDADD = $(TESTUTIL_LIBS) lib585_CPPFLAGS = $(AM_CPPFLAGS) -DLIB585 lib586_SOURCES = lib586.c $(SUPPORTFILES) lib586_CPPFLAGS = $(AM_CPPFLAGS) lib587_SOURCES = lib554.c $(SUPPORTFILES) lib587_CPPFLAGS = $(AM_CPPFLAGS) -DLIB587 lib589_SOURCES = lib589.c $(SUPPORTFILES) lib589_CPPFLAGS = $(AM_CPPFLAGS) lib590_SOURCES = lib590.c $(SUPPORTFILES) lib590_CPPFLAGS = $(AM_CPPFLAGS) lib591_SOURCES = lib591.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib591_LDADD = $(TESTUTIL_LIBS) lib591_CPPFLAGS = $(AM_CPPFLAGS) lib597_SOURCES = lib597.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib597_LDADD = $(TESTUTIL_LIBS) lib597_CPPFLAGS = $(AM_CPPFLAGS) lib598_SOURCES = lib598.c $(SUPPORTFILES) lib598_CPPFLAGS = $(AM_CPPFLAGS) lib599_SOURCES = lib599.c $(SUPPORTFILES) $(MULTIBYTE) lib599_CPPFLAGS = $(AM_CPPFLAGS) lib643_SOURCES = lib643.c $(SUPPORTFILES) lib643_CPPFLAGS = $(AM_CPPFLAGS) lib645_SOURCES = lib643.c $(SUPPORTFILES) lib645_CPPFLAGS = $(AM_CPPFLAGS) -DLIB645 lib650_SOURCES = lib650.c $(SUPPORTFILES) lib650_CPPFLAGS = $(AM_CPPFLAGS) lib651_SOURCES = lib651.c $(SUPPORTFILES) lib651_CPPFLAGS = $(AM_CPPFLAGS) lib652_SOURCES = lib652.c $(SUPPORTFILES) lib652_CPPFLAGS = $(AM_CPPFLAGS) lib653_SOURCES = lib653.c $(SUPPORTFILES) lib653_CPPFLAGS = $(AM_CPPFLAGS) lib654_SOURCES = lib654.c $(SUPPORTFILES) lib654_CPPFLAGS = $(AM_CPPFLAGS) lib655_SOURCES = lib655.c $(SUPPORTFILES) lib655_CPPFLAGS = $(AM_CPPFLAGS) lib658_SOURCES = lib658.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib658_LDADD = $(TESTUTIL_LIBS) lib658_CPPFLAGS = $(AM_CPPFLAGS) lib659_SOURCES = lib659.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib659_LDADD = $(TESTUTIL_LIBS) lib659_CPPFLAGS = $(AM_CPPFLAGS) lib661_SOURCES = lib661.c $(SUPPORTFILES) lib661_CPPFLAGS = $(AM_CPPFLAGS) lib666_SOURCES = lib666.c $(SUPPORTFILES) lib666_CPPFLAGS = $(AM_CPPFLAGS) lib667_SOURCES = lib667.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib667_LDADD = $(TESTUTIL_LIBS) lib667_CPPFLAGS = $(AM_CPPFLAGS) lib668_SOURCES = lib668.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib668_LDADD = $(TESTUTIL_LIBS) lib668_CPPFLAGS = $(AM_CPPFLAGS) lib670_SOURCES = lib670.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib670_LDADD = $(TESTUTIL_LIBS) lib670_CPPFLAGS = $(AM_CPPFLAGS) -DLIB670 lib671_SOURCES = lib670.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib671_LDADD = $(TESTUTIL_LIBS) lib671_CPPFLAGS = $(AM_CPPFLAGS) -DLIB671 lib672_SOURCES = lib670.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib672_LDADD = $(TESTUTIL_LIBS) lib672_CPPFLAGS = $(AM_CPPFLAGS) -DLIB672 lib673_SOURCES = lib670.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib673_LDADD = $(TESTUTIL_LIBS) lib673_CPPFLAGS = $(AM_CPPFLAGS) -DLIB673 lib674_SOURCES = lib674.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib674_LDADD = $(TESTUTIL_LIBS) lib674_CPPFLAGS = $(AM_CPPFLAGS) lib676_SOURCES = lib676.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib676_LDADD = $(TESTUTIL_LIBS) lib676_CPPFLAGS = $(AM_CPPFLAGS) lib677_SOURCES = lib677.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib677_LDADD = $(TESTUTIL_LIBS) lib677_CPPFLAGS = $(AM_CPPFLAGS) lib678_SOURCES = lib678.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) $(MULTIBYTE) lib678_LDADD = $(TESTUTIL_LIBS) lib678_CPPFLAGS = $(AM_CPPFLAGS) lib1500_SOURCES = lib1500.c $(SUPPORTFILES) $(TESTUTIL) lib1500_LDADD = $(TESTUTIL_LIBS) lib1500_CPPFLAGS = $(AM_CPPFLAGS) lib1501_SOURCES = lib1501.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1501_LDADD = $(TESTUTIL_LIBS) lib1501_CPPFLAGS = $(AM_CPPFLAGS) lib1502_SOURCES = lib1502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1502_LDADD = $(TESTUTIL_LIBS) lib1502_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1502 lib1503_SOURCES = lib1502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1503_LDADD = $(TESTUTIL_LIBS) lib1503_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1503 lib1504_SOURCES = lib1502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1504_LDADD = $(TESTUTIL_LIBS) lib1504_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1504 lib1505_SOURCES = lib1502.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1505_LDADD = $(TESTUTIL_LIBS) lib1505_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1505 lib1506_SOURCES = lib1506.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1506_LDADD = $(TESTUTIL_LIBS) lib1506_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1506 lib1156_SOURCES = lib1156.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1156_LDADD = $(TESTUTIL_LIBS) lib1156_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1156 lib1507_SOURCES = lib1507.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1507_LDADD = $(TESTUTIL_LIBS) lib1507_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1507 lib1508_SOURCES = lib1508.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1508_LDADD = $(TESTUTIL_LIBS) lib1508_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1508 lib1509_SOURCES = lib1509.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1509_LDADD = $(TESTUTIL_LIBS) lib1509_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1509 lib1510_SOURCES = lib1510.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1510_LDADD = $(TESTUTIL_LIBS) lib1510_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1510 lib1511_SOURCES = lib1511.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1511_LDADD = $(TESTUTIL_LIBS) lib1511_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1511 lib1512_SOURCES = lib1512.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1512_LDADD = $(TESTUTIL_LIBS) lib1512_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1512 lib1513_SOURCES = lib1513.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1513_LDADD = $(TESTUTIL_LIBS) lib1513_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1513 lib1514_SOURCES = lib1514.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1514_LDADD = $(TESTUTIL_LIBS) lib1514_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1514 lib1515_SOURCES = lib1515.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1515_LDADD = $(TESTUTIL_LIBS) lib1515_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1515 lib1517_SOURCES = lib1517.c $(SUPPORTFILES) lib1517_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1517 lib1518_SOURCES = lib1518.c $(SUPPORTFILES) lib1518_CPPFLAGS = $(AM_CPPFLAGS) lib1520_SOURCES = lib1520.c $(SUPPORTFILES) lib1520_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1520 nodist_lib1521_SOURCES = lib1521.c $(SUPPORTFILES) lib1521_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir) lib1522_SOURCES = lib1522.c $(SUPPORTFILES) $(TESTUTIL) $(TSTTRACE) lib1522_LDADD = $(TESTUTIL_LIBS) lib1522_CPPFLAGS = $(AM_CPPFLAGS) lib1523_SOURCES = lib1523.c $(SUPPORTFILES) lib1523_CPPFLAGS = $(AM_CPPFLAGS) lib1525_SOURCES = lib1525.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1525_LDADD = $(TESTUTIL_LIBS) lib1525_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1525 lib1526_SOURCES = lib1526.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1526_LDADD = $(TESTUTIL_LIBS) lib1526_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1526 lib1527_SOURCES = lib1527.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1527_LDADD = $(TESTUTIL_LIBS) lib1527_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1527 lib1528_SOURCES = lib1528.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1528_LDADD = $(TESTUTIL_LIBS) lib1528_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1528 lib1529_SOURCES = lib1529.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1529_LDADD = $(TESTUTIL_LIBS) lib1529_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1529 lib1530_SOURCES = lib1530.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1530_LDADD = $(TESTUTIL_LIBS) lib1530_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1530 lib1531_SOURCES = lib1531.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1531_LDADD = $(TESTUTIL_LIBS) lib1531_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1531 lib1532_SOURCES = lib1532.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1532_LDADD = $(TESTUTIL_LIBS) lib1532_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1532 lib1533_SOURCES = lib1533.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1533_LDADD = $(TESTUTIL_LIBS) lib1533_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1533 lib1534_SOURCES = lib1534.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1534_LDADD = $(TESTUTIL_LIBS) lib1534_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1534 lib1535_SOURCES = lib1535.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1535_LDADD = $(TESTUTIL_LIBS) lib1535_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1535 lib1536_SOURCES = lib1536.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1536_LDADD = $(TESTUTIL_LIBS) lib1536_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1536 lib1537_SOURCES = lib1537.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1537_LDADD = $(TESTUTIL_LIBS) lib1537_CPPFLAGS = $(AM_CPPFLAGS) lib1538_SOURCES = lib1538.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1538_LDADD = $(TESTUTIL_LIBS) lib1538_CPPFLAGS = $(AM_CPPFLAGS) lib1539_SOURCES = lib1514.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1539_LDADD = $(TESTUTIL_LIBS) lib1539_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1539 lib1540_SOURCES = lib1540.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1540_LDADD = $(TESTUTIL_LIBS) lib1540_CPPFLAGS = $(AM_CPPFLAGS) lib1542_SOURCES = lib1542.c $(SUPPORTFILES) $(TESTUTIL) $(TSTTRACE) $(WARNLESS) lib1542_LDADD = $(TESTUTIL_LIBS) lib1542_CPPFLAGS = $(AM_CPPFLAGS) lib1550_SOURCES = lib1550.c $(SUPPORTFILES) lib1550_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1517 lib1551_SOURCES = lib1551.c $(SUPPORTFILES) lib1551_CPPFLAGS = $(AM_CPPFLAGS) lib1552_SOURCES = lib1552.c $(SUPPORTFILES) $(TESTUTIL) lib1552_LDADD = $(TESTUTIL_LIBS) lib1552_CPPFLAGS = $(AM_CPPFLAGS) lib1553_SOURCES = lib1553.c $(SUPPORTFILES) $(TESTUTIL) lib1553_LDADD = $(TESTUTIL_LIBS) lib1553_CPPFLAGS = $(AM_CPPFLAGS) lib1554_SOURCES = lib1554.c $(SUPPORTFILES) lib1554_CPPFLAGS = $(AM_CPPFLAGS) lib1555_SOURCES = lib1555.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1555_LDADD = $(TESTUTIL_LIBS) lib1555_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1555 lib1556_SOURCES = lib1556.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1556_LDADD = $(TESTUTIL_LIBS) lib1556_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1556 lib1557_SOURCES = lib1557.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1557_LDADD = $(TESTUTIL_LIBS) lib1557_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1557 lib1558_SOURCES = lib1558.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1558_LDADD = $(TESTUTIL_LIBS) lib1559_SOURCES = lib1559.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1559_LDADD = $(TESTUTIL_LIBS) lib1560_SOURCES = lib1560.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1560_LDADD = $(TESTUTIL_LIBS) lib1564_SOURCES = lib1564.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1564_LDADD = $(TESTUTIL_LIBS) lib1564_CPPFLAGS = $(AM_CPPFLAGS) lib1565_SOURCES = lib1565.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1565_LDADD = $(TESTUTIL_LIBS) lib1565_CPPFLAGS = $(AM_CPPFLAGS) lib1567_SOURCES = lib1567.c $(SUPPORTFILES) lib1567_CPPFLAGS = $(AM_CPPFLAGS) lib1568_SOURCES = lib1568.c $(SUPPORTFILES) lib1568_CPPFLAGS = $(AM_CPPFLAGS) lib1569_SOURCES = lib1569.c $(SUPPORTFILES) lib1569_CPPFLAGS = $(AM_CPPFLAGS) lib1591_SOURCES = lib1591.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1591_LDADD = $(TESTUTIL_LIBS) lib1591_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1591 lib1592_SOURCES = lib1592.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1592_LDADD = $(TESTUTIL_LIBS) lib1592_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1592 lib1593_SOURCES = lib1593.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1593_LDADD = $(TESTUTIL_LIBS) lib1594_SOURCES = lib1594.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1594_LDADD = $(TESTUTIL_LIBS) lib1596_SOURCES = lib1594.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1596_LDADD = $(TESTUTIL_LIBS) lib1596_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1596 lib1905_SOURCES = lib1905.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1905_LDADD = $(TESTUTIL_LIBS) lib1905_CPPFLAGS = $(AM_CPPFLAGS) lib1906_SOURCES = lib1906.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1906_LDADD = $(TESTUTIL_LIBS) lib1906_CPPFLAGS = $(AM_CPPFLAGS) lib1907_SOURCES = lib1907.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1907_LDADD = $(TESTUTIL_LIBS) lib1907_CPPFLAGS = $(AM_CPPFLAGS) lib1908_SOURCES = lib1908.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1908_LDADD = $(TESTUTIL_LIBS) lib1908_CPPFLAGS = $(AM_CPPFLAGS) lib1910_SOURCES = lib1910.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1910_LDADD = $(TESTUTIL_LIBS) lib1910_CPPFLAGS = $(AM_CPPFLAGS) lib1911_SOURCES = lib1911.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1911_LDADD = $(TESTUTIL_LIBS) lib1911_CPPFLAGS = $(AM_CPPFLAGS) lib1912_SOURCES = lib1912.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1912_LDADD = $(TESTUTIL_LIBS) lib1912_CPPFLAGS = $(AM_CPPFLAGS) lib1913_SOURCES = lib1913.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1913_LDADD = $(TESTUTIL_LIBS) lib1913_CPPFLAGS = $(AM_CPPFLAGS) lib1915_SOURCES = lib1915.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1915_LDADD = $(TESTUTIL_LIBS) lib1915_CPPFLAGS = $(AM_CPPFLAGS) lib1916_SOURCES = lib1916.c $(SUPPORTFILES) $(WARNLESS) lib1916_CPPFLAGS = $(AM_CPPFLAGS) lib1917_SOURCES = lib1916.c $(SUPPORTFILES) $(WARNLESS) lib1917_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1917 lib1918_SOURCES = lib1918.c $(SUPPORTFILES) $(WARNLESS) lib1918_CPPFLAGS = $(AM_CPPFLAGS) lib1933_SOURCES = lib1933.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1933_LDADD = $(TESTUTIL_LIBS) lib1933_CPPFLAGS = $(AM_CPPFLAGS) lib1934_SOURCES = lib1934.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1934_LDADD = $(TESTUTIL_LIBS) lib1934_CPPFLAGS = $(AM_CPPFLAGS) lib1935_SOURCES = lib1935.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1935_LDADD = $(TESTUTIL_LIBS) lib1935_CPPFLAGS = $(AM_CPPFLAGS) lib1936_SOURCES = lib1936.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib1936_LDADD = $(TESTUTIL_LIBS) lib1936_CPPFLAGS = $(AM_CPPFLAGS) lib1937_SOURCES = lib1937.c $(SUPPORTFILES) lib1937_LDADD = $(TESTUTIL_LIBS) lib1937_CPPFLAGS = $(AM_CPPFLAGS) lib1938_SOURCES = lib1938.c $(SUPPORTFILES) lib1938_LDADD = $(TESTUTIL_LIBS) lib1938_CPPFLAGS = $(AM_CPPFLAGS) lib3010_SOURCES = lib3010.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS) lib3010_LDADD = $(TESTUTIL_LIBS) lib3010_CPPFLAGS = $(AM_CPPFLAGS)
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib655.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static const char *TEST_DATA_STRING = "Test data"; static int cb_count = 0; static int resolver_alloc_cb_fail(void *resolver_state, void *reserved, void *userdata) { (void)resolver_state; (void)reserved; cb_count++; if(strcmp(userdata, TEST_DATA_STRING)) { fprintf(stderr, "Invalid test data received"); exit(1); } return 1; } static int resolver_alloc_cb_pass(void *resolver_state, void *reserved, void *userdata) { (void)resolver_state; (void)reserved; cb_count++; if(strcmp(userdata, TEST_DATA_STRING)) { fprintf(stderr, "Invalid test data received"); exit(1); } return 0; } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } /* First set the URL that is about to receive our request. */ test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_RESOLVER_START_DATA, TEST_DATA_STRING); test_setopt(curl, CURLOPT_RESOLVER_START_FUNCTION, resolver_alloc_cb_fail); /* this should fail */ res = curl_easy_perform(curl); if(res != CURLE_COULDNT_RESOLVE_HOST) { fprintf(stderr, "curl_easy_perform should have returned " "CURLE_COULDNT_RESOLVE_HOST but instead returned error %d\n", res); if(res == CURLE_OK) res = TEST_ERR_FAILURE; goto test_cleanup; } test_setopt(curl, CURLOPT_RESOLVER_START_FUNCTION, resolver_alloc_cb_pass); /* this should succeed */ res = curl_easy_perform(curl); if(res) { fprintf(stderr, "curl_easy_perform failed.\n"); goto test_cleanup; } if(cb_count != 2) { fprintf(stderr, "Unexpected number of callbacks: %d\n", cb_count); res = TEST_ERR_FAILURE; goto test_cleanup; } test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib571.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_NETINET_IN_H # include <netinet/in.h> #endif #ifdef HAVE_NETDB_H # include <netdb.h> #endif #ifdef HAVE_ARPA_INET_H # include <arpa/inet.h> #endif #ifdef HAVE_SYS_STAT_H # include <sys/stat.h> #endif #ifdef HAVE_FCNTL_H # include <fcntl.h> #endif #include "warnless.h" #include "memdebug.h" #define RTP_PKT_CHANNEL(p) ((int)((unsigned char)((p)[1]))) #define RTP_PKT_LENGTH(p) ((((int)((unsigned char)((p)[2]))) << 8) | \ ((int)((unsigned char)((p)[3])))) #define RTP_DATA_SIZE 12 static const char *RTP_DATA = "$_1234\n\0asdf"; static int rtp_packet_count = 0; static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) { char *data = (char *)ptr; int channel = RTP_PKT_CHANNEL(data); int message_size; int coded_size = RTP_PKT_LENGTH(data); size_t failure = (size && nmemb) ? 0 : 1; int i; (void)stream; message_size = curlx_uztosi(size * nmemb) - 4; printf("RTP: message size %d, channel %d\n", message_size, channel); if(message_size != coded_size) { printf("RTP embedded size (%d) does not match the write size (%d).\n", coded_size, message_size); return failure; } data += 4; for(i = 0; i < message_size; i += RTP_DATA_SIZE) { if(message_size - i > RTP_DATA_SIZE) { if(memcmp(RTP_DATA, data + i, RTP_DATA_SIZE) != 0) { printf("RTP PAYLOAD CORRUPTED [%s]\n", data + i); return failure; } } else { if(memcmp(RTP_DATA, data + i, message_size - i) != 0) { printf("RTP PAYLOAD END CORRUPTED (%d), [%s]\n", message_size - i, data + i); return failure; } } } rtp_packet_count++; fprintf(stderr, "packet count is %d\n", rtp_packet_count); return size * nmemb; } /* build request url */ static char *suburl(const char *base, int i) { return curl_maprintf("%s%.4d", base, i); } int test(char *URL) { int res; CURL *curl; char *stream_uri = NULL; int request = 1; FILE *protofile = fopen(libtest_arg2, "wb"); if(!protofile) { fprintf(stderr, "Couldn't open the protocol dump file\n"); return TEST_ERR_MAJOR_BAD; } if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); fclose(protofile); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); fclose(protofile); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_INTERLEAVEFUNCTION, rtp_write); test_setopt(curl, CURLOPT_TIMEOUT, 3L); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_WRITEDATA, protofile); test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "RTP/AVP/TCP;interleaved=0-1"); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); res = curl_easy_perform(curl); if(res) goto test_cleanup; /* This PLAY starts the interleave */ stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); res = curl_easy_perform(curl); if(res) goto test_cleanup; /* The DESCRIBE request will try to consume data after the Content */ stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE); res = curl_easy_perform(curl); if(res) goto test_cleanup; stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); res = curl_easy_perform(curl); if(res) goto test_cleanup; fprintf(stderr, "PLAY COMPLETE\n"); /* Use Receive to get the rest of the data */ while(!res && rtp_packet_count < 13) { fprintf(stderr, "LOOPY LOOP!\n"); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_RECEIVE); res = curl_easy_perform(curl); } test_cleanup: free(stream_uri); if(protofile) fclose(protofile); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1531.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 static char const testData[] = ".abc\0xyz"; static off_t const testDataSize = sizeof(testData) - 1; int test(char *URL) { CURL *easy; CURLM *multi_handle; int still_running; /* keep number of running handles */ CURLMsg *msg; /* for picking up messages with the transfer status */ int msgs_left; /* how many messages are left */ int res = CURLE_OK; start_test_timing(); global_init(CURL_GLOBAL_ALL); /* Allocate one CURL handle per transfer */ easy = curl_easy_init(); /* init a multi stack */ multi_handle = curl_multi_init(); /* add the individual transfer */ curl_multi_add_handle(multi_handle, easy); /* set the options (I left out a few, you'll get the point anyway) */ curl_easy_setopt(easy, CURLOPT_URL, URL); curl_easy_setopt(easy, CURLOPT_POSTFIELDSIZE_LARGE, (curl_off_t)testDataSize); curl_easy_setopt(easy, CURLOPT_POSTFIELDS, testData); /* we start some action by calling perform right away */ curl_multi_perform(multi_handle, &still_running); abort_on_test_timeout(); do { struct timeval timeout; int rc; /* select() return code */ CURLMcode mc; /* curl_multi_fdset() return code */ fd_set fdread; fd_set fdwrite; fd_set fdexcep; int maxfd = -1; long curl_timeo = -1; FD_ZERO(&fdread); FD_ZERO(&fdwrite); FD_ZERO(&fdexcep); /* set a suitable timeout to play around with */ timeout.tv_sec = 1; timeout.tv_usec = 0; curl_multi_timeout(multi_handle, &curl_timeo); if(curl_timeo >= 0) { timeout.tv_sec = curl_timeo / 1000; if(timeout.tv_sec > 1) timeout.tv_sec = 1; else timeout.tv_usec = (curl_timeo % 1000) * 1000; } /* get file descriptors from the transfers */ mc = curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd); if(mc != CURLM_OK) { fprintf(stderr, "curl_multi_fdset() failed, code %d.\n", mc); break; } /* On success the value of maxfd is guaranteed to be >= -1. We call select(maxfd + 1, ...); specially in case of (maxfd == -1) there are no fds ready yet so we call select(0, ...) --or Sleep() on Windows-- to sleep 100ms, which is the minimum suggested value in the curl_multi_fdset() doc. */ if(maxfd == -1) { #if defined(WIN32) || defined(_WIN32) Sleep(100); rc = 0; #else /* Portable sleep for platforms other than Windows. */ struct timeval wait = { 0, 100 * 1000 }; /* 100ms */ rc = select(0, NULL, NULL, NULL, &wait); #endif } else { /* Note that on some platforms 'timeout' may be modified by select(). If you need access to the original value save a copy beforehand. */ rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); } switch(rc) { case -1: /* select error */ break; case 0: /* timeout */ default: /* action */ curl_multi_perform(multi_handle, &still_running); break; } abort_on_test_timeout(); } while(still_running); /* See how the transfers went */ do { msg = curl_multi_info_read(multi_handle, &msgs_left); if(msg && msg->msg == CURLMSG_DONE) { printf("HTTP transfer completed with status %d\n", msg->data.result); break; } abort_on_test_timeout(); } while(msg); test_cleanup: curl_multi_cleanup(multi_handle); /* Free the CURL handles */ curl_easy_cleanup(easy); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib659.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" /* * Get a single URL without select(). */ int test(char *URL) { CURL *handle = NULL; CURLcode res = 0; CURLU *urlp = NULL; global_init(CURL_GLOBAL_ALL); easy_init(handle); urlp = curl_url(); if(!urlp) { fprintf(stderr, "problem init URL api."); goto test_cleanup; } /* this doesn't set the PATH part */ if(curl_url_set(urlp, CURLUPART_HOST, "www.example.com", 0) || curl_url_set(urlp, CURLUPART_SCHEME, "http", 0) || curl_url_set(urlp, CURLUPART_PORT, "80", 0)) { fprintf(stderr, "problem setting CURLUPART"); goto test_cleanup; } easy_setopt(handle, CURLOPT_CURLU, urlp); easy_setopt(handle, CURLOPT_VERBOSE, 1L); easy_setopt(handle, CURLOPT_PROXY, URL); res = curl_easy_perform(handle); if(res) { fprintf(stderr, "%s:%d curl_easy_perform() failed with code %d (%s)\n", __FILE__, __LINE__, res, curl_easy_strerror(res)); goto test_cleanup; } test_cleanup: curl_url_cleanup(urlp); curl_easy_cleanup(handle); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1555.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* * Verify that some API functions are locked from being called inside callback */ #include "test.h" #include "memdebug.h" static CURL *curl; static int progressCallback(void *arg, double dltotal, double dlnow, double ultotal, double ulnow) { CURLcode res = 0; char buffer[256]; size_t n = 0; (void)arg; (void)dltotal; (void)dlnow; (void)ultotal; (void)ulnow; res = curl_easy_recv(curl, buffer, 256, &n); printf("curl_easy_recv returned %d\n", res); res = curl_easy_send(curl, buffer, n, &n); printf("curl_easy_send returned %d\n", res); return 1; } int test(char *URL) { int res = 0; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_URL, URL); easy_setopt(curl, CURLOPT_TIMEOUT, (long)7); easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1); easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressCallback); easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL); easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0); res = curl_easy_perform(curl); test_cleanup: /* undocumented cleanup sequence - type UA */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib579.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static const char * const post[]={ "one", "two", "three", "and a final longer crap: four", NULL }; struct WriteThis { int counter; }; static int progress_callback(void *clientp, double dltotal, double dlnow, double ultotal, double ulnow) { static int prev_ultotal = -1; static int prev_ulnow = -1; (void)clientp; /* UNUSED */ (void)dltotal; /* UNUSED */ (void)dlnow; /* UNUSED */ /* to avoid depending on timing, which will cause this progress function to get called a different number of times depending on circumstances, we only log these lines if the numbers are different from the previous invoke */ if((prev_ultotal != (int)ultotal) || (prev_ulnow != (int)ulnow)) { FILE *moo = fopen(libtest_arg2, "ab"); if(moo) { fprintf(moo, "Progress callback called with UL %d out of %d\n", (int)ulnow, (int)ultotal); fclose(moo); } prev_ulnow = (int) ulnow; prev_ultotal = (int) ultotal; } return 0; } static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct WriteThis *pooh = (struct WriteThis *)userp; const char *data; if(size*nmemb < 1) return 0; data = post[pooh->counter]; if(data) { size_t len = strlen(data); memcpy(ptr, data, len); pooh->counter++; /* advance pointer */ return len; } return 0; /* no more data left to deliver */ } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; struct curl_slist *slist = NULL; struct WriteThis pooh; pooh.counter = 0; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } slist = curl_slist_append(slist, "Transfer-Encoding: chunked"); if(!slist) { fprintf(stderr, "curl_slist_append() failed\n"); curl_easy_cleanup(curl); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* Now specify we want to POST data */ test_setopt(curl, CURLOPT_POST, 1L); #ifdef CURL_DOES_CONVERSIONS /* Convert the POST data to ASCII */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); #endif /* we want to use our own read function */ test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* pointer to pass to our read function */ test_setopt(curl, CURLOPT_READDATA, &pooh); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* enforce chunked transfer by setting the header */ test_setopt(curl, CURLOPT_HTTPHEADER, slist); test_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST); test_setopt(curl, CURLOPT_USERPWD, "foo:bar"); /* we want to use our own progress function */ test_setopt(curl, CURLOPT_NOPROGRESS, 0L); test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* clean up the headers list */ if(slist) curl_slist_free_all(slist); /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1517.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char data[]="this is what we post to the silly web server\n"; struct WriteThis { char *readptr; size_t sizeleft; }; static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp) { struct WriteThis *pooh = (struct WriteThis *)userp; size_t tocopy = size * nmemb; /* Wait one second before return POST data * * so libcurl will wait before sending request body */ wait_ms(1000); if(tocopy < 1 || !pooh->sizeleft) return 0; if(pooh->sizeleft < tocopy) tocopy = pooh->sizeleft; memcpy(ptr, pooh->readptr, tocopy);/* copy requested data */ pooh->readptr += tocopy; /* advance pointer */ pooh->sizeleft -= tocopy; /* less data left */ return tocopy; } int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; struct WriteThis pooh; pooh.readptr = data; pooh.sizeleft = strlen(data); if(curl_global_init(CURL_GLOBAL_ALL)) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); /* Now specify we want to POST data */ test_setopt(curl, CURLOPT_POST, 1L); #ifdef CURL_DOES_CONVERSIONS /* Convert the POST data to ASCII */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); #endif /* Set the expected POST size */ test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)pooh.sizeleft); /* we want to use our own read function */ test_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* pointer to pass to our read function */ test_setopt(curl, CURLOPT_READDATA, &pooh); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* include headers in the output */ test_setopt(curl, CURLOPT_HEADER, 1L); /* detect HTTP error codes >= 400 */ /* test_setopt(curl, CURLOPT_FAILONERROR, 1L); */ /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib652.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char buffer[17000]; /* more than 16K */ int test(char *URL) { CURL *curl = NULL; CURLcode res = CURLE_OK; curl_mime *mime = NULL; curl_mimepart *part; struct curl_slist *recipients = NULL; /* create a buffer with AAAA...BBBBB...CCCC...etc */ int i; int size = (int)sizeof(buffer) / 10; for(i = 0; i < size ; i++) memset(&buffer[i * 10], 65 + (i % 26), 10); if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); res = (CURLcode) TEST_ERR_MAJOR_BAD; goto test_cleanup; } /* Build mime structure. */ mime = curl_mime_init(curl); if(!mime) { fprintf(stderr, "curl_mime_init() failed\n"); res = (CURLcode) TEST_ERR_MAJOR_BAD; goto test_cleanup; } part = curl_mime_addpart(mime); if(!part) { fprintf(stderr, "curl_mime_addpart() failed\n"); res = (CURLcode) TEST_ERR_MAJOR_BAD; goto test_cleanup; } res = curl_mime_filename(part, "myfile.jpg"); if(res) { fprintf(stderr, "curl_mime_filename() failed\n"); goto test_cleanup; } res = curl_mime_type(part, "image/jpeg"); if(res) { fprintf(stderr, "curl_mime_type() failed\n"); goto test_cleanup; } res = curl_mime_data(part, buffer, sizeof(buffer)); if(res) { fprintf(stderr, "curl_mime_data() failed\n"); goto test_cleanup; } res = curl_mime_encoder(part, "base64"); if(res) { fprintf(stderr, "curl_mime_encoder() failed\n"); goto test_cleanup; } /* Prepare recipients. */ recipients = curl_slist_append(NULL, "someone@example.com"); if(!recipients) { fprintf(stderr, "curl_slist_append() failed\n"); goto test_cleanup; } /* First set the URL that is about to receive our mime mail. */ test_setopt(curl, CURLOPT_URL, URL); /* Set sender. */ test_setopt(curl, CURLOPT_MAIL_FROM, "somebody@example.com"); /* Set recipients. */ test_setopt(curl, CURLOPT_MAIL_RCPT, recipients); /* send a multi-part mail */ test_setopt(curl, CURLOPT_MIMEPOST, mime); /* Shorten upload buffer. */ test_setopt(curl, CURLOPT_UPLOAD_BUFFERSIZE, 16411L); /* get verbose debug output please */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); /* now cleanup the mime structure */ curl_mime_free(mime); /* cleanup the recipients. */ curl_slist_free_all(recipients); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1558.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" int test(char *URL) { CURLcode res = 0; CURL *curl = NULL; long protocol = 0; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_URL, URL); res = curl_easy_perform(curl); if(res) { fprintf(stderr, "curl_easy_perform() returned %d (%s)\n", res, curl_easy_strerror(res)); goto test_cleanup; } res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol); if(res) { fprintf(stderr, "curl_easy_getinfo() returned %d (%s)\n", res, curl_easy_strerror(res)); goto test_cleanup; } printf("Protocol: %lx\n", protocol); curl_easy_cleanup(curl); curl_global_cleanup(); return 0; test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return res; /* return the final return code */ }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib537.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #endif #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include <limits.h> #include "warnless.h" #include "memdebug.h" #if !defined(HAVE_POLL_FINE) && \ !defined(USE_WINSOCK) && \ !defined(TPF) && \ !defined(FD_SETSIZE) #error "this test requires FD_SETSIZE" #endif #define SAFETY_MARGIN (11) #if defined(WIN32) || defined(_WIN32) || defined(MSDOS) #define DEV_NULL "NUL" #else #define DEV_NULL "/dev/null" #endif #if defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) static int *fd = NULL; static struct rlimit num_open; static char msgbuff[256]; static void store_errmsg(const char *msg, int err) { if(!err) msnprintf(msgbuff, sizeof(msgbuff), "%s", msg); else msnprintf(msgbuff, sizeof(msgbuff), "%s, errno %d, %s", msg, err, strerror(err)); } static void close_file_descriptors(void) { for(num_open.rlim_cur = 0; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) if(fd[num_open.rlim_cur] > 0) close(fd[num_open.rlim_cur]); free(fd); fd = NULL; } static int fopen_works(void) { FILE *fpa[3]; int i; int ret = 1; for(i = 0; i < 3; i++) { fpa[i] = NULL; } for(i = 0; i < 3; i++) { fpa[i] = fopen(DEV_NULL, FOPEN_READTEXT); if(!fpa[i]) { store_errmsg("fopen failed", errno); fprintf(stderr, "%s\n", msgbuff); ret = 0; break; } } for(i = 0; i < 3; i++) { if(fpa[i] != NULL) fclose(fpa[i]); } return ret; } static int rlimit(int keep_open) { int *tmpfd; rlim_t nitems, i; int *memchunk = NULL; char *fmt; struct rlimit rl; char strbuff[256]; char strbuff1[81]; char fmt_u[] = "%u"; char fmt_lu[] = "%lu"; #ifdef HAVE_LONGLONG char fmt_llu[] = "%llu"; if(sizeof(rl.rlim_max) > sizeof(long)) fmt = fmt_llu; else #endif fmt = (sizeof(rl.rlim_max) < sizeof(long))?fmt_u:fmt_lu; /* get initial open file limits */ if(getrlimit(RLIMIT_NOFILE, &rl) != 0) { store_errmsg("getrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -1; } /* show initial open file limits */ #ifdef RLIM_INFINITY if(rl.rlim_cur == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur); fprintf(stderr, "initial soft limit: %s\n", strbuff); #ifdef RLIM_INFINITY if(rl.rlim_max == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max); fprintf(stderr, "initial hard limit: %s\n", strbuff); /* * if soft limit and hard limit are different we ask the * system to raise soft limit all the way up to the hard * limit. Due to some other system limit the soft limit * might not be raised up to the hard limit. So from this * point the resulting soft limit is our limit. Trying to * open more than soft limit file descriptors will fail. */ if(rl.rlim_cur != rl.rlim_max) { #ifdef OPEN_MAX if((rl.rlim_cur > 0) && (rl.rlim_cur < OPEN_MAX)) { fprintf(stderr, "raising soft limit up to OPEN_MAX\n"); rl.rlim_cur = OPEN_MAX; if(setrlimit(RLIMIT_NOFILE, &rl) != 0) { /* on failure don't abort just issue a warning */ store_errmsg("setrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); msgbuff[0] = '\0'; } } #endif fprintf(stderr, "raising soft limit up to hard limit\n"); rl.rlim_cur = rl.rlim_max; if(setrlimit(RLIMIT_NOFILE, &rl) != 0) { /* on failure don't abort just issue a warning */ store_errmsg("setrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); msgbuff[0] = '\0'; } /* get current open file limits */ if(getrlimit(RLIMIT_NOFILE, &rl) != 0) { store_errmsg("getrlimit() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -3; } /* show current open file limits */ #ifdef RLIM_INFINITY if(rl.rlim_cur == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur); fprintf(stderr, "current soft limit: %s\n", strbuff); #ifdef RLIM_INFINITY if(rl.rlim_max == RLIM_INFINITY) strcpy(strbuff, "INFINITY"); else #endif msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max); fprintf(stderr, "current hard limit: %s\n", strbuff); } /* (rl.rlim_cur != rl.rlim_max) */ /* * test 537 is all about testing libcurl functionality * when the system has nearly exhausted the number of * available file descriptors. Test 537 will try to run * with a very small number of file descriptors available. * This implies that any file descriptor which is open * when the test runs will have a number in the high range * of whatever the system supports. */ /* * reserve a chunk of memory before opening file descriptors to * avoid a low memory condition once the file descriptors are * open. System conditions that could make the test fail should * be addressed in the precheck phase. This chunk of memory shall * be always free()ed before exiting the rlimit() function so * that it becomes available to the test. */ for(nitems = i = 1; nitems <= i; i *= 2) nitems = i; if(nitems > 0x7fff) nitems = 0x40000; do { num_open.rlim_max = sizeof(*memchunk) * nitems; msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "allocating memchunk %s byte array\n", strbuff); memchunk = malloc(sizeof(*memchunk) * (size_t)nitems); if(!memchunk) { fprintf(stderr, "memchunk, malloc() failed\n"); nitems /= 2; } } while(nitems && !memchunk); if(!memchunk) { store_errmsg("memchunk, malloc() failed", errno); fprintf(stderr, "%s\n", msgbuff); return -4; } /* initialize it to fight lazy allocation */ fprintf(stderr, "initializing memchunk array\n"); for(i = 0; i < nitems; i++) memchunk[i] = -1; /* set the number of file descriptors we will try to open */ #ifdef RLIM_INFINITY if((rl.rlim_cur > 0) && (rl.rlim_cur != RLIM_INFINITY)) { #else if(rl.rlim_cur > 0) { #endif /* soft limit minus SAFETY_MARGIN */ num_open.rlim_max = rl.rlim_cur - SAFETY_MARGIN; } else { /* a huge number of file descriptors */ for(nitems = i = 1; nitems <= i; i *= 2) nitems = i; if(nitems > 0x7fff) nitems = 0x40000; num_open.rlim_max = nitems; } /* verify that we won't overflow size_t in malloc() */ if((size_t)(num_open.rlim_max) > ((size_t)-1) / sizeof(*fd)) { msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_max); msnprintf(strbuff, sizeof(strbuff), "unable to allocate an array for %s " "file descriptors, would overflow size_t", strbuff1); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); free(memchunk); return -5; } /* allocate array for file descriptors */ do { msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "allocating array for %s file descriptors\n", strbuff); fd = malloc(sizeof(*fd) * (size_t)(num_open.rlim_max)); if(!fd) { fprintf(stderr, "fd, malloc() failed\n"); num_open.rlim_max /= 2; } } while(num_open.rlim_max && !fd); if(!fd) { store_errmsg("fd, malloc() failed", errno); fprintf(stderr, "%s\n", msgbuff); free(memchunk); return -6; } /* initialize it to fight lazy allocation */ fprintf(stderr, "initializing fd array\n"); for(num_open.rlim_cur = 0; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) fd[num_open.rlim_cur] = -1; msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "trying to open %s file descriptors\n", strbuff); /* open a dummy descriptor */ fd[0] = open(DEV_NULL, O_RDONLY); if(fd[0] < 0) { msnprintf(strbuff, sizeof(strbuff), "opening of %s failed", DEV_NULL); store_errmsg(strbuff, errno); fprintf(stderr, "%s\n", msgbuff); free(fd); fd = NULL; free(memchunk); return -7; } /* create a bunch of file descriptors */ for(num_open.rlim_cur = 1; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) { fd[num_open.rlim_cur] = dup(fd[0]); if(fd[num_open.rlim_cur] < 0) { fd[num_open.rlim_cur] = -1; msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "dup() attempt %s failed", strbuff1); fprintf(stderr, "%s\n", strbuff); msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "fds system limit seems close to %s", strbuff1); fprintf(stderr, "%s\n", strbuff); num_open.rlim_max = num_open.rlim_cur - SAFETY_MARGIN; num_open.rlim_cur -= num_open.rlim_max; msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_cur); msnprintf(strbuff, sizeof(strbuff), "closing %s file descriptors", strbuff1); fprintf(stderr, "%s\n", strbuff); for(num_open.rlim_cur = num_open.rlim_max; fd[num_open.rlim_cur] >= 0; num_open.rlim_cur++) { close(fd[num_open.rlim_cur]); fd[num_open.rlim_cur] = -1; } msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "shrinking array for %s file descriptors\n", strbuff); /* we don't care if we can't shrink it */ tmpfd = realloc(fd, sizeof(*fd) * (size_t)(num_open.rlim_max)); if(tmpfd) { fd = tmpfd; tmpfd = NULL; } break; } } msnprintf(strbuff, sizeof(strbuff), fmt, num_open.rlim_max); fprintf(stderr, "%s file descriptors open\n", strbuff); #if !defined(HAVE_POLL_FINE) && \ !defined(USE_WINSOCK) && \ !defined(TPF) /* * when using select() instead of poll() we cannot test * libcurl functionality with a socket number equal or * greater than FD_SETSIZE. In any case, macro VERIFY_SOCK * in lib/select.c enforces this check and protects libcurl * from a possible crash. The effect of this protection * is that test 537 will always fail, since the actual * call to select() never takes place. We skip test 537 * with an indication that select limit would be exceeded. */ num_open.rlim_cur = FD_SETSIZE - SAFETY_MARGIN; if(num_open.rlim_max > num_open.rlim_cur) { msnprintf(strbuff, sizeof(strbuff), "select limit is FD_SETSIZE %d", FD_SETSIZE); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); close_file_descriptors(); free(memchunk); return -8; } num_open.rlim_cur = FD_SETSIZE - SAFETY_MARGIN; for(rl.rlim_cur = 0; rl.rlim_cur < num_open.rlim_max; rl.rlim_cur++) { if((fd[rl.rlim_cur] > 0) && ((unsigned int)fd[rl.rlim_cur] > num_open.rlim_cur)) { msnprintf(strbuff, sizeof(strbuff), "select limit is FD_SETSIZE %d", FD_SETSIZE); store_errmsg(strbuff, 0); fprintf(stderr, "%s\n", msgbuff); close_file_descriptors(); free(memchunk); return -9; } } #endif /* using a FD_SETSIZE bound select() */ /* * Old or 'backwards compatible' implementations of stdio do not allow * handling of streams with an underlying file descriptor number greater * than 255, even when allowing high numbered file descriptors for sockets. * At this point we have a big number of file descriptors which have been * opened using dup(), so lets test the stdio implementation and discover * if it is capable of fopen()ing some additional files. */ if(!fopen_works()) { msnprintf(strbuff1, sizeof(strbuff1), fmt, num_open.rlim_max); msnprintf(strbuff, sizeof(strbuff), "fopen fails with %s fds open", strbuff1); fprintf(stderr, "%s\n", msgbuff); msnprintf(strbuff, sizeof(strbuff), "fopen fails with lots of fds open"); store_errmsg(strbuff, 0); close_file_descriptors(); free(memchunk); return -10; } /* free the chunk of memory we were reserving so that it becomes becomes available to the test */ free(memchunk); /* close file descriptors unless instructed to keep them */ if(!keep_open) { close_file_descriptors(); } return 0; } int test(char *URL) { CURLcode res; CURL *curl; if(!strcmp(URL, "check")) { /* used by the test script to ask if we can run this test or not */ if(rlimit(FALSE)) { fprintf(stdout, "rlimit problem: %s\n", msgbuff); return 1; } return 0; /* sure, run this! */ } if(rlimit(TRUE)) { /* failure */ return TEST_ERR_MAJOR_BAD; } /* run the test with the bunch of open file descriptors and close them all once the test is over */ if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); close_file_descriptors(); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); close_file_descriptors(); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HEADER, 1L); res = curl_easy_perform(curl); test_cleanup: close_file_descriptors(); curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; } #else /* defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) */ int test(char *URL) { (void)URL; printf("system lacks necessary system function(s)"); return 1; /* skip test */ } #endif /* defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT) */
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1906.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2019 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" int test(char *URL) { char *url_after; CURLU *curlu = curl_url(); CURL *curl = curl_easy_init(); CURLcode curl_code; char error_buffer[CURL_ERROR_SIZE] = ""; curl_url_set(curlu, CURLUPART_URL, URL, CURLU_DEFAULT_SCHEME); curl_easy_setopt(curl, CURLOPT_CURLU, curlu); curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, error_buffer); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); /* set a port number that makes this reqeuest fail */ curl_easy_setopt(curl, CURLOPT_PORT, 1L); curl_code = curl_easy_perform(curl); if(!curl_code) fprintf(stderr, "failure expected, " "curl_easy_perform returned %ld: <%s>, <%s>\n", (long) curl_code, curl_easy_strerror(curl_code), error_buffer); /* print the used url */ curl_url_get(curlu, CURLUPART_URL, &url_after, 0); fprintf(stderr, "curlu now: <%s>\n", url_after); curl_free(url_after); /* now reset CURLOP_PORT to go back to originally set port number */ curl_easy_setopt(curl, CURLOPT_PORT, 0L); curl_code = curl_easy_perform(curl); if(curl_code) fprintf(stderr, "success expected, " "curl_easy_perform returned %ld: <%s>, <%s>\n", (long) curl_code, curl_easy_strerror(curl_code), error_buffer); /* print url */ curl_url_get(curlu, CURLUPART_URL, &url_after, 0); fprintf(stderr, "curlu now: <%s>\n", url_after); curl_free(url_after); curl_easy_cleanup(curl); curl_url_cleanup(curlu); curl_global_cleanup(); return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib567.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" /* * Test a simple OPTIONS request with a custom header */ int test(char *URL) { CURLcode res; CURL *curl; struct curl_slist *custom_headers = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* Dump data to stdout for protocol verification */ test_setopt(curl, CURLOPT_HEADERDATA, stdout); test_setopt(curl, CURLOPT_WRITEDATA, stdout); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_RTSP_STREAM_URI, URL); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS); test_setopt(curl, CURLOPT_USERAGENT, "test567"); custom_headers = curl_slist_append(custom_headers, "Test-Number: 567"); test_setopt(curl, CURLOPT_RTSPHEADER, custom_headers); res = curl_easy_perform(curl); test_cleanup: if(custom_headers) curl_slist_free_all(custom_headers); curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1567.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" #include <curl/multi.h> int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); if(curl) { CURLU *u = curl_url(); if(u) { curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); curl_url_set(u, CURLUPART_URL, URL, 0); curl_easy_setopt(curl, CURLOPT_CURLU, u); res = curl_easy_perform(curl); fprintf(stderr, "****************************** Do it again\n"); res = curl_easy_perform(curl); curl_url_cleanup(u); } curl_easy_cleanup(curl); } curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1918.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" int test(char *URL) { const struct curl_easyoption *o; int error = 0; (void)URL; curl_global_init(CURL_GLOBAL_ALL); for(o = curl_easy_option_next(NULL); o; o = curl_easy_option_next(o)) { const struct curl_easyoption *ename = curl_easy_option_by_name(o->name); const struct curl_easyoption *eid = curl_easy_option_by_id(o->id); if(ename->id != o->id) { printf("name lookup id %d doesn't match %d\n", ename->id, o->id); } else if(eid->id != o->id) { printf("ID lookup %d doesn't match %d\n", ename->id, o->id); } } curl_global_cleanup(); return error; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib553.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* This test case and code is based on the bug recipe Joe Malicki provided for * bug report #1871269, fixed on Jan 14 2008 before the 7.18.0 release. */ #include "test.h" #include "memdebug.h" #define POSTLEN 40960 static size_t myreadfunc(char *ptr, size_t size, size_t nmemb, void *stream) { static size_t total = POSTLEN; static char buf[1024]; (void)stream; memset(buf, 'A', sizeof(buf)); size *= nmemb; if(size > total) size = total; if(size > sizeof(buf)) size = sizeof(buf); memcpy(ptr, buf, size); total -= size; return size; } #define NUM_HEADERS 8 #define SIZE_HEADERS 5000 static char buf[SIZE_HEADERS + 100]; int test(char *URL) { CURL *curl; CURLcode res = CURLE_FAILED_INIT; int i; struct curl_slist *headerlist = NULL, *hl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } for(i = 0; i < NUM_HEADERS; i++) { int len = msnprintf(buf, sizeof(buf), "Header%d: ", i); memset(&buf[len], 'A', SIZE_HEADERS); buf[len + SIZE_HEADERS] = 0; /* null-terminate */ hl = curl_slist_append(headerlist, buf); if(!hl) goto test_cleanup; headerlist = hl; } hl = curl_slist_append(headerlist, "Expect: "); if(!hl) goto test_cleanup; headerlist = hl; test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_HTTPHEADER, headerlist); test_setopt(curl, CURLOPT_POST, 1L); #ifdef CURL_DOES_CONVERSIONS /* Convert the POST data to ASCII */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); #endif test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)POSTLEN); test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_HEADER, 1L); test_setopt(curl, CURLOPT_READFUNCTION, myreadfunc); res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_slist_free_all(headerlist); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib526.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* * This code sets up multiple easy handles that transfer a single file from * the same URL, in a serial manner after each other. Due to the connection * sharing within the multi handle all transfers are performed on the same * persistent connection. * * This source code is used for lib526, lib527 and lib532 with only #ifdefs * controlling the small differences. * * - lib526 closes all easy handles after * they all have transferred the file over the single connection * - lib527 closes each easy handle after each single transfer. * - lib532 uses only a single easy handle that is removed, reset and then * re-added for each transfer * * Test case 526, 527 and 532 use FTP, while test 528 uses the lib526 tool but * with HTTP. */ #include "test.h" #include <fcntl.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 #define NUM_HANDLES 4 int test(char *URL) { int res = 0; CURL *curl[NUM_HANDLES]; int running; CURLM *m = NULL; int current = 0; int i; for(i = 0; i < NUM_HANDLES; i++) curl[i] = NULL; start_test_timing(); global_init(CURL_GLOBAL_ALL); /* get NUM_HANDLES easy handles */ for(i = 0; i < NUM_HANDLES; i++) { easy_init(curl[i]); /* specify target */ easy_setopt(curl[i], CURLOPT_URL, URL); /* go verbose */ easy_setopt(curl[i], CURLOPT_VERBOSE, 1L); } multi_init(m); multi_add_handle(m, curl[current]); fprintf(stderr, "Start at URL 0\n"); for(;;) { struct timeval interval; fd_set rd, wr, exc; int maxfd = -99; interval.tv_sec = 1; interval.tv_usec = 0; multi_perform(m, &running); abort_on_test_timeout(); if(!running) { #ifdef LIB527 /* NOTE: this code does not remove the handle from the multi handle here, which would be the nice, sane and documented way of working. This however tests that the API survives this abuse gracefully. */ curl_easy_cleanup(curl[current]); curl[current] = NULL; #endif if(++current < NUM_HANDLES) { fprintf(stderr, "Advancing to URL %d\n", current); #ifdef LIB532 /* first remove the only handle we use */ curl_multi_remove_handle(m, curl[0]); /* make us re-use the same handle all the time, and try resetting the handle first too */ curl_easy_reset(curl[0]); easy_setopt(curl[0], CURLOPT_URL, URL); /* go verbose */ easy_setopt(curl[0], CURLOPT_VERBOSE, 1L); /* re-add it */ multi_add_handle(m, curl[0]); #else multi_add_handle(m, curl[current]); #endif } else { break; /* done */ } } FD_ZERO(&rd); FD_ZERO(&wr); FD_ZERO(&exc); multi_fdset(m, &rd, &wr, &exc, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &rd, &wr, &exc, &interval); abort_on_test_timeout(); } test_cleanup: #if defined(LIB526) /* test 526 and 528 */ /* proper cleanup sequence - type PB */ for(i = 0; i < NUM_HANDLES; i++) { curl_multi_remove_handle(m, curl[i]); curl_easy_cleanup(curl[i]); } curl_multi_cleanup(m); curl_global_cleanup(); #elif defined(LIB527) /* test 527 */ /* Upon non-failure test flow the easy's have already been cleanup'ed. In case there is a failure we arrive here with easy's that have not been cleanup'ed yet, in this case we have to cleanup them or otherwise these will be leaked, let's use undocumented cleanup sequence - type UB */ if(res) for(i = 0; i < NUM_HANDLES; i++) curl_easy_cleanup(curl[i]); curl_multi_cleanup(m); curl_global_cleanup(); #elif defined(LIB532) /* test 532 */ /* undocumented cleanup sequence - type UB */ for(i = 0; i < NUM_HANDLES; i++) curl_easy_cleanup(curl[i]); curl_multi_cleanup(m); curl_global_cleanup(); #endif return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1554.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static void my_lock(CURL *handle, curl_lock_data data, curl_lock_access laccess, void *useptr) { (void)handle; (void)data; (void)laccess; (void)useptr; printf("-> Mutex lock\n"); } static void my_unlock(CURL *handle, curl_lock_data data, void *useptr) { (void)handle; (void)data; (void)useptr; printf("<- Mutex unlock\n"); } /* test function */ int test(char *URL) { CURLcode res = CURLE_OK; CURLSH *share; int i; global_init(CURL_GLOBAL_ALL); share = curl_share_init(); if(!share) { fprintf(stderr, "curl_share_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT); curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); /* Loop the transfer and cleanup the handle properly every lap. This will still reuse connections since the pool is in the shared object! */ for(i = 0; i < 3; i++) { CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, URL); /* use the share object */ curl_easy_setopt(curl, CURLOPT_SHARE, share); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); /* Check for errors */ if(res != CURLE_OK) fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); /* always cleanup */ curl_easy_cleanup(curl); } } curl_share_cleanup(share); curl_global_cleanup(); return 0; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1556.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" struct headerinfo { size_t largest; }; static size_t header(void *ptr, size_t size, size_t nmemb, void *stream) { size_t headersize = size * nmemb; struct headerinfo *info = (struct headerinfo *)stream; (void)ptr; if(headersize > info->largest) /* remember the longest header */ info->largest = headersize; return nmemb * size; } int test(char *URL) { CURLcode code; CURL *curl = NULL; int res = 0; struct headerinfo info = {0}; global_init(CURL_GLOBAL_ALL); easy_init(curl); easy_setopt(curl, CURLOPT_HEADERFUNCTION, header); easy_setopt(curl, CURLOPT_HEADERDATA, &info); easy_setopt(curl, CURLOPT_VERBOSE, 1L); easy_setopt(curl, CURLOPT_URL, URL); code = curl_easy_perform(curl); if(CURLE_OK != code) { fprintf(stderr, "%s:%d curl_easy_perform() failed, " "with code %d (%s)\n", __FILE__, __LINE__, (int)code, curl_easy_strerror(code)); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } printf("Max: %ld\n", (long)info.largest); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib544.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" static char teststring[] = #ifdef CURL_DOES_CONVERSIONS /* ASCII representation with escape sequences for non-ASCII platforms */ { '\x54', '\x68', '\x69', '\x73', '\x00', '\x20', '\x69', '\x73', '\x20', '\x74', '\x65', '\x73', '\x74', '\x20', '\x62', '\x69', '\x6e', '\x61', '\x72', '\x79', '\x20', '\x64', '\x61', '\x74', '\x61', '\x20', '\x77', '\x69', '\x74', '\x68', '\x20', '\x61', '\x6e', '\x20', '\x65', '\x6d', '\x62', '\x65', '\x64', '\x64', '\x65', '\x64', '\x20', '\x4e', '\x55', '\x4c'}; #else { 'T', 'h', 'i', 's', '\0', ' ', 'i', 's', ' ', 't', 'e', 's', 't', ' ', 'b', 'i', 'n', 'a', 'r', 'y', ' ', 'd', 'a', 't', 'a', ' ', 'w', 'i', 't', 'h', ' ', 'a', 'n', ' ', 'e', 'm', 'b', 'e', 'd', 'd', 'e', 'd', ' ', 'N', 'U', 'L'}; #endif int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } /* First set the URL that is about to receive our POST. */ test_setopt(curl, CURLOPT_URL, URL); #ifdef LIB545 test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof(teststring)); #endif test_setopt(curl, CURLOPT_COPYPOSTFIELDS, teststring); test_setopt(curl, CURLOPT_VERBOSE, 1L); /* show verbose for debug */ test_setopt(curl, CURLOPT_HEADER, 1L); /* include header */ /* Update the original data to detect non-copy. */ strcpy(teststring, "FAIL"); #ifdef LIB545 { CURL *handle2; handle2 = curl_easy_duphandle(curl); curl_easy_cleanup(curl); curl = handle2; } #endif /* Now, this is a POST request with binary 0 embedded in POST data. */ res = curl_easy_perform(curl); test_cleanup: /* always cleanup */ curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib525.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #include <fcntl.h> #include "testutil.h" #include "warnless.h" #include "memdebug.h" #define TEST_HANG_TIMEOUT 60 * 1000 int test(char *URL) { int res = 0; CURL *curl = NULL; FILE *hd_src = NULL; int hd; struct_stat file_info; CURLM *m = NULL; int running; start_test_timing(); if(!libtest_arg2) { #ifdef LIB529 /* test 529 */ fprintf(stderr, "Usage: lib529 [url] [uploadfile]\n"); #else /* test 525 */ fprintf(stderr, "Usage: lib525 [url] [uploadfile]\n"); #endif return TEST_ERR_USAGE; } hd_src = fopen(libtest_arg2, "rb"); if(NULL == hd_src) { fprintf(stderr, "fopen failed with error: %d (%s)\n", errno, strerror(errno)); fprintf(stderr, "Error opening file: (%s)\n", libtest_arg2); return TEST_ERR_FOPEN; } /* get the file size of the local file */ hd = fstat(fileno(hd_src), &file_info); if(hd == -1) { /* can't open file, bail out */ fprintf(stderr, "fstat() failed with error: %d (%s)\n", errno, strerror(errno)); fprintf(stderr, "ERROR: cannot open file (%s)\n", libtest_arg2); fclose(hd_src); return TEST_ERR_FSTAT; } res_global_init(CURL_GLOBAL_ALL); if(res) { fclose(hd_src); return res; } easy_init(curl); /* enable uploading */ easy_setopt(curl, CURLOPT_UPLOAD, 1L); /* specify target */ easy_setopt(curl, CURLOPT_URL, URL); /* go verbose */ easy_setopt(curl, CURLOPT_VERBOSE, 1L); /* use active FTP */ easy_setopt(curl, CURLOPT_FTPPORT, "-"); /* now specify which file to upload */ easy_setopt(curl, CURLOPT_READDATA, hd_src); /* NOTE: if you want this code to work on Windows with libcurl as a DLL, you MUST also provide a read callback with CURLOPT_READFUNCTION. Failing to do so will give you a crash since a DLL may not use the variable's memory when passed in to it from an app like this. */ /* Set the size of the file to upload (optional). If you give a *_LARGE option you MUST make sure that the type of the passed-in argument is a curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must make sure that to pass in a type 'long' argument. */ easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, (curl_off_t)file_info.st_size); multi_init(m); multi_add_handle(m, curl); for(;;) { struct timeval interval; fd_set rd, wr, exc; int maxfd = -99; interval.tv_sec = 1; interval.tv_usec = 0; multi_perform(m, &running); abort_on_test_timeout(); if(!running) break; /* done */ FD_ZERO(&rd); FD_ZERO(&wr); FD_ZERO(&exc); multi_fdset(m, &rd, &wr, &exc, &maxfd); /* At this point, maxfd is guaranteed to be greater or equal than -1. */ select_test(maxfd + 1, &rd, &wr, &exc, &interval); abort_on_test_timeout(); } test_cleanup: #ifdef LIB529 /* test 529 */ /* proper cleanup sequence - type PA */ curl_multi_remove_handle(m, curl); curl_multi_cleanup(m); curl_easy_cleanup(curl); curl_global_cleanup(); #else /* test 525 */ /* proper cleanup sequence - type PB */ curl_multi_remove_handle(m, curl); curl_easy_cleanup(curl); curl_multi_cleanup(m); curl_global_cleanup(); #endif /* close the local file */ fclose(hd_src); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib568.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include "memdebug.h" /* build request url */ static char *suburl(const char *base, int i) { return curl_maprintf("%s%.4d", base, i); } /* * Test the Client->Server ANNOUNCE functionality (PUT style) */ int test(char *URL) { int res; CURL *curl; int sdp; FILE *sdpf = NULL; struct_stat file_info; char *stream_uri = NULL; int request = 1; struct curl_slist *custom_headers = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_HEADERDATA, stdout); test_setopt(curl, CURLOPT_WRITEDATA, stdout); test_setopt(curl, CURLOPT_URL, URL); stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; sdp = open("log/file568.txt", O_RDONLY); fstat(sdp, &file_info); close(sdp); sdpf = fopen("log/file568.txt", "rb"); if(!sdpf) { fprintf(stderr, "can't open log/file568.txt\n"); res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE); test_setopt(curl, CURLOPT_READDATA, sdpf); test_setopt(curl, CURLOPT_UPLOAD, 1L); test_setopt(curl, CURLOPT_INFILESIZE_LARGE, (curl_off_t) file_info.st_size); /* Do the ANNOUNCE */ res = curl_easy_perform(curl); if(res) goto test_cleanup; test_setopt(curl, CURLOPT_UPLOAD, 0L); fclose(sdpf); sdpf = NULL; /* Make sure we can do a normal request now */ stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE); res = curl_easy_perform(curl); if(res) goto test_cleanup; /* Now do a POST style one */ stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; custom_headers = curl_slist_append(custom_headers, "Content-Type: posty goodness"); if(!custom_headers) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSPHEADER, custom_headers); test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE); test_setopt(curl, CURLOPT_POSTFIELDS, "postyfield=postystuff&project=curl\n"); res = curl_easy_perform(curl); if(res) goto test_cleanup; test_setopt(curl, CURLOPT_POSTFIELDS, NULL); test_setopt(curl, CURLOPT_RTSPHEADER, NULL); curl_slist_free_all(custom_headers); custom_headers = NULL; /* Make sure we can do a normal request now */ stream_uri = suburl(URL, request++); if(!stream_uri) { res = TEST_ERR_MAJOR_BAD; goto test_cleanup; } test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); free(stream_uri); stream_uri = NULL; test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS); res = curl_easy_perform(curl); test_cleanup: if(sdpf) fclose(sdpf); free(stream_uri); if(custom_headers) curl_slist_free_all(custom_headers); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1541.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 2019 - 2020, 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. * ***************************************************************************/ /* * KNOW_BUGS "A shared connection cache is not thread-safe" * * This source code was used to verify shared connection cache but since this * is a known issue the test is no longer built or run. This code is here to * allow for testing once someone gets to work on fixing this. */ #include "test.h" #include "testutil.h" #include "warnless.h" #include "memdebug.h" #ifdef HAVE_PTHREAD_H #include <pthread.h> #include <time.h> /* number of threads to fire up in parallel */ #define NUM_THREADS 67 /* for how many seconds each thread will loop */ #define RUN_FOR_SECONDS 7 static pthread_mutex_t connlock; static size_t write_db(void *ptr, size_t size, size_t nmemb, void *data) { /* not interested in the downloaded bytes, return the size */ (void)ptr; /* unused */ (void)data; /* unused */ return (size_t)(size * nmemb); } static void lock_cb(CURL *handle, curl_lock_data data, curl_lock_access access, void *userptr) { (void)access; /* unused */ (void)userptr; /* unused */ (void)handle; /* unused */ (void)data; /* unused */ pthread_mutex_lock(&connlock); } static void unlock_cb(CURL *handle, curl_lock_data data, void *userptr) { (void)userptr; /* unused */ (void)handle; /* unused */ (void)data; /* unused */ pthread_mutex_unlock(&connlock); } static void init_locks(void) { pthread_mutex_init(&connlock, NULL); } static void kill_locks(void) { pthread_mutex_destroy(&connlock); } struct initurl { const char *url; CURLSH *share; int threadno; }; static void *run_thread(void *ptr) { struct initurl *u = (struct initurl *)ptr; int i; time_t end = time(NULL) + RUN_FOR_SECONDS; for(i = 0; time(NULL) < end; i++) { CURL *curl = curl_easy_init(); curl_easy_setopt(curl, CURLOPT_URL, u->url); curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L); curl_easy_setopt(curl, CURLOPT_SHARE, u->share); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_db); curl_easy_perform(curl); /* ignores error */ curl_easy_cleanup(curl); fprintf(stderr, "Thread %d transfer %d\n", u->threadno, i); } return NULL; } int test(char *URL) { pthread_t tid[NUM_THREADS]; int i; CURLSH *share; struct initurl url[NUM_THREADS]; /* Must initialize libcurl before any threads are started */ curl_global_init(CURL_GLOBAL_ALL); share = curl_share_init(); curl_share_setopt(share, CURLSHOPT_LOCKFUNC, lock_cb); curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, unlock_cb); curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT); init_locks(); for(i = 0; i< NUM_THREADS; i++) { int error; url[i].url = URL; url[i].share = share; url[i].threadno = i; error = pthread_create(&tid[i], NULL, run_thread, &url[i]); if(0 != error) fprintf(stderr, "Couldn't run thread number %d, errno %d\n", i, error); else fprintf(stderr, "Thread %d, gets %s\n", i, URL); } /* now wait for all threads to terminate */ for(i = 0; i< NUM_THREADS; i++) { pthread_join(tid[i], NULL); fprintf(stderr, "Thread %d terminated\n", i); } kill_locks(); curl_share_cleanup(share); curl_global_cleanup(); return 0; } #else /* without pthread, this test doesn't work */ int test(char *URL) { (void)URL; return 0; } #endif
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib505.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ #include "test.h" #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif #include "memdebug.h" /* * This example shows an FTP upload, with a rename of the file just after * a successful upload. * * Example based on source code provided by Erick Nuwendam. Thanks! */ int test(char *URL) { CURL *curl; CURLcode res = CURLE_OK; FILE *hd_src; int hd; struct_stat file_info; struct curl_slist *hl; struct curl_slist *headerlist = NULL; const char *buf_1 = "RNFR 505"; const char *buf_2 = "RNTO 505-forreal"; if(!libtest_arg2) { fprintf(stderr, "Usage: <url> <file-to-upload>\n"); return TEST_ERR_USAGE; } hd_src = fopen(libtest_arg2, "rb"); if(NULL == hd_src) { fprintf(stderr, "fopen failed with error: %d %s\n", errno, strerror(errno)); fprintf(stderr, "Error opening file: %s\n", libtest_arg2); return TEST_ERR_MAJOR_BAD; /* if this happens things are major weird */ } /* get the file size of the local file */ hd = fstat(fileno(hd_src), &file_info); if(hd == -1) { /* can't open file, bail out */ fprintf(stderr, "fstat() failed with error: %d %s\n", errno, strerror(errno)); fprintf(stderr, "ERROR: cannot open file %s\n", libtest_arg2); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } if(!file_info.st_size) { fprintf(stderr, "ERROR: file %s has zero size!\n", libtest_arg2); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } /* get a curl handle */ curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } /* build a list of commands to pass to libcurl */ hl = curl_slist_append(headerlist, buf_1); if(!hl) { fprintf(stderr, "curl_slist_append() failed\n"); curl_easy_cleanup(curl); curl_global_cleanup(); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } headerlist = curl_slist_append(hl, buf_2); if(!headerlist) { fprintf(stderr, "curl_slist_append() failed\n"); curl_slist_free_all(hl); curl_easy_cleanup(curl); curl_global_cleanup(); fclose(hd_src); return TEST_ERR_MAJOR_BAD; } headerlist = hl; /* enable uploading */ test_setopt(curl, CURLOPT_UPLOAD, 1L); /* enable verbose */ test_setopt(curl, CURLOPT_VERBOSE, 1L); /* specify target */ test_setopt(curl, CURLOPT_URL, URL); /* pass in that last of FTP commands to run after the transfer */ test_setopt(curl, CURLOPT_POSTQUOTE, headerlist); /* now specify which file to upload */ test_setopt(curl, CURLOPT_READDATA, hd_src); /* and give the size of the upload (optional) */ test_setopt(curl, CURLOPT_INFILESIZE_LARGE, (curl_off_t)file_info.st_size); /* Now run off and do what you've been told! */ res = curl_easy_perform(curl); test_cleanup: /* clean up the FTP commands list */ curl_slist_free_all(headerlist); /* close the local file */ fclose(hd_src); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib549.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2020, 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. * ***************************************************************************/ /* argv1 = URL * argv2 = proxy * argv3 = non-zero means ASCII transfer */ #include "test.h" #include "memdebug.h" int test(char *URL) { CURLcode res; CURL *curl; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_PROXY, libtest_arg2); test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_PROXY_TRANSFER_MODE, 1L); test_setopt(curl, CURLOPT_VERBOSE, 1L); if(libtest_arg3) { /* enable ascii/text mode */ test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); } res = curl_easy_perform(curl); test_cleanup: curl_easy_cleanup(curl); curl_global_cleanup(); return (int)res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/lib1934.c
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2021, 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.haxx.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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" int test(char *URL) { CURL *curl; CURLcode res = TEST_ERR_MAJOR_BAD; struct curl_slist *list = NULL; if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); return TEST_ERR_MAJOR_BAD; } curl = curl_easy_init(); if(!curl) { fprintf(stderr, "curl_easy_init() failed\n"); curl_global_cleanup(); return TEST_ERR_MAJOR_BAD; } test_setopt(curl, CURLOPT_VERBOSE, 1L); test_setopt(curl, CURLOPT_AWS_SIGV4, "xxx:yyy"); test_setopt(curl, CURLOPT_USERPWD, "xxx:yyy"); test_setopt(curl, CURLOPT_HEADER, 0L); test_setopt(curl, CURLOPT_URL, URL); list = curl_slist_append(list, "Content-Type: application/json"); test_setopt(curl, CURLOPT_HTTPHEADER, list); res = curl_easy_perform(curl); test_cleanup: curl_slist_free_all(list); curl_easy_cleanup(curl); curl_global_cleanup(); return res; }
0
repos/gpt4all.zig/src/zig-libcurl/curl/tests
repos/gpt4all.zig/src/zig-libcurl/curl/tests/libtest/mk-lib1521.pl
#!/usr/bin/env perl #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 2017 - 2021, 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. # ########################################################################### # Usage: # perl mk-lib1521.pl < ../../include/curl/curl.h > lib1521.c # minimum and maximum long signed values my $minlong = "LONG_MIN"; my $maxlong = "LONG_MAX"; # maximum long unsigned value my $maxulong = "ULONG_MAX"; print <<HEADER /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \\| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \\___|\\___/|_| \\_\\_____| * * Copyright (C) 2017, 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. * ***************************************************************************/ #include "test.h" #include "memdebug.h" #include <limits.h> /* This source code is generated by mk-lib1521.pl ! */ struct data { char *blaha; }; #define LO $minlong #define HI $maxlong #define OFF_LO (curl_off_t) LO #define OFF_HI (curl_off_t) $maxulong #define OFF_NO (curl_off_t) 0 /* Unexpected error. CURLE_NOT_BUILT_IN - means disabled at build CURLE_UNKNOWN_OPTION - means no such option (anymore?) CURLE_SSL_ENGINE_NOTFOUND - set unknown ssl engine CURLE_UNSUPPORTED_PROTOCOL - set bad HTTP version CURLE_BAD_FUNCTION_ARGUMENT - unsupported value */ #define UNEX(x) ((x) && \\ ((x) != CURLE_NOT_BUILT_IN) && \\ ((x) != CURLE_UNKNOWN_OPTION) && \\ ((x) != CURLE_SSL_ENGINE_NOTFOUND) && \\ ((x) != CURLE_UNSUPPORTED_PROTOCOL) && \\ ((x) != CURLE_BAD_FUNCTION_ARGUMENT) ) static size_t writecb(char *buffer, size_t size, size_t nitems, void *outstream) { (void)buffer; (void)size; (void)nitems; (void)outstream; return 0; } static size_t readcb(char *buffer, size_t size, size_t nitems, void *instream) { (void)buffer; (void)size; (void)nitems; (void)instream; return 0; } static int err(const char *name, CURLcode val, int lineno) { printf("CURLOPT_%s returned %d, \\"%s\\" on line %d\\n", name, val, curl_easy_strerror(val), lineno); return (int)val; } static int geterr(const char *name, CURLcode val, int lineno) { printf("CURLINFO_%s returned %d, \\"%s\\" on line %d\\n", name, val, curl_easy_strerror(val), lineno); return (int)val; } static curl_progress_callback progresscb; static curl_write_callback headercb; static curl_debug_callback debugcb; static curl_trailer_callback trailercb; static curl_ssl_ctx_callback ssl_ctx_cb; static curl_ioctl_callback ioctlcb; static curl_sockopt_callback sockoptcb; static curl_opensocket_callback opensocketcb; static curl_seek_callback seekcb; static curl_sshkeycallback ssh_keycb; static curl_chunk_bgn_callback chunk_bgn_cb; static curl_chunk_end_callback chunk_end_cb; static curl_fnmatch_callback fnmatch_cb; static curl_closesocket_callback closesocketcb; static curl_xferinfo_callback xferinfocb; static curl_hstsread_callback hstsreadcb; static curl_hstswrite_callback hstswritecb; static curl_resolver_start_callback resolver_start_cb; static curl_prereq_callback prereqcb; int test(char *URL) { CURL *curl = NULL; CURL *dep = NULL; CURLSH *share = NULL; char errorbuffer[CURL_ERROR_SIZE]; void *conv_from_network_cb = NULL; void *conv_to_network_cb = NULL; void *conv_from_utf8_cb = NULL; void *interleavecb = NULL; char *stringpointerextra = (char *)"moooo"; struct curl_slist *slist = NULL; struct curl_httppost *httppost = NULL; curl_mime *mimepost = NULL; FILE *stream = stderr; struct data object; char *charp; long val; curl_off_t oval; double dval; curl_socket_t sockfd; struct curl_certinfo *certinfo; struct curl_tlssessioninfo *tlssession; struct curl_blob blob = { (void *)"silly", 5, 0}; CURLcode res = CURLE_OK; (void)URL; /* not used */ global_init(CURL_GLOBAL_ALL); easy_init(dep); easy_init(curl); share = curl_share_init(); if(!share) { res = CURLE_OUT_OF_MEMORY; goto test_cleanup; } HEADER ; while(<STDIN>) { if($_ =~ /^ CURLOPT\(([^ ]*), ([^ ]*), (\d*)\)/) { my ($name, $type, $val)=($1, $2, $3); my $w=" "; my $pref = "${w}res = curl_easy_setopt(curl, $name,"; my $i = ' ' x (length($w) + 23); my $check = " if(UNEX(res)) {\n err(\"$name\", res, __LINE__);\n goto test_cleanup;\n }\n"; if($type eq "CURLOPTTYPE_STRINGPOINT") { print "${pref} \"string\");\n$check"; print "${pref} NULL);\n$check"; } elsif(($type eq "CURLOPTTYPE_LONG") || ($type eq "CURLOPTTYPE_VALUES")) { print "${pref} 0L);\n$check"; print "${pref} 22L);\n$check"; print "${pref} LO);\n$check"; print "${pref} HI);\n$check"; } elsif(($type eq "CURLOPTTYPE_OBJECTPOINT") || ($type eq "CURLOPTTYPE_CBPOINT")) { if($name =~ /DEPENDS/) { print "${pref} dep);\n$check"; } elsif($name =~ "SHARE") { print "${pref} share);\n$check"; } elsif($name eq "CURLOPT_ERRORBUFFER") { print "${pref} errorbuffer);\n$check"; } elsif(($name eq "CURLOPT_POSTFIELDS") || ($name eq "CURLOPT_COPYPOSTFIELDS")) { # set size to zero to avoid it being "illegal" print " (void)curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, 0);\n"; print "${pref} stringpointerextra);\n$check"; } elsif($name eq "CURLOPT_HTTPPOST") { print "${pref} httppost);\n$check"; } elsif($name eq "CURLOPT_MIMEPOST") { print "${pref} mimepost);\n$check"; } elsif($name eq "CURLOPT_STDERR") { print "${pref} stream);\n$check"; } else { print "${pref} &object);\n$check"; } print "${pref} NULL);\n$check"; } elsif($type eq "CURLOPTTYPE_SLISTPOINT") { print "${pref} slist);\n$check"; } elsif($type eq "CURLOPTTYPE_FUNCTIONPOINT") { if($name =~ /([^ ]*)FUNCTION/) { my $l=lc($1); $l =~ s/^curlopt_//; print "${pref}\n$i${l}cb);\n$check"; } else { print "${pref} &func);\n$check"; } print "${pref} NULL);\n$check"; } elsif($type eq "CURLOPTTYPE_OFF_T") { # play conservative to work with 32bit curl_off_t print "${pref} OFF_NO);\n$check"; print "${pref} OFF_HI);\n$check"; print "${pref} OFF_LO);\n$check"; } elsif($type eq "CURLOPTTYPE_BLOB") { print "${pref} &blob);\n$check"; } else { print STDERR "\nUnknown type: $type\n"; exit 22; # exit to make this noticed! } } elsif($_ =~ /^ CURLINFO_NONE/) { $infomode = 1; } elsif($infomode && ($_ =~ /^ CURLINFO_([^ ]*) *= *CURLINFO_([^ ]*)/)) { my ($info, $type)=($1, $2); my $c = " res = curl_easy_getinfo(curl, CURLINFO_$info,"; my $check = " if(UNEX(res)) {\n geterr(\"$info\", res, __LINE__);\n goto test_cleanup;\n }\n"; if($type eq "STRING") { print "$c &charp);\n$check"; } elsif($type eq "LONG") { print "$c &val);\n$check"; } elsif($type eq "OFF_T") { print "$c &oval);\n$check"; } elsif($type eq "DOUBLE") { print "$c &dval);\n$check"; } elsif($type eq "SLIST") { print "$c &slist);\n$check"; print " if(slist)\n curl_slist_free_all(slist);\n"; } elsif($type eq "SOCKET") { print "$c &sockfd);\n$check"; } elsif($type eq "PTR") { if($info eq "CERTINFO") { print "$c &certinfo);\n$check"; } elsif(($info eq "TLS_SESSION") || ($info eq "TLS_SSL_PTR")) { print "$c &tlssession);\n$check"; } else { print STDERR "$info/$type is unsupported\n"; } } else { print STDERR "$type is unsupported\n"; } } } print <<FOOTER curl_easy_setopt(curl, (CURLoption)1, 0); res = CURLE_OK; test_cleanup: curl_easy_cleanup(curl); curl_easy_cleanup(dep); curl_share_cleanup(share); curl_global_cleanup(); return (int)res; } FOOTER ;