mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2008-08-09 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Implemented ServerStatMan::load(...) function and its test case. * src/ServerStat.cc * src/ServerStat.h * src/ServerStatMan.cc * test/ServerStatManTest.cc * test/ServerStatTest.cc
This commit is contained in:
parent
8208e538ba
commit
d85014b937
8 changed files with 195 additions and 9 deletions
75
test/ServerStatTest.cc
Normal file
75
test/ServerStatTest.cc
Normal file
|
@ -0,0 +1,75 @@
|
|||
#include "ServerStat.h"
|
||||
#include "Exception.h"
|
||||
#include "Util.h"
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
class ServerStatTest:public CppUnit::TestFixture {
|
||||
|
||||
CPPUNIT_TEST_SUITE(ServerStatTest);
|
||||
CPPUNIT_TEST(testSetStatus);
|
||||
CPPUNIT_TEST(testOperatorOstream);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
public:
|
||||
void setUp() {}
|
||||
|
||||
void tearDown() {}
|
||||
|
||||
void testSetStatus();
|
||||
void testOperatorOstream();
|
||||
};
|
||||
|
||||
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION(ServerStatTest);
|
||||
|
||||
void ServerStatTest::testSetStatus()
|
||||
{
|
||||
ServerStat ss("localhost", "http");
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::OK, ss.getStatus());
|
||||
ss.setStatus("ERROR");
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::ERROR, ss.getStatus());
|
||||
// See undefined status string will not change current status.
|
||||
ss.setStatus("__BADSTATUS");
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::ERROR, ss.getStatus());
|
||||
ss.setStatus("OK");
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::OK, ss.getStatus());
|
||||
// See undefined status string will not change current status.
|
||||
ss.setStatus("__BADSTATUS");
|
||||
CPPUNIT_ASSERT_EQUAL(ServerStat::OK, ss.getStatus());
|
||||
}
|
||||
|
||||
void ServerStatTest::testOperatorOstream()
|
||||
{
|
||||
ServerStat localhost_http("localhost", "http");
|
||||
localhost_http.setDownloadSpeed(90000);
|
||||
localhost_http.setLastUpdated(Time(1000));
|
||||
|
||||
std::stringstream ss;
|
||||
|
||||
ss << localhost_http;
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL
|
||||
(std::string
|
||||
("host=localhost, protocol=http, dl_speed=90000, last_updated=1000, status=OK"),
|
||||
ss.str());
|
||||
|
||||
ss.str("");
|
||||
|
||||
ServerStat localhost_ftp("localhost", "ftp");
|
||||
localhost_ftp.setDownloadSpeed(10000);
|
||||
localhost_ftp.setLastUpdated(Time(1210000000));
|
||||
localhost_ftp.setStatus("ERROR");
|
||||
|
||||
ss << localhost_ftp;
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL
|
||||
(std::string
|
||||
("host=localhost, protocol=ftp, dl_speed=10000, last_updated=1210000000, status=ERROR"),
|
||||
ss.str());
|
||||
|
||||
}
|
||||
|
||||
} // namespace aria2
|
Loading…
Add table
Add a link
Reference in a new issue