lib508.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 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. * 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. if(size*nmemb < 1)
  35. return 0;
  36. if(pooh->sizeleft) {
  37. *ptr = pooh->readptr[0]; /* copy one single byte */
  38. pooh->readptr++; /* advance pointer */
  39. pooh->sizeleft--; /* less data left */
  40. return 1; /* we return 1 byte at a time! */
  41. }
  42. return 0; /* no more data left to deliver */
  43. }
  44. int test(char *URL)
  45. {
  46. CURL *curl;
  47. CURLcode res = CURLE_OK;
  48. struct WriteThis pooh;
  49. pooh.readptr = data;
  50. pooh.sizeleft = strlen(data);
  51. if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
  52. fprintf(stderr, "curl_global_init() failed\n");
  53. return TEST_ERR_MAJOR_BAD;
  54. }
  55. curl = curl_easy_init();
  56. if(!curl) {
  57. fprintf(stderr, "curl_easy_init() failed\n");
  58. curl_global_cleanup();
  59. return TEST_ERR_MAJOR_BAD;
  60. }
  61. /* First set the URL that is about to receive our POST. */
  62. test_setopt(curl, CURLOPT_URL, URL);
  63. /* Now specify we want to POST data */
  64. test_setopt(curl, CURLOPT_POST, 1L);
  65. /* Set the expected POST size */
  66. test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)pooh.sizeleft);
  67. /* we want to use our own read function */
  68. test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  69. /* pointer to pass to our read function */
  70. test_setopt(curl, CURLOPT_READDATA, &pooh);
  71. /* get verbose debug output please */
  72. test_setopt(curl, CURLOPT_VERBOSE, 1L);
  73. /* include headers in the output */
  74. test_setopt(curl, CURLOPT_HEADER, 1L);
  75. /* Perform the request, res will get the return code */
  76. res = curl_easy_perform(curl);
  77. test_cleanup:
  78. /* always cleanup */
  79. curl_easy_cleanup(curl);
  80. curl_global_cleanup();
  81. return res;
  82. }