mirror of
https://github.com/aria2/aria2.git
synced 2025-01-24 02:31:29 +00:00
8b73c2843f
Reduced copying/std::string instantiation in sending/receiving BitTorrent messages. * src/BtBitfieldMessage.cc * src/BtBitfieldMessage.h * src/BtExtendedMessage.cc * src/BtExtendedMessage.h * src/BtHandshakeMessage.cc * src/BtHandshakeMessage.h * src/BtKeepAliveMessage.cc * src/BtKeepAliveMessage.h * src/BtPieceMessage.cc * src/BtPieceMessage.h * src/BtPortMessage.cc * src/BtPortMessage.h * src/BtUnchokeMessage.h * src/DefaultBtMessageReceiver.cc * src/IndexBtMessage.cc * src/IndexBtMessage.h * src/PeerConnection.cc * src/PeerConnection.h * src/RangeBtMessage.cc * src/RangeBtMessage.h * src/SimpleBtMessage.cc * src/SimpleBtMessage.h * src/SocketBuffer.cc * src/SocketBuffer.h * src/ZeroBtMessage.cc * src/ZeroBtMessage.h * test/BtAllowedFastMessageTest.cc * test/BtBitfieldMessageTest.cc * test/BtCancelMessageTest.cc * test/BtChokeMessageTest.cc * test/BtExtendedMessageTest.cc * test/BtHandshakeMessageTest.cc * test/BtHaveAllMessageTest.cc * test/BtHaveMessageTest.cc * test/BtHaveNoneMessageTest.cc * test/BtInterestedMessageTest.cc * test/BtKeepAliveMessageTest.cc * test/BtNotInterestedMessageTest.cc * test/BtPieceMessageTest.cc * test/BtPortMessageTest.cc * test/BtRejectMessageTest.cc * test/BtRequestMessageTest.cc * test/BtSuggestPieceMessageTest.cc * test/BtUnchokeMessageTest.cc
102 lines
2.7 KiB
C++
102 lines
2.7 KiB
C++
#include "BtInterestedMessage.h"
|
|
|
|
#include <cstring>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "bittorrent_helper.h"
|
|
#include "Peer.h"
|
|
#include "MockPeerStorage.h"
|
|
|
|
namespace aria2 {
|
|
|
|
class BtInterestedMessageTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(BtInterestedMessageTest);
|
|
CPPUNIT_TEST(testCreate);
|
|
CPPUNIT_TEST(testCreateMessage);
|
|
CPPUNIT_TEST(testDoReceivedAction);
|
|
CPPUNIT_TEST(testOnSendComplete);
|
|
CPPUNIT_TEST(testToString);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void testCreate();
|
|
void testCreateMessage();
|
|
void testDoReceivedAction();
|
|
void testOnSendComplete();
|
|
void testToString();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(BtInterestedMessageTest);
|
|
|
|
void BtInterestedMessageTest::testCreate() {
|
|
unsigned char msg[5];
|
|
bittorrent::createPeerMessageString(msg, sizeof(msg), 1, 2);
|
|
BtInterestedMessageHandle pm = BtInterestedMessage::create(&msg[4], 1);
|
|
CPPUNIT_ASSERT_EQUAL((uint8_t)2, pm->getId());
|
|
|
|
// case: payload size is wrong
|
|
try {
|
|
unsigned char msg[6];
|
|
bittorrent::createPeerMessageString(msg, sizeof(msg), 2, 2);
|
|
BtInterestedMessage::create(&msg[4], 2);
|
|
CPPUNIT_FAIL("exception must be thrown.");
|
|
} catch(...) {
|
|
}
|
|
// case: id is wrong
|
|
try {
|
|
unsigned char msg[5];
|
|
bittorrent::createPeerMessageString(msg, sizeof(msg), 1, 3);
|
|
BtInterestedMessage::create(&msg[4], 1);
|
|
CPPUNIT_FAIL("exception must be thrown.");
|
|
} catch(...) {
|
|
}
|
|
}
|
|
|
|
void BtInterestedMessageTest::testCreateMessage() {
|
|
BtInterestedMessage msg;
|
|
unsigned char data[5];
|
|
bittorrent::createPeerMessageString(data, sizeof(data), 1, 2);
|
|
unsigned char* rawmsg = msg.createMessage();
|
|
CPPUNIT_ASSERT(memcmp(rawmsg, data, 5) == 0);
|
|
delete [] rawmsg;
|
|
}
|
|
|
|
void BtInterestedMessageTest::testDoReceivedAction() {
|
|
BtInterestedMessage msg;
|
|
SharedHandle<Peer> peer(new Peer("host", 6969));
|
|
peer->allocateSessionResource(1024, 1024*1024);
|
|
msg.setPeer(peer);
|
|
|
|
SharedHandle<MockPeerStorage> peerStorage(new MockPeerStorage());
|
|
|
|
msg.setPeerStorage(peerStorage);
|
|
|
|
CPPUNIT_ASSERT(!peer->peerInterested());
|
|
msg.doReceivedAction();
|
|
CPPUNIT_ASSERT(peer->peerInterested());
|
|
CPPUNIT_ASSERT_EQUAL(0, peerStorage->getNumChokeExecuted());
|
|
|
|
peer->amChoking(false);
|
|
msg.doReceivedAction();
|
|
CPPUNIT_ASSERT_EQUAL(1, peerStorage->getNumChokeExecuted());
|
|
}
|
|
|
|
void BtInterestedMessageTest::testOnSendComplete() {
|
|
BtInterestedMessage msg;
|
|
SharedHandle<Peer> peer(new Peer("host", 6969));
|
|
peer->allocateSessionResource(1024, 1024*1024);
|
|
msg.setPeer(peer);
|
|
CPPUNIT_ASSERT(!peer->amInterested());
|
|
msg.onSendComplete();
|
|
CPPUNIT_ASSERT(peer->amInterested());
|
|
}
|
|
|
|
void BtInterestedMessageTest::testToString() {
|
|
BtInterestedMessage msg;
|
|
CPPUNIT_ASSERT_EQUAL(std::string("interested"), msg.toString());
|
|
}
|
|
|
|
} // namespace aria2
|