quickjs-tart

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

lib653.c (2026B)


      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_lib653(char *URL)
     29 {
     30   CURL *curls = NULL;
     31   CURLcode res = CURLE_OK;
     32   curl_mimepart *field = NULL;
     33   curl_mime *mime = NULL;
     34 
     35   global_init(CURL_GLOBAL_ALL);
     36   easy_init(curls);
     37 
     38   mime = curl_mime_init(curls);
     39   field = curl_mime_addpart(mime);
     40   curl_mime_name(field, "name");
     41   curl_mime_data(field, "short value", CURL_ZERO_TERMINATED);
     42 
     43   easy_setopt(curls, CURLOPT_URL, URL);
     44   easy_setopt(curls, CURLOPT_HEADER, 1L);
     45   easy_setopt(curls, CURLOPT_VERBOSE, 1L);
     46   easy_setopt(curls, CURLOPT_MIMEPOST, mime);
     47   easy_setopt(curls, CURLOPT_NOPROGRESS, 1L);
     48 
     49   res = curl_easy_perform(curls);
     50   if(res)
     51     goto test_cleanup;
     52 
     53   /* Alter form and resubmit. */
     54   curl_mime_data(field, "long value for length change", CURL_ZERO_TERMINATED);
     55   res = curl_easy_perform(curls);
     56 
     57 test_cleanup:
     58   curl_mime_free(mime);
     59   curl_easy_cleanup(curls);
     60   curl_global_cleanup();
     61   return res; /* return the final return code */
     62 }