xf.li | 6c8fc1e | 2023-08-12 00:11:09 -0700 | [diff] [blame^] | 1 | /*************************************************************************** |
| 2 | * _ _ ____ _ |
| 3 | * Project ___| | | | _ \| | |
| 4 | * / __| | | | |_) | | |
| 5 | * | (__| |_| | _ <| |___ |
| 6 | * \___|\___/|_| \_\_____| |
| 7 | * |
| 8 | * Copyright (C) 1998 - 2022, 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 | |
| 26 | #include "testutil.h" |
| 27 | #include "warnless.h" |
| 28 | #include "memdebug.h" |
| 29 | |
| 30 | #define TEST_HANG_TIMEOUT 60 * 1000 |
| 31 | |
| 32 | int test(char *URL) |
| 33 | { |
| 34 | CURL *curls = NULL; |
| 35 | CURLM *multi = NULL; |
| 36 | int still_running; |
| 37 | int i = 0; |
| 38 | int res = 0; |
| 39 | CURLMsg *msg; |
| 40 | int counter = 3; |
| 41 | |
| 42 | start_test_timing(); |
| 43 | |
| 44 | global_init(CURL_GLOBAL_ALL); |
| 45 | |
| 46 | multi_init(multi); |
| 47 | |
| 48 | easy_init(curls); |
| 49 | |
| 50 | easy_setopt(curls, CURLOPT_URL, URL); |
| 51 | easy_setopt(curls, CURLOPT_HEADER, 1L); |
| 52 | easy_setopt(curls, CURLOPT_VERBOSE, 1L); |
| 53 | easy_setopt(curls, CURLOPT_USERPWD, "u:s"); |
| 54 | |
| 55 | multi_add_handle(multi, curls); |
| 56 | |
| 57 | multi_perform(multi, &still_running); |
| 58 | |
| 59 | abort_on_test_timeout(); |
| 60 | |
| 61 | while(still_running && counter--) { |
| 62 | int num; |
| 63 | res = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num); |
| 64 | if(res != CURLM_OK) { |
| 65 | printf("curl_multi_wait() returned %d\n", res); |
| 66 | res = TEST_ERR_MAJOR_BAD; |
| 67 | goto test_cleanup; |
| 68 | } |
| 69 | |
| 70 | abort_on_test_timeout(); |
| 71 | |
| 72 | multi_perform(multi, &still_running); |
| 73 | |
| 74 | abort_on_test_timeout(); |
| 75 | } |
| 76 | |
| 77 | msg = curl_multi_info_read(multi, &still_running); |
| 78 | if(msg) |
| 79 | /* this should now contain a result code from the easy handle, |
| 80 | get it */ |
| 81 | i = msg->data.result; |
| 82 | |
| 83 | test_cleanup: |
| 84 | |
| 85 | /* undocumented cleanup sequence - type UA */ |
| 86 | |
| 87 | curl_multi_cleanup(multi); |
| 88 | curl_easy_cleanup(curls); |
| 89 | curl_global_cleanup(); |
| 90 | |
| 91 | if(res) |
| 92 | i = res; |
| 93 | |
| 94 | return i; /* return the final return code */ |
| 95 | } |