Mercurial > trustbridge
annotate ui/tests/downloadertest.h @ 289:9ad00a3255f4
Change cinst from stdin input to use arguments.
As we have to execute this process on Windows over the
shell a stdin / stdout communication is not really possible
without some major hacks. So you now have to supply an
instructions file and the path to the certificatelist as arguments when
this process is called
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 02 Apr 2014 13:52:02 +0000 |
parents | c05e126b0b9e |
children | 17e1c8f37d72 |
rev | line source |
---|---|
43 | 1 #ifndef DOWNLOADERTEST_H |
2 #define DOWNLOADERTEST_H | |
3 | |
4 #include <QObject> | |
141
f5fa39347366
Fixed QTest includes.
Raimund Renkert <rrenkert@intevation.de>
parents:
55
diff
changeset
|
5 #include <QtTest> |
43 | 6 #include <QProcess> |
7 #include <QTemporaryDir> | |
8 #include <QSignalSpy> | |
9 #include "downloader.h" | |
10 | |
11 class DownloaderTest: public QObject | |
12 { | |
13 Q_OBJECT | |
14 | |
15 void startServer(QString additionalOptions = QString()); | |
16 | |
17 private: | |
18 QProcess serverProc; | |
19 QTemporaryDir serverConfigDir; | |
240
c05e126b0b9e
Fix downloadertest and factor out generating file input.
Andre Heinecke <aheinecke@intevation.de>
parents:
141
diff
changeset
|
20 QFileInfo garbageInfo; |
43 | 21 |
22 public Q_SLOTS: | |
45
c6125d73faf4
Move SSLConnection into it's own class
Andre Heinecke <aheinecke@intevation.de>
parents:
43
diff
changeset
|
23 void downloaderError(const QString &message, SSLConnection::ErrorCode error); |
43 | 24 |
25 private Q_SLOTS: | |
26 void initTestCase(); | |
27 void cleanupTestCase(); | |
28 void testNewList(); | |
48
3f8c2d46ded6
Add test for no connection handling
Andre Heinecke <aheinecke@intevation.de>
parents:
45
diff
changeset
|
29 void testNoConnection(); |
52
d73a2f0170d4
Add test for another certificate
Andre Heinecke <aheinecke@intevation.de>
parents:
48
diff
changeset
|
30 void testOtherCertificate(); |
55
64200b011dfd
Add test for software download
Andre Heinecke <aheinecke@intevation.de>
parents:
52
diff
changeset
|
31 void testNewSoftware(); |
43 | 32 }; |
33 #endif | |
34 |