lib508.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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[]="this is what we post to the silly web server\n";
  25. struct WriteThis {
  26. char *readptr;
  27. size_t sizeleft;
  28. };
  29. static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp)
  30. {
  31. struct WriteThis *pooh = (struct WriteThis *)userp;
  32. if(size*nmemb < 1)
  33. return 0;
  34. if(pooh->sizeleft) {
  35. *ptr = pooh->readptr[0]; /* copy one single byte */
  36. pooh->readptr++; /* advance pointer */
  37. pooh->sizeleft--; /* less data left */
  38. return 1; /* we return 1 byte at a time! */
  39. }
  40. return 0; /* no more data left to deliver */
  41. }
  42. int test(char *URL)
  43. {
  44. CURL *curl;
  45. CURLcode res = CURLE_OK;
  46. struct WriteThis pooh;
  47. pooh.readptr = data;
  48. pooh.sizeleft = strlen(data);
  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. curl = curl_easy_init();
  54. if(!curl) {
  55. fprintf(stderr, "curl_easy_init() failed\n");
  56. curl_global_cleanup();
  57. return TEST_ERR_MAJOR_BAD;
  58. }
  59. /* First set the URL that is about to receive our POST. */
  60. test_setopt(curl, CURLOPT_URL, URL);
  61. /* Now specify we want to POST data */
  62. test_setopt(curl, CURLOPT_POST, 1L);
  63. /* Set the expected POST size */
  64. test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)pooh.sizeleft);
  65. /* we want to use our own read function */
  66. test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  67. /* pointer to pass to our read function */
  68. test_setopt(curl, CURLOPT_READDATA, &pooh);
  69. /* get verbose debug output please */
  70. test_setopt(curl, CURLOPT_VERBOSE, 1L);
  71. /* include headers in the output */
  72. test_setopt(curl, CURLOPT_HEADER, 1L);
  73. /* Perform the request, res will get the return code */
  74. res = curl_easy_perform(curl);
  75. test_cleanup:
  76. /* always cleanup */
  77. curl_easy_cleanup(curl);
  78. curl_global_cleanup();
  79. return res;
  80. }