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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
/*
* The Mana World Server
* Copyright 2004 The Mana World Development Team
*
* This file is part of The Mana World.
*
* The Mana World is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or any later version.
*
* The Mana World is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id$
*/
#include <physfs.h>
#if defined (MYSQL_SUPPORT)
#include <mysql/mysql.h>
#elif defined (POSTGRE_SUPPORT)
#include <libpq-fe.h>
#endif
#include "../dal/dataproviderfactory.h"
#include "../utils/logger.h"
#include "testdataprovider.h"
// register the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION(DataProviderTest);
// initialize the static variables.
std::string DataProviderTest::mDbName("tmwteststorage");
std::string DataProviderTest::mDbUser("guest");
std::string DataProviderTest::mDbPassword("guest");
std::string DataProviderTest::mSqlCreateTable(
"create table employees ("
" id integer primary key, "
" name varchar(32) not null);"
);
std::string DataProviderTest::mSqlInsertRow(
"insert into employees values (1, 'john');"
);
std::string DataProviderTest::mSqlFetchRow("select * from employees;");
using namespace tmwserv::dal;
/**
* Set up fixtures.
*/
void
DataProviderTest::setUp(void)
{
// reinitialize the database before each test.
reinitDb();
// obtain a data provider.
try {
mDb = DataProviderFactory::createDataProvider();
}
catch (const std::runtime_error& e) {
CPPUNIT_FAIL(e.what());
}
}
/**
* Tear down fixtures.
*/
void
DataProviderTest::tearDown(void)
{
mDb->disconnect();
delete mDb;
mDb = 0;
// clean the database after each test.
reinitDb();
}
/**
* Connection to an existing database.
*/
void
DataProviderTest::testConnection1(void)
{
LOG("DataProviderTest::testConnection1()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
}
/**
* Create a new table in the database.
*/
void
DataProviderTest::testCreateTable1(void)
{
LOG("DataProviderTest::testCreateTable1()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
const RecordSet& rs = mDb->execSql(mSqlCreateTable);
CPPUNIT_ASSERT(rs.isEmpty());
mDb->disconnect();
CPPUNIT_ASSERT(!mDb->isConnected());
}
/**
* Create the same table one more time in the database.
*/
void
DataProviderTest::testCreateTable2(void)
{
LOG("DataProviderTest::testCreateTable2()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
mDb->execSql(mSqlCreateTable);
// this should throw tmwserv::dal::DbSqlQueryExecFailure.
mDb->execSql(mSqlCreateTable);
}
/**
* Insert a new row to the table.
*/
void
DataProviderTest::testInsert1(void)
{
LOG("DataProviderTest::testInsert1()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
mDb->execSql(mSqlCreateTable);
const RecordSet& rs = mDb->execSql(mSqlInsertRow);
// an insert query does not return any records
// so the recordset remains empty.
CPPUNIT_ASSERT(rs.isEmpty());
mDb->disconnect();
CPPUNIT_ASSERT(!mDb->isConnected());
}
/**
* Insert the same record again.
*/
void
DataProviderTest::testInsert2(void)
{
LOG("DataProviderTest::testInsert2()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
// this should throw tmwserv::dal::DbSqlQueryExecFailure
// as we are violating the primary key uniqueness.
mDb->execSql(mSqlInsertRow);
}
/**
* Fetch data from the table.
*/
void
DataProviderTest::testFetch1(void)
{
LOG("DataProviderTest::testFetch1()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
mDb->execSql(mSqlCreateTable);
mDb->execSql(mSqlInsertRow);
const RecordSet& rs = mDb->execSql(mSqlFetchRow);
CPPUNIT_ASSERT(!rs.isEmpty());
std::string id("1");
std::string name("john");
CPPUNIT_ASSERT_EQUAL(id, rs(0, "id"));
CPPUNIT_ASSERT_EQUAL(name, rs(0, "name"));
mDb->disconnect();
CPPUNIT_ASSERT(!mDb->isConnected());
}
/**
* Disconnection from an open database.
*/
void
DataProviderTest::testDisconnection1(void)
{
LOG("DataProviderTest::testDisconnection1()");
#ifdef SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
mDb->connect(dbFile, mDbUser, mDbPassword);
#else
mDb->connect(mDbName, mDbUser, mDbPassword);
#endif
CPPUNIT_ASSERT(mDb->isConnected());
mDb->disconnect();
CPPUNIT_ASSERT(!mDb->isConnected());
}
/**
* Disconnection from a closed database.
*/
void
DataProviderTest::testDisconnection2(void)
{
LOG("DataProviderTest::testDisconnection2()");
mDb->disconnect();
CPPUNIT_ASSERT(!mDb->isConnected());
}
/**
* Reinitialize the database.
*/
void
DataProviderTest::reinitDb(void)
{
// we are not using DataProvider::execSql() to execute the SQL queries
// here as the class is the purpose of these tests.
#if defined (MYSQL_SUPPORT)
{
// initialize the MySQL library.
MYSQL* db = mysql_init(NULL);
if (!db) {
CPPUNIT_FAIL("unable to initialize the MySQL library: no memory");
}
// connect to the database.
if (!mysql_real_connect(db,
NULL,
mDbUser.c_str(),
mDbPassword.c_str(),
mDbName.c_str(),
0,
NULL,
0))
{
CPPUNIT_FAIL(mysql_error(db));
}
// drop the table.
std::string sql("drop table employees;");
if (mysql_query(db, sql.c_str()) != 0) {
// ignore, the table may not exist.
}
// close the connection and free memory.
mysql_close(db);
mysql_library_end();
db = 0;
}
#elif defined (POSTGRE_SUPPORT)
// TODO: drop tables.
#else // SQLITE_SUPPORT
std::string dbFile(mDbName);
dbFile += ".db";
// ensure that the database file does not exist.
if (PHYSFS_exists(dbFile.c_str())) {
if (PHYSFS_delete(dbFile.c_str()) == 0) {
CPPUNIT_FAIL(PHYSFS_getLastError());
}
}
#endif
}
|