12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #include "DHTPeerAnnounceStorage.h"
- #include <cppunit/extensions/HelperMacros.h>
- #include "Exception.h"
- #include "Util.h"
- #include "MockBtContext.h"
- #include "MockPeerStorage.h"
- #include "DHTConstants.h"
- #include "Peer.h"
- #include "FileEntry.h"
- namespace aria2 {
- class DHTPeerAnnounceStorageTest:public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(DHTPeerAnnounceStorageTest);
- CPPUNIT_TEST(testAddAnnounce);
- CPPUNIT_TEST(testRemovePeerAnnounce);
- CPPUNIT_TEST_SUITE_END();
- public:
- void testAddAnnounce();
- void testRemovePeerAnnounce();
- };
- CPPUNIT_TEST_SUITE_REGISTRATION(DHTPeerAnnounceStorageTest);
- void DHTPeerAnnounceStorageTest::testAddAnnounce()
- {
- unsigned char infohash1[DHT_ID_LENGTH];
- memset(infohash1, 0xff, DHT_ID_LENGTH);
- unsigned char infohash2[DHT_ID_LENGTH];
- memset(infohash2, 0xf0, DHT_ID_LENGTH);
- DHTPeerAnnounceStorage storage;
- storage.addPeerAnnounce(infohash1, "192.168.0.1", 6881);
- storage.addPeerAnnounce(infohash1, "192.168.0.2", 6882);
- storage.addPeerAnnounce(infohash2, "192.168.0.3", 6883);
- storage.addPeerAnnounce(infohash2, "192.168.0.4", 6884);
-
- std::deque<SharedHandle<Peer> > peers;
- storage.getPeers(peers, infohash2);
- CPPUNIT_ASSERT_EQUAL((size_t)2, peers.size());
- CPPUNIT_ASSERT_EQUAL(std::string("192.168.0.3"), peers[0]->ipaddr);
- CPPUNIT_ASSERT_EQUAL(std::string("192.168.0.4"), peers[1]->ipaddr);
- }
- void DHTPeerAnnounceStorageTest::testRemovePeerAnnounce()
- {
- unsigned char infohash1[DHT_ID_LENGTH];
- memset(infohash1, 0xff, DHT_ID_LENGTH);
- unsigned char infohash2[DHT_ID_LENGTH];
- memset(infohash2, 0xf0, DHT_ID_LENGTH);
- DHTPeerAnnounceStorage storage;
- SharedHandle<MockBtContext> ctx1(new MockBtContext());
- ctx1->setInfoHash(infohash1);
- SharedHandle<MockPeerStorage> peerStorage1(new MockPeerStorage());
- SharedHandle<MockBtContext> ctx2(new MockBtContext());
- ctx2->setInfoHash(infohash2);
- SharedHandle<MockPeerStorage> peerStorage2(new MockPeerStorage());
- storage.addPeerAnnounce(infohash1, "192.168.0.1", 6881);
- storage.addPeerAnnounce(ctx1->getInfoHash(), peerStorage1);
- storage.addPeerAnnounce(ctx2->getInfoHash(), peerStorage2);
- storage.removeLocalPeerAnnounce(ctx2->getInfoHash());
- CPPUNIT_ASSERT(!storage.contains(infohash2));
- storage.removeLocalPeerAnnounce(ctx1->getInfoHash());
- CPPUNIT_ASSERT(storage.contains(infohash1));
- }
- } // namespace aria2
|