blob: 04e1ecc9005616838fa57daf1cbc700e3e3ba17f [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001/***************************************************************************
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/*
25 * Test case converted from bug report #1318 by Petr Novak.
26 *
27 * Before the fix, this test program returned 52 (CURLE_GOT_NOTHING) instead
28 * of 42 (CURLE_ABORTED_BY_CALLBACK).
29 */
30
31#include "test.h"
32
33#include "memdebug.h"
34
35static int progressKiller(void *arg,
36 double dltotal,
37 double dlnow,
38 double ultotal,
39 double ulnow)
40{
41 (void)arg;
42 (void)dltotal;
43 (void)dlnow;
44 (void)ultotal;
45 (void)ulnow;
46 printf("PROGRESSFUNCTION called\n");
47 return 1;
48}
49
50int test(char *URL)
51{
52 CURL *curl;
53 int res = 0;
54
55 global_init(CURL_GLOBAL_ALL);
56
57 easy_init(curl);
58
59 easy_setopt(curl, CURLOPT_URL, URL);
60 easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
61 easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
62 easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressKiller);
63 easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
64 easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
65
66 res = curl_easy_perform(curl);
67
68test_cleanup:
69
70 /* undocumented cleanup sequence - type UA */
71
72 curl_easy_cleanup(curl);
73 curl_global_cleanup();
74
75 return res;
76}