mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
2010-11-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Removed SharedHandle::isNull(). Instead we added operator* and operator unspecified_bool_type. Removed use of WeakHandle and replaced with raw pointer.
This commit is contained in:
parent
f6f5a7e5ee
commit
93e5dbed32
181 changed files with 911 additions and 876 deletions
|
@ -47,13 +47,13 @@ void ServerStatManTest::testAddAndFind()
|
|||
|
||||
{
|
||||
SharedHandle<ServerStat> r = ssm.find("localhost", "http");
|
||||
CPPUNIT_ASSERT(!r.isNull());
|
||||
CPPUNIT_ASSERT(r);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), r->getHostname());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("http"), r->getProtocol());
|
||||
}
|
||||
{
|
||||
SharedHandle<ServerStat> r = ssm.find("mirror", "ftp");
|
||||
CPPUNIT_ASSERT(r.isNull());
|
||||
CPPUNIT_ASSERT(!r);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -122,7 +122,7 @@ void ServerStatManTest::testLoad()
|
|||
CPPUNIT_ASSERT(ssm.load(ss));
|
||||
|
||||
SharedHandle<ServerStat> localhost_http = ssm.find("localhost", "http");
|
||||
CPPUNIT_ASSERT(!localhost_http.isNull());
|
||||
CPPUNIT_ASSERT(localhost_http);
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), localhost_http->getHostname());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("http"), localhost_http->getProtocol());
|
||||
CPPUNIT_ASSERT_EQUAL(static_cast<unsigned int>(25000),
|
||||
|
@ -138,7 +138,7 @@ void ServerStatManTest::testLoad()
|
|||
CPPUNIT_ASSERT_EQUAL(ServerStat::OK, localhost_http->getStatus());
|
||||
|
||||
SharedHandle<ServerStat> mirror = ssm.find("mirror", "http");
|
||||
CPPUNIT_ASSERT(!mirror.isNull());
|
||||
CPPUNIT_ASSERT(mirror);
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::ERROR, mirror->getStatus());
|
||||
}
|
||||
|
||||
|
@ -163,9 +163,9 @@ void ServerStatManTest::testRemoveStaleServerStat()
|
|||
|
||||
ssm.removeStaleServerStat(24*60*60);
|
||||
|
||||
CPPUNIT_ASSERT(!ssm.find("localhost", "http").isNull());
|
||||
CPPUNIT_ASSERT(ssm.find("localhost", "ftp").isNull());
|
||||
CPPUNIT_ASSERT(ssm.find("mirror", "http").isNull());
|
||||
CPPUNIT_ASSERT(ssm.find("localhost", "http"));
|
||||
CPPUNIT_ASSERT(!ssm.find("localhost", "ftp"));
|
||||
CPPUNIT_ASSERT(!ssm.find("mirror", "http"));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue