1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-03-04 19:27:29 +01:00
SqMod/vendor/POCO/Zip/testsuite/src/PartialStreamTest.cpp
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

148 lines
3.8 KiB
C++

//
// PartialStreamTest.cpp
//
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "PartialStreamTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/Zip/PartialStream.h"
#include "Poco/Zip/AutoDetectStream.h"
#include "Poco/Zip/ZipUtil.h"
#include "Poco/MemoryStream.h"
#include "Poco/StreamCopier.h"
#include <sstream>
using namespace Poco::Zip;
PartialStreamTest::PartialStreamTest(const std::string& name): CppUnit::TestCase(name)
{
}
PartialStreamTest::~PartialStreamTest()
{
}
void PartialStreamTest::testReading()
{
std::string message("some dummy message !");
std::string prefix("pre ");
std::string postfix(" post");
std::string result(prefix+message+postfix);
std::istringstream istr(message);
PartialInputStream in(istr, 0, static_cast<std::streamoff>(message.length()), true, prefix, postfix);
char buf[124];
in.read(buf, 124);
std::string res(buf, static_cast<std::string::size_type>(in.gcount()));
assertTrue (res == result);
}
void PartialStreamTest::testWriting()
{
std::string prefix("X");
std::string message("some test message");
std::string postfix("YYY");
std::string result(prefix+message+postfix);
std::ostringstream ostr;
PartialOutputStream out(ostr, prefix.size(), postfix.size());
out.write(result.c_str(), static_cast<std::streamsize>(result.length()));
assertTrue (out.good());
out.close();
std::string res (ostr.str());
assertTrue (out.bytesWritten() == message.size());
assertTrue (message == res);
}
void PartialStreamTest::testWritingZero()
{
std::string prefix("X");
std::string message;
std::string postfix("YYY");
std::string result(prefix+message+postfix);
std::ostringstream ostr;
PartialOutputStream out(ostr, prefix.size(), postfix.size());
out.write(result.c_str(), static_cast<std::streamsize>(result.length()));
assertTrue (out.good());
out.close();
std::string res (ostr.str());
assertTrue (out.bytesWritten() == message.size());
assertTrue (message == res);
}
void PartialStreamTest::testWritingOne()
{
std::string prefix("X");
std::string message("a");
std::string postfix("YYY");
std::string result(prefix+message+postfix);
std::ostringstream ostr;
PartialOutputStream out(ostr, prefix.size(), postfix.size());
out.write(result.c_str(), static_cast<std::streamsize>(result.length()));
assertTrue (out.good());
out.close();
std::string res (ostr.str());
assertTrue (out.bytesWritten() == message.size());
assertTrue (message == res);
}
void PartialStreamTest::testAutoDetect()
{
std::string header = ZipUtil::fakeZLibInitString(ZipCommon::CL_NORMAL);
std::string crc("\01\02\03\04");
const char data[] =
{
'\x01', '\x02', '\x03', '\x04',
'\x05', '\x06', '\x07', '\x08', // fake data
'\x50', '\x4b', '\x07', '\x08', // data signature in compressed data
'\x01', '\x02', '\x03', '\x04',
'\x50',
'\x50', '\x4b', '\x07', '\x08', // real data signature
'\x00', '\x00', '\x00', '\x00', // CRC (ignored)
'\x11', '\x00', '\x00', '\x00', // compressed size
'\x00', '\x00', '\x00', '\x00' // uncompressed size (ignored)
};
Poco::MemoryInputStream istr(data, sizeof(data));
AutoDetectInputStream adi(istr, header, crc, false, 0);
std::string result;
Poco::StreamCopier::copyToString(adi, result);
assertTrue (result.size() == 23);
}
void PartialStreamTest::setUp()
{
}
void PartialStreamTest::tearDown()
{
}
CppUnit::Test* PartialStreamTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("PartialStreamTest");
CppUnit_addTest(pSuite, PartialStreamTest, testReading);
CppUnit_addTest(pSuite, PartialStreamTest, testWriting);
CppUnit_addTest(pSuite, PartialStreamTest, testWritingZero);
CppUnit_addTest(pSuite, PartialStreamTest, testWritingOne);
CppUnit_addTest(pSuite, PartialStreamTest, testAutoDetect);
return pSuite;
}