mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
93 lines
2.4 KiB
C++
93 lines
2.4 KiB
C++
#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->host == "inr.i2p");
|
|
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->host == "");
|
|
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)) == -1); /* no host header */
|
|
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->host == "stats.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 */
|