quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

lib1552.c (2452B)


      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 "first.h"
     25 
     26 #include "memdebug.h"
     27 
     28 static CURLcode test_lib1552(char *URL)
     29 {
     30   CURL *curls = NULL;
     31   CURLM *multi = NULL;
     32   int still_running;
     33   CURLcode i = CURLE_OK;
     34   CURLcode res = CURLE_OK;
     35   CURLMsg *msg;
     36   int counter = 3;
     37 
     38   start_test_timing();
     39 
     40   global_init(CURL_GLOBAL_ALL);
     41 
     42   multi_init(multi);
     43 
     44   easy_init(curls);
     45 
     46   easy_setopt(curls, CURLOPT_URL, URL);
     47   easy_setopt(curls, CURLOPT_HEADER, 1L);
     48   easy_setopt(curls, CURLOPT_VERBOSE, 1L);
     49   easy_setopt(curls, CURLOPT_USERPWD, "u:s");
     50 
     51   multi_add_handle(multi, curls);
     52 
     53   multi_perform(multi, &still_running);
     54 
     55   abort_on_test_timeout();
     56 
     57   while(still_running && counter--) {
     58     CURLMcode mres;
     59     int num;
     60     mres = curl_multi_wait(multi, NULL, 0, TEST_HANG_TIMEOUT, &num);
     61     if(mres != CURLM_OK) {
     62       curl_mprintf("curl_multi_wait() returned %d\n", mres);
     63       res = TEST_ERR_MAJOR_BAD;
     64       goto test_cleanup;
     65     }
     66 
     67     abort_on_test_timeout();
     68 
     69     multi_perform(multi, &still_running);
     70 
     71     abort_on_test_timeout();
     72   }
     73 
     74   msg = curl_multi_info_read(multi, &still_running);
     75   if(msg)
     76     /* this should now contain a result code from the easy handle,
     77        get it */
     78     i = msg->data.result;
     79 
     80 test_cleanup:
     81 
     82   /* undocumented cleanup sequence - type UA */
     83 
     84   curl_multi_cleanup(multi);
     85   curl_easy_cleanup(curls);
     86   curl_global_cleanup();
     87 
     88   if(res)
     89     i = res;
     90 
     91   return i; /* return the final return code */
     92 }