1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #include "DHTPingMessage.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>
- namespace aria2 {
- class DHTPingMessageTest:public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(DHTPingMessageTest);
- CPPUNIT_TEST(testGetBencodedMessage);
- CPPUNIT_TEST_SUITE_END();
- public:
- void setUp() {}
- void tearDown() {}
- void testGetBencodedMessage();
- };
- CPPUNIT_TEST_SUITE_REGISTRATION(DHTPingMessageTest);
- void DHTPingMessageTest::testGetBencodedMessage()
- {
- SharedHandle<DHTNode> localNode = new DHTNode();
- SharedHandle<DHTNode> remoteNode = new DHTNode();
- char tid[DHT_TRANSACTION_ID_LENGTH];
- DHTUtil::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH);
- std::string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]);
- DHTPingMessage msg(localNode, remoteNode, transactionID);
- std::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("ping"));
- Dictionary* a = new Dictionary();
- cm->put("a", a);
- a->put("id", new Data(reinterpret_cast<const char*>(localNode->getID()), DHT_ID_LENGTH));
- BencodeVisitor v;
- cm->accept(&v);
- CPPUNIT_ASSERT_EQUAL(v.getBencodedData(), msgbody);
- }
- } // namespace aria2
|