lib1552.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2020, 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 "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 = 0;
  33. int res = 0;
  34. CURLMsg *msg;
  35. int counter = 3;
  36. start_test_timing();
  37. global_init(CURL_GLOBAL_ALL);
  38. multi_init(multi);
  39. easy_init(curls);
  40. easy_setopt(curls, CURLOPT_URL, URL);
  41. easy_setopt(curls, CURLOPT_HEADER, 1L);
  42. easy_setopt(curls, CURLOPT_VERBOSE, 1L);
  43. easy_setopt(curls, CURLOPT_USERPWD, "u:s");
  44. multi_add_handle(multi, curls);
  45. multi_perform(multi, &still_running);
  46. abort_on_test_timeout();
  47. while(still_running && counter--) {
  48. int num;
  49. res = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num);
  50. if(res != CURLM_OK) {
  51. printf("curl_multi_wait() returned %d\n", res);
  52. res = TEST_ERR_MAJOR_BAD;
  53. goto test_cleanup;
  54. }
  55. abort_on_test_timeout();
  56. multi_perform(multi, &still_running);
  57. abort_on_test_timeout();
  58. }
  59. msg = curl_multi_info_read(multi, &still_running);
  60. if(msg)
  61. /* this should now contain a result code from the easy handle,
  62. get it */
  63. i = msg->data.result;
  64. test_cleanup:
  65. /* undocumented cleanup sequence - type UA */
  66. curl_multi_cleanup(multi);
  67. curl_easy_cleanup(curls);
  68. curl_global_cleanup();
  69. if(res)
  70. i = res;
  71. return i; /* return the final return code */
  72. }