mirror of https://github.com/aria2/aria2
				
				
				
			
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
| #include "GZipDecodingStreamFilter.h"
 | |
| 
 | |
| #include <cassert>
 | |
| #include <iostream>
 | |
| #include <fstream>
 | |
| 
 | |
| #include <cppunit/extensions/HelperMacros.h>
 | |
| 
 | |
| #include "Exception.h"
 | |
| #include "util.h"
 | |
| #include "Segment.h"
 | |
| #include "ByteArrayDiskWriter.h"
 | |
| #include "SinkStreamFilter.h"
 | |
| #include "MockSegment.h"
 | |
| #include "MessageDigest.h"
 | |
| 
 | |
| namespace aria2 {
 | |
| 
 | |
| class GZipDecodingStreamFilterTest:public CppUnit::TestFixture {
 | |
| 
 | |
|   CPPUNIT_TEST_SUITE(GZipDecodingStreamFilterTest);
 | |
|   CPPUNIT_TEST(testTransform);
 | |
|   CPPUNIT_TEST_SUITE_END();
 | |
| 
 | |
|   class MockSegment2:public MockSegment {
 | |
|   private:
 | |
|     int64_t positionToWrite_;
 | |
|   public:
 | |
|     MockSegment2():positionToWrite_(0) {}
 | |
| 
 | |
|     virtual void updateWrittenLength(int64_t bytes) CXX11_OVERRIDE
 | |
|     {
 | |
|       positionToWrite_ += bytes;
 | |
|     }
 | |
| 
 | |
|     virtual int64_t getPositionToWrite() const CXX11_OVERRIDE
 | |
|     {
 | |
|       return positionToWrite_;
 | |
|     }
 | |
|   };
 | |
| 
 | |
|   std::unique_ptr<GZipDecodingStreamFilter> filter_;
 | |
|   std::shared_ptr<ByteArrayDiskWriter> writer_;
 | |
|   std::shared_ptr<MockSegment2> segment_;
 | |
| public:
 | |
|   void setUp()
 | |
|   {
 | |
|     writer_ = std::make_shared<ByteArrayDiskWriter>();
 | |
|     auto sinkFilter = make_unique<SinkStreamFilter>();
 | |
|     sinkFilter->init();
 | |
|     filter_ = make_unique<GZipDecodingStreamFilter>(std::move(sinkFilter));
 | |
|     filter_->init();
 | |
|     segment_ = std::make_shared<MockSegment2>();
 | |
|   }
 | |
| 
 | |
|   void testTransform();
 | |
| };
 | |
| 
 | |
| 
 | |
| CPPUNIT_TEST_SUITE_REGISTRATION(GZipDecodingStreamFilterTest);
 | |
| 
 | |
| void GZipDecodingStreamFilterTest::testTransform()
 | |
| {
 | |
|   unsigned char buf[4096];
 | |
|   std::ifstream in(A2_TEST_DIR"/gzip_decode_test.gz", std::ios::binary);
 | |
|   while(in) {
 | |
|     in.read(reinterpret_cast<char*>(buf), sizeof(buf));
 | |
|     filter_->transform(writer_, segment_, buf, in.gcount());
 | |
|   }
 | |
|   CPPUNIT_ASSERT(filter_->finished());
 | |
|   std::string data = writer_->getString();
 | |
|   std::shared_ptr<MessageDigest> sha1(MessageDigest::sha1());
 | |
|   sha1->update(data.data(), data.size());
 | |
|   CPPUNIT_ASSERT_EQUAL(std::string("8b577b33c0411b2be9d4fa74c7402d54a8d21f96"),
 | |
|                        util::toHex(sha1->digest()));
 | |
| }
 | |
| 
 | |
| } // namespace aria2
 |