2014-01-08 17:35:38 +04:00
|
|
|
/*
|
|
|
|
* This software is in the public domain, furnished "as is", without technical
|
|
|
|
* support, and with no warranty, express or implied, as to its usefulness for
|
|
|
|
* any purpose.
|
|
|
|
* */
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "folderwatcher_linux.h"
|
2017-08-16 09:36:52 +03:00
|
|
|
#include "common/utility.h"
|
2014-01-08 17:35:38 +04:00
|
|
|
|
2014-11-10 00:36:49 +03:00
|
|
|
using namespace OCC;
|
2014-01-08 17:35:38 +04:00
|
|
|
|
2014-01-23 16:16:08 +04:00
|
|
|
class TestInotifyWatcher: public FolderWatcherPrivate
|
2014-01-08 17:35:38 +04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString _root;
|
|
|
|
|
|
|
|
private slots:
|
2021-09-03 22:37:46 +03:00
|
|
|
void initTestCase()
|
|
|
|
{
|
|
|
|
_root = QDir::tempPath() + "/" + "test_" + QString::number(OCC::Utility::rand());
|
2014-01-08 17:35:38 +04:00
|
|
|
qDebug() << "creating test directory tree in " << _root;
|
|
|
|
QDir rootDir(_root);
|
|
|
|
|
|
|
|
rootDir.mkpath(_root + "/a1/b1/c1");
|
|
|
|
rootDir.mkpath(_root + "/a1/b1/c2");
|
|
|
|
rootDir.mkpath(_root + "/a1/b2/c1");
|
|
|
|
rootDir.mkpath(_root + "/a1/b3/c3");
|
|
|
|
rootDir.mkpath(_root + "/a2/b3/c3");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the recursive path listing function findFoldersBelow
|
|
|
|
void testDirsBelowPath() {
|
|
|
|
QStringList dirs;
|
|
|
|
|
|
|
|
bool ok = findFoldersBelow(QDir(_root), dirs);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b1")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b1/c1")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b1/c2")>-1);
|
|
|
|
|
|
|
|
QVERIFY(Utility::writeRandomFile(_root+"/a1/rand1.dat"));
|
|
|
|
QVERIFY(Utility::writeRandomFile(_root+"/a1/b1/rand2.dat"));
|
|
|
|
QVERIFY(Utility::writeRandomFile(_root+"/a1/b1/c1/rand3.dat"));
|
|
|
|
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b2")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b2/c1")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b3")>-1);
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a1/b3/c3")>-1);
|
|
|
|
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a2"));
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a2/b3"));
|
|
|
|
QVERIFY( dirs.indexOf(_root + "/a2/b3/c3"));
|
|
|
|
|
|
|
|
QVERIFY2(dirs.count() == 11, "Directory count wrong.");
|
|
|
|
|
|
|
|
QVERIFY2(ok, "findFoldersBelow failed.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void cleanupTestCase() {
|
|
|
|
if( _root.startsWith(QDir::tempPath() )) {
|
|
|
|
system( QString("rm -rf %1").arg(_root).toLocal8Bit() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-11 02:17:16 +03:00
|
|
|
QTEST_APPLESS_MAIN(TestInotifyWatcher)
|
2016-03-30 18:58:15 +03:00
|
|
|
#include "testinotifywatcher.moc"
|