mirror of https://github.com/aria2/aria2
				
				
				
			
		
			
				
	
	
		
			138 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
| #include "BtChokeMessage.h"
 | |
| 
 | |
| #include <cstring>
 | |
| 
 | |
| #include <cppunit/extensions/HelperMacros.h>
 | |
| 
 | |
| #include "bittorrent_helper.h"
 | |
| #include "MockBtMessageDispatcher.h"
 | |
| #include "MockBtRequestFactory.h"
 | |
| #include "Peer.h"
 | |
| #include "FileEntry.h"
 | |
| 
 | |
| namespace aria2 {
 | |
| 
 | |
| class BtChokeMessageTest:public CppUnit::TestFixture {
 | |
| 
 | |
|   CPPUNIT_TEST_SUITE(BtChokeMessageTest);
 | |
|   CPPUNIT_TEST(testCreate);
 | |
|   CPPUNIT_TEST(testGetMessage);
 | |
|   CPPUNIT_TEST(testDoReceivedAction);
 | |
|   CPPUNIT_TEST(testOnSendComplete);
 | |
|   CPPUNIT_TEST(testToString);
 | |
|   CPPUNIT_TEST_SUITE_END();
 | |
| private:
 | |
| 
 | |
| public:
 | |
|   BtChokeMessageTest():peer(0) {}
 | |
| 
 | |
|   SharedHandle<Peer> peer;
 | |
| 
 | |
|   void setUp() {
 | |
|     peer.reset(new Peer("host", 6969));
 | |
|     peer->allocateSessionResource(1024, 1024*1024);
 | |
|   }
 | |
| 
 | |
|   void testCreate();
 | |
|   void testGetMessage();
 | |
|   void testDoReceivedAction();
 | |
|   void testOnSendComplete();
 | |
|   void testToString();
 | |
| 
 | |
|   class MockBtMessageDispatcher2 : public MockBtMessageDispatcher {
 | |
|   public:
 | |
|     bool doChokedActionCalled;
 | |
|     bool doChokingActionCalled;
 | |
|   public:
 | |
|     MockBtMessageDispatcher2():doChokedActionCalled(false), doChokingActionCalled(false) {}
 | |
| 
 | |
|     virtual void doChokedAction() {
 | |
|       doChokedActionCalled = true;
 | |
|     }
 | |
| 
 | |
|     virtual void doChokingAction() {
 | |
|       doChokingActionCalled = true;
 | |
|     }
 | |
|   };
 | |
| 
 | |
|   class MockBtRequestFactory2 : public MockBtRequestFactory {
 | |
|   public:
 | |
|     bool doChokedActionCalled;
 | |
|   public:
 | |
|     MockBtRequestFactory2():doChokedActionCalled(false) {}
 | |
| 
 | |
|     virtual void doChokedAction() {
 | |
|       doChokedActionCalled = true;
 | |
|     }
 | |
|   };
 | |
| };
 | |
| 
 | |
| 
 | |
| CPPUNIT_TEST_SUITE_REGISTRATION(BtChokeMessageTest);
 | |
| 
 | |
| void BtChokeMessageTest::testCreate() {
 | |
|   unsigned char msg[5];
 | |
|   bittorrent::createPeerMessageString(msg, sizeof(msg), 1, 0);
 | |
|   SharedHandle<BtChokeMessage> pm = BtChokeMessage::create(&msg[4], 1);
 | |
|   CPPUNIT_ASSERT_EQUAL((uint8_t)0, pm->getId());
 | |
| 
 | |
|   // case: payload size is wrong
 | |
|   try {
 | |
|     unsigned char msg[6];
 | |
|     bittorrent::createPeerMessageString(msg, sizeof(msg), 2, 0);
 | |
|     BtChokeMessage::create(&msg[4], 2);
 | |
|     CPPUNIT_FAIL("exception must be thrown.");
 | |
|   } catch(...) {
 | |
|   }
 | |
|   // case: id is wrong
 | |
|   try {
 | |
|     unsigned char msg[5];
 | |
|     bittorrent::createPeerMessageString(msg, sizeof(msg), 1, 1);
 | |
|     BtChokeMessage::create(&msg[4], 1);
 | |
|     CPPUNIT_FAIL("exception must be thrown.");
 | |
|   } catch(...) {
 | |
|   }
 | |
| }
 | |
| 
 | |
| void BtChokeMessageTest::testGetMessage() {
 | |
|   BtChokeMessage msg;
 | |
|   unsigned char data[5];
 | |
|   bittorrent::createPeerMessageString(data, sizeof(data), 1, 0);
 | |
|   CPPUNIT_ASSERT(memcmp(msg.getMessage(), data, 5) == 0);
 | |
| }
 | |
| 
 | |
| void BtChokeMessageTest::testDoReceivedAction() {
 | |
|   BtChokeMessage msg;
 | |
|   msg.setPeer(peer);
 | |
| 
 | |
|   SharedHandle<MockBtMessageDispatcher2> dispatcher(new MockBtMessageDispatcher2());
 | |
|   msg.setBtMessageDispatcher(dispatcher);
 | |
|   SharedHandle<MockBtRequestFactory2> requestFactory(new MockBtRequestFactory2());
 | |
|   msg.setBtRequestFactory(requestFactory);
 | |
| 
 | |
|   msg.doReceivedAction();
 | |
| 
 | |
|   CPPUNIT_ASSERT(dispatcher->doChokedActionCalled);
 | |
|   CPPUNIT_ASSERT(peer->peerChoking());
 | |
| }
 | |
| 
 | |
| void BtChokeMessageTest::testOnSendComplete() {
 | |
|   BtChokeMessage msg;
 | |
|   msg.setPeer(peer);
 | |
| 
 | |
|   SharedHandle<MockBtMessageDispatcher2> dispatcher(new MockBtMessageDispatcher2());
 | |
|   msg.setBtMessageDispatcher(dispatcher);
 | |
| 
 | |
|   msg.onSendComplete();
 | |
| 
 | |
|   CPPUNIT_ASSERT(dispatcher->doChokingActionCalled);
 | |
|   CPPUNIT_ASSERT(peer->amChoking());  
 | |
| }
 | |
| 
 | |
| void BtChokeMessageTest::testToString() {
 | |
|   BtChokeMessage msg;
 | |
|   CPPUNIT_ASSERT_EQUAL(std::string("choke"), msg.toString());
 | |
| }
 | |
| 
 | |
| } // namespace aria2
 |