diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2008-05-13 21:42:07 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2008-05-13 21:42:07 +0000 | 
| commit | 7f88e8badbb6359911cb1c2e6df4ec30f09c0fb0 (patch) | |
| tree | 6a30d3d130b268ce73340d75d2dc093638d282a5 /tests/libtest/lib556.c | |
| parent | 2f66ff2e4fcb102e82d8c1bb756bbb43c4e34e64 (diff) | |
Added test case 556 that uses curl_easy_send() and curl_easy_recv()
Diffstat (limited to 'tests/libtest/lib556.c')
| -rw-r--r-- | tests/libtest/lib556.c | 67 | 
1 files changed, 67 insertions, 0 deletions
| diff --git a/tests/libtest/lib556.c b/tests/libtest/lib556.c new file mode 100644 index 000000000..12a1188ae --- /dev/null +++ b/tests/libtest/lib556.c @@ -0,0 +1,67 @@ +/***************************************************************************** + *                                  _   _ ____  _ + *  Project                     ___| | | |  _ \| | + *                             / __| | | | |_) | | + *                            | (__| |_| |  _ <| |___ + *                             \___|\___/|_| \_\_____| + * + * $Id$ + */ + +#include "test.h" + +int test(char *URL) +{ +  CURLcode res; +  CURL *curl; + +  if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { +    fprintf(stderr, "curl_global_init() failed\n"); +    return TEST_ERR_MAJOR_BAD; +  } + +  if ((curl = curl_easy_init()) == NULL) { +    fprintf(stderr, "curl_easy_init() failed\n"); +    curl_global_cleanup(); +    return TEST_ERR_MAJOR_BAD; +  } + +  curl_easy_setopt(curl, CURLOPT_URL, URL); +  curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1L); + +  res = curl_easy_perform(curl); + +  if(!res) { +    /* we are connected, now get a HTTP document the raw way */ +    const char *request = "GET /556 HTTP/1.2\r\n" +      "Host: ninja\r\n\r\n"; +    size_t iolen; +    char buf[1024]; + +    res = curl_easy_send(curl, request, strlen(request), &iolen); + +    if(!res) { +      /* we assume that sending always work */ +      int total=0; + +      do { +        /* busy-read like crazy */ +        res = curl_easy_recv(curl, buf, 1024, &iolen); + +        if(iolen) +          /* send received stuff to stdout */ +          write(STDOUT_FILENO, buf, iolen); + +        total += iolen; + +      } while((res == CURLE_AGAIN) && (total < 20)); +    } +  } + + +  curl_easy_cleanup(curl); +  curl_global_cleanup(); + +  return (int)res; +} + | 
