mirror of
https://github.com/aria2/aria2.git
synced 2025-01-08 19:11:47 +00:00
197 lines
6.5 KiB
C++
197 lines
6.5 KiB
C++
#include "DefaultExtensionMessageFactory.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "Peer.h"
|
|
#include "MockPeerStorage.h"
|
|
#include "bittorrent_helper.h"
|
|
#include "HandshakeExtensionMessage.h"
|
|
#include "UTPexExtensionMessage.h"
|
|
#include "Exception.h"
|
|
#include "FileEntry.h"
|
|
#include "ExtensionMessageRegistry.h"
|
|
#include "DownloadContext.h"
|
|
#include "MockBtMessageDispatcher.h"
|
|
#include "MockBtMessageFactory.h"
|
|
#include "DownloadContext.h"
|
|
#include "BtHandshakeMessage.h"
|
|
#include "UTMetadataRequestExtensionMessage.h"
|
|
#include "UTMetadataDataExtensionMessage.h"
|
|
#include "UTMetadataRejectExtensionMessage.h"
|
|
#include "BtRuntime.h"
|
|
#include "PieceStorage.h"
|
|
#include "RequestGroup.h"
|
|
#include "Option.h"
|
|
|
|
namespace aria2 {
|
|
|
|
class DefaultExtensionMessageFactoryTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DefaultExtensionMessageFactoryTest);
|
|
CPPUNIT_TEST(testCreateMessage_unknown);
|
|
CPPUNIT_TEST(testCreateMessage_Handshake);
|
|
CPPUNIT_TEST(testCreateMessage_UTPex);
|
|
CPPUNIT_TEST(testCreateMessage_UTMetadataRequest);
|
|
CPPUNIT_TEST(testCreateMessage_UTMetadataData);
|
|
CPPUNIT_TEST(testCreateMessage_UTMetadataReject);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
private:
|
|
std::shared_ptr<MockPeerStorage> peerStorage_;
|
|
std::shared_ptr<Peer> peer_;
|
|
std::shared_ptr<DefaultExtensionMessageFactory> factory_;
|
|
std::shared_ptr<ExtensionMessageRegistry> registry_;
|
|
std::shared_ptr<MockBtMessageDispatcher> dispatcher_;
|
|
std::shared_ptr<MockBtMessageFactory> messageFactory_;
|
|
std::shared_ptr<DownloadContext> dctx_;
|
|
std::shared_ptr<RequestGroup> requestGroup_;
|
|
public:
|
|
void setUp()
|
|
{
|
|
peerStorage_.reset(new MockPeerStorage());
|
|
|
|
peer_.reset(new Peer("192.168.0.1", 6969));
|
|
peer_->allocateSessionResource(1024, 1024*1024);
|
|
peer_->setExtension(ExtensionMessageRegistry::UT_PEX, 1);
|
|
|
|
registry_.reset(new ExtensionMessageRegistry());
|
|
|
|
dispatcher_.reset(new MockBtMessageDispatcher());
|
|
|
|
messageFactory_.reset(new MockBtMessageFactory());
|
|
|
|
dctx_.reset(new DownloadContext());
|
|
|
|
std::shared_ptr<Option> option(new Option());
|
|
requestGroup_.reset(new RequestGroup(GroupId::create(), option));
|
|
requestGroup_->setDownloadContext(dctx_);
|
|
|
|
factory_.reset(new DefaultExtensionMessageFactory());
|
|
factory_->setPeerStorage(peerStorage_);
|
|
factory_->setPeer(peer_);
|
|
factory_->setExtensionMessageRegistry(registry_);
|
|
factory_->setBtMessageDispatcher(dispatcher_.get());
|
|
factory_->setBtMessageFactory(messageFactory_.get());
|
|
factory_->setDownloadContext(dctx_);
|
|
}
|
|
|
|
std::string getExtensionMessageID(int key)
|
|
{
|
|
unsigned char id[1] = { registry_->getExtensionMessageID(key) };
|
|
return std::string(&id[0], &id[1]);
|
|
}
|
|
|
|
template<typename T>
|
|
std::shared_ptr<T> createMessage(const std::string& data)
|
|
{
|
|
return std::dynamic_pointer_cast<T>
|
|
(factory_->createMessage
|
|
(reinterpret_cast<const unsigned char*>(data.c_str()), data.size()));
|
|
}
|
|
|
|
void testCreateMessage_unknown();
|
|
void testCreateMessage_Handshake();
|
|
void testCreateMessage_UTPex();
|
|
void testCreateMessage_UTMetadataRequest();
|
|
void testCreateMessage_UTMetadataData();
|
|
void testCreateMessage_UTMetadataReject();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DefaultExtensionMessageFactoryTest);
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_unknown()
|
|
{
|
|
peer_->setExtension(ExtensionMessageRegistry::UT_PEX, 255);
|
|
|
|
unsigned char id[1] = { 255 };
|
|
|
|
std::string data = std::string(&id[0], &id[1]);
|
|
try {
|
|
// this test fails because localhost doesn't have extension id = 255.
|
|
factory_->createMessage
|
|
(reinterpret_cast<const unsigned char*>(data.c_str()), data.size());
|
|
CPPUNIT_FAIL("exception must be thrown.");
|
|
} catch(Exception& e) {
|
|
std::cerr << e.stackTrace() << std::endl;
|
|
}
|
|
}
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_Handshake()
|
|
{
|
|
char id[1] = { 0 };
|
|
|
|
std::string data = std::string(&id[0], &id[1])+"d1:v5:aria2e";
|
|
std::shared_ptr<HandshakeExtensionMessage> m =
|
|
createMessage<HandshakeExtensionMessage>(data);
|
|
CPPUNIT_ASSERT_EQUAL(std::string("aria2"), m->getClientVersion());
|
|
}
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_UTPex()
|
|
{
|
|
unsigned char c1[COMPACT_LEN_IPV6];
|
|
unsigned char c2[COMPACT_LEN_IPV6];
|
|
unsigned char c3[COMPACT_LEN_IPV6];
|
|
unsigned char c4[COMPACT_LEN_IPV6];
|
|
bittorrent::packcompact(c1, "192.168.0.1", 6881);
|
|
bittorrent::packcompact(c2, "10.1.1.2", 9999);
|
|
bittorrent::packcompact(c3, "192.168.0.2", 6882);
|
|
bittorrent::packcompact(c4, "10.1.1.3",10000);
|
|
|
|
registry_->setExtensionMessageID(ExtensionMessageRegistry::UT_PEX, 1);
|
|
|
|
std::string data = getExtensionMessageID(ExtensionMessageRegistry::UT_PEX)
|
|
+"d5:added12:"+
|
|
std::string(&c1[0], &c1[6])+std::string(&c2[0], &c2[6])+
|
|
"7:added.f2:207:dropped12:"+
|
|
std::string(&c3[0], &c3[6])+std::string(&c4[0], &c4[6])+
|
|
"e";
|
|
|
|
std::shared_ptr<UTPexExtensionMessage> m =
|
|
createMessage<UTPexExtensionMessage>(data);
|
|
CPPUNIT_ASSERT_EQUAL(registry_->getExtensionMessageID
|
|
(ExtensionMessageRegistry::UT_PEX),
|
|
m->getExtensionMessageID());
|
|
}
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_UTMetadataRequest()
|
|
{
|
|
registry_->setExtensionMessageID(ExtensionMessageRegistry::UT_METADATA, 1);
|
|
|
|
std::string data = getExtensionMessageID
|
|
(ExtensionMessageRegistry::UT_METADATA)+
|
|
"d8:msg_typei0e5:piecei1ee";
|
|
std::shared_ptr<UTMetadataRequestExtensionMessage> m =
|
|
createMessage<UTMetadataRequestExtensionMessage>(data);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, m->getIndex());
|
|
}
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_UTMetadataData()
|
|
{
|
|
registry_->setExtensionMessageID(ExtensionMessageRegistry::UT_METADATA, 1);
|
|
|
|
std::string data = getExtensionMessageID
|
|
(ExtensionMessageRegistry::UT_METADATA)+
|
|
"d8:msg_typei1e5:piecei1e10:total_sizei300ee0000000000";
|
|
std::shared_ptr<UTMetadataDataExtensionMessage> m =
|
|
createMessage<UTMetadataDataExtensionMessage>(data);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, m->getIndex());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)300, m->getTotalSize());
|
|
CPPUNIT_ASSERT_EQUAL(std::string(10, '0'), m->getData());
|
|
}
|
|
|
|
void DefaultExtensionMessageFactoryTest::testCreateMessage_UTMetadataReject()
|
|
{
|
|
registry_->setExtensionMessageID(ExtensionMessageRegistry::UT_METADATA, 1);
|
|
|
|
std::string data = getExtensionMessageID
|
|
(ExtensionMessageRegistry::UT_METADATA)+
|
|
"d8:msg_typei2e5:piecei1ee";
|
|
std::shared_ptr<UTMetadataRejectExtensionMessage> m =
|
|
createMessage<UTMetadataRejectExtensionMessage>(data);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, m->getIndex());
|
|
}
|
|
|
|
} // namespace aria2
|