mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
* add test for MergeChunkedResponse() (#432)
This commit is contained in:
parent
ca2e148ad7
commit
8589493581
@ -1,6 +1,7 @@
|
||||
CXXFLAGS += -Wall -Wextra -pedantic -O0 -g -std=c++11 -D_GLIBCXX_USE_NANOSLEEP=1
|
||||
|
||||
TESTS = test-http-url test-http-req test-http-res test-http-url_decode
|
||||
TESTS = test-http-url test-http-req test-http-res test-http-url_decode \
|
||||
test-http-merge_chunked
|
||||
|
||||
all: $(TESTS) run
|
||||
|
||||
|
25
tests/test-http-merge_chunked.cpp
Normal file
25
tests/test-http-merge_chunked.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
#include <cassert>
|
||||
#include "../HTTP.h"
|
||||
|
||||
using namespace i2p::http;
|
||||
|
||||
int main() {
|
||||
const char *buf =
|
||||
"4\r\n"
|
||||
"HTTP\r\n"
|
||||
"A\r\n"
|
||||
" response \r\n"
|
||||
"E\r\n"
|
||||
"with \r\n"
|
||||
"chunks.\r\n"
|
||||
"0\r\n"
|
||||
"\r\n"
|
||||
;
|
||||
std::stringstream in(buf);
|
||||
std::stringstream out;
|
||||
|
||||
assert(MergeChunkedResponse(in, out) == true);
|
||||
assert(out.str() == "HTTP response with \r\nchunks.");
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user