mirror of
https://github.com/aria2/aria2.git
synced 2024-11-26 23:50:35 +00:00
103 lines
3.0 KiB
C++
103 lines
3.0 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:
|
|
std::shared_ptr<DHTNode> localNode_;
|
|
std::shared_ptr<DHTNode> remoteNode_;
|
|
|
|
void setUp()
|
|
{
|
|
localNode_ = std::make_shared<DHTNode>();
|
|
remoteNode_ = std::make_shared<DHTNode>();
|
|
}
|
|
|
|
void tearDown() {}
|
|
|
|
void testGetBencodedMessage();
|
|
void testDoReceivedAction();
|
|
|
|
class MockDHTMessageFactory2 : public MockDHTMessageFactory {
|
|
public:
|
|
virtual std::unique_ptr<DHTPingReplyMessage>
|
|
createPingReplyMessage(const std::shared_ptr<DHTNode>& remoteNode,
|
|
const unsigned char* remoteNodeID,
|
|
const std::string& transactionID) CXX11_OVERRIDE
|
|
{
|
|
unsigned char id[DHT_ID_LENGTH];
|
|
std::fill(std::begin(id), std::end(id), '0');
|
|
return make_unique<DHTPingReplyMessage>(localNode_, remoteNode, id,
|
|
transactionID);
|
|
}
|
|
};
|
|
};
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTPingMessageTest);
|
|
|
|
void DHTPingMessageTest::testGetBencodedMessage()
|
|
{
|
|
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");
|
|
auto aDict = Dict::g();
|
|
aDict->put("id", String::g(localNode_->getID(), DHT_ID_LENGTH));
|
|
dict.put("a", std::move(aDict));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(bencode2::encode(&dict), msgbody);
|
|
}
|
|
|
|
void DHTPingMessageTest::testDoReceivedAction()
|
|
{
|
|
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 = dynamic_cast<DHTPingReplyMessage*>(
|
|
dispatcher.messageQueue_[0].message_.get());
|
|
CPPUNIT_ASSERT(*localNode_ == *m->getLocalNode());
|
|
CPPUNIT_ASSERT(*remoteNode_ == *m->getRemoteNode());
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ping"), m->getMessageType());
|
|
CPPUNIT_ASSERT_EQUAL(msg.getTransactionID(), m->getTransactionID());
|
|
}
|
|
|
|
} // namespace aria2
|