2010-09-06 14:29:36 +00:00
|
|
|
#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"
|
|
|
|
#ifdef ENABLE_MESSAGE_DIGEST
|
2010-11-11 02:56:24 +00:00
|
|
|
# include "MessageDigest.h"
|
2010-09-06 14:29:36 +00:00
|
|
|
#endif // ENABLE_MESSAGE_DIGEST
|
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
|
|
|
class GZipDecodingStreamFilterTest:public CppUnit::TestFixture {
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(GZipDecodingStreamFilterTest);
|
|
|
|
CPPUNIT_TEST(testTransform);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
class MockSegment2:public MockSegment {
|
|
|
|
private:
|
|
|
|
off_t positionToWrite_;
|
|
|
|
public:
|
|
|
|
MockSegment2():positionToWrite_(0) {}
|
|
|
|
|
2011-12-07 15:03:25 +00:00
|
|
|
virtual void updateWrittenLength(int32_t bytes)
|
2010-09-06 14:29:36 +00:00
|
|
|
{
|
|
|
|
positionToWrite_ += bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual off_t getPositionToWrite() const
|
|
|
|
{
|
|
|
|
return positionToWrite_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
SharedHandle<GZipDecodingStreamFilter> filter_;
|
|
|
|
SharedHandle<SinkStreamFilter> sinkFilter_;
|
|
|
|
SharedHandle<ByteArrayDiskWriter> writer_;
|
|
|
|
SharedHandle<MockSegment2> segment_;
|
|
|
|
public:
|
|
|
|
void setUp()
|
|
|
|
{
|
|
|
|
writer_.reset(new ByteArrayDiskWriter());
|
|
|
|
sinkFilter_.reset(new SinkStreamFilter());
|
|
|
|
filter_.reset(new GZipDecodingStreamFilter(sinkFilter_));
|
|
|
|
sinkFilter_->init();
|
|
|
|
filter_->init();
|
|
|
|
segment_.reset(new MockSegment2());
|
|
|
|
}
|
|
|
|
|
|
|
|
void testTransform();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(GZipDecodingStreamFilterTest);
|
|
|
|
|
|
|
|
void GZipDecodingStreamFilterTest::testTransform()
|
|
|
|
{
|
|
|
|
unsigned char buf[4096];
|
2010-12-02 13:38:36 +00:00
|
|
|
std::ifstream in(A2_TEST_DIR"/gzip_decode_test.gz", std::ios::binary);
|
2010-09-06 14:29:36 +00:00
|
|
|
while(in) {
|
|
|
|
in.read(reinterpret_cast<char*>(buf), sizeof(buf));
|
|
|
|
filter_->transform(writer_, segment_, buf, in.gcount());
|
|
|
|
}
|
|
|
|
CPPUNIT_ASSERT(filter_->finished());
|
|
|
|
#ifdef ENABLE_MESSAGE_DIGEST
|
2010-11-11 02:56:24 +00:00
|
|
|
std::string data = writer_->getString();
|
|
|
|
SharedHandle<MessageDigest> sha1(MessageDigest::sha1());
|
|
|
|
sha1->update(data.data(), data.size());
|
2010-09-06 14:29:36 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("8b577b33c0411b2be9d4fa74c7402d54a8d21f96"),
|
2011-10-13 12:40:07 +00:00
|
|
|
util::toHex(sha1->digest()));
|
2010-09-06 14:29:36 +00:00
|
|
|
#endif // ENABLE_MESSAGE_DIGEST
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace aria2
|