lib1500.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2016, 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.haxx.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 "testutil.h"
  24. #include "warnless.h"
  25. #include "memdebug.h"
  26. #define TEST_HANG_TIMEOUT 60 * 1000
  27. int test(char *URL)
  28. {
  29. CURL *curls = NULL;
  30. CURLM *multi = NULL;
  31. int still_running;
  32. int i = TEST_ERR_FAILURE;
  33. int res = 0;
  34. CURLMsg *msg;
  35. start_test_timing();
  36. global_init(CURL_GLOBAL_ALL);
  37. multi_init(multi);
  38. easy_init(curls);
  39. easy_setopt(curls, CURLOPT_URL, URL);
  40. easy_setopt(curls, CURLOPT_HEADER, 1L);
  41. multi_add_handle(multi, curls);
  42. multi_perform(multi, &still_running);
  43. abort_on_test_timeout();
  44. while(still_running) {
  45. int num;
  46. res = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num);
  47. if(res != CURLM_OK) {
  48. printf("curl_multi_wait() returned %d\n", res);
  49. res = TEST_ERR_MAJOR_BAD;
  50. goto test_cleanup;
  51. }
  52. abort_on_test_timeout();
  53. multi_perform(multi, &still_running);
  54. abort_on_test_timeout();
  55. }
  56. msg = curl_multi_info_read(multi, &still_running);
  57. if(msg)
  58. /* this should now contain a result code from the easy handle,
  59. get it */
  60. i = msg->data.result;
  61. test_cleanup:
  62. /* undocumented cleanup sequence - type UA */
  63. curl_multi_cleanup(multi);
  64. curl_easy_cleanup(curls);
  65. curl_global_cleanup();
  66. if(res)
  67. i = res;
  68. return i; /* return the final return code */
  69. }