kde-extraapps/gwenview/tests/auto/importertest.cpp

249 lines
7.7 KiB
C++
Raw Normal View History

/*
Gwenview: an image viewer
Copyright 2009 Aurélien Gâteau <agateau@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "importertest.moc"
// stdlib
#include <sys/stat.h>
// Qt
#include <QSignalSpy>
// KDE
#include <KDateTime>
#include <KDebug>
#include <qtest_kde.h>
// Local
#include "../importer/fileutils.h"
#include "../importer/importer.h"
#include "../importer/filenameformater.h"
#include "testutils.h"
QTEST_KDEMAIN(ImporterTest, GUI)
using namespace Gwenview;
void ImporterTest::init()
{
mDocumentList = KUrl::List()
<< urlForTestFile("import/pict0001.jpg")
<< urlForTestFile("import/pict0002.jpg")
<< urlForTestFile("import/pict0003.jpg")
;
mTempDir.reset(new KTempDir());
}
void ImporterTest::testContentsAreIdentical()
{
QVERIFY(!FileUtils::contentsAreIdentical(mDocumentList[0], mDocumentList[1]));
QVERIFY(FileUtils::contentsAreIdentical(mDocumentList[0], mDocumentList[0]));
KUrl url1 = mDocumentList[0];
KUrl url2 = urlForTestOutputFile("foo");
// Test on a copy of a file
QFile::remove(url2.toLocalFile());
QFile::copy(url1.toLocalFile(), url2.toLocalFile());
QVERIFY(FileUtils::contentsAreIdentical(url1, url2));
// Alter one byte of the copy and test again
QFile file(url2.toLocalFile());
QVERIFY(file.open(QIODevice::ReadOnly));
QByteArray data = file.readAll();
file.close();
data[data.size() / 2] = 255 - data[data.size() / 2];
file.open(QIODevice::WriteOnly);
file.write(data);
file.close();
QVERIFY(!FileUtils::contentsAreIdentical(url1, url2));
}
void ImporterTest::testSuccessfulImport()
{
KUrl destUrl = KUrl::fromPath(mTempDir->name() + "/foo");
Importer importer(0);
QSignalSpy maximumChangedSpy(&importer, SIGNAL(maximumChanged(int)));
QSignalSpy errorSpy(&importer, SIGNAL(error(QString)));
KUrl::List list = mDocumentList;
QEventLoop loop;
connect(&importer, SIGNAL(importFinished()), &loop, SLOT(quit()));
importer.start(list, destUrl);
loop.exec();
QCOMPARE(maximumChangedSpy.count(), 1);
QCOMPARE(maximumChangedSpy.takeFirst().at(0).toInt(), list.count() * 100);
QCOMPARE(errorSpy.count(), 0);
QCOMPARE(importer.importedUrlList().count(), list.count());
QCOMPARE(importer.importedUrlList(), list);
QCOMPARE(importer.skippedUrlList().count(), 0);
QCOMPARE(importer.renamedCount(), 0);
Q_FOREACH(const KUrl & src, list) {
KUrl dst = destUrl;
dst.addPath(src.fileName());
QVERIFY(FileUtils::contentsAreIdentical(src, dst));
}
}
void ImporterTest::testSkippedUrlList()
{
KUrl destUrl = KUrl::fromPath(mTempDir->name() + "/foo");
Importer importer(0);
KUrl::List list = mDocumentList.mid(0, 1);
QEventLoop loop;
connect(&importer, SIGNAL(importFinished()), &loop, SLOT(quit()));
importer.start(list, destUrl);
loop.exec();
QCOMPARE(importer.importedUrlList().count(), 1);
QCOMPARE(importer.importedUrlList(), list);
list = mDocumentList;
KUrl::List expectedImportedList = mDocumentList.mid(1);
KUrl::List expectedSkippedList = mDocumentList.mid(0, 1);
importer.start(list, destUrl);
loop.exec();
QCOMPARE(importer.importedUrlList().count(), 2);
QCOMPARE(importer.importedUrlList(), expectedImportedList);
QCOMPARE(importer.skippedUrlList(), expectedSkippedList);
QCOMPARE(importer.renamedCount(), 0);
}
void ImporterTest::testRenamedCount()
{
KUrl destUrl = KUrl::fromPath(mTempDir->name() + "/foo");
Importer importer(0);
KUrl::List list;
list << mDocumentList.first();
QEventLoop loop;
connect(&importer, SIGNAL(importFinished()), &loop, SLOT(quit()));
importer.start(list, destUrl);
loop.exec();
QCOMPARE(importer.importedUrlList().count(), 1);
QCOMPARE(importer.importedUrlList(), list);
// Modify imported document so that next import does not skip it
{
KUrl url = destUrl;
url.addPath(mDocumentList.first().fileName());
QFile file(url.toLocalFile());
QVERIFY(file.open(QIODevice::Append));
file.write("foo");
}
list = mDocumentList;
importer.start(list, destUrl);
loop.exec();
QCOMPARE(importer.importedUrlList().count(), 3);
QCOMPARE(importer.importedUrlList(), mDocumentList);
QCOMPARE(importer.skippedUrlList().count(), 0);
QCOMPARE(importer.renamedCount(), 1);
}
void ImporterTest::testFileNameFormater()
{
QFETCH(QString, fileName);
QFETCH(QString, dateTime);
QFETCH(QString, format);
QFETCH(QString, expected);
KUrl url = KUrl("file://foo/bar/" + fileName);
FileNameFormater fileNameFormater(format);
QCOMPARE(fileNameFormater.format(url, KDateTime::fromString(dateTime)), expected);
}
#define NEW_ROW(fileName, dateTime, format, expected) QTest::newRow(fileName) << fileName << dateTime << format << expected
void ImporterTest::testFileNameFormater_data()
{
QTest::addColumn<QString>("fileName");
QTest::addColumn<QString>("dateTime");
QTest::addColumn<QString>("format");
QTest::addColumn<QString>("expected");
NEW_ROW("PICT0001.JPG", "20091024T225049", "{date}_{time}.{ext}", "2009-10-24_22-50-49.JPG");
NEW_ROW("PICT0001.JPG", "20091024T225049", "{date}_{time}.{ext.lower}", "2009-10-24_22-50-49.jpg");
NEW_ROW("2009.10.24.JPG", "20091024T225049", "{date}_{time}.{ext.lower}", "2009-10-24_22-50-49.jpg");
NEW_ROW("PICT0001.JPG", "20091024T225049", "{name}.{ext}", "PICT0001.JPG");
NEW_ROW("PICT0001.JPG", "20091024T225049", "{name.lower}.{ext.lower}", "pict0001.jpg");
NEW_ROW("iLikeCurlies", "20091024T225049", "{{{name}}", "{iLikeCurlies}");
NEW_ROW("UnknownKeyword", "20091024T225049", "foo{unknown}bar", "foobar");
NEW_ROW("MissingClosingCurly", "20091024T225049", "foo{date", "foo");
}
void ImporterTest::testAutoRenameFormat()
{
QStringList dates = QStringList()
<< "1979-02-23_10-20-00"
<< "2006-04-01_11-30-15"
<< "2009-10-01_21-15-27";
QCOMPARE(dates.count(), mDocumentList.count());
KUrl destUrl = KUrl::fromPath(mTempDir->name() + "foo");
Importer importer(0);
importer.setAutoRenameFormat("{date}_{time}.{ext}");
KUrl::List list = mDocumentList;
QEventLoop loop;
connect(&importer, SIGNAL(importFinished()), &loop, SLOT(quit()));
importer.start(list, destUrl);
loop.exec();
QCOMPARE(importer.importedUrlList().count(), list.count());
QCOMPARE(importer.importedUrlList(), list);
for (int pos = 0; pos < dates.count(); ++pos) {
KUrl src = list[pos];
KUrl dst = destUrl;
dst.addPath(dates[pos] + ".jpg");
QVERIFY(FileUtils::contentsAreIdentical(src, dst));
}
}
void ImporterTest::testReadOnlyDestination()
{
KUrl destUrl = KUrl::fromPath(mTempDir->name() + "/foo");
chmod(QFile::encodeName(mTempDir->name()), 0555);
Importer importer(0);
QSignalSpy errorSpy(&importer, SIGNAL(error(QString)));
importer.start(mDocumentList, destUrl);
QCOMPARE(errorSpy.count(), 1);
QVERIFY(importer.importedUrlList().isEmpty());
}