Update contrib.
1 // Copyright (c) 2010 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.
22 #include "SqlResourceTester.h" //TSqlResourceTester
24 #include "SqliteSymbian.h"
26 //In order to be able to compile the test, the following variables are defined (used inside the OS porting layer,
27 //when _SQLPROFILER macro is defined)
29 TInt TheSqlSrvProfilerFileRead = 0;
30 TInt TheSqlSrvProfilerFileWrite = 0;
31 TInt TheSqlSrvProfilerFileSync = 0;
32 TInt TheSqlSrvProfilerFileSetSize = 0;
35 ///////////////////////////////////////////////////////////////////////////////////////
37 RTest TheTest(_L("t_sqloom6 test"));
39 _LIT(KTestDir, "c:\\test\\");
40 _LIT(KDbFile, "c:\\test\\t_sqloom6.db");
42 static RSqlDatabase TheDb;
43 static RSqlStatement TheStmt;
45 static TInt TheProcessHandleCount = 0;
46 static TInt TheThreadHandleCount = 0;
47 static TInt TheAllocatedCellsCount = 0;
49 ///////////////////////////////////////////////////////////////////////////////////////
55 (void)RSqlDatabase::Delete(KDbFile);
56 sqlite3SymbianLibFinalize();
60 ///////////////////////////////////////////////////////////////////////////////////////
61 ///////////////////////////////////////////////////////////////////////////////////////
62 //Test macros and functions
63 void Check(TInt aValue, TInt aLine)
68 RDebug::Print(_L("*** Expresssion evaluated to false\r\n"));
69 TheTest(EFalse, aLine);
72 void Check(TInt aValue, TInt aExpected, TInt aLine)
74 if(aValue != aExpected)
77 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
78 TheTest(EFalse, aLine);
81 #define TEST(arg) ::Check((arg), __LINE__)
82 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
84 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
86 static void MarkHandles()
88 RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
91 static void MarkAllocatedCells()
93 TheAllocatedCellsCount = User::CountAllocCells();
96 static void CheckAllocatedCells()
98 TInt allocatedCellsCount = User::CountAllocCells();
99 TEST2(allocatedCellsCount, TheAllocatedCellsCount);
102 static void CheckHandles()
104 TInt endProcessHandleCount;
105 TInt endThreadHandleCount;
107 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
109 TEST2(TheProcessHandleCount, endProcessHandleCount);
110 TEST2(TheThreadHandleCount, endThreadHandleCount);
113 static void OomPreStep(TInt aFailingAllocationNo)
116 MarkAllocatedCells();
118 TSqlResourceTester::Mark();
119 TSqlResourceTester::SetHeapFailure(RHeap::EBurstFailNext, aFailingAllocationNo);
122 static void OomPostStep()
125 TSqlResourceTester::SetHeapFailure(RHeap::ENone, 0);
126 TSqlResourceTester::Check();
127 CheckAllocatedCells();
131 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
132 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
137 TInt err = fs.Connect();
138 TEST2(err, KErrNone);
140 err = fs.MkDir(KTestDir);
141 TEST(err == KErrNone || err == KErrAlreadyExists);
143 err = fs.CreatePrivatePath(EDriveC);
144 TEST(err == KErrNone || err == KErrAlreadyExists);
148 sqlite3SymbianLibInit();
151 //Creates a UTF8 encoded database with:
152 // - One table with three colums: A(ColumnName1234567890, Col2, Col3);
153 // - One record in the table with values: ('A1234567890', 'A12345', '');
154 void CreateTestDb(const TDesC& aDbName)
157 dbName8.Copy(aDbName);
159 int rc = sqlite3_open((const char*)dbName8.PtrZ(), &db);
160 TEST2(rc, SQLITE_OK);
161 rc = sqlite3_exec(db, "CREATE TABLE A(ColumnName1234567890 TEXT, Col2 LONG TEXT, Col3 SMALL TEXT)", 0, 0, 0);
162 TEST2(rc, SQLITE_OK);
163 rc = sqlite3_exec(db, "INSERT INTO A VALUES('A1234567890', 'A12345', '')", 0, 0, 0);
164 TEST2(rc, SQLITE_OK);
169 @SYMTestCaseID PDS-SQL-CT-4176
170 @SYMTestCaseDesc RSqlStatement::ColumnName() OOM test.
171 @SYMTestPriority High
172 @SYMTestActions The test runs RSqlStatement::ColumnName() in an OOM simulation loop.
173 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
174 - burst OOM simulation is used;
175 - UTF8 encoded database is used;
176 - only SQL server side OOM simulation is performed;
177 The purpose of the test is to verify that the ColumnName() call behaves correctly
178 when the related sqlite3_column_name16() call performed by the SQL server fails
180 @SYMTestExpectedResults Test must not fail
183 void ColumnNameOomTest()
185 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
186 //stream objects, the allocated memory cells are not counted.
187 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
188 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
189 //and they will not be deallocated when the statement object is closed.
190 //But the result of the RSqlStatement::ColumnName() operation is checked. If there is a failed memory
191 //allocation on the server side, the returned column name can be NULL and that will be tested.
193 (void)RSqlDatabase::Delete(KDbFile);
195 TheTest.Printf(_L("Iteration:\r\n"));
197 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
199 TInt err = TheDb.Open(KDbFile);
200 TEST2(err, KErrNone);
202 TInt failingAllocationNo = 0;
204 while(err == KErrNoMemory)
206 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
207 OomPreStep(failingAllocationNo);
209 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
212 goto LabelOomPostStep;
216 err = TheStmt.ColumnName(0, name);
221 TEST(name == _L("ColumnName1234567890"));
223 err = TheStmt.ColumnName(1, name);
228 TEST(name == _L("Col2"));
230 err = TheStmt.ColumnName(2, name);
235 TEST(name == _L("Col3"));
245 (void)RSqlDatabase::Delete(KDbFile);
247 TEST2(err, KErrNone);
248 TheTest.Printf(_L("\r\n===RSqlStatement::ColumnName() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
252 @SYMTestCaseID PDS-SQL-CT-4177
253 @SYMTestCaseDesc RSqlStatement::ParameterName() OOM test.
254 @SYMTestPriority High
255 @SYMTestActions The test runs RSqlStatement::ParameterName() in an OOM simulation loop.
256 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
257 - burst OOM simulation is used;
258 - UTF8 encoded database is used;
259 - only SQL server side OOM simulation is performed;
260 The purpose of the test is to verify that the ParameterName() call behaves correctly
261 if the related sqlite3_bind_parameter_name() call performed by the SQL server fails
263 @SYMTestExpectedResults Test must not fail
266 void ParameterNameOomTest()
268 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
269 //stream objects, the allocated memory cells are not counted.
270 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
271 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
272 //and they will not be deallocated when the statement object is closed.
273 //But the result of the RSqlStatement::ParameterName() operation is checked. If there is a failed memory
274 //allocation on the server side, the returned column name can be NULL and that will be tested.
276 (void)RSqlDatabase::Delete(KDbFile);
278 TheTest.Printf(_L("Iteration:\r\n"));
280 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
282 TInt err = TheDb.Open(KDbFile);
283 TEST2(err, KErrNone);
285 TInt failingAllocationNo = 0;
287 while(err == KErrNoMemory)
289 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
290 OomPreStep(failingAllocationNo);
292 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Col2 != :Prm1234567890 AND Col3 != :Prm2 AND ColumnName1234567890 != ?"));
295 goto LabelOomPostStep;
299 err = TheStmt.ParameterName(0, name);
304 TEST(name == _L(":Prm1234567890"));
306 err = TheStmt.ParameterName(1, name);
311 TEST(name == _L(":Prm2"));
313 err = TheStmt.ParameterName(2, name);
318 TEST(name == _L("?2"));
328 (void)RSqlDatabase::Delete(KDbFile);
330 TEST2(err, KErrNone);
331 TheTest.Printf(_L("\r\n===RSqlStatement::ColumnName() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
335 @SYMTestCaseID PDS-SQL-CT-4178
336 @SYMTestCaseDesc RSqlStatement::ColumnText() OOM test.
337 @SYMTestPriority High
338 @SYMTestActions The test runs RSqlStatement::ColumnText() in an OOM simulation loop.
339 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
340 - burst OOM simulation is used;
341 - UTF8 encoded database is used;
342 - only SQL server side OOM simulation is performed;
343 The purpose of the test is to verify that the ColumnText() call behaves correctly
344 when the related sqlite3_column_text16() call performed by the SQL server fails
345 with "no memory" (or the sqlite3_column_bytes16() call).
346 @SYMTestExpectedResults Test must not fail
349 void ColumnTextOomTest()
351 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
352 //stream objects, the allocated memory cells are not counted.
353 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
354 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
355 //and they will not be deallocated when the statement object is closed.
356 //But the result of the RSqlStatement::ColumnText() operation is checked. If there is a failed memory
357 //allocation on the server side, the returned column name can be NULL and that will be tested.
359 (void)RSqlDatabase::Delete(KDbFile);
361 TheTest.Printf(_L("Iteration:\r\n"));
363 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
365 TInt err = TheDb.Open(KDbFile);
366 TEST2(err, KErrNone);
368 TInt failingAllocationNo = 0;
370 while(err == KErrNoMemory)
372 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
373 OomPreStep(failingAllocationNo);
375 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
378 goto LabelOomPostStep;
380 err = TheStmt.Next();
387 err = TheStmt.ColumnText(0, data);
392 TEST(data == _L("A1234567890"));
394 err = TheStmt.ColumnText(1, data);
399 TEST(data == _L("A12345"));
401 err = TheStmt.ColumnText(2, data);
406 TEST(data == _L(""));
416 (void)RSqlDatabase::Delete(KDbFile);
418 TEST2(err, KErrNone);
419 TheTest.Printf(_L("\r\n===RSqlStatement::ColumnText() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
423 @SYMTestCaseID PDS-SQL-CT-4179
424 @SYMTestCaseDesc RSqlColumnReadStream OOM test.
425 @SYMTestPriority High
426 @SYMTestActions The test runs RSqlColumnReadStream in an OOM simulation loop.
427 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
428 - burst OOM simulation is used;
429 - UTF8 encoded database is used;
430 - only SQL server side OOM simulation is performed;
431 The purpose of the test is to verify that the RSqlColumnReadStream APIs behave correctly
432 when the related sqlite3_column_text16() call performed by the SQL server fails
433 with "no memory" (or the sqlite3_column_bytes16() call).
434 @SYMTestExpectedResults Test must not fail
437 void TextColumnReadStreamOomTest()
439 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
440 //stream objects, the allocated memory cells are not counted.
441 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
442 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
443 //and they will not be deallocated when the statement object is closed.
444 //But the result of the RSqlColumnReadStream::ReadL() operation is checked. If there is a failed memory
445 //allocation on the server side, the returned column name can be NULL and that will be tested.
447 (void)RSqlDatabase::Delete(KDbFile);
449 TheTest.Printf(_L("Iteration:\r\n"));
451 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
453 TInt err = TheDb.Open(KDbFile);
454 TEST2(err, KErrNone);
456 TInt failingAllocationNo = 0;
458 while(err == KErrNoMemory)
460 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
461 OomPreStep(failingAllocationNo);
463 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
466 goto LabelOomPostStep;
468 err = TheStmt.Next();
474 RSqlColumnReadStream strm;
475 err = strm.ColumnText(TheStmt, 0);
481 TRAP(err, strm.ReadL(data, 11));
487 TEST(data == _L("A1234567890"));
489 err = strm.ColumnText(TheStmt, 1);
494 TRAP(err, strm.ReadL(data, 6));
500 TEST(data == _L("A12345"));
502 err = strm.ColumnText(TheStmt, 2);
508 TRAP(err, len = strm.Source()->SizeL());//The column value is with 0 length
524 (void)RSqlDatabase::Delete(KDbFile);
526 TEST2(err, KErrNone);
527 TheTest.Printf(_L("\r\n===RSqlColumnReadStream OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
531 @SYMTestCaseID PDS-SQL-CT-4180
532 @SYMTestCaseDesc TSqlScalarFullSelectQuery::SelectTextL() OOM test.
533 @SYMTestPriority High
534 @SYMTestActions The test runs TSqlScalarFullSelectQuery::SelectTextL() in an OOM simulation loop.
535 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
536 - burst OOM simulation is used;
537 - UTF8 encoded database is used;
538 - only SQL server side OOM simulation is performed;
539 The purpose of the test is to verify that the SelectTextL() call behaves correctly
540 when the related sqlite3_column_text16() call performed by the SQL server fails
541 with "no memory" (or the sqlite3_column_bytes16() call).
542 @SYMTestExpectedResults Test must not fail
545 void ScalarColumnTextOomTest()
547 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
548 //stream objects, the allocated memory cells are not counted.
549 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
550 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
551 //and they will not be deallocated when the statement object is closed.
552 //But the result of the TSqlScalarFullSelectQuery::SelectTextL() operation is checked. If there is a failed memory
553 //allocation on the server side, the returned column name can be NULL and that will be tested.
555 (void)RSqlDatabase::Delete(KDbFile);
557 TheTest.Printf(_L("Iteration:\r\n"));
559 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
561 TInt err = TheDb.Open(KDbFile);
562 TEST2(err, KErrNone);
564 TInt failingAllocationNo = 0;
566 while(err == KErrNoMemory)
568 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
569 OomPreStep(failingAllocationNo);
571 TSqlScalarFullSelectQuery query(TheDb);
573 TRAP(err, query.SelectTextL(_L("SELECT ColumnName1234567890 FROM A"), data));
576 goto LabelOomPostStep;
578 TEST(data == _L("A1234567890"));
580 TRAP(err, query.SelectTextL(_L("SELECT Col2 FROM A"), data));
583 goto LabelOomPostStep;
585 TEST(data == _L("A12345"));
587 TRAP(err, query.SelectTextL(_L("SELECT Col3 FROM A"), data));
590 goto LabelOomPostStep;
592 TEST(data == _L(""));
599 (void)RSqlDatabase::Delete(KDbFile);
601 TEST2(err, KErrNone);
602 TheTest.Printf(_L("\r\n===TSqlScalarFullSelectQuery::SelectTextL() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
606 @SYMTestCaseID PDS-SQL-CT-4181
607 @SYMTestCaseDesc RSqlStatement::DeclaredColumnType() OOM test.
608 @SYMTestPriority High
609 @SYMTestActions The test runs RSqlStatement::DeclaredColumnType() in an OOM simulation loop.
610 The difference betwee this test case and the similar test case in t_sqloom2 is that here:
611 - burst OOM simulation is used;
612 - UTF8 encoded database is used;
613 - only SQL server side OOM simulation is performed;
614 The purpose of the test is to verify that the DeclaredColumnType() call behaves correctly
615 when the related sqlite3_column_name16() call performed by the SQL server fails
617 @SYMTestExpectedResults Test must not fail
620 void DeclaredColumnTypeOomTest()
622 //This is not really a full OOM test, because the SQL server counts only the number of active statement and
623 //stream objects, the allocated memory cells are not counted.
624 //The reason that the allocated memory cells are not counted, and in case of an OOM failure - checked, is
625 //because the SQL server can make some per-connection memory allocations (cache pages, etc.)
626 //and they will not be deallocated when the statement object is closed.
627 //But the result of the RSqlStatement::DeclaredColumnType() operation is checked. If there is a failed memory
628 //allocation on the server side, the returned column name can be NULL and that will be tested.
630 (void)RSqlDatabase::Delete(KDbFile);
632 TheTest.Printf(_L("Iteration:\r\n"));
634 CreateTestDb(KDbFile);//Creates UTF8 encoded database with one table with one record.
636 TInt err = TheDb.Open(KDbFile);
637 TEST2(err, KErrNone);
639 TInt failingAllocationNo = 0;
641 while(err == KErrNoMemory)
643 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
644 OomPreStep(failingAllocationNo);
646 err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
649 goto LabelOomPostStep;
652 TSqlColumnType colType = ESqlNull;
653 err = TheStmt.DeclaredColumnType(0, colType);
658 TEST2(colType, ESqlText);
661 err = TheStmt.DeclaredColumnType(1, colType);
666 TEST2(colType, ESqlText);
669 err = TheStmt.DeclaredColumnType(2, colType);
674 TEST2(colType, ESqlText);
684 (void)RSqlDatabase::Delete(KDbFile);
686 TEST2(err, KErrNone);
687 TheTest.Printf(_L("\r\n===RSqlStatement::DeclaredColumnType() OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
692 TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4176 RSqlStatement::ColumnName() OOM test"));
695 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4177 RSqlStatement::ParameterName() OOM test"));
696 ParameterNameOomTest();
698 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4178 RSqlStatement::ColumnText() OOM test"));
701 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4179 RSqlColumnReadStream OOM test"));
702 TextColumnReadStreamOomTest();
704 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4180 TSqlScalarFullSelectQuery::SelectTextL() OOM test"));
705 ScalarColumnTextOomTest();
707 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4181 RSqlStatement::DeclaredColumnType() OOM test"));
708 DeclaredColumnTypeOomTest();
715 CTrapCleanup* tc = CTrapCleanup::New();
731 User::Heap().Check();