#include "DHTGetPeersMessage.h" #include "DHTNode.h" #include "DHTUtil.h" #include "BencodeVisitor.h" #include "Dictionary.h" #include "Data.h" #include "Exception.h" #include "Util.h" #include class DHTGetPeersMessageTest:public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(DHTGetPeersMessageTest); CPPUNIT_TEST(testGetBencodedMessage); CPPUNIT_TEST_SUITE_END(); public: void setUp() {} void tearDown() {} void testGetBencodedMessage(); }; CPPUNIT_TEST_SUITE_REGISTRATION(DHTGetPeersMessageTest); void DHTGetPeersMessageTest::testGetBencodedMessage() { DHTNodeHandle localNode = new DHTNode(); DHTNodeHandle remoteNode = new DHTNode(); char tid[DHT_TRANSACTION_ID_LENGTH]; DHTUtil::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH); string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]); unsigned char infoHash[DHT_ID_LENGTH]; DHTUtil::generateRandomData(infoHash, DHT_ID_LENGTH); DHTGetPeersMessage msg(localNode, remoteNode, infoHash, transactionID); string msgbody = msg.getBencodedMessage(); SharedHandle cm = new Dictionary(); cm->put("t", new Data(transactionID)); cm->put("y", new Data("q")); cm->put("q", new Data("get_peers")); Dictionary* a = new Dictionary(); cm->put("a", a); a->put("id", new Data(reinterpret_cast(localNode->getID()), DHT_ID_LENGTH)); a->put("info_hash", new Data(infoHash, DHT_ID_LENGTH)); BencodeVisitor v; cm->accept(&v); CPPUNIT_ASSERT_EQUAL(Util::urlencode(v.getBencodedData()), Util::urlencode(msgbody)); }