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
|
/*
SPDX-FileCopyrightText: 2012 Milian Wolff <mail@milianw.de>
SPDX-FileCopyrightText: 2012 Morten Danielsen Volden <mvolden2@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "test_outputmodel.h"
#include "testlinebuilderfunctions.h"
#include "../outputmodel.h"
#include <QTest>
#include <QStandardPaths>
QTEST_MAIN(KDevelop::TestOutputModel)
namespace KDevelop
{
TestOutputModel::TestOutputModel(QObject* parent): QObject(parent)
{
QStandardPaths::setTestModeEnabled(true);
}
QStringList generateLines()
{
const int numLines = 10000;
QStringList outputlines;
do {
outputlines << buildCompilerActionLine();
outputlines << buildCppCheckInformationLine();
for (TestPathType pathType :
#ifdef Q_OS_WIN
{WindowsFilePathNoSpaces, WindowsFilePathWithSpaces}
#else
{UnixFilePathNoSpaces, UnixFilePathWithSpaces}
#endif
) {
outputlines << buildCompilerErrorLine(pathType);
outputlines << buildCompilerLine(pathType);
outputlines << buildCppCheckErrorLine(pathType);
outputlines << buildPythonErrorLine(pathType);
}
}
while(outputlines.size() < numLines ); // gives us numLines (-ish)
return outputlines;
}
QStringList generateLongLine()
{
const int objects = 100; // *.o files
const int libs = 20; // -l...
const int libPaths = 20; // -L...
QString line = QStringLiteral("g++ -m64 -Wl,-rpath,/home/gabo/md/qt/lib -o bin/flap_ui");
for(int i = 0; i < objects; ++i) {
line += QStringLiteral(" .obj/file%1.o").arg(i);
}
for(int i = 0; i < libPaths; ++i) {
line += QStringLiteral(" -Lsome/path/to/lib%1").arg(i);
}
for(int i = 0; i < libs; ++i) {
line += QStringLiteral(" -lsomelib%1").arg(i);
}
return QStringList() << line;
}
void TestOutputModel::bench()
{
QFETCH(KDevelop::OutputModel::OutputFilterStrategy, strategy);
QFETCH(QStringList, lines);
OutputModel testee(QUrl::fromLocalFile(QStringLiteral("/tmp/build-foo")));
testee.setFilteringStrategy(strategy);
quint64 processEventsCounter = 1;
QElapsedTimer totalTime;
totalTime.start();
testee.appendLines(lines);
while(testee.rowCount() != lines.count()) {
QCoreApplication::instance()->processEvents();
processEventsCounter++;
}
QVERIFY(testee.rowCount() == lines.count());
const qint64 elapsed = totalTime.elapsed();
qDebug() << "ms elapsed to add lines: " << elapsed;
qDebug() << "total number of added lines: " << lines.count();
const double avgUiLockup = double(elapsed) / processEventsCounter;
qDebug() << "average UI lockup in ms: " << avgUiLockup;
QVERIFY(avgUiLockup < 200);
}
void TestOutputModel::bench_data()
{
QTest::addColumn<KDevelop::OutputModel::OutputFilterStrategy>("strategy");
QTest::addColumn<QStringList>("lines");
const QStringList lines = generateLines();
const QStringList longLine = generateLongLine();
QTest::newRow("no-filter") << OutputModel::NoFilter << lines;
QTest::newRow("no-filter-longline") << OutputModel::NoFilter << longLine;
QTest::newRow("compiler-filter") << OutputModel::CompilerFilter << lines;
QTest::newRow("compiler-filter-longline") << OutputModel::CompilerFilter << longLine;
QTest::newRow("script-error-filter") << OutputModel::ScriptErrorFilter << lines;
QTest::newRow("script-error-filter-longline") << OutputModel::ScriptErrorFilter << longLine;
QTest::newRow("static-analysis-filter") << OutputModel::StaticAnalysisFilter << lines;
QTest::newRow("static-analysis-filter-longline") << OutputModel::StaticAnalysisFilter << longLine;
}
}
|