lib667.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, 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. ***************************************************************************/
  22. #include "test.h"
  23. #include "memdebug.h"
  24. static char data[]=
  25. "dummy";
  26. struct WriteThis {
  27. char *readptr;
  28. curl_off_t sizeleft;
  29. };
  30. static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp)
  31. {
  32. struct WriteThis *pooh = (struct WriteThis *)userp;
  33. int eof = !*pooh->readptr;
  34. if(size*nmemb < 1)
  35. return 0;
  36. eof = pooh->sizeleft <= 0;
  37. if(!eof)
  38. pooh->sizeleft--;
  39. if(!eof) {
  40. *ptr = *pooh->readptr; /* copy one single byte */
  41. pooh->readptr++; /* advance pointer */
  42. return 1; /* we return 1 byte at a time! */
  43. }
  44. return 0; /* no more data left to deliver */
  45. }
  46. int test(char *URL)
  47. {
  48. CURL *easy = NULL;
  49. curl_mime *mime = NULL;
  50. curl_mimepart *part;
  51. CURLcode result;
  52. int res = TEST_ERR_FAILURE;
  53. struct WriteThis pooh;
  54. /*
  55. * Check proper handling of mime encoder feature when the part read callback
  56. * delivers data bytes one at a time. Use chunked encoding for accurate test.
  57. */
  58. if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
  59. fprintf(stderr, "curl_global_init() failed\n");
  60. return TEST_ERR_MAJOR_BAD;
  61. }
  62. easy = curl_easy_init();
  63. /* First set the URL that is about to receive our POST. */
  64. test_setopt(easy, CURLOPT_URL, URL);
  65. /* get verbose debug output please */
  66. test_setopt(easy, CURLOPT_VERBOSE, 1L);
  67. /* include headers in the output */
  68. test_setopt(easy, CURLOPT_HEADER, 1L);
  69. /* Prepare the callback structure. */
  70. pooh.readptr = data;
  71. pooh.sizeleft = (curl_off_t) strlen(data);
  72. /* Build the mime tree. */
  73. mime = curl_mime_init(easy);
  74. part = curl_mime_addpart(mime);
  75. curl_mime_name(part, "field");
  76. curl_mime_encoder(part, "base64");
  77. /* Using an undefined length forces chunked transfer. */
  78. curl_mime_data_cb(part, (curl_off_t) -1, read_callback, NULL, NULL, &pooh);
  79. /* Bind mime data to its easy handle. */
  80. test_setopt(easy, CURLOPT_MIMEPOST, mime);
  81. /* Send data. */
  82. result = curl_easy_perform(easy);
  83. if(result) {
  84. fprintf(stderr, "curl_easy_perform() failed\n");
  85. res = (int) result;
  86. }
  87. test_cleanup:
  88. curl_easy_cleanup(easy);
  89. curl_mime_free(mime);
  90. curl_global_cleanup();
  91. return res;
  92. }