1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include <QBuffer>
#include <QNetworkReply>
#include <QProcess>
#include <QSignalSpy>
#include <QStandardPaths>
#include <QTest>
#include <accessmanager.h>
/**
* Unit test for AccessManager
*/
class AccessManagerTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase()
{
qputenv("KIOSLAVE_ENABLE_TESTMODE", "1"); // ensure the KIO workers call QStandardPaths::setTestModeEnabled too
QStandardPaths::setTestModeEnabled(true);
}
void testGet()
{
const QString aFile = QFINDTESTDATA("accessmanagertest.cpp");
QNetworkReply *reply = manager()->get(QNetworkRequest(QUrl::fromLocalFile(aFile)));
QSignalSpy spy(reply, &QNetworkReply::finished);
QVERIFY(spy.wait());
QFile f(aFile);
QVERIFY(f.open(QIODevice::ReadOnly));
QCOMPARE(f.readAll(), reply->readAll());
}
void testPut()
{
const QString aDir = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
QVERIFY(QDir::temp().mkpath(aDir));
const QString aFile = aDir + QStringLiteral("/accessmanagertest-data");
const QByteArray content = "We love free software!";
QBuffer buffer;
buffer.setData(content);
QVERIFY(buffer.open(QIODevice::ReadOnly));
QFile::remove(aFile);
QNetworkReply *reply = manager()->put(QNetworkRequest(QUrl::fromLocalFile(aFile)), &buffer);
QSignalSpy spy(reply, &QNetworkReply::finished);
QVERIFY(reply->isRunning());
QVERIFY(spy.wait());
QVERIFY(QFile::exists(aFile));
QFile f(aFile);
QVERIFY(f.open(QIODevice::ReadOnly));
QCOMPARE(f.readAll(), content);
QFile::remove(aFile);
}
void testPutSequential()
{
const QString aDir = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
QVERIFY(QDir::temp().mkpath(aDir));
const QString aFile = aDir + QStringLiteral("/accessmanagertest-data2");
const QString putDataContents = "We love free software! " + QString(24000, 'c');
QProcess process;
process.start(QStandardPaths::findExecutable(QStringLiteral("echo")), QStringList{putDataContents});
QFile::remove(aFile);
QNetworkReply *reply = manager()->put(QNetworkRequest(QUrl::fromLocalFile(aFile)), &process);
QSignalSpy spy(reply, &QNetworkReply::finished);
QVERIFY(spy.wait());
QVERIFY(QFile::exists(aFile));
QFile f(aFile);
QVERIFY(f.open(QIODevice::ReadOnly));
QByteArray cts = f.readAll();
cts.chop(1); // we remove the eof
QCOMPARE(QString::fromUtf8(cts).size(), putDataContents.size());
QCOMPARE(QString::fromUtf8(cts), putDataContents);
QFile::remove(aFile);
}
private:
/**
* we want to run the tests both on QNAM and KIO::AccessManager
* to make sure they behave the same way.
*/
QNetworkAccessManager *manager()
{
static QNetworkAccessManager *ret = nullptr;
if (!ret) {
#ifdef USE_QNAM
ret = new QNetworkAccessManager(this);
#else
ret = new KIO::Integration::AccessManager(this);
#endif
}
return ret;
}
};
QTEST_MAIN(AccessManagerTest)
#include "accessmanagertest.moc"
|