make clang-format using clang-format-3.6

This commit is contained in:
Tatsuhiro Tsujikawa 2015-12-27 18:39:47 +09:00
parent 4abad2f64c
commit b1132d6b10
1095 changed files with 30423 additions and 33770 deletions

View file

@ -7,11 +7,11 @@
namespace aria2 {
class HttpServerTest : public CppUnit::TestFixture
{
class HttpServerTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(HttpServerTest);
CPPUNIT_TEST(testHttpBasicAuth);
CPPUNIT_TEST_SUITE_END();
public:
void testHttpBasicAuth();
};
@ -19,23 +19,26 @@ public:
CPPUNIT_TEST_SUITE_REGISTRATION(HttpServerTest);
namespace {
std::unique_ptr<HttpServer> performHttpRequest(SocketCore& server, std::string request)
{
std::pair<std::string, uint16_t> addr;
server.getAddrInfo(addr);
std::unique_ptr<HttpServer> performHttpRequest(SocketCore& server,
std::string request)
{
std::pair<std::string, uint16_t> addr;
server.getAddrInfo(addr);
SocketCore client;
client.establishConnection("localhost", addr.second);
while (!client.isWritable(0)) {}
auto inbound = server.acceptConnection();
inbound->setBlockingMode();
auto rv = make_unique<HttpServer>(inbound);
client.writeData(request);
while (!rv->receiveRequest()) {}
return rv;
SocketCore client;
client.establishConnection("localhost", addr.second);
while (!client.isWritable(0)) {
}
auto inbound = server.acceptConnection();
inbound->setBlockingMode();
auto rv = make_unique<HttpServer>(inbound);
client.writeData(request);
while (!rv->receiveRequest()) {
}
return rv;
}
} // namespace
void HttpServerTest::testHttpBasicAuth()
@ -70,18 +73,18 @@ void HttpServerTest::testHttpBasicAuth()
{
// Client provided credentials should be ignored when there is no auth.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword("", "pass");
CPPUNIT_ASSERT(req->authenticate());
}
{
// Correct client provided credentials should match.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword("user", "pass");
CPPUNIT_ASSERT(req->authenticate());
}
@ -90,46 +93,48 @@ void HttpServerTest::testHttpBasicAuth()
// Correct client provided credentials should match (2).
// Embedded nulls
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcgBudWxsOnBhc3MAbnVsbA==\r\n\r\n");
req->setUsernamePassword(std::string("user\0null", 9), std::string("pass\0null", 9));
server, "GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: "
"Basic dXNlcgBudWxsOnBhc3MAbnVsbA==\r\n\r\n");
req->setUsernamePassword(std::string("user\0null", 9),
std::string("pass\0null", 9));
CPPUNIT_ASSERT(req->authenticate());
}
{
// Correct client provided credentials should match (3).
// Embedded, leading nulls
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic AHVzZXI6AHBhc3M=\r\n\r\n");
req->setUsernamePassword(std::string("\0user", 5), std::string("\0pass", 5));
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"AHVzZXI6AHBhc3M=\r\n\r\n");
req->setUsernamePassword(std::string("\0user", 5),
std::string("\0pass", 5));
CPPUNIT_ASSERT(req->authenticate());
}
{
// Correct client provided credentials should match (3).
// Whitespace
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic IHVzZXIJOgpwYXNzDQ==\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"IHVzZXIJOgpwYXNzDQ==\r\n\r\n");
req->setUsernamePassword(" user\t", "\npass\r");
CPPUNIT_ASSERT(req->authenticate());
}
{
// Wrong client provided credentials should NOT match.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword("user", "pass2");
CPPUNIT_ASSERT(!req->authenticate());
}
{
// Wrong client provided credentials should NOT match (2).
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword("user2", "pass");
CPPUNIT_ASSERT(!req->authenticate());
}
@ -137,9 +142,9 @@ void HttpServerTest::testHttpBasicAuth()
{
// Wrong client provided credentials should NOT match (3).
// Embedded null in pass config.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword("user", std::string("pass\0three", 10));
CPPUNIT_ASSERT(!req->authenticate());
}
@ -147,9 +152,9 @@ void HttpServerTest::testHttpBasicAuth()
{
// Wrong client provided credentials should NOT match (4).
// Embedded null in user config.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNz\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNz\r\n\r\n");
req->setUsernamePassword(std::string("user\0four", 9), "pass");
CPPUNIT_ASSERT(!req->authenticate());
}
@ -157,9 +162,9 @@ void HttpServerTest::testHttpBasicAuth()
{
// Wrong client provided credentials should NOT match (5).
// Embedded null in http auth.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic dXNlcjpwYXNzAHRocmVl\r\n\r\n");
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"dXNlcjpwYXNzAHRocmVl\r\n\r\n");
req->setUsernamePassword("user", "pass");
CPPUNIT_ASSERT(!req->authenticate());
}
@ -168,18 +173,18 @@ void HttpServerTest::testHttpBasicAuth()
// Wrong client provided credentials should NOT match (6).
// Embedded null in http auth.
// Embedded, leading nulls
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\nAuthorization: Basic AHVzZXI6AHBhc3M=\r\n\r\n");
req->setUsernamePassword(std::string("\0user5", 6), std::string("\0pass", 5));
auto req = performHttpRequest(server, "GET / HTTP/1.1\r\nUser-Agent: "
"aria2-test\r\nAuthorization: Basic "
"AHVzZXI6AHBhc3M=\r\n\r\n");
req->setUsernamePassword(std::string("\0user5", 6),
std::string("\0pass", 5));
CPPUNIT_ASSERT(!req->authenticate());
}
{
// When there is a user and password, the client must actually provide auth.
auto req = performHttpRequest(
server,
"GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\n\r\n");
server, "GET / HTTP/1.1\r\nUser-Agent: aria2-test\r\n\r\n");
req->setUsernamePassword("user", "pass");
CPPUNIT_ASSERT(!req->authenticate());
}