lib1906.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2019 - 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. #include "test.h"
  25. #include "testutil.h"
  26. #include "warnless.h"
  27. #include "memdebug.h"
  28. int test(char *URL)
  29. {
  30. char *url_after;
  31. CURLU *curlu = curl_url();
  32. CURL *curl = curl_easy_init();
  33. CURLcode curl_code;
  34. char error_buffer[CURL_ERROR_SIZE] = "";
  35. curl_url_set(curlu, CURLUPART_URL, URL, CURLU_DEFAULT_SCHEME);
  36. curl_easy_setopt(curl, CURLOPT_CURLU, curlu);
  37. curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, error_buffer);
  38. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  39. /* set a port number that makes this request fail */
  40. curl_easy_setopt(curl, CURLOPT_PORT, 1L);
  41. curl_code = curl_easy_perform(curl);
  42. if(!curl_code)
  43. fprintf(stderr, "failure expected, "
  44. "curl_easy_perform returned %ld: <%s>, <%s>\n",
  45. (long) curl_code, curl_easy_strerror(curl_code), error_buffer);
  46. /* print the used url */
  47. curl_url_get(curlu, CURLUPART_URL, &url_after, 0);
  48. fprintf(stderr, "curlu now: <%s>\n", url_after);
  49. curl_free(url_after);
  50. /* now reset CURLOP_PORT to go back to originally set port number */
  51. curl_easy_setopt(curl, CURLOPT_PORT, 0L);
  52. curl_code = curl_easy_perform(curl);
  53. if(curl_code)
  54. fprintf(stderr, "success expected, "
  55. "curl_easy_perform returned %ld: <%s>, <%s>\n",
  56. (long) curl_code, curl_easy_strerror(curl_code), error_buffer);
  57. /* print url */
  58. curl_url_get(curlu, CURLUPART_URL, &url_after, 0);
  59. fprintf(stderr, "curlu now: <%s>\n", url_after);
  60. curl_free(url_after);
  61. curl_easy_cleanup(curl);
  62. curl_url_cleanup(curlu);
  63. curl_global_cleanup();
  64. return 0;
  65. }