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
|
#ifndef HELP_T_H
#define HELP_T_H
#ifndef QT_NO_DEBUG
#include "mostQtHeaders.h"
#include "help.h"
#include "testutil.h"
#include <QtTest/QtTest>
class HelpTest: public QObject{
Q_OBJECT
public:
HelpTest(bool executeAllTests=true) : allTests(executeAllTests) {}
private slots:
void packageDocFile_data() {
QTest::addColumn<QString>("package");
QTest::addColumn<QString>("fileWithoutPath");
QTest::newRow("fancyhdr") << "fancyhdr" << "fancyhdr.dvi;fancyhdr.pdf";
QTest::newRow("ifthen") << "ifthen" << "ifthen.pdf";
QTest::newRow("graphicx") << "graphicx" << "graphicx.pdf;grfguide.pdf";
QTest::newRow("fancyref") << "fancyref" << "freftest.dvi;fancyref.pdf";
}
void packageDocFile() {
QFETCH(QString, package);
QFETCH(QString, fileWithoutPath);
if (!globalExecuteAllTests) { qDebug("skip"); return; }
QStringList lst=fileWithoutPath.split(";");
QString file = Help::packageDocFile(package, true);
bool found=false;
for(int i=(lst.count()-1);i>0;i--){
QString fileName=lst.at(i);
if(fileName==QFileInfo(file).fileName()){
QEQUAL(QFileInfo(file).fileName(), fileName);
found=true;
break;
}
}
if(!found)
QEQUAL(QFileInfo(file).fileName(), lst.value(0,""));
}
private:
bool allTests;
};
#endif
#endif // HELP_T_H
|