05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
// Copyright (C) 2020 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include <QtNetwork/private/qdecompresshelper_p.h>
|
|
|
|
#include <QtTest/QTest>
|
|
|
|
class tst_QDecompressHelper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void decompress_data();
|
|
void decompress();
|
|
};
|
|
|
|
void tst_QDecompressHelper::decompress_data()
|
|
{
|
|
QTest::addColumn<QByteArray>("encoding");
|
|
QTest::addColumn<QString>("fileName");
|
|
|
|
QString srcDir = QStringLiteral(QT_STRINGIFY(SRC_DIR));
|
|
srcDir = QDir::fromNativeSeparators(srcDir);
|
|
if (!srcDir.endsWith("/"))
|
|
srcDir += "/";
|
|
|
|
bool dataAdded = false;
|
|
#ifndef QT_NO_COMPRESS
|
|
QTest::addRow("gzip") << QByteArray("gzip") << srcDir + QString("50mb.txt.gz");
|
|
dataAdded = true;
|
|
#endif
|
|
#if QT_CONFIG(brotli)
|
|
QTest::addRow("brotli") << QByteArray("br") << srcDir + QString("50mb.txt.br");
|
|
dataAdded = true;
|
|
#endif
|
|
#if QT_CONFIG(zstd)
|
|
QTest::addRow("zstandard") << QByteArray("zstd") << srcDir + QString("50mb.txt.zst");
|
|
dataAdded = true;
|
|
#endif
|
|
if (!dataAdded)
|
|
QSKIP("There's no decompression support");
|
|
}
|
|
|
|
void tst_QDecompressHelper::decompress()
|
|
{
|
|
QFETCH(QByteArray, encoding);
|
|
QFETCH(QString, fileName);
|
|
|
|
QFile file { fileName };
|
|
QVERIFY(file.open(QIODevice::ReadOnly));
|
|
QBENCHMARK {
|
|
file.seek(0);
|
|
QDecompressHelper helper;
|
|
helper.setEncoding(encoding);
|
|
QVERIFY(helper.isValid());
|
|
|
|
helper.feed(file.readAll());
|
|
|
|
qsizetype bytes = 0;
|
|
while (helper.hasData()) {
|
|
QByteArray out(64 * 1024, Qt::Uninitialized);
|
|
qsizetype bytesRead = helper.read(out.data(), out.size());
|
|
bytes += bytesRead;
|
|
}
|
|
|
|
QCOMPARE(bytes, 50 * 1024 * 1024);
|
|
}
|
|
}
|
|
|
|
QTEST_MAIN(tst_QDecompressHelper)
|
|
|
|
#include "main.moc"
|