lib1517.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2022, 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. #include "memdebug.h"
  26. static char data[]="this is what we post to the silly web server\n";
  27. struct WriteThis {
  28. char *readptr;
  29. size_t sizeleft;
  30. };
  31. static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp)
  32. {
  33. struct WriteThis *pooh = (struct WriteThis *)userp;
  34. size_t tocopy = size * nmemb;
  35. /* Wait one second before return POST data *
  36. * so libcurl will wait before sending request body */
  37. wait_ms(1000);
  38. if(tocopy < 1 || !pooh->sizeleft)
  39. return 0;
  40. if(pooh->sizeleft < tocopy)
  41. tocopy = pooh->sizeleft;
  42. memcpy(ptr, pooh->readptr, tocopy);/* copy requested data */
  43. pooh->readptr += tocopy; /* advance pointer */
  44. pooh->sizeleft -= tocopy; /* less data left */
  45. return tocopy;
  46. }
  47. int test(char *URL)
  48. {
  49. CURL *curl;
  50. CURLcode res = CURLE_OK;
  51. struct WriteThis pooh;
  52. pooh.readptr = data;
  53. pooh.sizeleft = strlen(data);
  54. if(curl_global_init(CURL_GLOBAL_ALL)) {
  55. fprintf(stderr, "curl_global_init() failed\n");
  56. return TEST_ERR_MAJOR_BAD;
  57. }
  58. curl = curl_easy_init();
  59. if(!curl) {
  60. fprintf(stderr, "curl_easy_init() failed\n");
  61. curl_global_cleanup();
  62. return TEST_ERR_MAJOR_BAD;
  63. }
  64. /* First set the URL that is about to receive our POST. */
  65. test_setopt(curl, CURLOPT_URL, URL);
  66. /* Now specify we want to POST data */
  67. test_setopt(curl, CURLOPT_POST, 1L);
  68. /* Set the expected POST size */
  69. test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)pooh.sizeleft);
  70. /* we want to use our own read function */
  71. test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  72. /* pointer to pass to our read function */
  73. test_setopt(curl, CURLOPT_READDATA, &pooh);
  74. /* get verbose debug output please */
  75. test_setopt(curl, CURLOPT_VERBOSE, 1L);
  76. /* include headers in the output */
  77. test_setopt(curl, CURLOPT_HEADER, 1L);
  78. /* detect HTTP error codes >= 400 */
  79. /* test_setopt(curl, CURLOPT_FAILONERROR, 1L); */
  80. /* Perform the request, res will get the return code */
  81. res = curl_easy_perform(curl);
  82. test_cleanup:
  83. /* always cleanup */
  84. curl_easy_cleanup(curl);
  85. curl_global_cleanup();
  86. return res;
  87. }