lib1971.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /***************************************************************************
  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.haxx.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. static size_t read_callback(char *buffer, size_t size, size_t nitems,
  27. void *userdata)
  28. {
  29. (void)buffer; /* unused */
  30. (void)size; /* unused */
  31. (void)nitems; /* unused */
  32. (void)userdata; /* unused */
  33. return 0;
  34. }
  35. int test(char *URL)
  36. {
  37. CURL *curl;
  38. CURLcode res = TEST_ERR_MAJOR_BAD;
  39. struct curl_slist *list = NULL;
  40. struct curl_slist *connect_to = NULL;
  41. if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
  42. fprintf(stderr, "curl_global_init() failed\n");
  43. return TEST_ERR_MAJOR_BAD;
  44. }
  45. curl = curl_easy_init();
  46. if(!curl) {
  47. fprintf(stderr, "curl_easy_init() failed\n");
  48. curl_global_cleanup();
  49. return TEST_ERR_MAJOR_BAD;
  50. }
  51. test_setopt(curl, CURLOPT_UPLOAD, 1L);
  52. test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  53. test_setopt(curl, CURLOPT_VERBOSE, 1L);
  54. test_setopt(curl, CURLOPT_AWS_SIGV4, "aws:amz:us-east-1:s3");
  55. test_setopt(curl, CURLOPT_USERPWD, "xxx");
  56. test_setopt(curl, CURLOPT_HEADER, 0L);
  57. test_setopt(curl, CURLOPT_URL, URL);
  58. list = curl_slist_append(list, "Content-Type: application/json");
  59. if(!list)
  60. goto test_cleanup;
  61. test_setopt(curl, CURLOPT_HTTPHEADER, list);
  62. if(libtest_arg2) {
  63. connect_to = curl_slist_append(connect_to, libtest_arg2);
  64. }
  65. test_setopt(curl, CURLOPT_CONNECT_TO, connect_to);
  66. res = curl_easy_perform(curl);
  67. test_cleanup:
  68. curl_slist_free_all(connect_to);
  69. curl_slist_free_all(list);
  70. curl_easy_cleanup(curl);
  71. curl_global_cleanup();
  72. return res;
  73. }