lib1532.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 "test.h"
  25. #include "memdebug.h"
  26. /* Test CURLINFO_RESPONSE_CODE */
  27. int test(char *URL)
  28. {
  29. CURL *curl;
  30. long httpcode;
  31. CURLcode res = CURLE_OK;
  32. global_init(CURL_GLOBAL_ALL);
  33. easy_init(curl);
  34. easy_setopt(curl, CURLOPT_URL, URL);
  35. res = curl_easy_perform(curl);
  36. if(res) {
  37. fprintf(stderr, "%s:%d curl_easy_perform() failed with code %d (%s)\n",
  38. __FILE__, __LINE__, res, curl_easy_strerror(res));
  39. goto test_cleanup;
  40. }
  41. res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
  42. if(res) {
  43. fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n",
  44. __FILE__, __LINE__, res, curl_easy_strerror(res));
  45. goto test_cleanup;
  46. }
  47. if(httpcode != 200) {
  48. fprintf(stderr, "%s:%d unexpected response code %ld\n",
  49. __FILE__, __LINE__, httpcode);
  50. res = CURLE_HTTP_RETURNED_ERROR;
  51. goto test_cleanup;
  52. }
  53. /* Test for a regression of github bug 1017 (response code does not reset) */
  54. curl_easy_reset(curl);
  55. res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
  56. if(res) {
  57. fprintf(stderr, "%s:%d curl_easy_getinfo() failed with code %d (%s)\n",
  58. __FILE__, __LINE__, res, curl_easy_strerror(res));
  59. goto test_cleanup;
  60. }
  61. if(httpcode) {
  62. fprintf(stderr, "%s:%d curl_easy_reset failed to zero the response code\n"
  63. "possible regression of github bug 1017\n", __FILE__, __LINE__);
  64. res = CURLE_HTTP_RETURNED_ERROR;
  65. goto test_cleanup;
  66. }
  67. test_cleanup:
  68. curl_easy_cleanup(curl);
  69. curl_global_cleanup();
  70. return (int)res;
  71. }