lib1552.c 2.4 KB

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