mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Rewritten SharedHandle. Now copy constructor taking raw pointer has keyword explicit and SharedHandle's default constructor initializes its internal obj to null, old implementation initializes it using obj's default constructor. To assign null, write SharedHandle<T> x(...); x.reset(); TODO: test/SharedHandleTest.cc needs more tests. * src/SharedHandle.h
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
#include "DHTMessageTrackerEntry.h"
|
|
#include "Exception.h"
|
|
#include "Util.h"
|
|
#include "MockDHTMessage.h"
|
|
#include "DHTNode.h"
|
|
#include "MetaEntry.h"
|
|
#include "DHTMessageCallback.h"
|
|
#include <iostream>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace aria2 {
|
|
|
|
class DHTMessageTrackerEntryTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DHTMessageTrackerEntryTest);
|
|
CPPUNIT_TEST(testMatch);
|
|
CPPUNIT_TEST(testHandleTimeout);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void setUp() {}
|
|
|
|
void tearDown() {}
|
|
|
|
void testMatch();
|
|
|
|
void testHandleTimeout();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTMessageTrackerEntryTest);
|
|
|
|
void DHTMessageTrackerEntryTest::testMatch()
|
|
{
|
|
SharedHandle<DHTNode> localNode(new DHTNode());
|
|
try {
|
|
SharedHandle<DHTNode> node1(new DHTNode());
|
|
SharedHandle<MockDHTMessage> msg1(new MockDHTMessage(localNode, node1));
|
|
SharedHandle<DHTNode> node2(new DHTNode());
|
|
SharedHandle<MockDHTMessage> msg2(new MockDHTMessage(localNode, node2));
|
|
|
|
DHTMessageTrackerEntry entry(msg1, 30);
|
|
|
|
CPPUNIT_ASSERT(entry.match(msg1->getTransactionID(),
|
|
msg1->getRemoteNode()->getIPAddress(),
|
|
msg1->getRemoteNode()->getPort()));
|
|
CPPUNIT_ASSERT(!entry.match(msg2->getTransactionID(),
|
|
msg2->getRemoteNode()->getIPAddress(),
|
|
msg2->getRemoteNode()->getPort()));
|
|
} catch(Exception* e) {
|
|
std::cerr << *e << std::endl;
|
|
std::string msg = e->getMsg();
|
|
delete e;
|
|
CPPUNIT_FAIL(msg);
|
|
}
|
|
}
|
|
|
|
void DHTMessageTrackerEntryTest::testHandleTimeout()
|
|
{
|
|
}
|
|
|
|
} // namespace aria2
|