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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*
This file is part of KDE
SPDX-FileCopyrightText: 2005-2006 David Faure <faure@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "pastetest.h"
#include <QDir>
#include <QMimeData>
#include <QSignalSpy>
#include <QStandardPaths>
#include <QTest>
#include <QUrl>
#include <KFileItem>
#include <KUrlMimeData>
#include <kio/paste.h>
#include <kio/pastejob.h>
QTEST_MAIN(KIOPasteTest)
void KIOPasteTest::initTestCase()
{
QStandardPaths::setTestModeEnabled(true);
QVERIFY(m_tempDir.isValid());
m_dir = m_tempDir.path();
}
void KIOPasteTest::testPopulate()
{
QMimeData *mimeData = new QMimeData;
// Those URLs don't have to exist.
QUrl mediaURL(QStringLiteral("media:/hda1/tmp/Mat%C3%A9riel"));
QUrl localURL(QStringLiteral("file:///tmp/Mat%C3%A9riel"));
QList<QUrl> kdeURLs;
kdeURLs << mediaURL;
QList<QUrl> mostLocalURLs;
mostLocalURLs << localURL;
KUrlMimeData::setUrls(kdeURLs, mostLocalURLs, mimeData);
QVERIFY(mimeData->hasUrls());
const QList<QUrl> lst = KUrlMimeData::urlsFromMimeData(mimeData);
QCOMPARE(lst.count(), 1);
QCOMPARE(lst[0].url(), mediaURL.url());
const bool isCut = KIO::isClipboardDataCut(mimeData);
QVERIFY(!isCut);
delete mimeData;
}
void KIOPasteTest::testCut()
{
QMimeData *mimeData = new QMimeData;
QUrl localURL1(QStringLiteral("file:///tmp/Mat%C3%A9riel"));
QUrl localURL2(QStringLiteral("file:///tmp"));
QList<QUrl> localURLs;
localURLs << localURL1 << localURL2;
KUrlMimeData::setUrls(QList<QUrl>(), localURLs, mimeData);
KIO::setClipboardDataCut(mimeData, true);
QVERIFY(mimeData->hasUrls());
const QList<QUrl> lst = KUrlMimeData::urlsFromMimeData(mimeData);
QCOMPARE(lst.count(), 2);
QCOMPARE(lst[0].url(), localURL1.url());
QCOMPARE(lst[1].url(), localURL2.url());
const bool isCut = KIO::isClipboardDataCut(mimeData);
QVERIFY(isCut);
delete mimeData;
}
void KIOPasteTest::testPasteActionText_data()
{
QTest::addColumn<QList<QUrl>>("urls");
QTest::addColumn<bool>("data");
QTest::addColumn<bool>("expectedEnabled");
QTest::addColumn<QString>("expectedText");
QList<QUrl> urlDir = QList<QUrl>{QUrl::fromLocalFile(QDir::tempPath())};
QList<QUrl> urlFile = QList<QUrl>{QUrl::fromLocalFile(QCoreApplication::applicationFilePath())};
QList<QUrl> urlRemote = QList<QUrl>{QUrl(QStringLiteral("http://www.kde.org"))};
QList<QUrl> urls = urlDir + urlRemote;
QTest::newRow("nothing") << QList<QUrl>() << false << false << "Paste";
QTest::newRow("one_dir") << urlDir << false << true << "Paste One Folder";
QTest::newRow("one_file") << urlFile << false << true << "Paste One File";
QTest::newRow("one_url") << urlRemote << false << true << "Paste One Item";
QTest::newRow("two_urls") << urls << false << true << "Paste 2 Items";
QTest::newRow("data") << QList<QUrl>() << true << true << "Paste Clipboard Contents...";
}
void KIOPasteTest::testPasteActionText()
{
QFETCH(QList<QUrl>, urls);
QFETCH(bool, data);
QFETCH(bool, expectedEnabled);
QFETCH(QString, expectedText);
QMimeData mimeData;
if (!urls.isEmpty()) {
mimeData.setUrls(urls);
}
if (data) {
mimeData.setText(QStringLiteral("foo"));
}
QCOMPARE(KIO::canPasteMimeData(&mimeData), expectedEnabled);
bool canPaste;
KFileItem destItem(QUrl::fromLocalFile(QDir::homePath()));
QCOMPARE(KIO::pasteActionText(&mimeData, &canPaste, destItem), expectedText);
QCOMPARE(canPaste, expectedEnabled);
KFileItem nonWritableDestItem(QUrl::fromLocalFile(QStringLiteral("/nonwritable")));
QCOMPARE(KIO::pasteActionText(&mimeData, &canPaste, nonWritableDestItem), expectedText);
QCOMPARE(canPaste, false);
KFileItem emptyUrlDestItem = KFileItem(QUrl());
QCOMPARE(KIO::pasteActionText(&mimeData, &canPaste, emptyUrlDestItem), expectedText);
QCOMPARE(canPaste, false);
KFileItem nullDestItem;
QCOMPARE(KIO::pasteActionText(&mimeData, &canPaste, nullDestItem), expectedText);
QCOMPARE(canPaste, false);
}
static void createTestFile(const QString &path)
{
QFile f(path);
if (!f.open(QIODevice::WriteOnly)) {
qFatal("Couldn't create %s", qPrintable(path));
}
QByteArray data("Hello world", 11);
QCOMPARE(data.size(), 11);
f.write(data);
}
void KIOPasteTest::testPasteJob_data()
{
QTest::addColumn<QList<QUrl>>("urls");
QTest::addColumn<bool>("data");
QTest::addColumn<bool>("cut");
QTest::addColumn<QString>("expectedFileName");
const QString file = m_dir + "/file";
createTestFile(file);
QList<QUrl> urlFile = QList<QUrl>{QUrl::fromLocalFile(file)};
QList<QUrl> urlDir = QList<QUrl>{QUrl::fromLocalFile(m_dir)};
QTest::newRow("nothing") << QList<QUrl>() << false << false << QString();
QTest::newRow("copy_one_file") << urlFile << false << false << file.section('/', -1);
QTest::newRow("copy_one_dir") << urlDir << false << false << m_dir.section('/', -1);
QTest::newRow("cut_one_file") << urlFile << false << true << file.section('/', -1);
QTest::newRow("cut_one_dir") << urlDir << false << true << m_dir.section('/', -1);
// Shows a dialog!
// QTest::newRow("data") << QList<QUrl>() << true << "output_file";
}
void KIOPasteTest::testPasteJob()
{
QFETCH(QList<QUrl>, urls);
QFETCH(bool, data);
QFETCH(bool, cut);
QFETCH(QString, expectedFileName);
QMimeData mimeData;
bool isDir = false;
bool isFile = false;
if (!urls.isEmpty()) {
mimeData.setUrls(urls);
QFileInfo fileInfo(urls.first().toLocalFile());
isDir = fileInfo.isDir();
isFile = fileInfo.isFile();
}
if (data) {
mimeData.setText(QStringLiteral("Hello world"));
}
KIO::setClipboardDataCut(&mimeData, cut);
QTemporaryDir destTempDir;
QVERIFY(destTempDir.isValid());
const QString destDir = destTempDir.path();
KIO::PasteJob *job = KIO::paste(&mimeData, QUrl::fromLocalFile(destDir), KIO::HideProgressInfo);
QSignalSpy spy(job, &KIO::PasteJob::itemCreated);
QVERIFY(spy.isValid());
job->setUiDelegate(nullptr);
const bool expectedSuccess = !expectedFileName.isEmpty();
QCOMPARE(job->exec(), expectedSuccess);
if (expectedSuccess) {
const QString destFile = destDir + '/' + expectedFileName;
QVERIFY2(QFile::exists(destFile), qPrintable(expectedFileName));
if (isDir) {
QVERIFY(QFileInfo(destFile).isDir());
} else {
QVERIFY(QFileInfo(destFile).isFile());
QFile file(destFile);
QVERIFY(file.open(QIODevice::ReadOnly));
QCOMPARE(QString(file.readAll()), QString("Hello world"));
}
if (cut) {
QVERIFY(!QFile::exists(urls.first().toLocalFile()));
} else {
QVERIFY(QFile::exists(urls.first().toLocalFile()));
}
QCOMPARE(spy.count(), isFile || cut ? 1 : 2);
QCOMPARE(spy.at(0).at(0).value<QUrl>().toLocalFile(), destFile);
}
}
#include "moc_pastetest.cpp"
|