-
Notifications
You must be signed in to change notification settings - Fork 0
/
algorithmtests.cpp
238 lines (186 loc) · 7.03 KB
/
algorithmtests.cpp
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#include "algorithmtests.h"
#include <QTest>
#include <QDebug>
#include <QSignalSpy>
// FileDataBase::fileModified is private
#define private public
#include "filedatabase.h"
// Seat::mousePressEven is protected
#define protected public
#include "seat.h"
AlgorithmTests::AlgorithmTests(QObject *parent) :
QObject(parent)
{
}
void AlgorithmTests::testSeat()
{
// ctor sets 'taken' state to false
Seat *s1 = new Seat();
QCOMPARE(s1->taken(), false);
// set function changes the value
s1->setTaken();
QCOMPARE(s1->taken(), true);
// taken seat cannot be cancelled, only with holding down Ctrl key
// and saying yes to a dialog
s1->mousePressEvent(0);
QCOMPARE(s1->taken(), true);
// false state can be switched
s1->setTaken(false);
s1->mousePressEvent(0);
QCOMPARE(s1->taken(), true);
delete s1;
}
void AlgorithmTests::testFileDataBase()
{
bool taken;
/// Read from file without permissions
{
QFile file(QString("%1/noperm.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
file.setPermissions(0);
FileDataBase db(QString("%1/noperm.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("1a",taken), false);
QCOMPARE(spy.count(), 1);
QList<QVariant> arguments = spy.takeFirst();
QCOMPARE(arguments.at(0).toString(), QString("Couldn't read file"));
file.remove();
}
/// Read from non-existing file, check creation
{
QFile file(QString("%1/nonexist.xml").arg(QDir::tempPath()));
file.remove();
FileDataBase db(QString("%1/nonexist.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("1a",taken), false);
QCOMPARE(spy.count(), 0);
file.open(QIODevice::ReadOnly);
QTextStream ts(&file);
QCOMPARE(ts.readAll(), QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats/>\n"));
file.remove();
}
/// Read from existing, but not in valid XML file
{
QFile file(QString("%1/invalid.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("seat id=8c taken=1");
file.close();
FileDataBase db(QString("%1/invalid.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("1a",taken), false);
QCOMPARE(spy.count(), 1);
QList<QVariant> arguments = spy.takeFirst();
QCOMPARE(arguments.at(0).toString(),
QString("Couldn't parse XML file"));
file.remove();
}
/// Read from file, non-existing data
{
QFile file(QString("%1/nodata.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats/>\n");
file.close();
FileDataBase db(QString("%1/nodata.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("1a",taken), false);
QCOMPARE(spy.count(), 0);
file.remove();
}
/// Read from file, existing data
{
QFile file(QString("%1/dataexists.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats>\n"
" <seat id=\"3b\" taken=\"1\"/>\n"
" <seat id=\"4c\" taken=\"0\"/>\n"
"</Seats>\n");
file.close();
FileDataBase db(QString("%1/dataexists.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("3b",taken), true);
QCOMPARE(taken, true);
QCOMPARE(spy.count(), 0);
QCOMPARE(db.readData("4c",taken), true);
QCOMPARE(taken, false);
QCOMPARE(spy.count(), 0);
file.remove();
}
/// Write to file
{
QFile file(QString("%1/datacreated.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats/>\n");
file.close();
FileDataBase db(QString("%1/datacreated.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.writeData("12a",true), true);
QCOMPARE(spy.count(), 0);
QCOMPARE(db.writeData("3d",false), true);
QCOMPARE(spy.count(), 0);
file.open(QIODevice::ReadOnly);
QCOMPARE(ts.readAll(), QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats>\n"
" <seat id=\"12a\" taken=\"1\"/>\n"
" <seat id=\"3d\" taken=\"0\"/>\n"
"</Seats>\n"));
file.remove();
}
/// Write to readonly file
{
QFile file(QString("%1/readonly.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats/>\n");
file.close();
file.setPermissions(QFile::ReadOwner);
FileDataBase db(QString("%1/readonly.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.writeData("12a",true), false);
QCOMPARE(spy.count(), 1);
QList<QVariant> arguments = spy.takeFirst();
QCOMPARE(arguments.at(0).toString(),
QString("Couldn't open file to write"));
file.remove();
}
/// file modified
{
QFile file(QString("%1/modified.xml").arg(QDir::tempPath()));
file.remove();
file.open(QIODevice::WriteOnly);
QTextStream ts(&file);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats/>\n");
file.close();
FileDataBase db(QString("%1/modified.xml").arg(QDir::tempPath()));
QSignalSpy spy(&db, SIGNAL(notification(const QString)));
QCOMPARE(db.readData("12a",taken), false);
QCOMPARE(taken, false);
QCOMPARE(spy.count(), 0);
file.open(QIODevice::WriteOnly);
ts << QString("<!DOCTYPE AirLine_Seat_Allocation>\n"
"<Seats>\n"
" <seat id=\"12a\" taken=\"0\"/>\n"
"</Seats>\n");
file.close();
/// @note Why fileModified is not called?! Baaad FileSystemWatcher
db.fileModified("ignored");
QCOMPARE(db.readData("12a",taken), true);
QCOMPARE(taken, false);
}
}
QTEST_MAIN(AlgorithmTests)