00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 #include "test.h" 00023 00024 #include "memdebug.h" 00025 00026 int test(char *URL) 00027 { 00028 CURL *curl; 00029 CURLcode res=CURLE_OK; 00030 00031 if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { 00032 fprintf(stderr, "curl_global_init() failed\n"); 00033 return TEST_ERR_MAJOR_BAD; 00034 } 00035 00036 curl = curl_easy_init(); 00037 if(!curl) { 00038 fprintf(stderr, "curl_easy_init() failed\n"); 00039 curl_global_cleanup(); 00040 return TEST_ERR_MAJOR_BAD; 00041 } 00042 00043 /* First set the URL that is about to receive our POST. */ 00044 test_setopt(curl, CURLOPT_URL, URL); 00045 00046 /* Based on a bug report by Niels van Tongeren on June 29, 2004: 00047 00048 A weird situation occurs when request 1 is a POST request and the request 00049 2 is a HEAD request. For the POST request we set the CURLOPT_POSTFIELDS, 00050 CURLOPT_POSTFIELDSIZE and CURLOPT_POST options. For the HEAD request we 00051 set the CURLOPT_NOBODY option to '1'. 00052 00053 */ 00054 00055 test_setopt(curl, CURLOPT_POSTFIELDS, "moo"); 00056 test_setopt(curl, CURLOPT_POSTFIELDSIZE, 3L); 00057 test_setopt(curl, CURLOPT_POST, 1L); 00058 00059 /* this is where transfer 1 would take place, but skip that and change 00060 options right away instead */ 00061 00062 test_setopt(curl, CURLOPT_NOBODY, 1L); 00063 00064 test_setopt(curl, CURLOPT_VERBOSE, 1L); /* show verbose for debug */ 00065 test_setopt(curl, CURLOPT_HEADER, 1L); /* include header */ 00066 00067 /* Now, we should be making a fine HEAD request */ 00068 00069 /* Perform the request 2, res will get the return code */ 00070 res = curl_easy_perform(curl); 00071 00072 test_cleanup: 00073 00074 /* always cleanup */ 00075 curl_easy_cleanup(curl); 00076 curl_global_cleanup(); 00077 00078 return (int)res; 00079 }