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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
/****************************************************************************
**
** Copyright (C) 2013 David Faure <faure+bluesystems@kde.org>
** Contact: http://www.qt-project.org/legal
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, 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.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QtConcurrentRun>
#include <qlockfile.h>
#include <qtemporarydir.h>
#if defined(Q_OS_UNIX) && !defined(Q_OS_VXWORKS)
#include <unistd.h>
#endif
class tst_QLockFile : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void lockUnlock();
void lockOutOtherProcess();
void lockOutOtherThread();
void waitForLock_data();
void waitForLock();
void staleLockFromCrashedProcess_data();
void staleLockFromCrashedProcess();
void staleShortLockFromBusyProcess();
void staleLongLockFromBusyProcess();
void staleLockRace();
void noPermissions();
public:
QString m_helperApp;
QTemporaryDir dir;
};
void tst_QLockFile::initTestCase()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
// chdir to our testdata path and execute helper apps relative to that.
QString testdata_dir = QFileInfo(QFINDTESTDATA("qlockfiletesthelper")).absolutePath();
QVERIFY2(QDir::setCurrent(testdata_dir), qPrintable("Could not chdir to " + testdata_dir));
m_helperApp = "qlockfiletesthelper/qlockfile_test_helper";
#endif // !QT_NO_PROCESS
}
void tst_QLockFile::lockUnlock()
{
const QString fileName = dir.path() + "/lock1";
QVERIFY(!QFile(fileName).exists());
QLockFile lockFile(fileName);
QVERIFY(lockFile.lock());
QVERIFY(lockFile.isLocked());
QCOMPARE(int(lockFile.error()), int(QLockFile::NoError));
QVERIFY(QFile::exists(fileName));
// Recursive locking is not allowed
// (can't test lock() here, it would wait forever)
QVERIFY(!lockFile.tryLock());
QCOMPARE(int(lockFile.error()), int(QLockFile::LockFailedError));
qint64 pid;
QString hostname, appname;
QVERIFY(lockFile.getLockInfo(&pid, &hostname, &appname));
QCOMPARE(pid, QCoreApplication::applicationPid());
QCOMPARE(appname, qAppName());
QVERIFY(!lockFile.tryLock(200));
QCOMPARE(int(lockFile.error()), int(QLockFile::LockFailedError));
// Unlock deletes the lock file
lockFile.unlock();
QCOMPARE(int(lockFile.error()), int(QLockFile::NoError));
QVERIFY(!lockFile.isLocked());
QVERIFY(!QFile::exists(fileName));
}
void tst_QLockFile::lockOutOtherProcess()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
// Lock
const QString fileName = dir.path() + "/lockOtherProcess";
QLockFile lockFile(fileName);
QVERIFY(lockFile.lock());
// Other process can't acquire lock
QProcess proc;
proc.start(m_helperApp, QStringList() << fileName);
QVERIFY2(proc.waitForStarted(), qPrintable(proc.errorString()));
QVERIFY(proc.waitForFinished());
QCOMPARE(proc.exitCode(), int(QLockFile::LockFailedError));
// Unlock
lockFile.unlock();
QVERIFY(!QFile::exists(fileName));
// Other process can now acquire lock
int ret = QProcess::execute(m_helperApp, QStringList() << fileName);
QCOMPARE(ret, int(QLockFile::NoError));
// Lock doesn't survive process though (on clean exit)
QVERIFY(!QFile::exists(fileName));
#endif // !QT_NO_PROCESS
}
static QLockFile::LockError tryLockFromThread(const QString &fileName)
{
QLockFile lockInThread(fileName);
lockInThread.tryLock();
return lockInThread.error();
}
void tst_QLockFile::lockOutOtherThread()
{
const QString fileName = dir.path() + "/lockOtherThread";
QLockFile lockFile(fileName);
QVERIFY(lockFile.lock());
// Other thread can't acquire lock
QFuture<QLockFile::LockError> ret = QtConcurrent::run<QLockFile::LockError>(tryLockFromThread, fileName);
QCOMPARE(ret.result(), QLockFile::LockFailedError);
lockFile.unlock();
// Now other thread can acquire lock
QFuture<QLockFile::LockError> ret2 = QtConcurrent::run<QLockFile::LockError>(tryLockFromThread, fileName);
QCOMPARE(ret2.result(), QLockFile::NoError);
}
static bool lockFromThread(const QString &fileName, int sleepMs, QSemaphore *semThreadReady, QSemaphore *semMainThreadDone)
{
QLockFile lockFile(fileName);
if (!lockFile.lock()) {
qWarning() << "Locking failed" << lockFile.error();
return false;
}
semThreadReady->release();
QThread::msleep(sleepMs);
semMainThreadDone->acquire();
lockFile.unlock();
return true;
}
void tst_QLockFile::waitForLock_data()
{
QTest::addColumn<int>("testNumber");
QTest::addColumn<int>("threadSleepMs");
QTest::addColumn<bool>("releaseEarly");
QTest::addColumn<int>("tryLockTimeout");
QTest::addColumn<bool>("expectedResult");
int tn = 0; // test number
QTest::newRow("wait_forever_succeeds") << ++tn << 500 << true << -1 << true;
QTest::newRow("wait_longer_succeeds") << ++tn << 500 << true << 1000 << true;
QTest::newRow("wait_zero_fails") << ++tn << 500 << false << 0 << false;
QTest::newRow("wait_not_enough_fails") << ++tn << 500 << false << 100 << false;
}
void tst_QLockFile::waitForLock()
{
QFETCH(int, testNumber);
QFETCH(int, threadSleepMs);
QFETCH(bool, releaseEarly);
QFETCH(int, tryLockTimeout);
QFETCH(bool, expectedResult);
const QString fileName = dir.path() + "/waitForLock" + QString::number(testNumber);
QLockFile lockFile(fileName);
QSemaphore semThreadReady, semMainThreadDone;
// Lock file from a thread
QFuture<bool> ret = QtConcurrent::run<bool>(lockFromThread, fileName, threadSleepMs, &semThreadReady, &semMainThreadDone);
semThreadReady.acquire();
if (releaseEarly) // let the thread release the lock after threadSleepMs
semMainThreadDone.release();
QCOMPARE(lockFile.tryLock(tryLockTimeout), expectedResult);
if (expectedResult)
QCOMPARE(int(lockFile.error()), int(QLockFile::NoError));
else
QCOMPARE(int(lockFile.error()), int(QLockFile::LockFailedError));
if (!releaseEarly) // only let the thread release the lock now
semMainThreadDone.release();
QVERIFY(ret); // waits for the thread to finish
}
void tst_QLockFile::staleLockFromCrashedProcess_data()
{
QTest::addColumn<int>("staleLockTime");
// Test both use cases for QLockFile, should make no difference here.
QTest::newRow("short") << 30000;
QTest::newRow("long") << 0;
}
void tst_QLockFile::staleLockFromCrashedProcess()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
QFETCH(int, staleLockTime);
const QString fileName = dir.path() + "/staleLockFromCrashedProcess";
int ret = QProcess::execute(m_helperApp, QStringList() << fileName << "-crash");
QCOMPARE(ret, int(QLockFile::NoError));
QTRY_VERIFY(QFile::exists(fileName));
QLockFile secondLock(fileName);
secondLock.setStaleLockTime(staleLockTime);
// tryLock detects and removes the stale lock (since the PID is dead)
#ifdef Q_OS_WIN
// It can take a bit of time on Windows, though.
QVERIFY(secondLock.tryLock(30000));
#else
QVERIFY(secondLock.tryLock());
#endif
QCOMPARE(int(secondLock.error()), int(QLockFile::NoError));
#endif // !QT_NO_PROCESS
}
void tst_QLockFile::staleShortLockFromBusyProcess()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
const QString fileName = dir.path() + "/staleLockFromBusyProcess";
QProcess proc;
proc.start(m_helperApp, QStringList() << fileName << "-busy");
QVERIFY2(proc.waitForStarted(), qPrintable(proc.errorString()));
QTRY_VERIFY(QFile::exists(fileName));
QLockFile secondLock(fileName);
QVERIFY(!secondLock.tryLock()); // held by other process
QCOMPARE(int(secondLock.error()), int(QLockFile::LockFailedError));
qint64 pid;
QString hostname, appname;
QTRY_VERIFY(secondLock.getLockInfo(&pid, &hostname, &appname));
#ifdef Q_OS_UNIX
QCOMPARE(pid, proc.pid());
#endif
secondLock.setStaleLockTime(100);
QTest::qSleep(100); // make the lock stale
// We can't "steal" (delete+recreate) a lock file from a running process
// until the file descriptor is closed.
QVERIFY(!secondLock.tryLock());
proc.waitForFinished();
QVERIFY(secondLock.tryLock());
#endif // !QT_NO_PROCESS
}
void tst_QLockFile::staleLongLockFromBusyProcess()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
const QString fileName = dir.path() + "/staleLockFromBusyProcess";
QProcess proc;
proc.start(m_helperApp, QStringList() << fileName << "-busy");
QVERIFY2(proc.waitForStarted(), qPrintable(proc.errorString()));
QTRY_VERIFY(QFile::exists(fileName));
QLockFile secondLock(fileName);
secondLock.setStaleLockTime(0);
QVERIFY(!secondLock.tryLock(100)); // never stale
QCOMPARE(int(secondLock.error()), int(QLockFile::LockFailedError));
qint64 pid;
QTRY_VERIFY(secondLock.getLockInfo(&pid, NULL, NULL));
QVERIFY(pid > 0);
// As long as the other process is running, we can't remove the lock file
QVERIFY(!secondLock.removeStaleLockFile());
proc.waitForFinished();
#endif // !QT_NO_PROCESS
}
static QString tryStaleLockFromThread(const QString &fileName)
{
QLockFile lockInThread(fileName + ".lock");
lockInThread.setStaleLockTime(1000);
if (!lockInThread.lock())
return "Error locking: " + QString::number(lockInThread.error());
// The concurrent use of the file below (write, read, delete) is protected by the lock file above.
// (provided that it doesn't become stale due to this operation taking too long)
QFile theFile(fileName);
if (!theFile.open(QIODevice::WriteOnly))
return "Couldn't open for write";
theFile.write("Hello world");
theFile.flush();
theFile.close();
QFile reader(fileName);
if (!reader.open(QIODevice::ReadOnly))
return "Couldn't open for read";
const QByteArray read = reader.readAll();
if (read != "Hello world")
return "File didn't have the expected contents:" + read;
reader.remove();
return QString();
}
void tst_QLockFile::staleLockRace()
{
#ifdef QT_NO_PROCESS
QSKIP("This test requires QProcess support");
#else
// Multiple threads notice a stale lock at the same time
// Only one thread should delete it, otherwise a race will ensue
const QString fileName = dir.path() + "/sharedFile";
const QString lockName = fileName + ".lock";
int ret = QProcess::execute(m_helperApp, QStringList() << lockName << "-crash");
QCOMPARE(ret, int(QLockFile::NoError));
QTRY_VERIFY(QFile::exists(lockName));
QThreadPool::globalInstance()->setMaxThreadCount(10);
QFutureSynchronizer<QString> synchronizer;
for (int i = 0; i < 8; ++i)
synchronizer.addFuture(QtConcurrent::run<QString>(tryStaleLockFromThread, fileName));
synchronizer.waitForFinished();
foreach (const QFuture<QString> &future, synchronizer.futures())
QVERIFY2(future.result().isEmpty(), qPrintable(future.result()));
#endif // !QT_NO_PROCESS
}
void tst_QLockFile::noPermissions()
{
#if defined(Q_OS_WIN)
// A readonly directory still allows us to create files, on Windows.
QSKIP("No permission testing on Windows");
#elif defined(Q_OS_UNIX) && !defined(Q_OS_VXWORKS)
if (::geteuid() == 0)
QSKIP("Test is not applicable with root privileges");
#endif
// Restore permissions so that the QTemporaryDir cleanup can happen
class PermissionRestorer
{
QString m_path;
public:
PermissionRestorer(const QString& path)
: m_path(path)
{}
~PermissionRestorer()
{
QFile file(m_path);
file.setPermissions(QFile::Permissions(QFile::ReadOwner | QFile::WriteOwner | QFile::ExeOwner));
}
};
const QString fileName = dir.path() + "/staleLock";
QFile dirAsFile(dir.path()); // I have to use QFile to change a dir's permissions...
QVERIFY2(dirAsFile.setPermissions(QFile::Permissions(0)), qPrintable(dir.path())); // no permissions
PermissionRestorer permissionRestorer(dir.path());
QLockFile lockFile(fileName);
QVERIFY(!lockFile.lock());
QCOMPARE(int(lockFile.error()), int(QLockFile::PermissionError));
}
QTEST_MAIN(tst_QLockFile)
#include "tst_qlockfile.moc"
|