mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2008-02-11 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Adding handling of DHT error message. Just log error message and throw exception. * src/DHTMessageFactoryImpl.cc * test/DHTMessageFactoryImplTest.cc
This commit is contained in:
parent
34e6a1dc9a
commit
413cbe192b
3 changed files with 56 additions and 3 deletions
|
@ -33,6 +33,7 @@ class DHTMessageFactoryImplTest:public CppUnit::TestFixture {
|
|||
CPPUNIT_TEST(testCreateGetPeersReplyMessage_values);
|
||||
CPPUNIT_TEST(testCreateAnnouncePeerMessage);
|
||||
CPPUNIT_TEST(testCreateAnnouncePeerReplyMessage);
|
||||
CPPUNIT_TEST(testReceivedErrorMessage);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
public:
|
||||
DHTMessageFactoryImplTest():factory(0), routingTable(0), localNode(0) {}
|
||||
|
@ -72,6 +73,7 @@ public:
|
|||
void testCreateGetPeersReplyMessage_values();
|
||||
void testCreateAnnouncePeerMessage();
|
||||
void testCreateAnnouncePeerReplyMessage();
|
||||
void testReceivedErrorMessage();
|
||||
};
|
||||
|
||||
|
||||
|
@ -362,4 +364,26 @@ void DHTMessageFactoryImplTest::testCreateAnnouncePeerReplyMessage()
|
|||
Util::toHex(m->getTransactionID()));
|
||||
}
|
||||
|
||||
void DHTMessageFactoryImplTest::testReceivedErrorMessage()
|
||||
{
|
||||
SharedHandle<Dictionary> d = new Dictionary();
|
||||
d->put("t", new Data(transactionID, DHT_TRANSACTION_ID_LENGTH));
|
||||
d->put("y", new Data("e"));
|
||||
List* l = new List();
|
||||
l->add(new Data("404"));
|
||||
l->add(new Data("Not found"));
|
||||
d->put("e", l);
|
||||
|
||||
SharedHandle<DHTNode> remoteNode = new DHTNode(remoteNodeID);
|
||||
remoteNode->setIPAddress("192.168.0.1");
|
||||
remoteNode->setPort(6881);
|
||||
|
||||
try {
|
||||
factory->createResponseMessage("announce_peer", d.get(), remoteNode);
|
||||
CPPUNIT_FAIL("exception must be thrown.");
|
||||
} catch(RecoverableException* e) {
|
||||
std::cerr << *e << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue