Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 #include "sqliteTestUtl.h"
25 const char* const KTestName = "t_sqlitedef";
29 static sqlite3* TheDb = NULL;
30 static sqlite3* TheDb2 = NULL;
32 const char* KTestDir = "c:\\test\\";
33 const char* KTestDb = "c:\\test\\t_sqlitedef.db";
34 const char* KTestDb2 = "c:\\t_sqlitedef.db";
36 static void DeleteFile(const char* aFileName)
39 fname.Copy(TPtrC8((const TUint8*)aFileName));
40 (void)TheFs.Delete(fname);
44 * Creates the database file and the directory that the test file will be stored.
46 static void CreateTestEnv()
48 TInt err = TheFs.Connect();
49 TestTestLine(err == KErrNone, __LINE__);
51 err = TheFs.ShareAuto();
52 TestTestLine(err == KErrNone,__LINE__);
55 testDir.Copy(TPtrC8((const TUint8*)KTestDir));
56 err = TheFs.MkDir(testDir);
57 TestTestLine(err == KErrNone || err == KErrAlreadyExists, __LINE__);
60 fname.Copy(TPtrC8((const TUint8*)KTestDb));
61 (void)TheFs.Delete(fname);
64 * Closes the database and erases the database file, but not the directory.
66 static void DestroyTestEnv()
70 (void)sqlite3_close(TheDb2);
75 (void)sqlite3_close(TheDb);
78 if(TheFs.Handle() != KNullHandle)
87 ///////////////////////////////////////////////////////////////////////////////////////
88 //Test macros and functions
90 static void PrintErrMsg()
95 const char* msg = sqlite3_errmsg(TheDb);
96 buf.Copy(TPtrC8((const TUint8*)msg));
97 RDebug::Print(_L("*** Db1 err msg: \"%S\"\r\n"), &buf);
101 const char* msg = sqlite3_errmsg(TheDb2);
102 buf.Copy(TPtrC8((const TUint8*)msg));
103 RDebug::Print(_L("*** Db2 err msg: \"%S\"\r\n"), &buf);
107 static void Check(TInt aValue, TInt aLine)
113 TestTestLine(EFalse, aLine);
116 static void Check(TInt aValue, TInt aExpected, TInt aLine)
118 if(aValue != aExpected)
122 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
123 TestTestLine(EFalse, aLine);
126 #define TEST(arg) ::Check((arg), __LINE__)
127 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
129 ///////////////////////////////////////////////////////////////////////////////////////
132 TInt ThreadFunc(void*)
134 User::SetJustInTime(EFalse); // disable debugger panic handling
136 CTrapCleanup* tc = CTrapCleanup::New();
139 TInt err = sqlite3_open(KTestDb, &TheDb2);
140 TEST2(err, SQLITE_OK);
142 err = sqlite3_exec(TheDb2, "CREATE TABLE A(Id INTEGER,Name TEXT)", 0, 0, 0);
143 TEST2(err, SQLITE_OK);
144 err = sqlite3_exec(TheDb2, "INSERT INTO A VALUES(1, 'AAA')", 0, 0, 0);
145 TEST2(err, SQLITE_OK);
147 sqlite3_close(TheDb2);
156 @SYMTestCaseID PDS-SQLITE3-UT-4029
157 @SYMTestCaseDesc Sqlite file handle test
158 The test verifies that a database can be opened from different threads in the same process,
159 when the shared page cache is enabled. In this case the database file handle is shared between the
160 threads that open the database.
161 @SYMTestPriority High
162 @SYMTestActions Sqlite file handle test
163 @SYMTestExpectedResults Test must not fail
166 void FileHandleTest()
169 sqlite3_enable_shared_cache(1);//this is a per-process setting (was per-thread in SQLite 3.3.17)
170 TInt err = sqlite3_open(KTestDb, &TheDb);
171 TEST2(err, SQLITE_OK);
173 err = sqlite3_exec(TheDb, "CREATE TABLE B(Id INTEGER,Name TEXT)", 0, 0, 0);
174 TEST2(err, SQLITE_OK);
175 err = sqlite3_exec(TheDb, "INSERT INTO B VALUES(1, 'BBB')", 0, 0, 0);
176 TEST2(err, SQLITE_OK);
178 ////////////////////////////////////////////////////////////
179 // The created thread uses the heap of the creating thread
180 // The same SQLite database can be accessed from different threads in
181 // shared page cache mode only if the threads share the same heap.
182 // The database file handle will be shared between threads.
183 ////////////////////////////////////////////////////////////
184 RDebug::Print(_L("*** Shared heap\r\n"));
186 err = thr.Create(_L("TestThr"), &ThreadFunc, KDefaultStackSize, NULL, NULL);
187 TEST2(err, KErrNone);
191 User::WaitForRequest(stat);
192 User::SetJustInTime(ETrue); // enable debugger panic handling
194 TInt exitType = thr.ExitType();
195 TInt exitReason = thr.ExitReason();
197 TEST2(exitReason, 0);
198 TEST2(exitType, EExitKill);
199 ////////////////////////////////////////////////////////////
201 sqlite3_close(TheDb);
205 ///////////////////////////////////////////////////////////////////////////////////////
206 /////////////// Sqlite3 DLL OOM test ////////////////////////////////
207 ///////////////////////////////////////////////////////////////////////////////////////
210 @SYMTestCaseID PDS-SQLITE3-CT-4028
211 @SYMTestCaseDesc Sqlite OOM test
213 A standard OOM test checks the sqlite3 DLL for memory leaks documented
214 on the raised defect, to check if the applied fix is working. Before
215 the fix the test was failing with PANIC USER:84 on the second iteration
217 @SYMTestPriority Medium
218 @SYMTestActions Sqlite OOM test -
219 Opens the database file.
220 Calls sqlite3_prepare16_v2()
223 Repeats the above indefinitely until SQLITE_OK
224 @SYMTestExpectedResults Test must not fail
229 RDebug::Print(_L("Iteration: \r\n"));
230 for (TInt it = 1; ; ++it)
232 RDebug::Print(_L("%d "), it);
233 TInt c1 = User::CountAllocCells();
234 __UHEAP_SETFAIL(RHeap::EDeterministic, it);
236 TInt err = sqlite3_open(KTestDb,&TheDb);
240 sqlite3_stmt* stmt = 0;
241 const void* tail = 0;
242 err = sqlite3_prepare16_v2(TheDb,
243 L"CREATE TABLE Sample(Id INTEGER PRIMARY KEY NOT NULL, Name TEXT NOT NULL UNIQUE COLLATE NOCASE);",
245 (void)sqlite3_finalize(stmt);
248 (void)sqlite3_close(TheDb);
252 TInt c2 = User::CountAllocCells();
255 RDebug::Print(_L("\r\n*** OOM Test failed\r\n"));
258 else if (err == SQLITE_OK)
260 RDebug::Print(_L("\r\n*** OOM Test passed\r\n"));
263 TEST2(err, SQLITE_NOMEM);
268 @SYMTestCaseID PDS-SQLITE3-CT-4046
269 @SYMTestCaseDesc [sqlite3] can't execute sql sequence in transcation.
270 @SYMTestPriority High
271 @SYMTestActions The test deletes the test application private data cage.
272 Then the test creates a database and attempts to execute a set
273 of SQL statements, some of them will need a temporary file to be created.
274 Since the test application private data cage (so the session path) does not exist,
275 the SQLite OS porting layer will fail to create the requested temporary file and
276 will fail with KErrPathNotFound error.
277 The OS porting layer was fixed to create the session path if the temporary file creation error
279 @SYMTestExpectedResults Test must not fail
284 //Remove the private data cage
286 TRAPD(err, fm = CFileMan::NewL(TheFs));
289 TFileName privatePath;
290 err = TheFs.SessionPath(privatePath);
291 TEST2(err, KErrNone);
292 err = fm->RmDir(privatePath);
293 TEST(err == KErrNone || err == KErrPathNotFound);
298 TEST2((TUint)TheDb, 0);
299 err = sqlite3_open(KTestDb2, &TheDb);
300 TEST2(err, SQLITE_OK);
302 const char * stmt[] ={
303 "CREATE TABLE fortest (id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, intcol INTEGER NOT NULL, charcol CHAR(255) ) ",
304 "INSERT INTO fortest(intcol, charcol) VALUES(1,'111');",
305 "BEGIN TRANSACTION;",
306 "CREATE TABLE t1_backup(id INTEGER, intcol INTEGER NOT NULL);",
307 "INSERT INTO t1_backup SELECT id, intcol FROM fortest;",
308 "DROP TABLE fortest;",
309 "CREATE TABLE fortest (id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, intcol INTEGER NOT NULL);",
310 "INSERT INTO fortest(id, intcol) SELECT id,intcol FROM t1_backup;",
311 "DROP TABLE t1_backup;",
312 "select count(*) from fortest;",
314 "select count(*) from fortest;",
315 "CREATE TABLE t1_backup(id INTEGER, intcol INTEGER NOT NULL);",
316 "INSERT INTO t1_backup SELECT id, intcol FROM fortest;",
317 "DROP TABLE fortest;",
318 "CREATE TABLE fortest (id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, intcol INTEGER NOT NULL);",
319 "INSERT INTO fortest(id, intcol) SELECT id,intcol FROM t1_backup;",
320 "DROP TABLE t1_backup;",
325 for (i = 0; i < sizeof(stmt) / sizeof(*stmt); i++)
327 err = sqlite3_exec(TheDb, stmt[i], NULL, NULL, &msg);
328 TEST2(err, SQLITE_OK);
331 sqlite3_close(TheDb);
333 DeleteFile(KTestDb2);
337 @SYMTestCaseID PDS-SQLITE3-CT-4047
338 @SYMTestCaseDesc Test for DEF143066: SQLITE, "CREATE INDEX" sql crashes the SQLite library.
339 The test creates a database with one empty table and establishes two connections
340 to that database. Then, while the first connection is at the middle of a read
341 transaction, the second connection attempts to create an index.
342 If the defect is not fixed, the SQLite library will crash.
343 @SYMTestPriority High
344 @SYMTestActions DEF143066: SQLITE, "CREATE INDEX" sql crashes the SQLite library.
345 @SYMTestExpectedResults Test must not fail
351 sqlite3_enable_shared_cache(1);
352 int err = sqlite3_open(KTestDb, &TheDb);
353 TEST2(err, SQLITE_OK);
355 err = sqlite3_exec(TheDb, "CREATE TABLE T0(Thread INTEGER, LocalIndex INTEGER, Inserts INTEGER, Updates INTEGER, IndexMod8 INTEGER)", 0, 0, 0);
356 TEST2(err, SQLITE_OK);
358 err = sqlite3_open(KTestDb, &TheDb2);
359 TEST2(err, SQLITE_OK);
361 sqlite3_stmt* stmt = 0;
362 const char* tail = 0;
363 err = sqlite3_prepare_v2(TheDb, "SELECT COUNT(Thread) FROM T0 WHERE Thread = 0", -1, &stmt, &tail);
364 TEST2(err, SQLITE_OK);
366 err = sqlite3_step(stmt);
367 TEST2(err, SQLITE_ROW);
369 err = sqlite3_exec(TheDb2, "CREATE INDEX T0INDEX ON T0(Thread,IndexMod8)", 0, 0, 0);
370 TEST2(err, SQLITE_LOCKED);
372 (void)sqlite3_finalize(stmt);
373 sqlite3_close(TheDb2);
375 sqlite3_close(TheDb);
381 @SYMTestCaseID PDS-SQL-CT-4048
382 @SYMTestCaseDesc Test for DEF143151: SQLite, strftime() returns incorrect result.
383 The test takes the current universal time (using TTime)
384 and the current time retrieved from the SQLite library.
385 The test compares the times and expects the difference to be no more than
387 @SYMTestPriority High
388 @SYMTestActions DEF143151: SQLite, strftime() returns incorrect result
389 @SYMTestExpectedResults Test must not fail
395 int err = sqlite3_open(KTestDb, &TheDb);
396 TEST2(err, SQLITE_OK);
401 time.UniversalTime();
402 TDateTime dt = time.DateTime();
404 sqlite3_stmt* stmt = 0;
405 const char* tail = 0;
406 err = sqlite3_prepare_v2(TheDb, "SELECT strftime('%Y-%m-%d,%H:%M:%S','now')", -1, &stmt, &tail);
407 TEST2(err, SQLITE_OK);
408 err = sqlite3_step(stmt);
409 TEST2(err, SQLITE_ROW);
412 const unsigned char* s = sqlite3_column_text(stmt, 0);
415 dtstr2.Copy(TPtrC8(s));
416 sqlite3_finalize(stmt);
418 sqlite3_close(TheDb);
422 dtstr1.Format(_L("%04d-%02d-%02d,%02d:%02d:%02d"), dt.Year(), dt.Month() + 1, dt.Day() + 1, dt.Hour(), dt.Minute(), dt.Second());
424 // For the C-Style printout
425 _LIT8(KUniversalTimeText,"Universal date&time=");
426 _LIT8(KSQLiteTimeText, "SQLite date&time=");
427 TBuf8<96> dtstr1print;
428 TBuf8<96> dtstr2print;
429 dtstr1print.Copy(dtstr1);
430 dtstr2print.Copy(dtstr2);
431 dtstr1print.Insert(0,KUniversalTimeText);
432 dtstr2print.Insert(0,KSQLiteTimeText);
433 TestPrintf((const char*)(dtstr1print.PtrZ()));
434 TestPrintf((const char*)(dtstr2print.PtrZ()));
436 //Comapare and fail if dates are not equal (+- 1 second)
438 lex = dtstr2.Mid(0, 4);
440 err = lex.Val(sqlyear);
441 TEST2(err, KErrNone);
443 lex = dtstr2.Mid(5, 2);
445 err = lex.Val(sqlmonth);
446 TEST2(err, KErrNone);
448 lex = dtstr2.Mid(8, 2);
450 err = lex.Val(sqlday);
451 TEST2(err, KErrNone);
453 lex = dtstr2.Mid(11, 2);
455 err = lex.Val(sqlhour);
456 TEST2(err, KErrNone);
458 lex = dtstr2.Mid(14, 2);
460 err = lex.Val(sqlminute);
461 TEST2(err, KErrNone);
463 lex = dtstr2.Mid(17, 2);
465 err = lex.Val(sqlsecond);
466 TEST2(err, KErrNone);
468 TDateTime sqldt(sqlyear, (TMonth)(sqlmonth - 1), sqlday - 1, sqlhour, sqlminute, sqlsecond, 0);
469 TTime sqltime(sqldt);
470 TTimeIntervalSeconds diff;
471 err = sqltime.SecondsFrom(time, diff);
472 TEST2(err, KErrNone);
473 TEST(diff.Int() <= 1);
478 TestStart("@SYMTestCaseID:PDS-SQLITE3-UT-4029: SQLite file handle test");
481 TestNext("@SYMTestCaseID:PDS-SQLITE3-CT-4028: DEF121506 test");
484 TestNext("@SYMTestCaseID:PDS-SQLITE3-CT-4046: DEF140020 test");
487 TestNext("@SYMTestCaseID:PDS-SQLITE3-CT-4047: SQLITE, \"CREATE INDEX\" sql crashes the SQLite library");
490 TestNext(" @SYMTestCaseID:SYSLIB-SQL-CT-4048 DEF143151: SQLite, strftime() returns incorrect result");
494 ///////////////////////////////////////////////////////////////////////////////////////
500 CTrapCleanup* tc = CTrapCleanup::New();
513 User::Heap().Check();