mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Made BtRegistry non-static object. Now DownloadEngine has a reference to its object. * src/AbstractBtMessage.cc * src/ActivePeerConnectionCommand.cc * src/ActivePeerConnectionCommand.h * src/BtContextAwareCommand.cc * src/BtContextAwareCommand.h * src/BtExtendedMessage.cc * src/BtExtendedMessage.h * src/BtInterestedMessage.cc * src/BtInterestedMessage.h * src/BtNotInterestedMessage.cc * src/BtNotInterestedMessage.h * src/BtRegistry.cc * src/BtRegistry.h * src/BtSeederStateChoke.cc * src/BtSetup.cc * src/DHTGetPeersCommand.cc * src/DHTGetPeersCommand.h * src/DHTPeerAnnounceEntry.cc * src/DHTPeerAnnounceEntry.h * src/DHTPeerAnnounceStorage.cc * src/DHTPeerAnnounceStorage.h * src/DHTPeerLookupTask.cc * src/DHTPeerLookupTask.h * src/DHTSetup.cc * src/DHTSetup.h * src/DHTTaskFactory.h * src/DHTTaskFactoryImpl.cc * src/DHTTaskFactoryImpl.h * src/DefaultBtAnnounce.cc * src/DefaultBtInteractive.cc * src/DefaultBtInteractive.h * src/DefaultBtMessageDispatcher.cc * src/DefaultBtMessageDispatcher.h * src/DefaultBtMessageFactory.cc * src/DefaultBtMessageFactory.h * src/DefaultBtMessageReceiver.cc * src/DefaultBtProgressInfoFile.cc * src/DefaultBtProgressInfoFile.h * src/DefaultBtRequestFactory.cc * src/DefaultBtRequestFactory.h * src/DefaultExtensionMessageFactory.cc * src/DefaultExtensionMessageFactory.h * src/DefaultPeerStorage.cc * src/DefaultPeerStorage.h * src/DownloadEngine.cc * src/DownloadEngine.h * src/InitiatorMSEHandshakeCommand.cc * src/InitiatorMSEHandshakeCommand.h * src/MSEHandshake.cc * src/MSEHandshake.h * src/Makefile.am * src/Makefile.in * src/PeerChokeCommand.cc * src/PeerChokeCommand.h * src/PeerInitiateConnectionCommand.cc * src/PeerInitiateConnectionCommand.h * src/PeerInteractionCommand.cc * src/PeerInteractionCommand.h * src/PeerObject.h * src/PeerReceiveHandshakeCommand.cc * src/PeerReceiveHandshakeCommand.h * src/ReceiverMSEHandshakeCommand.cc * src/RequestGroup.cc * src/RequestGroup.h * src/RequestGroupMan.cc * src/RequestGroupMan.h * src/SeedCheckCommand.cc * src/SeedCheckCommand.h * src/ShareRatioSeedCriteria.h * src/SimpleBtMessage.cc * src/TrackerWatcherCommand.cc * src/TrackerWatcherCommand.h * src/UTPexExtensionMessage.cc * src/UTPexExtensionMessage.h * test/BtCancelMessageTest.cc * test/BtChokeMessageTest.cc * test/BtExtendedMessageTest.cc * test/BtInterestedMessageTest.cc * test/BtNotInterestedMessageTest.cc * test/BtPieceMessageTest.cc * test/BtPortMessageTest.cc * test/BtRegistryTest.cc * test/BtRejectMessageTest.cc * test/BtRequestMessageTest.cc * test/DHTPeerAnnounceEntryTest.cc * test/DHTPeerAnnounceStorageTest.cc * test/DefaultBtMessageDispatcherTest.cc * test/DefaultBtMessageFactoryTest.cc * test/DefaultBtProgressInfoFileTest.cc * test/DefaultBtRequestFactoryTest.cc * test/DefaultExtensionMessageFactoryTest.cc * test/MSEHandshakeTest.cc * test/MockDHTTaskFactory.h * test/ShareRatioSeedCriteriaTest.cc * test/UTPexExtensionMessageTest.cc
306 lines
10 KiB
C++
306 lines
10 KiB
C++
#include "BtPieceMessage.h"
|
|
|
|
#include <cstring>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "PeerMessageUtil.h"
|
|
#include "MockBtContext.h"
|
|
#include "MockBtMessage.h"
|
|
#include "MockBtMessageFactory.h"
|
|
#include "MockBtMessageDispatcher.h"
|
|
#include "BtChokingEvent.h"
|
|
#include "BtCancelSendingPieceEvent.h"
|
|
#include "FileEntry.h"
|
|
#include "Peer.h"
|
|
#include "Piece.h"
|
|
#include "BtHandshakeMessage.h"
|
|
|
|
namespace aria2 {
|
|
|
|
class BtPieceMessageTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(BtPieceMessageTest);
|
|
CPPUNIT_TEST(testCreate);
|
|
CPPUNIT_TEST(testGetMessageHeader);
|
|
CPPUNIT_TEST(testChokingEvent);
|
|
CPPUNIT_TEST(testChokingEvent_allowedFastEnabled);
|
|
CPPUNIT_TEST(testChokingEvent_inAmAllowedIndexSet);
|
|
CPPUNIT_TEST(testChokingEvent_invalidate);
|
|
CPPUNIT_TEST(testChokingEvent_sendingInProgress);
|
|
CPPUNIT_TEST(testCancelSendingPieceEvent);
|
|
CPPUNIT_TEST(testCancelSendingPieceEvent_noMatch);
|
|
CPPUNIT_TEST(testCancelSendingPieceEvent_allowedFastEnabled);
|
|
CPPUNIT_TEST(testCancelSendingPieceEvent_invalidate);
|
|
CPPUNIT_TEST(testCancelSendingPieceEvent_sendingInProgress);
|
|
CPPUNIT_TEST(testToString);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void testCreate();
|
|
void testGetMessageHeader();
|
|
void testChokingEvent();
|
|
void testChokingEvent_allowedFastEnabled();
|
|
void testChokingEvent_inAmAllowedIndexSet();
|
|
void testChokingEvent_invalidate();
|
|
void testChokingEvent_sendingInProgress();
|
|
void testCancelSendingPieceEvent();
|
|
void testCancelSendingPieceEvent_noMatch();
|
|
void testCancelSendingPieceEvent_allowedFastEnabled();
|
|
void testCancelSendingPieceEvent_invalidate();
|
|
void testCancelSendingPieceEvent_sendingInProgress();
|
|
void testToString();
|
|
|
|
class MockBtMessage2 : public MockBtMessage {
|
|
public:
|
|
size_t index;
|
|
uint32_t begin;
|
|
size_t length;
|
|
public:
|
|
MockBtMessage2(size_t index, uint32_t begin, size_t length):index(index), begin(begin), length(length) {}
|
|
|
|
};
|
|
|
|
class MockBtMessageFactory2 : public MockBtMessageFactory {
|
|
public:
|
|
virtual SharedHandle<BtMessage>
|
|
createRejectMessage(size_t index,
|
|
uint32_t begin,
|
|
size_t length) {
|
|
SharedHandle<MockBtMessage2> msg(new MockBtMessage2(index, begin, length));
|
|
return msg;
|
|
}
|
|
};
|
|
|
|
SharedHandle<MockBtContext> _btContext;
|
|
SharedHandle<MockBtMessageDispatcher> btMessageDispatcher;
|
|
SharedHandle<MockBtMessageFactory> _btMessageFactory;
|
|
SharedHandle<Peer> peer;
|
|
SharedHandle<BtPieceMessage> msg;
|
|
|
|
void setUp() {
|
|
_btContext.reset(new MockBtContext());
|
|
_btContext->setInfoHash((const unsigned char*)"12345678901234567890");
|
|
_btContext->setPieceLength(16*1024);
|
|
_btContext->setTotalLength(256*1024);
|
|
|
|
peer.reset(new Peer("host", 6969));
|
|
peer->allocateSessionResource(_btContext->getPieceLength(),
|
|
_btContext->getTotalLength());
|
|
|
|
btMessageDispatcher.reset(new MockBtMessageDispatcher());
|
|
_btMessageFactory.reset(new MockBtMessageFactory2());
|
|
|
|
msg.reset(new BtPieceMessage());
|
|
msg->setIndex(1);
|
|
msg->setBegin(1024);
|
|
msg->setBlockLength(16*1024);
|
|
msg->setBtContext(_btContext);
|
|
msg->setPeer(peer);
|
|
msg->setBtMessageDispatcher(btMessageDispatcher);
|
|
msg->setBtMessageFactory(_btMessageFactory);
|
|
}
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(BtPieceMessageTest);
|
|
|
|
void BtPieceMessageTest::testCreate() {
|
|
unsigned char msg[13+2];
|
|
unsigned char data[2];
|
|
memset(data, 0xff, sizeof(data));
|
|
PeerMessageUtil::createPeerMessageString(msg, sizeof(msg), 11, 7);
|
|
PeerMessageUtil::setIntParam(&msg[5], 12345);
|
|
PeerMessageUtil::setIntParam(&msg[9], 256);
|
|
memcpy(&msg[13], data, sizeof(data));
|
|
SharedHandle<BtPieceMessage> pm = BtPieceMessage::create(&msg[4], 11);
|
|
CPPUNIT_ASSERT_EQUAL((uint8_t)7, pm->getId());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)12345, pm->getIndex());
|
|
CPPUNIT_ASSERT_EQUAL((uint32_t)256, pm->getBegin());
|
|
CPPUNIT_ASSERT(memcmp(data, pm->getBlock(), sizeof(data)) == 0);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)2, pm->getBlockLength());
|
|
|
|
// case: payload size is wrong
|
|
try {
|
|
unsigned char msg[13];
|
|
PeerMessageUtil::createPeerMessageString(msg, sizeof(msg), 9, 7);
|
|
BtPieceMessage::create(&msg[4], 9);
|
|
CPPUNIT_FAIL("exception must be thrown.");
|
|
} catch(...) {
|
|
}
|
|
// case: id is wrong
|
|
try {
|
|
unsigned char msg[13+2];
|
|
PeerMessageUtil::createPeerMessageString(msg, sizeof(msg), 11, 8);
|
|
BtPieceMessage::create(&msg[4], 11);
|
|
CPPUNIT_FAIL("exception must be thrown.");
|
|
} catch(...) {
|
|
}
|
|
}
|
|
|
|
void BtPieceMessageTest::testGetMessageHeader() {
|
|
BtPieceMessage msg;
|
|
msg.setIndex(12345);
|
|
msg.setBegin(256);
|
|
msg.setBlockLength(1024);
|
|
unsigned char data[13];
|
|
PeerMessageUtil::createPeerMessageString(data, sizeof(data), 9+1024, 7);
|
|
PeerMessageUtil::setIntParam(&data[5], 12345);
|
|
PeerMessageUtil::setIntParam(&data[9], 256);
|
|
CPPUNIT_ASSERT(memcmp(msg.getMessageHeader(), data, 13) == 0);
|
|
}
|
|
|
|
void BtPieceMessageTest::testChokingEvent() {
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isInAmAllowedIndexSet(1));
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent(SharedHandle<BtEvent>(new BtChokingEvent()));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)0, btMessageDispatcher->messageQueue.size());
|
|
}
|
|
|
|
void BtPieceMessageTest::testChokingEvent_allowedFastEnabled() {
|
|
peer->setFastExtensionEnabled(true);
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isInAmAllowedIndexSet(1));
|
|
CPPUNIT_ASSERT(peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent(SharedHandle<BtEvent>(new BtChokingEvent()));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, btMessageDispatcher->messageQueue.size());
|
|
MockBtMessage2* rej =
|
|
(MockBtMessage2*)btMessageDispatcher->messageQueue.front().get();
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, rej->index);
|
|
CPPUNIT_ASSERT_EQUAL((uint32_t)1024, rej->begin);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)16*1024, rej->length);
|
|
}
|
|
|
|
void BtPieceMessageTest::testChokingEvent_inAmAllowedIndexSet() {
|
|
peer->setFastExtensionEnabled(true);
|
|
peer->addAmAllowedIndex(1);
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(peer->isInAmAllowedIndexSet(1));
|
|
CPPUNIT_ASSERT(peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent(SharedHandle<BtEvent>(new BtChokingEvent()));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)0, btMessageDispatcher->messageQueue.size());
|
|
}
|
|
|
|
void BtPieceMessageTest::testChokingEvent_invalidate() {
|
|
msg->setInvalidate(true);
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isInAmAllowedIndexSet(1));
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent(SharedHandle<BtEvent>(new BtChokingEvent()));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)0, btMessageDispatcher->messageQueue.size());
|
|
}
|
|
|
|
void BtPieceMessageTest::testChokingEvent_sendingInProgress() {
|
|
msg->setSendingInProgress(true);
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isInAmAllowedIndexSet(1));
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent(SharedHandle<BtEvent>(new BtChokingEvent()));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)0, btMessageDispatcher->messageQueue.size());
|
|
}
|
|
|
|
void BtPieceMessageTest::testCancelSendingPieceEvent() {
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 1024, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
}
|
|
|
|
void BtPieceMessageTest::testCancelSendingPieceEvent_noMatch() {
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(0, 1024, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 0, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 1024, 0)));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
}
|
|
|
|
void BtPieceMessageTest::testCancelSendingPieceEvent_allowedFastEnabled() {
|
|
peer->setFastExtensionEnabled(true);
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 1024, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, btMessageDispatcher->messageQueue.size());
|
|
MockBtMessage2* rej = (MockBtMessage2*)btMessageDispatcher->
|
|
messageQueue.front().get();
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, rej->index);
|
|
CPPUNIT_ASSERT_EQUAL((uint32_t)1024, rej->begin);
|
|
CPPUNIT_ASSERT_EQUAL((size_t)16*1024, rej->length);
|
|
}
|
|
|
|
void BtPieceMessageTest::testCancelSendingPieceEvent_invalidate() {
|
|
msg->setInvalidate(true);
|
|
peer->setFastExtensionEnabled(true);
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT(!msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 1024, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(msg->isInvalidate());
|
|
CPPUNIT_ASSERT_EQUAL((size_t)0, btMessageDispatcher->messageQueue.size());
|
|
}
|
|
|
|
void BtPieceMessageTest::testCancelSendingPieceEvent_sendingInProgress() {
|
|
msg->setSendingInProgress(true);
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
CPPUNIT_ASSERT(msg->isSendingInProgress());
|
|
CPPUNIT_ASSERT(!peer->isFastExtensionEnabled());
|
|
|
|
msg->handleEvent
|
|
(SharedHandle<BtEvent>(new BtCancelSendingPieceEvent(1, 1024, 16*1024)));
|
|
|
|
CPPUNIT_ASSERT(!msg->isInvalidate());
|
|
}
|
|
|
|
void BtPieceMessageTest::testToString() {
|
|
CPPUNIT_ASSERT_EQUAL(std::string("piece index=1, begin=1024, length=16384"),
|
|
msg->toString());
|
|
}
|
|
|
|
} // namespace aria2
|