|
| 1 | +/*************************************************************************** |
| 2 | + * _ _ ____ _ |
| 3 | + * Project ___| | | | _ \| | |
| 4 | + * / __| | | | |_) | | |
| 5 | + * | (__| |_| | _ <| |___ |
| 6 | + * \___|\___/|_| \_\_____| |
| 7 | + * |
| 8 | + * Copyright (C) Daniel Stenberg, <[email protected]>, et al. |
| 9 | + * |
| 10 | + * This software is licensed as described in the file COPYING, which |
| 11 | + * you should have received as part of this distribution. The terms |
| 12 | + * are also available at https://curl.se/docs/copyright.html. |
| 13 | + * |
| 14 | + * You may opt to use, copy, modify, merge, publish, distribute and/or sell |
| 15 | + * copies of the Software, and permit persons to whom the Software is |
| 16 | + * furnished to do so, under the terms of the COPYING file. |
| 17 | + * |
| 18 | + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 19 | + * KIND, either express or implied. |
| 20 | + * |
| 21 | + * SPDX-License-Identifier: curl |
| 22 | + * |
| 23 | + ***************************************************************************/ |
| 24 | +#include "test.h" |
| 25 | + |
| 26 | +#include "memdebug.h" |
| 27 | + |
| 28 | + |
| 29 | +/* write callback that does nothing */ |
| 30 | +static size_t write_it(char *ptr, size_t size, size_t nmemb, void *userdata) |
| 31 | +{ |
| 32 | + (void) ptr; |
| 33 | + (void) userdata; |
| 34 | + return size * nmemb; |
| 35 | +} |
| 36 | + |
| 37 | +CURLcode test(char *URL) |
| 38 | +{ |
| 39 | + CURL *curl = NULL; |
| 40 | + curl_mime *mime1 = NULL; |
| 41 | + curl_mime *mime2 = NULL; |
| 42 | + curl_mimepart *part; |
| 43 | + CURLcode res = TEST_ERR_FAILURE; |
| 44 | + |
| 45 | + /* |
| 46 | + * Check proper rewind when reusing a mime structure. |
| 47 | + */ |
| 48 | + |
| 49 | + if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { |
| 50 | + fprintf(stderr, "curl_global_init() failed\n"); |
| 51 | + return TEST_ERR_MAJOR_BAD; |
| 52 | + } |
| 53 | + |
| 54 | + curl = curl_easy_init(); |
| 55 | + |
| 56 | + /* First set the URL that is about to receive our POST. */ |
| 57 | + test_setopt(curl, CURLOPT_URL, URL); |
| 58 | + |
| 59 | + /* get verbose debug output please */ |
| 60 | + test_setopt(curl, CURLOPT_VERBOSE, 1L); |
| 61 | + |
| 62 | + /* Do not write anything. */ |
| 63 | + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_it); |
| 64 | + |
| 65 | + /* Build the first mime structure. */ |
| 66 | + mime1 = curl_mime_init(curl); |
| 67 | + part = curl_mime_addpart(mime1); |
| 68 | + curl_mime_data(part, "<title>hello</title>", CURL_ZERO_TERMINATED); |
| 69 | + curl_mime_type(part, "text/html"); |
| 70 | + curl_mime_name(part, "data"); |
| 71 | + |
| 72 | + /* Use first mime structure as top level MIME POST. */ |
| 73 | + curl_easy_setopt(curl, CURLOPT_MIMEPOST, mime1); |
| 74 | + |
| 75 | + /* Perform the request, res gets the return code */ |
| 76 | + res = curl_easy_perform(curl); |
| 77 | + |
| 78 | + /* Check for errors */ |
| 79 | + if(res != CURLE_OK) |
| 80 | + fprintf(stderr, "curl_easy_perform() 1 failed: %s\n", |
| 81 | + curl_easy_strerror(res)); |
| 82 | + else { |
| 83 | + /* phase two, create a mime struct using the mime1 handle */ |
| 84 | + mime2 = curl_mime_init(curl); |
| 85 | + part = curl_mime_addpart(mime2); |
| 86 | + |
| 87 | + /* use the new mime setup */ |
| 88 | + curl_easy_setopt(curl, CURLOPT_MIMEPOST, mime2); |
| 89 | + |
| 90 | + /* Reuse previous mime structure as a child. */ |
| 91 | + res = curl_mime_subparts(part, mime1); |
| 92 | + |
| 93 | + if(res != CURLE_OK) |
| 94 | + fprintf(stderr, "curl_mime_subparts() failed: %sn", |
| 95 | + curl_easy_strerror(res)); |
| 96 | + else { |
| 97 | + mime1 = NULL; |
| 98 | + |
| 99 | + /* Perform the request, res gets the return code */ |
| 100 | + res = curl_easy_perform(curl); |
| 101 | + |
| 102 | + /* Check for errors */ |
| 103 | + if(res != CURLE_OK) |
| 104 | + fprintf(stderr, "curl_easy_perform() 2 failed: %s\n", |
| 105 | + curl_easy_strerror(res)); |
| 106 | + } |
| 107 | + } |
| 108 | + |
| 109 | +test_cleanup: |
| 110 | + curl_easy_cleanup(curl); |
| 111 | + curl_mime_free(mime1); |
| 112 | + curl_mime_free(mime2); |
| 113 | + curl_global_cleanup(); |
| 114 | + return res; |
| 115 | +} |
0 commit comments