mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
#include <cassert> |
|
#include "../HTTP.h" |
|
|
|
using namespace i2p::http; |
|
|
|
int main() { |
|
HTTPReq *req; |
|
int ret = 0, len = 0; |
|
const char *buf; |
|
|
|
/* test: parsing request with body */ |
|
buf = |
|
"GET / HTTP/1.0\r\n" |
|
"User-Agent: curl/7.26.0\r\n" |
|
"Host: inr.i2p\r\n" |
|
"Accept: */*\r\n" |
|
"\r\n" |
|
"test"; |
|
len = strlen(buf); |
|
req = new HTTPReq; |
|
assert((ret = req->parse(buf, len)) == len - 4); |
|
assert(req->version == "HTTP/1.0"); |
|
assert(req->method == "GET"); |
|
assert(req->uri == "/"); |
|
assert(req->headers.size() == 3); |
|
assert(req->headers.count("Host") == 1); |
|
assert(req->headers.count("Accept") == 1); |
|
assert(req->headers.count("User-Agent") == 1); |
|
assert(req->headers.find("Host")->second == "inr.i2p"); |
|
assert(req->headers.find("Accept")->second == "*/*"); |
|
assert(req->headers.find("User-Agent")->second == "curl/7.26.0"); |
|
delete req; |
|
|
|
/* test: parsing request without body */ |
|
buf = |
|
"GET / HTTP/1.0\r\n" |
|
"\r\n"; |
|
len = strlen(buf); |
|
req = new HTTPReq; |
|
assert((ret = req->parse(buf, len)) == len); |
|
assert(req->version == "HTTP/1.0"); |
|
assert(req->method == "GET"); |
|
assert(req->uri == "/"); |
|
assert(req->headers.size() == 0); |
|
delete req; |
|
|
|
/* test: parsing request without body */ |
|
buf = |
|
"GET / HTTP/1.1\r\n" |
|
"\r\n"; |
|
len = strlen(buf); |
|
req = new HTTPReq; |
|
assert((ret = req->parse(buf, len)) > 0); |
|
delete req; |
|
|
|
/* test: parsing incomplete request */ |
|
buf = |
|
"GET / HTTP/1.0\r\n" |
|
""; |
|
len = strlen(buf); |
|
req = new HTTPReq; |
|
assert((ret = req->parse(buf, len)) == 0); /* request not completed */ |
|
delete req; |
|
|
|
/* test: parsing slightly malformed request */ |
|
buf = |
|
"GET http://inr.i2p HTTP/1.1\r\n" |
|
"Host: stats.i2p\r\n" |
|
"Accept-Encoding: \r\n" |
|
"Accept: */*\r\n" |
|
"\r\n"; |
|
len = strlen(buf); |
|
req = new HTTPReq; |
|
assert((ret = req->parse(buf, len)) == len); /* no host header */ |
|
assert(req->method == "GET"); |
|
assert(req->uri == "http://inr.i2p"); |
|
assert(req->headers.size() == 3); |
|
assert(req->headers.count("Host") == 1); |
|
assert(req->headers.count("Accept") == 1); |
|
assert(req->headers.count("Accept-Encoding") == 1); |
|
assert(req->headers["Host"] == "stats.i2p"); |
|
assert(req->headers["Accept"] == "*/*"); |
|
assert(req->headers["Accept-Encoding"] == ""); |
|
delete req; |
|
|
|
return 0; |
|
} |
|
|
|
/* vim: expandtab:ts=2 */
|
|
|