2006-02-17 13:35:04 +00:00
|
|
|
#include "Request.h"
|
2008-10-08 15:35:52 +00:00
|
|
|
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
2007-03-18 15:42:34 +00:00
|
|
|
#include "Netrc.h"
|
2007-03-21 10:19:23 +00:00
|
|
|
#include "DefaultAuthResolver.h"
|
|
|
|
#include "NetrcAuthResolver.h"
|
2006-02-17 13:35:04 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
2006-02-17 13:35:04 +00:00
|
|
|
class RequestTest:public CppUnit::TestFixture {
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(RequestTest);
|
|
|
|
CPPUNIT_TEST(testSetUrl1);
|
|
|
|
CPPUNIT_TEST(testSetUrl2);
|
|
|
|
CPPUNIT_TEST(testSetUrl3);
|
|
|
|
CPPUNIT_TEST(testSetUrl4);
|
|
|
|
CPPUNIT_TEST(testSetUrl5);
|
|
|
|
CPPUNIT_TEST(testSetUrl6);
|
|
|
|
CPPUNIT_TEST(testSetUrl7);
|
|
|
|
CPPUNIT_TEST(testSetUrl8);
|
|
|
|
CPPUNIT_TEST(testSetUrl9);
|
|
|
|
CPPUNIT_TEST(testSetUrl10);
|
2006-06-18 09:23:25 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl11);
|
|
|
|
CPPUNIT_TEST(testSetUrl12);
|
|
|
|
CPPUNIT_TEST(testSetUrl13);
|
|
|
|
CPPUNIT_TEST(testSetUrl14);
|
2007-10-14 16:29:05 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl15);
|
|
|
|
CPPUNIT_TEST(testSetUrl16);
|
2007-11-11 04:25:56 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl17);
|
2009-11-12 14:50:23 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl18);
|
|
|
|
CPPUNIT_TEST(testSetUrl19);
|
2009-11-15 13:00:23 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl20);
|
2007-10-30 12:48:01 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl_username);
|
|
|
|
CPPUNIT_TEST(testSetUrl_usernamePassword);
|
|
|
|
CPPUNIT_TEST(testSetUrl_zeroUsername);
|
2008-12-15 15:38:07 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl_supportsPersistentConnection);
|
2009-08-30 15:05:30 +00:00
|
|
|
CPPUNIT_TEST(testSetUrl_ipv6);
|
2006-02-17 13:35:04 +00:00
|
|
|
CPPUNIT_TEST(testRedirectUrl);
|
2006-02-18 03:59:26 +00:00
|
|
|
CPPUNIT_TEST(testRedirectUrl2);
|
2008-12-15 15:38:07 +00:00
|
|
|
CPPUNIT_TEST(testRedirectUrl_supportsPersistentConnection);
|
2006-02-17 13:35:04 +00:00
|
|
|
CPPUNIT_TEST(testResetUrl);
|
2008-12-15 15:38:07 +00:00
|
|
|
CPPUNIT_TEST(testResetUrl_supportsPersistentConnection);
|
2006-07-20 15:48:12 +00:00
|
|
|
CPPUNIT_TEST(testInnerLink);
|
2008-10-08 15:35:52 +00:00
|
|
|
CPPUNIT_TEST(testInnerLinkInReferer);
|
2009-08-30 15:05:30 +00:00
|
|
|
CPPUNIT_TEST(testGetURIHost);
|
2006-02-17 13:35:04 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void testSetUrl1();
|
|
|
|
void testSetUrl2();
|
|
|
|
void testSetUrl3();
|
|
|
|
void testSetUrl4();
|
|
|
|
void testSetUrl5();
|
|
|
|
void testSetUrl6();
|
|
|
|
void testSetUrl7();
|
|
|
|
void testSetUrl8();
|
|
|
|
void testSetUrl9();
|
|
|
|
void testSetUrl10();
|
2006-06-18 09:23:25 +00:00
|
|
|
void testSetUrl11();
|
|
|
|
void testSetUrl12();
|
|
|
|
void testSetUrl13();
|
|
|
|
void testSetUrl14();
|
2007-10-14 16:29:05 +00:00
|
|
|
void testSetUrl15();
|
|
|
|
void testSetUrl16();
|
2007-11-11 04:25:56 +00:00
|
|
|
void testSetUrl17();
|
2009-11-12 14:50:23 +00:00
|
|
|
void testSetUrl18();
|
|
|
|
void testSetUrl19();
|
2009-11-15 13:00:23 +00:00
|
|
|
void testSetUrl20();
|
2007-10-30 12:48:01 +00:00
|
|
|
void testSetUrl_username();
|
|
|
|
void testSetUrl_usernamePassword();
|
|
|
|
void testSetUrl_zeroUsername();
|
2008-12-15 15:38:07 +00:00
|
|
|
void testSetUrl_supportsPersistentConnection();
|
2009-08-30 15:05:30 +00:00
|
|
|
void testSetUrl_ipv6();
|
2006-02-17 13:35:04 +00:00
|
|
|
void testRedirectUrl();
|
2006-02-18 03:59:26 +00:00
|
|
|
void testRedirectUrl2();
|
2008-12-15 15:38:07 +00:00
|
|
|
void testRedirectUrl_supportsPersistentConnection();
|
2006-02-17 13:35:04 +00:00
|
|
|
void testResetUrl();
|
2008-12-15 15:38:07 +00:00
|
|
|
void testResetUrl_supportsPersistentConnection();
|
2006-07-20 15:48:12 +00:00
|
|
|
void testInnerLink();
|
2008-10-08 15:35:52 +00:00
|
|
|
void testInnerLinkInReferer();
|
2009-08-30 15:05:30 +00:00
|
|
|
void testGetURIHost();
|
2006-02-17 13:35:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( RequestTest );
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl1() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/"), req.getUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/"), req.getCurrentUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPreviousUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPassword());
|
2009-08-30 15:05:30 +00:00
|
|
|
CPPUNIT_ASSERT(!req.isIPv6LiteralAddress());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl2() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com:8080/index.html");
|
2006-02-18 03:59:26 +00:00
|
|
|
req.setReferer("http://aria.rednoah.com:8080");
|
2006-02-17 13:35:04 +00:00
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2006-02-18 03:59:26 +00:00
|
|
|
|
|
|
|
// referer is unchaged
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com:8080"), req.getReferer());
|
2006-02-18 03:59:26 +00:00
|
|
|
// previousUrl must equal to referer;
|
|
|
|
CPPUNIT_ASSERT_EQUAL(req.getReferer(), req.getPreviousUrl());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)8080, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("index.html"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl3() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/aria2/index.html");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/aria2"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("index.html"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl4() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/aria2/aria3/index.html");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/aria2/aria3"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("index.html"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl5() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/aria2/aria3/");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/aria2/aria3"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl6() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/aria2/aria3");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/aria2"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria3"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl7() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(!v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl8() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http:/aria.rednoah.com");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(!v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl9() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("h");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(!v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl10() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(!v);
|
|
|
|
}
|
|
|
|
|
2006-06-18 09:23:25 +00:00
|
|
|
void RequestTest::testSetUrl11() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://host?query/");
|
2007-11-11 04:25:56 +00:00
|
|
|
|
2006-06-18 09:23:25 +00:00
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("?query/"), req.getQuery());
|
2006-06-18 09:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl12() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://host?query");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("?query"), req.getQuery());
|
2006-06-18 09:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl13() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://host/?query");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("?query"), req.getQuery());
|
2006-06-18 09:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl14() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://host:8080/abc?query");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)8080, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("abc"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("?query"), req.getQuery());
|
2006-06-18 09:23:25 +00:00
|
|
|
}
|
|
|
|
|
2007-10-14 16:29:05 +00:00
|
|
|
void RequestTest::testSetUrl15()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
// 2 slashes after host name and dir
|
|
|
|
bool v = req.setUrl("http://host//dir1/dir2//file");
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/dir1/dir2"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("file"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2007-10-14 16:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl16()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
// 2 slashes before file
|
|
|
|
bool v = req.setUrl("http://host//file");
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("file"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2007-10-14 16:29:05 +00:00
|
|
|
}
|
|
|
|
|
2007-11-11 04:25:56 +00:00
|
|
|
void RequestTest::testSetUrl17()
|
|
|
|
{
|
|
|
|
Request req;
|
2008-10-08 16:06:27 +00:00
|
|
|
bool v = req.setUrl("http://host:80/file<with%2 %20space/file with space;param%?a=/?");
|
2007-11-11 04:25:56 +00:00
|
|
|
CPPUNIT_ASSERT(v);
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("host"), req.getHost());
|
2008-11-27 15:29:15 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/file%3Cwith%252%20%20space"), req.getDir());
|
2008-10-08 16:06:27 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("file%20with%20space;param%25"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("?a=/?"), req.getQuery());
|
2008-11-27 15:29:15 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://host:80/file%3Cwith%252%20%20space"
|
2008-10-08 16:06:27 +00:00
|
|
|
"/file%20with%20space;param%25?a=/?"),
|
2008-10-08 15:35:52 +00:00
|
|
|
req.getCurrentUrl());
|
2008-11-18 15:10:47 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://host:80/file<with%2 %20space"
|
|
|
|
"/file with space;param%?a=/?"),
|
|
|
|
req.getUrl());
|
2007-11-11 04:25:56 +00:00
|
|
|
}
|
|
|
|
|
2009-11-12 14:50:23 +00:00
|
|
|
void RequestTest::testSetUrl18() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://1/");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl19() {
|
|
|
|
Request req;
|
|
|
|
// No host
|
|
|
|
bool v = req.setUrl("http://user@");
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(!v);
|
2009-11-15 13:00:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testSetUrl20() {
|
|
|
|
Request req;
|
|
|
|
bool v;
|
|
|
|
// Invalid port
|
|
|
|
v = req.setUrl("http://localhost:65536");
|
|
|
|
CPPUNIT_ASSERT(!v);
|
|
|
|
v = req.setUrl("http://localhost:65535");
|
|
|
|
CPPUNIT_ASSERT(v);
|
|
|
|
v = req.setUrl("http://localhost:-80");
|
|
|
|
CPPUNIT_ASSERT(!v);
|
2009-11-12 14:50:23 +00:00
|
|
|
}
|
|
|
|
|
2006-02-17 13:35:04 +00:00
|
|
|
void RequestTest::testRedirectUrl() {
|
|
|
|
Request req;
|
2008-05-08 13:20:15 +00:00
|
|
|
req.supportsPersistentConnection(false);
|
2007-12-08 16:57:32 +00:00
|
|
|
req.setUrl("http://aria.rednoah.com:8080/aria2/index.html");
|
2006-02-17 13:35:04 +00:00
|
|
|
|
|
|
|
bool v2 = req.redirectUrl("http://aria.rednoah.co.jp/");
|
|
|
|
CPPUNIT_ASSERT(v2);
|
2008-05-08 13:20:15 +00:00
|
|
|
// persistent connection flag is set to be true after redirection
|
|
|
|
CPPUNIT_ASSERT(req.supportsPersistentConnection());
|
2006-02-17 13:35:04 +00:00
|
|
|
// url must be the same
|
2008-07-18 15:20:52 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com:8080/aria2/"
|
|
|
|
"index.html"),
|
2006-02-17 13:35:04 +00:00
|
|
|
req.getUrl());
|
|
|
|
// currentUrl must be updated
|
2008-07-18 15:20:52 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.co.jp/"),
|
|
|
|
req.getCurrentUrl());
|
2007-10-11 17:04:53 +00:00
|
|
|
// previousUrl must be "" when redirection
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPreviousUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.co.jp"), req.getHost());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)80, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2008-06-17 09:09:31 +00:00
|
|
|
// See redirect count is incremented.
|
|
|
|
CPPUNIT_ASSERT_EQUAL((unsigned int)1, req.getRedirectCount());
|
2008-07-18 15:20:52 +00:00
|
|
|
|
|
|
|
// Give abosulute path
|
|
|
|
CPPUNIT_ASSERT(req.redirectUrl("/abspath/to/file"));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.co.jp/abspath/to/file"),
|
|
|
|
req.getCurrentUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL((unsigned int)2, req.getRedirectCount());
|
|
|
|
|
|
|
|
// Give relative path
|
|
|
|
CPPUNIT_ASSERT(req.redirectUrl("relativepath/to/file"));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.co.jp/abspath/to/"
|
|
|
|
"relativepath/to/file"),
|
|
|
|
req.getCurrentUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL((unsigned int)3, req.getRedirectCount());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
2006-02-18 03:59:26 +00:00
|
|
|
void RequestTest::testRedirectUrl2() {
|
|
|
|
Request req;
|
2007-12-08 16:57:32 +00:00
|
|
|
req.setUrl("http://aria.rednoah.com/download.html");
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPreviousUrl());
|
2006-02-18 03:59:26 +00:00
|
|
|
req.setReferer("http://aria.rednoah.com/");
|
|
|
|
// previousUrl is updated when referer is specified
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/"), req.getPreviousUrl());
|
2007-12-08 16:57:32 +00:00
|
|
|
req.redirectUrl("http://aria.rednoah.com/403.html");
|
2006-02-18 03:59:26 +00:00
|
|
|
|
2007-10-11 17:04:53 +00:00
|
|
|
// previousUrl must be "" when redirection
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPreviousUrl());
|
2006-02-18 03:59:26 +00:00
|
|
|
// referer is unchagned
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/"), req.getReferer());
|
2006-02-18 03:59:26 +00:00
|
|
|
|
2007-12-08 16:57:32 +00:00
|
|
|
req.redirectUrl("http://aria.rednoah.com/error.html");
|
2006-02-18 03:59:26 +00:00
|
|
|
|
2007-10-11 17:04:53 +00:00
|
|
|
// previousUrl must be "" when redirection
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPreviousUrl());
|
2006-02-18 03:59:26 +00:00
|
|
|
}
|
|
|
|
|
2006-02-17 13:35:04 +00:00
|
|
|
void RequestTest::testResetUrl() {
|
|
|
|
Request req;
|
2007-12-08 16:57:32 +00:00
|
|
|
req.setUrl("http://aria.rednoah.com:8080/aria2/index.html");
|
2006-02-18 03:59:26 +00:00
|
|
|
req.setReferer("http://aria.rednoah.com:8080/");
|
2008-04-27 04:09:08 +00:00
|
|
|
req.redirectUrl("ftp://aria.rednoah.co.jp/index_en.html?view=wide");
|
2006-02-17 13:35:04 +00:00
|
|
|
|
|
|
|
bool v3 = req.resetUrl();
|
|
|
|
CPPUNIT_ASSERT(v3);
|
|
|
|
// currentUrl must equal to url
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com:8080/aria2/index.html"), req.getUrl());
|
2006-02-17 13:35:04 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(req.getUrl(), req.getCurrentUrl());
|
2006-02-18 03:59:26 +00:00
|
|
|
// previousUrl must equal to referer
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com:8080/"), req.getPreviousUrl());
|
2006-02-18 03:59:26 +00:00
|
|
|
// referer is unchanged
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com:8080/"), req.getReferer());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)8080, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria.rednoah.com"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/aria2"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("index.html"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-02-17 13:35:04 +00:00
|
|
|
}
|
|
|
|
|
2006-07-20 15:48:12 +00:00
|
|
|
void RequestTest::testInnerLink() {
|
|
|
|
Request req;
|
|
|
|
bool v = req.setUrl("http://aria.rednoah.com/index.html#download");
|
|
|
|
CPPUNIT_ASSERT(v);
|
2008-11-18 15:10:47 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/index.html"
|
|
|
|
"#download"),
|
2008-10-08 15:35:52 +00:00
|
|
|
req.getUrl());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/index.html"),
|
|
|
|
req.getCurrentUrl());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("index.html"), req.getFile());
|
2008-04-27 04:09:08 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getQuery());
|
2006-07-20 15:48:12 +00:00
|
|
|
}
|
|
|
|
|
2008-10-08 15:35:52 +00:00
|
|
|
void RequestTest::testInnerLinkInReferer() {
|
|
|
|
Request req;
|
|
|
|
req.setReferer("http://aria.rednoah.com/home.html#top");
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://aria.rednoah.com/home.html"),
|
|
|
|
req.getReferer());
|
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
void RequestTest::testSetUrl_zeroUsername()
|
2007-03-18 15:42:34 +00:00
|
|
|
{
|
|
|
|
Request req;
|
2007-10-30 12:48:01 +00:00
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://@localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)21, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/download"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2-1.0.0.tar.bz2"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPassword());
|
2007-10-30 12:48:01 +00:00
|
|
|
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://:@localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)21, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/download"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2-1.0.0.tar.bz2"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPassword());
|
2007-10-30 12:48:01 +00:00
|
|
|
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://:pass@localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)21, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/download"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2-1.0.0.tar.bz2"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("pass"), req.getPassword());
|
2007-03-18 15:42:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
void RequestTest::testSetUrl_username()
|
2007-03-18 15:42:34 +00:00
|
|
|
{
|
|
|
|
Request req;
|
2007-10-30 12:48:01 +00:00
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://aria2user@localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)21, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/download"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2-1.0.0.tar.bz2"), req.getFile());
|
2008-09-25 16:06:29 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2user"), req.getUsername());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPassword());
|
2007-03-18 15:42:34 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
void RequestTest::testSetUrl_usernamePassword()
|
2007-03-18 15:42:34 +00:00
|
|
|
{
|
|
|
|
Request req;
|
2007-10-30 12:48:01 +00:00
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://aria2user%40:aria2pass%40@localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp"), req.getProtocol());
|
2008-03-09 12:24:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)21, req.getPort());
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/download"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2-1.0.0.tar.bz2"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2user@"), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2pass@"), req.getPassword());
|
2007-10-30 12:48:01 +00:00
|
|
|
|
|
|
|
// make sure that after new url is set, username and password are updated.
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("ftp://localhost/download/aria2-1.0.0.tar.bz2"));
|
2008-02-08 15:53:45 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getUsername());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), req.getPassword());
|
2007-10-30 12:48:01 +00:00
|
|
|
|
2007-03-18 15:42:34 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
2008-12-15 15:38:07 +00:00
|
|
|
void RequestTest::testSetUrl_supportsPersistentConnection()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://host/file"));
|
|
|
|
req.supportsPersistentConnection(false);
|
|
|
|
CPPUNIT_ASSERT(!req.supportsPersistentConnection());
|
|
|
|
req.setUrl("http://host/file");
|
|
|
|
CPPUNIT_ASSERT(req.supportsPersistentConnection());
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testResetUrl_supportsPersistentConnection()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://host/file"));
|
|
|
|
req.supportsPersistentConnection(false);
|
|
|
|
CPPUNIT_ASSERT(!req.supportsPersistentConnection());
|
|
|
|
req.resetUrl();
|
|
|
|
CPPUNIT_ASSERT(req.supportsPersistentConnection());
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testRedirectUrl_supportsPersistentConnection()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://host/file"));
|
|
|
|
req.supportsPersistentConnection(false);
|
|
|
|
CPPUNIT_ASSERT(!req.supportsPersistentConnection());
|
|
|
|
req.redirectUrl("http://host/file");
|
|
|
|
CPPUNIT_ASSERT(req.supportsPersistentConnection());
|
|
|
|
}
|
|
|
|
|
2009-08-30 15:05:30 +00:00
|
|
|
void RequestTest::testSetUrl_ipv6()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
CPPUNIT_ASSERT(!req.setUrl("http://[::1"));
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://[::1]"));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("::1"), req.getHost());
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://[::1]:8000/dir/file"));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("::1"), req.getHost());
|
|
|
|
CPPUNIT_ASSERT_EQUAL((uint16_t)8000, req.getPort());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("/dir"), req.getDir());
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("file"), req.getFile());
|
|
|
|
CPPUNIT_ASSERT(req.isIPv6LiteralAddress());
|
|
|
|
}
|
|
|
|
|
|
|
|
void RequestTest::testGetURIHost()
|
|
|
|
{
|
|
|
|
Request req;
|
|
|
|
CPPUNIT_ASSERT(req.setUrl("http://[::1]"));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("[::1]"), req.getURIHost());
|
|
|
|
}
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
} // namespace aria2
|