-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestserversession.h
61 lines (44 loc) · 1.31 KB
/
testserversession.h
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
#ifndef TESTSERVERSESSION_H
#define TESTSERVERSESSION_H
#include "testserver.h"
#include "filewatcher.h"
#include <QObject>
#include <QPointer>
#include <QProcess>
#include <QSharedPointer>
#include <QTcpServer>
#include <QTimer>
class TestServerSession : public QObject
{
Q_OBJECT
public:
explicit TestServerSession(const QString &sessionId, TestServer *server);
virtual ~TestServerSession();
void registerTest(const QString &testId);
void statusChanged(int status);
void submitLog(const QString &log, bool error);
void finalize(quint64 duration, const QString &error);
QString sessionId() const;
public Q_SLOTS:
void runTest();
Q_SIGNALS:
void updateFileRequest(const QString &path, qint32 port, const QString &token);
protected:
void handleFileUpdate(const QString &changed);
void initFileServer();
void doRunTest();
void terminate();
private:
TestServer *mServer;
QString mSessionId;
TestServer::TestObject mTest;
FileWatcher *mWatcher = nullptr;
QTcpServer *mFileServer = nullptr;
QHash<QString, QString> mTokenFiles;
QHash<QString, QString> mFileTokens;
QTimer *mRunTimer;
QPointer<QProcess> mProcess;
QDateTime mStartedTime;
};
typedef QSharedPointer<TestServerSession> TestServerSessionPtr;
#endif // TESTSERVERSESSION_H