2011-08-01 17:09:08 +00:00
|
|
|
#ifndef JHW_RUNNER
|
|
|
|
#define JHW_RUNNER
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QtWebKit>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <iostream>
|
2011-09-02 19:52:19 +00:00
|
|
|
#include <fstream>
|
2011-08-01 17:09:08 +00:00
|
|
|
#include <QQueue>
|
|
|
|
|
|
|
|
#include "Page.h"
|
|
|
|
|
2011-09-02 19:52:19 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class Runner: public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2011-10-25 19:41:22 +00:00
|
|
|
enum { TIMER_TICK = 200, MAX_LOOPS = 50 };
|
2011-09-06 15:37:29 +00:00
|
|
|
|
2011-09-02 19:52:19 +00:00
|
|
|
Runner();
|
|
|
|
void setColors(bool colors);
|
|
|
|
void reportFile(const QString &file);
|
|
|
|
void addFile(const QString &spec);
|
|
|
|
void go();
|
2011-10-26 02:22:29 +00:00
|
|
|
|
2011-10-25 15:25:02 +00:00
|
|
|
public slots:
|
2011-09-06 15:37:29 +00:00
|
|
|
void timerPause();
|
|
|
|
void timerDone();
|
2011-10-25 20:15:52 +00:00
|
|
|
void hasUsedConsole();
|
2011-10-26 02:22:29 +00:00
|
|
|
void hasError();
|
2011-10-24 20:40:08 +00:00
|
|
|
void print(const QString &fh, const QString &content);
|
|
|
|
void finishSuite();
|
2011-10-26 02:22:29 +00:00
|
|
|
|
2011-10-25 15:25:02 +00:00
|
|
|
private slots:
|
|
|
|
void watch(bool ok);
|
2011-09-02 19:52:19 +00:00
|
|
|
void addJHW();
|
2011-09-06 15:37:29 +00:00
|
|
|
void timerEvent();
|
2011-10-25 19:41:22 +00:00
|
|
|
void handleError(const QString & message, int lineNumber, const QString & sourceID);
|
2011-10-26 02:22:29 +00:00
|
|
|
|
2011-09-02 19:52:19 +00:00
|
|
|
private:
|
2011-10-26 02:22:29 +00:00
|
|
|
Page page;
|
|
|
|
QTimer ticker;
|
|
|
|
int runs;
|
2011-09-02 19:52:19 +00:00
|
|
|
bool hasErrors;
|
|
|
|
bool usedConsole;
|
|
|
|
bool isFinished;
|
2011-10-25 19:41:22 +00:00
|
|
|
bool useColors;
|
|
|
|
|
2011-09-02 19:52:19 +00:00
|
|
|
QQueue<QString> runnerFiles;
|
|
|
|
|
|
|
|
QString reportFileName;
|
|
|
|
|
|
|
|
void loadSpec();
|
2011-10-24 20:40:08 +00:00
|
|
|
|
|
|
|
QFile *outputFile;
|
|
|
|
QTextStream *ts;
|
2011-09-02 19:52:19 +00:00
|
|
|
};
|
2011-08-01 17:09:08 +00:00
|
|
|
|
|
|
|
#endif
|