katie/tests/auto/qfilesystemwatcher/tst_qfilesystemwatcher.cpp
Ivailo Monev 3813419d30 build fix for the case when QT_NO_FILESYSTEMWATCHER is defined
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-02-25 02:46:03 +02:00

553 lines
No EOL
17 KiB
C++

/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Copyright (C) 2016 Ivailo Monev
**
** This file is part of the test suite of the Katie Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QCoreApplication>
#include <QFileSystemWatcher>
#include <QFile>
#include <QDir>
#include <QTimer>
#include <QDebug>
//TESTED_CLASS=
//TESTED_FILES=
#ifndef QT_NO_FILESYSTEMWATCHER
class tst_QFileSystemWatcher : public QObject
{
Q_OBJECT
public:
tst_QFileSystemWatcher();
private slots:
void basicTest();
void watchDirectory();
void addPath();
void removePath();
void addPaths();
void removePaths();
void watchFileAndItsDirectory();
void nonExistingFileAndDirectory();
void removeFileAndUnWatch();
void cleanup();
void QTBUG15255_deadlock();
};
tst_QFileSystemWatcher::tst_QFileSystemWatcher()
{
}
void tst_QFileSystemWatcher::basicTest()
{
// create test file
QFile testFile("testfile.txt");
testFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner);
testFile.remove();
QVERIFY(testFile.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile.write(QByteArray("hello"));
testFile.close();
// set some file permissions
testFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner);
QFileSystemWatcher watcher(this);
watcher.removePath(testFile.fileName());
watcher.addPath(testFile.fileName());
QSignalSpy changedSpy(&watcher, SIGNAL(fileChanged(const QString &)));
QEventLoop eventLoop;
QTimer timer;
connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
// modify the file, should get a signal from the watcher
// resolution of the modification time is system dependent, but it's at most 1 second when using
// the polling engine. I've heard rumors that FAT32 has a 2 second resolution. So, we have to
// wait a bit before we can modify the file (hrmph)...
QTest::qWait(2000);
testFile.open(QIODevice::WriteOnly | QIODevice::Append);
testFile.write(QByteArray("world"));
testFile.close();
// qDebug() << "waiting max 5 seconds for notification for file modification to trigger(1)";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 1);
QCOMPARE(changedSpy.at(0).count(), 1);
QString fileName = changedSpy.at(0).at(0).toString();
QCOMPARE(fileName, testFile.fileName());
changedSpy.clear();
// remove the watch and modify the file, should not get a signal from the watcher
watcher.removePath(testFile.fileName());
testFile.open(QIODevice::WriteOnly | QIODevice::Truncate);
testFile.write(QByteArray("hello universe!"));
testFile.close();
// qDebug() << "waiting max 5 seconds for notification for file modification to trigger (2)";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 0);
// readd the file watch with a relative path
watcher.addPath(testFile.fileName().prepend("./"));
testFile.open(QIODevice::WriteOnly | QIODevice::Truncate);
testFile.write(QByteArray("hello multiverse!"));
testFile.close();
timer.start(5000);
eventLoop.exec();
QVERIFY(changedSpy.count() > 0);
watcher.removePath(testFile.fileName().prepend("./"));
changedSpy.clear();
// readd the file watch
watcher.addPath(testFile.fileName());
// change the permissions, should get a signal from the watcher
testFile.setPermissions(QFile::ReadOwner);
// qDebug() << "waiting max 5 seconds for notification for file permission modification to trigger(1)";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 1);
QCOMPARE(changedSpy.at(0).count(), 1);
fileName = changedSpy.at(0).at(0).toString();
QCOMPARE(fileName, testFile.fileName());
changedSpy.clear();
// remove the watch and modify file permissions, should not get a signal from the watcher
watcher.removePath(testFile.fileName());
testFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner | QFile::ExeOther);
// qDebug() << "waiting max 5 seconds for notification for file modification to trigger (2)";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 0);
// readd the file watch
watcher.addPath(testFile.fileName());
// remove the file, should get a signal from the watcher
QVERIFY(testFile.remove());
// qDebug() << "waiting max 5 seconds for notification for file removal to trigger";
timer.start(5000);
eventLoop.exec();
QVERIFY(changedSpy.count() == 1 || changedSpy.count() == 2); // removing a file on some filesystems seems to deliver 2 notifications
QCOMPARE(changedSpy.at(0).count(), 1);
fileName = changedSpy.at(0).at(0).toString();
QCOMPARE(fileName, testFile.fileName());
changedSpy.clear();
// recreate the file, we should not get any notification
QVERIFY(testFile.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile.write(QByteArray("hello"));
testFile.close();
// qDebug() << "waiting max 5 seconds for notification for file recreation to trigger";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 0);
QVERIFY(testFile.remove());
}
void tst_QFileSystemWatcher::watchDirectory()
{
QDir().mkdir("testDir");
QDir testDir("testDir");
QString testFileName = testDir.filePath("testFile.txt");
QFile::remove(testFileName);
QFileSystemWatcher watcher(this);
watcher.addPath(testDir.dirName());
QSignalSpy changedSpy(&watcher, SIGNAL(directoryChanged(const QString &)));
QEventLoop eventLoop;
QTimer timer;
connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
// resolution of the modification time is system dependent, but it's at most 1 second when using
// the polling engine. From what I know, FAT32 has a 2 second resolution. So we have to
// wait before modifying the directory...
QTest::qWait(2000);
QFile testFile(testFileName);
QString fileName;
// remove the watch, should not get notification of a new file
watcher.removePath(testDir.dirName());
QVERIFY(testFile.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile.close();
// qDebug() << "waiting max 5 seconds for notification for file recreationg to trigger";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 0);
watcher.addPath(testDir.dirName());
// remove the file again, should get a signal from the watcher
QVERIFY(testFile.remove());
timer.start(5000);
eventLoop.exec();
// remove the directory, should get a signal from the watcher
QVERIFY(QDir().rmdir("testDir"));
// qDebug() << "waiting max 5 seconds for notification for directory removal to trigger";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 2);
QCOMPARE(changedSpy.at(0).count(), 1);
QCOMPARE(changedSpy.at(1).count(), 1);
fileName = changedSpy.at(0).at(0).toString();
QCOMPARE(fileName, testDir.dirName());
fileName = changedSpy.at(1).at(0).toString();
QCOMPARE(fileName, testDir.dirName());
changedSpy.clear();
// recreate the file, we should not get any notification
if (!QDir().mkdir("testDir"))
QSKIP("Failed to recreate directory, skipping final test.", SkipSingle);
// qDebug() << "waiting max 5 seconds for notification for dir recreation to trigger";
timer.start(5000);
eventLoop.exec();
QCOMPARE(changedSpy.count(), 0);
QVERIFY(QDir().rmdir("testDir"));
}
void tst_QFileSystemWatcher::addPath()
{
QFileSystemWatcher watcher;
QString home = QDir::homePath();
watcher.addPath(home);
QCOMPARE(watcher.directories().count(), 1);
QCOMPARE(watcher.directories().first(), home);
watcher.addPath(home);
QCOMPARE(watcher.directories().count(), 1);
// With empty string
QTest::ignoreMessage(QtWarningMsg, "QFileSystemWatcher::addPath: path is empty");
watcher.addPath(QString());
}
void tst_QFileSystemWatcher::removePath()
{
QFileSystemWatcher watcher;
QString home = QDir::homePath();
watcher.addPath(home);
watcher.removePath(home);
QCOMPARE(watcher.directories().count(), 0);
watcher.removePath(home);
QCOMPARE(watcher.directories().count(), 0);
// With empty string
QTest::ignoreMessage(QtWarningMsg, "QFileSystemWatcher::removePath: path is empty");
watcher.removePath(QString());
}
void tst_QFileSystemWatcher::addPaths()
{
QFileSystemWatcher watcher;
QStringList paths;
paths << QDir::homePath() << QDir::currentPath();
watcher.addPaths(paths);
QCOMPARE(watcher.directories().count(), 2);
// With empty list
paths.clear();
QTest::ignoreMessage(QtWarningMsg, "QFileSystemWatcher::addPaths: list is empty");
watcher.addPaths(paths);
}
void tst_QFileSystemWatcher::removePaths()
{
QFileSystemWatcher watcher;
QStringList paths;
paths << QDir::homePath() << QDir::currentPath();
watcher.addPaths(paths);
QCOMPARE(watcher.directories().count(), 2);
watcher.removePaths(paths);
QCOMPARE(watcher.directories().count(), 0);
//With empty list
paths.clear();
QTest::ignoreMessage(QtWarningMsg, "QFileSystemWatcher::removePaths: list is empty");
watcher.removePaths(paths);
}
#if 0
class SignalTest : public QObject {
Q_OBJECT
public slots:
void fileSlot(const QString &file) { qDebug() << "file " << file;}
void dirSlot(const QString &dir) { qDebug() << "dir" << dir;}
};
#endif
void tst_QFileSystemWatcher::watchFileAndItsDirectory()
{
QDir().mkdir("testDir");
QDir testDir("testDir");
QString testFileName = testDir.filePath("testFile.txt");
QString secondFileName = testDir.filePath("testFile2.txt");
QFile::remove(secondFileName);
QFile testFile(testFileName);
testFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner);
testFile.remove();
QVERIFY(testFile.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile.write(QByteArray("hello"));
testFile.close();
QFileSystemWatcher watcher(this);
watcher.addPath(testDir.dirName());
watcher.addPath(testFileName);
/*
SignalTest signalTest;
QObject::connect(&watcher, SIGNAL(fileChanged(const QString &)), &signalTest, SLOT(fileSlot(const QString &)));
QObject::connect(&watcher, SIGNAL(directoryChanged(const QString &)), &signalTest, SLOT(dirSlot(const QString &)));
*/
QSignalSpy fileChangedSpy(&watcher, SIGNAL(fileChanged(const QString &)));
QSignalSpy dirChangedSpy(&watcher, SIGNAL(directoryChanged(const QString &)));
QEventLoop eventLoop;
QTimer timer;
connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
// resolution of the modification time is system dependent, but it's at most 1 second when using
// the polling engine. From what I know, FAT32 has a 2 second resolution. So we have to
// wait before modifying the directory...
QTest::qWait(2000);
QVERIFY(testFile.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile.write(QByteArray("hello again"));
testFile.close();
timer.start(3000);
eventLoop.exec();
QVERIFY(fileChangedSpy.count() > 0);
//according to Qt 4 documentation:
//void QFileSystemWatcher::directoryChanged ( const QString & path ) [signal]
//This signal is emitted when the directory at a specified path, is modified
//(e.g., when a file is added, -->modified<-- or deleted) or removed from disk.
//Note that if there are several changes during a short period of time, some
//of the changes might not emit this signal. However, the last change in the
//sequence of changes will always generate this signal.
//Symbian behaves as documented (and can't be filtered), but the other platforms don't
//so test should not assert this
QVERIFY(dirChangedSpy.count() < 2);
fileChangedSpy.clear();
dirChangedSpy.clear();
QFile secondFile(secondFileName);
secondFile.open(QIODevice::WriteOnly | QIODevice::Truncate);
secondFile.write("Foo");
secondFile.close();
timer.start(3000);
eventLoop.exec();
QCOMPARE(fileChangedSpy.count(), 0);
QCOMPARE(dirChangedSpy.count(), 1);
dirChangedSpy.clear();
QFile::remove(testFileName);
timer.start(3000);
eventLoop.exec();
QVERIFY(fileChangedSpy.count() > 0);
QCOMPARE(dirChangedSpy.count(), 1);
fileChangedSpy.clear();
dirChangedSpy.clear();
watcher.removePath(testFileName);
QFile::remove(secondFileName);
timer.start(3000);
eventLoop.exec();
QCOMPARE(fileChangedSpy.count(), 0);
// polling watcher has generated separate events for content and time change
// on Symbian emulator, so allow possibility of 2 events
QVERIFY(dirChangedSpy.count() == 1 || dirChangedSpy.count() == 2);
QVERIFY(QDir().rmdir("testDir"));
}
void tst_QFileSystemWatcher::cleanup()
{
QDir testDir("testDir");
QString testFileName = testDir.filePath("testFile.txt");
QString secondFileName = testDir.filePath("testFile2.txt");
QFile::remove(testFileName);
QFile::remove(secondFileName);
QDir().rmdir("testDir");
}
void tst_QFileSystemWatcher::nonExistingFileAndDirectory()
{
// Don't crash and watch for its creation
const QStringList nonexistingfiles = QStringList()
<< "file_that_does_not_exist.txt"
<< "foo/bar.txt";
const QStringList nonexistingdirs = QStringList()
<< "dir_that_does_not_exist/"
<< "dir_foo/dir_bar/";
QFileSystemWatcher watcher;
watcher.addPaths(nonexistingfiles);
watcher.addPaths(nonexistingdirs);
QCOMPARE(watcher.files(), nonexistingfiles);
QCOMPARE(watcher.directories(), nonexistingdirs);
QSignalSpy fileChangedSpy(&watcher, SIGNAL(fileChanged(const QString &)));
QSignalSpy dirChangedSpy(&watcher, SIGNAL(directoryChanged(const QString &)));
QEventLoop eventLoop;
QTimer timer;
connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
QDir().mkdir("dir_that_does_not_exist");
timer.start(3000);
eventLoop.exec();
QCOMPARE(dirChangedSpy.count(), 1);
dirChangedSpy.clear();
QDir().mkdir("dir_foo");
QDir("dir_foo").mkdir("dir_bar");
timer.start(3000);
eventLoop.exec();
QCOMPARE(dirChangedSpy.count(), 1);
fileChangedSpy.clear();
QFile testFile1("file_that_does_not_exist.txt");
QVERIFY(testFile1.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile1.write(QByteArray("hello"));
testFile1.close();
timer.start(3000);
eventLoop.exec();
QCOMPARE(fileChangedSpy.count(), 1);
fileChangedSpy.clear();
QDir().mkdir("foo");
QFile testFile2("foo/bar.txt");
QVERIFY(testFile2.open(QIODevice::WriteOnly | QIODevice::Truncate));
testFile2.write(QByteArray("hello"));
testFile2.close();
timer.start(3000);
eventLoop.exec();
QCOMPARE(fileChangedSpy.count(), 1);
testFile1.remove();
testFile2.remove();
QDir().rmdir("foo");
QDir("dir_foo").rmdir("dir_bar");
QDir().rmdir("dir_foo");
QDir().rmdir("dir_that_does_not_exist");
}
void tst_QFileSystemWatcher::removeFileAndUnWatch()
{
static const char * const filename = "foo.txt";
QFileSystemWatcher watcher;
{
QFile testFile(filename);
testFile.open(QIODevice::WriteOnly);
testFile.close();
}
watcher.addPath(filename);
QFile::remove(filename);
watcher.removePath(filename);
{
QFile testFile(filename);
testFile.open(QIODevice::WriteOnly);
testFile.close();
}
watcher.addPath(filename);
}
class SomeSingleton : public QObject
{
public:
SomeSingleton() : mFsWatcher(new QFileSystemWatcher(this)) { mFsWatcher->addPath(QLatin1String("/usr/lib"));}
void bla() const {}
QFileSystemWatcher* mFsWatcher;
};
Q_GLOBAL_STATIC(SomeSingleton, someSingleton)
void tst_QFileSystemWatcher::QTBUG15255_deadlock()
{
someSingleton()->bla();
//the test must still finish
QTest::qWait(30);
}
QTEST_MAIN(tst_QFileSystemWatcher)
#include "moc_tst_qfilesystemwatcher.cpp"
#else // QT_NO_FILESYSTEMWATCHER
QTEST_NOOP_MAIN
#endif // QT_NO_FILESYSTEMWATCHER