| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | 
							- #include "DHTTokenTracker.h"
 
- #include "Exception.h"
 
- #include "Util.h"
 
- #include "DHTUtil.h"
 
- #include "DHTConstants.h"
 
- #include <cppunit/extensions/HelperMacros.h>
 
- namespace aria2 {
 
- class DHTTokenTrackerTest:public CppUnit::TestFixture {
 
-   CPPUNIT_TEST_SUITE(DHTTokenTrackerTest);
 
-   CPPUNIT_TEST(testGenerateToken);
 
-   CPPUNIT_TEST_SUITE_END();
 
- public:
 
-   void setUp() {}
 
-   void tearDown() {}
 
-   void testGenerateToken();
 
- };
 
- CPPUNIT_TEST_SUITE_REGISTRATION(DHTTokenTrackerTest);
 
- void DHTTokenTrackerTest::testGenerateToken()
 
- {
 
-   unsigned char infohash[DHT_ID_LENGTH];
 
-   DHTUtil::generateRandomData(infohash, DHT_ID_LENGTH);
 
-   std::string ipaddr = "192.168.0.1";
 
-   uint16_t port = 6881;
 
-   
 
-   DHTTokenTracker tracker;
 
-   std::string token = tracker.generateToken(infohash, ipaddr, port);
 
-   CPPUNIT_ASSERT(tracker.validateToken(token, infohash, ipaddr, port));
 
-   tracker.updateTokenSecret();
 
-   CPPUNIT_ASSERT(tracker.validateToken(token, infohash, ipaddr, port));
 
-   std::string newtoken = tracker.generateToken(infohash, ipaddr, port);
 
-   tracker.updateTokenSecret();
 
-   CPPUNIT_ASSERT(!tracker.validateToken(token, infohash, ipaddr, port));
 
-   CPPUNIT_ASSERT(tracker.validateToken(newtoken, infohash, ipaddr, port));
 
- }
 
- } // namespace aria2
 
 
  |