mirror of https://github.com/aria2/aria2
				
				
				
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
#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
 |