lib556.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2019, 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. ***************************************************************************/
  22. #include "test.h"
  23. #include "warnless.h"
  24. #include "memdebug.h"
  25. /* For Windows, mainly (may be moved in a config file?) */
  26. #ifndef STDIN_FILENO
  27. #define STDIN_FILENO 0
  28. #endif
  29. #ifndef STDOUT_FILENO
  30. #define STDOUT_FILENO 1
  31. #endif
  32. #ifndef STDERR_FILENO
  33. #define STDERR_FILENO 2
  34. #endif
  35. int test(char *URL)
  36. {
  37. CURLcode res;
  38. CURL *curl;
  39. if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
  40. fprintf(stderr, "curl_global_init() failed\n");
  41. return TEST_ERR_MAJOR_BAD;
  42. }
  43. curl = curl_easy_init();
  44. if(!curl) {
  45. fprintf(stderr, "curl_easy_init() failed\n");
  46. curl_global_cleanup();
  47. return TEST_ERR_MAJOR_BAD;
  48. }
  49. test_setopt(curl, CURLOPT_URL, URL);
  50. test_setopt(curl, CURLOPT_CONNECT_ONLY, 1L);
  51. test_setopt(curl, CURLOPT_VERBOSE, 1L);
  52. res = curl_easy_perform(curl);
  53. if(!res) {
  54. /* we are connected, now get a HTTP document the raw way */
  55. const char *request =
  56. #ifdef CURL_DOES_CONVERSIONS
  57. /* ASCII representation with escape sequences for non-ASCII platforms */
  58. "\x47\x45\x54\x20\x2f\x35\x35\x36\x20\x48\x54\x54\x50\x2f\x31\x2e"
  59. "\x32\x0d\x0a\x48\x6f\x73\x74\x3a\x20\x6e\x69\x6e\x6a\x61\x0d\x0a"
  60. "\x0d\x0a";
  61. #else
  62. "GET /556 HTTP/1.2\r\n"
  63. "Host: ninja\r\n\r\n";
  64. #endif
  65. size_t iolen = 0;
  66. res = curl_easy_send(curl, request, strlen(request), &iolen);
  67. if(!res) {
  68. /* we assume that sending always work */
  69. do {
  70. char buf[1024];
  71. /* busy-read like crazy */
  72. res = curl_easy_recv(curl, buf, sizeof(buf), &iolen);
  73. #ifdef TPF
  74. sleep(1); /* avoid ctl-10 dump */
  75. #endif
  76. if(iolen) {
  77. /* send received stuff to stdout */
  78. if(!write(STDOUT_FILENO, buf, iolen))
  79. break;
  80. }
  81. } while((res == CURLE_OK && iolen != 0) || (res == CURLE_AGAIN));
  82. }
  83. if(iolen != 0)
  84. res = TEST_ERR_FAILURE;
  85. }
  86. test_cleanup:
  87. curl_easy_cleanup(curl);
  88. curl_global_cleanup();
  89. return (int)res;
  90. }