lib1553.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 "testutil.h"
  26. #include "warnless.h"
  27. #include "memdebug.h"
  28. #define TEST_HANG_TIMEOUT 60 * 1000
  29. static int xferinfo(void *p,
  30. curl_off_t dltotal, curl_off_t dlnow,
  31. curl_off_t ultotal, curl_off_t ulnow)
  32. {
  33. (void)p;
  34. (void)dlnow;
  35. (void)dltotal;
  36. (void)ulnow;
  37. (void)ultotal;
  38. fprintf(stderr, "xferinfo fail!\n");
  39. return 1; /* fail as fast as we can */
  40. }
  41. int test(char *URL)
  42. {
  43. CURL *curls = NULL;
  44. CURLM *multi = NULL;
  45. int still_running;
  46. int i = 0;
  47. int res = 0;
  48. curl_mimepart *field = NULL;
  49. curl_mime *mime = NULL;
  50. int counter = 1;
  51. start_test_timing();
  52. global_init(CURL_GLOBAL_ALL);
  53. multi_init(multi);
  54. easy_init(curls);
  55. mime = curl_mime_init(curls);
  56. field = curl_mime_addpart(mime);
  57. curl_mime_name(field, "name");
  58. curl_mime_data(field, "value", CURL_ZERO_TERMINATED);
  59. easy_setopt(curls, CURLOPT_URL, URL);
  60. easy_setopt(curls, CURLOPT_HEADER, 1L);
  61. easy_setopt(curls, CURLOPT_VERBOSE, 1L);
  62. easy_setopt(curls, CURLOPT_MIMEPOST, mime);
  63. easy_setopt(curls, CURLOPT_USERPWD, "u:s");
  64. easy_setopt(curls, CURLOPT_XFERINFOFUNCTION, xferinfo);
  65. easy_setopt(curls, CURLOPT_NOPROGRESS, 1L);
  66. multi_add_handle(multi, curls);
  67. multi_perform(multi, &still_running);
  68. abort_on_test_timeout();
  69. while(still_running && counter--) {
  70. int num;
  71. res = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num);
  72. if(res != CURLM_OK) {
  73. printf("curl_multi_wait() returned %d\n", res);
  74. res = TEST_ERR_MAJOR_BAD;
  75. goto test_cleanup;
  76. }
  77. abort_on_test_timeout();
  78. multi_perform(multi, &still_running);
  79. abort_on_test_timeout();
  80. }
  81. test_cleanup:
  82. curl_mime_free(mime);
  83. curl_multi_remove_handle(multi, curls);
  84. curl_multi_cleanup(multi);
  85. curl_easy_cleanup(curls);
  86. curl_global_cleanup();
  87. if(res)
  88. i = res;
  89. return i; /* return the final return code */
  90. }