mirror of
https://github.com/aria2/aria2.git
synced 2025-01-08 19:11:47 +00:00
101 lines
2.9 KiB
C++
101 lines
2.9 KiB
C++
#include "DHTPingMessage.h"
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "DHTNode.h"
|
|
#include "Exception.h"
|
|
#include "util.h"
|
|
#include "MockDHTMessageFactory.h"
|
|
#include "MockDHTMessageDispatcher.h"
|
|
#include "MockDHTMessage.h"
|
|
#include "bencode2.h"
|
|
|
|
namespace aria2 {
|
|
|
|
class DHTPingMessageTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DHTPingMessageTest);
|
|
CPPUNIT_TEST(testGetBencodedMessage);
|
|
CPPUNIT_TEST(testDoReceivedAction);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void setUp() {}
|
|
|
|
void tearDown() {}
|
|
|
|
void testGetBencodedMessage();
|
|
void testDoReceivedAction();
|
|
|
|
class MockDHTMessageFactory2:public MockDHTMessageFactory {
|
|
public:
|
|
virtual std::shared_ptr<DHTResponseMessage>
|
|
createPingReplyMessage(const std::shared_ptr<DHTNode>& remoteNode,
|
|
const unsigned char* remoteNodeID,
|
|
const std::string& transactionID)
|
|
{
|
|
return std::shared_ptr<MockDHTResponseMessage>
|
|
(new MockDHTResponseMessage(localNode_, remoteNode, "ping_reply",
|
|
transactionID));
|
|
}
|
|
};
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTPingMessageTest);
|
|
|
|
void DHTPingMessageTest::testGetBencodedMessage()
|
|
{
|
|
std::shared_ptr<DHTNode> localNode(new DHTNode());
|
|
std::shared_ptr<DHTNode> remoteNode(new DHTNode());
|
|
|
|
unsigned char tid[DHT_TRANSACTION_ID_LENGTH];
|
|
util::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH);
|
|
std::string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]);
|
|
|
|
DHTPingMessage msg(localNode, remoteNode, transactionID);
|
|
msg.setVersion("A200");
|
|
|
|
std::string msgbody = msg.getBencodedMessage();
|
|
|
|
Dict dict;
|
|
dict.put("t", transactionID);
|
|
dict.put("v", "A200");
|
|
dict.put("y", "q");
|
|
dict.put("q", "ping");
|
|
std::shared_ptr<Dict> aDict = Dict::g();
|
|
aDict->put("id", String::g(localNode->getID(), DHT_ID_LENGTH));
|
|
dict.put("a", aDict);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(bencode2::encode(&dict), msgbody);
|
|
}
|
|
|
|
void DHTPingMessageTest::testDoReceivedAction()
|
|
{
|
|
std::shared_ptr<DHTNode> localNode(new DHTNode());
|
|
std::shared_ptr<DHTNode> remoteNode(new DHTNode());
|
|
|
|
unsigned char tid[DHT_TRANSACTION_ID_LENGTH];
|
|
util::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH);
|
|
std::string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]);
|
|
|
|
MockDHTMessageDispatcher dispatcher;
|
|
MockDHTMessageFactory2 factory;
|
|
factory.setLocalNode(localNode);
|
|
|
|
DHTPingMessage msg(localNode, remoteNode, transactionID);
|
|
msg.setMessageDispatcher(&dispatcher);
|
|
msg.setMessageFactory(&factory);
|
|
|
|
msg.doReceivedAction();
|
|
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, dispatcher.messageQueue_.size());
|
|
auto m = std::dynamic_pointer_cast<MockDHTResponseMessage>
|
|
(dispatcher.messageQueue_[0].message_);
|
|
CPPUNIT_ASSERT(*localNode == *m->getLocalNode());
|
|
CPPUNIT_ASSERT(*remoteNode == *m->getRemoteNode());
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ping_reply"), m->getMessageType());
|
|
CPPUNIT_ASSERT_EQUAL(msg.getTransactionID(), m->getTransactionID());
|
|
}
|
|
|
|
} // namespace aria2
|