Loading CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -7,6 +7,9 @@ Changelog Daniel Stenberg (13 May 2008) - Added test case 556 that uses curl_easy_send() and curl_easy_recv() Daniel Stenberg (9 May 2008) - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send and receive data over a connection previously setup with curl_easy_perform() Loading tests/data/Makefile.am +2 −1 Original line number Diff line number Diff line Loading @@ -50,7 +50,8 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test551 test552 test1016 test1017 test1018 test1019 test1020 test553 \ test1021 test1022 test1023 test309 test616 test617 test618 test619 \ test620 test621 test622 test623 test624 test625 test626 test627 test554 \ test1024 test1025 test555 test1026 test1027 test1028 test1029 test1030 test1024 test1025 test555 test1026 test1027 test1028 test1029 test1030 \ test556 filecheck: @mkdir test-place; \ Loading tests/data/test556 0 → 100644 +50 −0 Original line number Diff line number Diff line <testcase> <info> <keywords> HTTP HTTP GET </keywords> </info> <reply> <data> HTTP/1.1 200 OK Server: test-server/fake Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT Content-Length: 6 Connection: close -foo- </data> </reply> # # Client-side <client> <server> http </server> <tool> lib556 </tool> <name> send and recv HTTP </name> <command> http://%HOSTIP:%HTTPPORT </command> </client> # # Verify data after the test has been "shot" <verify> <strip> ^User-Agent:.* </strip> <protocol> GET /556 HTTP/1.2 Host: ninja </protocol> </verify> </testcase> tests/libtest/Makefile.am +3 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 \ lib507 lib508 lib510 lib511 lib512 lib513 lib514 lib515 lib516 \ lib517 lib518 lib519 lib520 lib521 lib523 lib524 lib525 lib526 lib527 \ lib529 lib530 lib532 lib533 lib536 lib537 lib540 lib541 lib542 lib543 \ lib544 lib545 lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib544 lib545 lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib556 # Dependencies (may need to be overriden) LDADD = $(LIBDIR)/libcurl.la Loading Loading @@ -151,3 +151,5 @@ lib552_SOURCES = lib552.c $(SUPPORTFILES) lib553_SOURCES = lib553.c $(SUPPORTFILES) lib554_SOURCES = lib554.c $(SUPPORTFILES) lib556_SOURCES = lib556.c $(SUPPORTFILES) tests/libtest/lib556.c 0 → 100644 +67 −0 Original line number Diff line number Diff line /***************************************************************************** * _ _ ____ _ * 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; } Loading
CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -7,6 +7,9 @@ Changelog Daniel Stenberg (13 May 2008) - Added test case 556 that uses curl_easy_send() and curl_easy_recv() Daniel Stenberg (9 May 2008) - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send and receive data over a connection previously setup with curl_easy_perform() Loading
tests/data/Makefile.am +2 −1 Original line number Diff line number Diff line Loading @@ -50,7 +50,8 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test551 test552 test1016 test1017 test1018 test1019 test1020 test553 \ test1021 test1022 test1023 test309 test616 test617 test618 test619 \ test620 test621 test622 test623 test624 test625 test626 test627 test554 \ test1024 test1025 test555 test1026 test1027 test1028 test1029 test1030 test1024 test1025 test555 test1026 test1027 test1028 test1029 test1030 \ test556 filecheck: @mkdir test-place; \ Loading
tests/data/test556 0 → 100644 +50 −0 Original line number Diff line number Diff line <testcase> <info> <keywords> HTTP HTTP GET </keywords> </info> <reply> <data> HTTP/1.1 200 OK Server: test-server/fake Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT Content-Length: 6 Connection: close -foo- </data> </reply> # # Client-side <client> <server> http </server> <tool> lib556 </tool> <name> send and recv HTTP </name> <command> http://%HOSTIP:%HTTPPORT </command> </client> # # Verify data after the test has been "shot" <verify> <strip> ^User-Agent:.* </strip> <protocol> GET /556 HTTP/1.2 Host: ninja </protocol> </verify> </testcase>
tests/libtest/Makefile.am +3 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 \ lib507 lib508 lib510 lib511 lib512 lib513 lib514 lib515 lib516 \ lib517 lib518 lib519 lib520 lib521 lib523 lib524 lib525 lib526 lib527 \ lib529 lib530 lib532 lib533 lib536 lib537 lib540 lib541 lib542 lib543 \ lib544 lib545 lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib544 lib545 lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib556 # Dependencies (may need to be overriden) LDADD = $(LIBDIR)/libcurl.la Loading Loading @@ -151,3 +151,5 @@ lib552_SOURCES = lib552.c $(SUPPORTFILES) lib553_SOURCES = lib553.c $(SUPPORTFILES) lib554_SOURCES = lib554.c $(SUPPORTFILES) lib556_SOURCES = lib556.c $(SUPPORTFILES)
tests/libtest/lib556.c 0 → 100644 +67 −0 Original line number Diff line number Diff line /***************************************************************************** * _ _ ____ _ * 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; }