mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 23:42:58 +02:00
Added threaded settings test.
Test setValue() while a thread is constantly trying to save the file to disk to test the absolute worst case performance.
This commit is contained in:
parent
334317b175
commit
c743abc348
2 changed files with 73 additions and 0 deletions
|
@ -20,6 +20,24 @@
|
|||
|
||||
QTEST_MAIN(SettingsTests)
|
||||
|
||||
void SettingsTestThread::saveSettings() {
|
||||
auto sm = DependencyManager::get<Setting::Manager>();
|
||||
QThread *thread = QThread::currentThread();
|
||||
|
||||
while(! thread->isInterruptionRequested() ) {
|
||||
//qDebug() << "Thread is saving config";
|
||||
sm->forceSave();
|
||||
|
||||
// Not having any wait here for some reason locks up the benchmark.
|
||||
// Logging a message also does the trick.
|
||||
//
|
||||
// This looks like a bug somewhere and needs investigating.
|
||||
thread->yieldCurrentThread();
|
||||
}
|
||||
|
||||
thread->exit(0);
|
||||
}
|
||||
|
||||
void SettingsTests::initTestCase() {
|
||||
QCoreApplication::setOrganizationName("OverteTest");
|
||||
|
||||
|
@ -49,6 +67,18 @@ void SettingsTests::saveSettings() {
|
|||
qDebug() << "Wrote" << s.fileName();
|
||||
}
|
||||
|
||||
void SettingsTests::benchmarkSetValue() {
|
||||
auto sm = DependencyManager::get<Setting::Manager>();
|
||||
int i = 0;
|
||||
|
||||
QBENCHMARK {
|
||||
sm->setValue("BenchmarkSetValue", ++i);
|
||||
}
|
||||
|
||||
sm->forceSave();
|
||||
}
|
||||
|
||||
|
||||
void SettingsTests::benchmarkSaveSettings() {
|
||||
auto sm = DependencyManager::get<Setting::Manager>();
|
||||
int i = 0;
|
||||
|
@ -59,3 +89,29 @@ void SettingsTests::benchmarkSaveSettings() {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
void SettingsTests::benchmarkSetValueConcurrent() {
|
||||
auto sm = DependencyManager::get<Setting::Manager>();
|
||||
int i = 0;
|
||||
|
||||
_settingsThread = new QThread(qApp);
|
||||
_settingsThreadObj = new SettingsTestThread;
|
||||
|
||||
_settingsThread->setObjectName("Save thread");
|
||||
_settingsThreadObj->moveToThread(_settingsThread);
|
||||
|
||||
QObject::connect(_settingsThread, &QThread::started, _settingsThreadObj, &SettingsTestThread::saveSettings, Qt::QueuedConnection );
|
||||
|
||||
_settingsThread->start();
|
||||
QBENCHMARK {
|
||||
sm->setValue("BenchmarkSetValue", ++i);
|
||||
}
|
||||
|
||||
_settingsThread->requestInterruption();
|
||||
_settingsThread->wait();
|
||||
|
||||
delete _settingsThreadObj;
|
||||
delete _settingsThread;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,15 +11,32 @@
|
|||
|
||||
#include <QtCore/QObject>
|
||||
|
||||
|
||||
class SettingsTestThread : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public slots:
|
||||
void saveSettings();
|
||||
};
|
||||
|
||||
|
||||
class SettingsTests : public QObject {
|
||||
Q_OBJECT
|
||||
private slots:
|
||||
void initTestCase();
|
||||
void loadSettings();
|
||||
void saveSettings();
|
||||
|
||||
void benchmarkSetValue();
|
||||
void benchmarkSaveSettings();
|
||||
void benchmarkSetValueConcurrent();
|
||||
|
||||
void cleanupTestCase();
|
||||
|
||||
private:
|
||||
QThread *_settingsThread = nullptr;
|
||||
SettingsTestThread *_settingsThreadObj = nullptr;
|
||||
|
||||
};
|
||||
|
||||
#endif // overte_SettingsTests_h
|
||||
|
|
Loading…
Reference in a new issue