lib1513.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. /*
  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. #include "test.h"
  31. #include "memdebug.h"
  32. static int progressKiller(void *arg,
  33. double dltotal,
  34. double dlnow,
  35. double ultotal,
  36. double ulnow)
  37. {
  38. (void)arg;
  39. (void)dltotal;
  40. (void)dlnow;
  41. (void)ultotal;
  42. (void)ulnow;
  43. printf("PROGRESSFUNCTION called\n");
  44. return 1;
  45. }
  46. int test(char *URL)
  47. {
  48. CURL *curl;
  49. int res = 0;
  50. global_init(CURL_GLOBAL_ALL);
  51. easy_init(curl);
  52. easy_setopt(curl, CURLOPT_URL, URL);
  53. easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
  54. easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
  55. CURL_IGNORE_DEPRECATION(
  56. easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressKiller);
  57. easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
  58. )
  59. easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
  60. res = curl_easy_perform(curl);
  61. test_cleanup:
  62. /* undocumented cleanup sequence - type UA */
  63. curl_easy_cleanup(curl);
  64. curl_global_cleanup();
  65. return res;
  66. }