mirror of https://github.com/aria2/aria2
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
|
#include "DHTAnnouncePeerMessage.h"
|
||
|
#include "DHTNode.h"
|
||
|
#include "DHTUtil.h"
|
||
|
#include "BencodeVisitor.h"
|
||
|
#include "Dictionary.h"
|
||
|
#include "Data.h"
|
||
|
#include "Exception.h"
|
||
|
#include "Util.h"
|
||
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
||
|
class DHTAnnouncePeerMessageTest:public CppUnit::TestFixture {
|
||
|
|
||
|
CPPUNIT_TEST_SUITE(DHTAnnouncePeerMessageTest);
|
||
|
CPPUNIT_TEST(testGetBencodedMessage);
|
||
|
CPPUNIT_TEST_SUITE_END();
|
||
|
public:
|
||
|
void setUp() {}
|
||
|
|
||
|
void tearDown() {}
|
||
|
|
||
|
void testGetBencodedMessage();
|
||
|
};
|
||
|
|
||
|
|
||
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTAnnouncePeerMessageTest);
|
||
|
|
||
|
void DHTAnnouncePeerMessageTest::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);
|
||
|
|
||
|
string token = "token";
|
||
|
uint16_t port = 6881;
|
||
|
|
||
|
DHTAnnouncePeerMessage msg(localNode, remoteNode, infoHash, port, token, transactionID);
|
||
|
|
||
|
string msgbody = msg.getBencodedMessage();
|
||
|
|
||
|
SharedHandle<Dictionary> cm = new Dictionary();
|
||
|
cm->put("t", new Data(transactionID));
|
||
|
cm->put("y", new Data("q"));
|
||
|
cm->put("q", new Data("announce_peer"));
|
||
|
Dictionary* a = new Dictionary();
|
||
|
cm->put("a", a);
|
||
|
a->put("id", new Data(reinterpret_cast<const char*>(localNode->getID()), DHT_ID_LENGTH));
|
||
|
a->put("info_hash", new Data(infoHash, DHT_ID_LENGTH));
|
||
|
a->put("port", new Data(Util::uitos(port), true));
|
||
|
a->put("token", new Data(token));
|
||
|
|
||
|
BencodeVisitor v;
|
||
|
cm->accept(&v);
|
||
|
|
||
|
CPPUNIT_ASSERT_EQUAL(Util::urlencode(v.getBencodedData()),
|
||
|
Util::urlencode(msgbody));
|
||
|
}
|