lib507.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. int test(char *URL)
  30. {
  31. CURL *curls = NULL;
  32. CURLM *multi = NULL;
  33. int still_running;
  34. int i = -1;
  35. int res = 0;
  36. CURLMsg *msg;
  37. start_test_timing();
  38. global_init(CURL_GLOBAL_ALL);
  39. multi_init(multi);
  40. easy_init(curls);
  41. easy_setopt(curls, CURLOPT_URL, URL);
  42. easy_setopt(curls, CURLOPT_HEADER, 1L);
  43. multi_add_handle(multi, curls);
  44. multi_perform(multi, &still_running);
  45. abort_on_test_timeout();
  46. while(still_running) {
  47. struct timeval timeout;
  48. fd_set fdread;
  49. fd_set fdwrite;
  50. fd_set fdexcep;
  51. int maxfd = -99;
  52. FD_ZERO(&fdread);
  53. FD_ZERO(&fdwrite);
  54. FD_ZERO(&fdexcep);
  55. timeout.tv_sec = 1;
  56. timeout.tv_usec = 0;
  57. multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
  58. /* At this point, maxfd is guaranteed to be greater or equal than -1. */
  59. select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
  60. abort_on_test_timeout();
  61. multi_perform(multi, &still_running);
  62. abort_on_test_timeout();
  63. }
  64. msg = curl_multi_info_read(multi, &still_running);
  65. if(msg)
  66. /* this should now contain a result code from the easy handle,
  67. get it */
  68. i = msg->data.result;
  69. test_cleanup:
  70. /* undocumented cleanup sequence - type UA */
  71. curl_multi_cleanup(multi);
  72. curl_easy_cleanup(curls);
  73. curl_global_cleanup();
  74. if(res)
  75. i = res;
  76. return i; /* return the final return code */
  77. }