os/persistentdata/persistentstorage/sql/TEST/t_sqldefect.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 // NTT DOCOMO, INC - Fix for Bug 1915 "SQL server panics when using long column type strings"
    13 //
    14 // Description:
    15 //
    16 
    17 #include <e32test.h>
    18 #include <bautils.h>
    19 #include <s32stor.h>
    20 #include <sqldb.h>
    21 #include "SqlResourceProfiler.h"
    22 #include "SqlResourceTester.h"
    23 
    24 ///////////////////////////////////////////////////////////////////////////////////////
    25 
    26 static RFs TheFs;
    27 RTest TheTest(_L("t_sqldefect test"));
    28 RSqlDatabase TheDb;
    29 
    30 _LIT(KTestDir, "c:\\test\\");
    31 _LIT(KTestDatabase1, "c:\\test\\t_sqldefect_1.db");
    32 _LIT(KTestDatabase2, "c:\\test\\t_sqldefect_2.db");
    33 _LIT(KCorruptDb, "c:\\test\\t_SqlShortNonDb.db");
    34 _LIT(KCorruptDbZ, "z:\\test\\t_SqlShortNonDb.db");	//Created outside this test app
    35 _LIT(KSecureTestDb1, "c:[21212122]BBDb2.db");		//Created outside this test app
    36 _LIT(KTestDatabase3, "c:\\test\\t_sqldefect_3.db");
    37 _LIT(KTestDatabase4, "z:\\test\\t_inc095412.db");	//Created outside this test app
    38 _LIT(KTestDatabase5, "c:\\test\\t_sqldefect_5.db");
    39 _LIT(KTestDatabase6, "c:\\test\\t_def120237.db");
    40 _LIT(KTestDatabase7, "c:\\test\\t_def144027.db");
    41 _LIT(KTestDatabase7Journal, "c:\\test\\t_def144027.db-journal");
    42 
    43 // This value has been found by performing the OOM test
    44 // with an allocation limit of 2000 and then taking a value
    45 // which is just above the allocation failure rate.
    46 const TInt KDEF115954MaxAllocLimit = 1300;
    47 
    48 ///////////////////////////////////////////////////////////////////////////////////////
    49 
    50 //Deletes all created test files.
    51 void DeleteTestFiles()
    52 	{
    53 	TheDb.Close();
    54 	(void)TheFs.Delete(KTestDatabase7Journal);
    55 	(void)RSqlDatabase::Delete(KTestDatabase7);
    56 	(void)RSqlDatabase::Delete(KTestDatabase6);
    57 	(void)RSqlDatabase::Delete(KTestDatabase5);
    58 	(void)RSqlDatabase::Delete(KTestDatabase3);
    59 	(void)RSqlDatabase::Delete(KTestDatabase2);
    60 	(void)RSqlDatabase::Delete(KTestDatabase1);
    61 	(void)RSqlDatabase::Delete(KCorruptDb);
    62 	}
    63 
    64 ///////////////////////////////////////////////////////////////////////////////////////
    65 ///////////////////////////////////////////////////////////////////////////////////////
    66 //Test macros and functions
    67 void Check1(TInt aValue, TInt aLine)
    68 	{
    69 	if(!aValue)
    70 		{
    71 		DeleteTestFiles();
    72 		RDebug::Print(_L("*** Line %d\r\n"), aLine);
    73 		TheTest(EFalse, aLine);
    74 		}
    75 	}
    76 void Check2(TInt aValue, TInt aExpected, TInt aLine)
    77 	{
    78 	if(aValue != aExpected)
    79 		{
    80 		DeleteTestFiles();
    81 		RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
    82 		TheTest(EFalse, aLine);
    83 		}
    84 	}
    85 #define TEST(arg) ::Check1((arg), __LINE__)
    86 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
    87 
    88 ///////////////////////////////////////////////////////////////////////////////////////
    89 
    90 //Creates file session instance and the test directory
    91 void CreateTestEnv()
    92     {
    93 	TInt err = TheFs.Connect();
    94 	TEST2(err, KErrNone);
    95 
    96 	err = TheFs.MkDir(KTestDir);
    97 	TEST(err == KErrNone || err == KErrAlreadyExists);
    98 	}
    99 
   100 /**
   101 @SYMTestCaseID			SYSLIB-SQL-CT-1763
   102 @SYMTestCaseDesc		The test creates database 1 and attaches database 2.
   103 					    Then the test prepares a SELECT sql statement which is supposed to
   104 					    retrieve records from the attached database 2. Then the test tries to detach
   105 					    database 2. The expectation is that the detaching operation must fail.
   106 					    The database can be detached only when there are no alive sql statements prepared on it.
   107 @SYMTestPriority		High
   108 @SYMTestActions			SQL, "Detach database" test.
   109 @SYMTestExpectedResults Test must not fail
   110 @SYMREQ					REQ5792
   111                         REQ5793
   112 */	
   113 void SqlDetachedDbTest()
   114 	{
   115 	TInt err = TheDb.Create(KTestDatabase1);
   116 	TEST2(err, KErrNone);
   117 	err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));	
   118 	TEST(err >= 0);
   119 	err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));	
   120 	TEST2(err, 1);
   121 	TheDb.Close();	
   122 
   123 	err = TheDb.Create(KTestDatabase2);
   124 	TEST2(err, KErrNone);
   125 	err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));	
   126 	TEST(err >= 0);
   127 	err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));	
   128 	TEST2(err, 1);
   129 	err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));	
   130 	TEST2(err, 1);
   131 	TheDb.Close();	
   132 
   133 	err = TheDb.Open(KTestDatabase1);
   134 	TEST2(err, KErrNone);
   135 	err = TheDb.Attach(KTestDatabase2, _L("Db2"));
   136 	TEST2(err, KErrNone);
   137 	
   138 	RSqlStatement stmt;
   139 	err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
   140 	TEST2(err, KErrNone);
   141 	err = stmt.Next();
   142 	TEST2(err, KSqlAtRow);
   143 	
   144 	err = TheDb.Detach(_L("Db2"));
   145 	TEST(err != KErrNone);
   146 	TPtrC errMsg = TheDb.LastErrorMessage();
   147 	RDebug::Print(_L("Detach err: %S\r\n"), &errMsg);
   148 
   149 	err = stmt.Next();
   150 	TEST2(err, KSqlAtRow);
   151 	stmt.Close();
   152 
   153 	err = TheDb.Detach(_L("Db2"));
   154 	TEST2(err, KErrNone);
   155 	
   156 	TheDb.Close();
   157 	(void)RSqlDatabase::Delete(KTestDatabase2);
   158 	(void)RSqlDatabase::Delete(KTestDatabase1);
   159 	}
   160 
   161 /**
   162 @SYMTestCaseID			SYSLIB-SQL-UT-4034
   163 @SYMTestCaseDesc		Corrupted database test.
   164 						The test tries to open a corrupted database file which length is too short.
   165 						The 'database open' operation is expected to fail with KSqlErrNotDb error.
   166 @SYMTestPriority		High
   167 @SYMTestActions			Corrupted database test.
   168 @SYMTestExpectedResults Test must not fail
   169 @SYMREQ					REQ5792
   170 */
   171 void CorruptDbFileTest()
   172 	{
   173 	TInt err = TheDb.Open(KCorruptDb);
   174 	TEST2(err, KSqlErrNotDb);
   175 	}
   176 
   177 /**
   178 @SYMTestCaseID			SYSLIB-SQL-UT-4035
   179 @SYMTestCaseDesc		Attach database with bad name.
   180 						Attempt to attach a file which name cannot be parsed.
   181 						The 'attach database' operation is expected to fail with KErrBadName error.
   182 @SYMTestPriority		High
   183 @SYMTestActions			Attach database with bad name.
   184 @SYMTestExpectedResults Test must not fail
   185 @SYMREQ					REQ5792
   186 */
   187 void AttachBadDbFileNameTest()
   188 	{
   189 	TInt err = TheDb.Create(KTestDatabase1);
   190 	TEST2(err, KErrNone);
   191 	err = TheDb.Attach(_L("\"c:\\test\\d12345678.db\""), _L("Db10"));
   192 	TEST2(err, KErrBadName);
   193 	TheDb.Close();
   194 	(void)RSqlDatabase::Delete(KTestDatabase1);
   195 	}
   196 
   197 /**
   198 @SYMTestCaseID			SYSLIB-SQL-UT-4036
   199 @SYMTestCaseDesc		Attach secure database. The client cannot pass the security checks.
   200 						Attempt to attach a secure database. The client cannot pass the security checks.
   201 						The 'attach database' operation is expected to fail with KErrPermissionDenied error.
   202 @SYMTestPriority		High
   203 @SYMTestActions			Attach secure database. The client cannot pass the security checks.
   204 @SYMTestExpectedResults Test must not fail
   205 @SYMREQ					REQ5794
   206 */
   207 void AttachSecureDbTest()
   208 	{
   209 	TInt err = TheDb.Create(KTestDatabase1);
   210 	TEST2(err, KErrNone);
   211 	err = TheDb.Attach(KSecureTestDb1, _L("Db10"));
   212 	TEST2(err, KErrPermissionDenied);
   213 	TheDb.Close();
   214 	(void)RSqlDatabase::Delete(KTestDatabase1);
   215 	}
   216 
   217 /**
   218 @SYMTestCaseID			SYSLIB-SQL-UT-4032
   219 @SYMTestCaseDesc		Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
   220 						The test creates a database with a table with a BLOB column. Then inserts
   221 						a record. Then the test makes an attempt to read the BLOB column using a stream - 
   222 						RSqlColumnReadStream. If the defect is not fixed, the code will panic.
   223 @SYMTestPriority		High
   224 @SYMTestActions			Test for defect INC091579 - SQL Panic 7 when streaming BLOB fields.
   225 @SYMTestExpectedResults Test must not fail
   226 @SYMDEF					INC091579
   227 */
   228 void INC091579L()
   229 	{
   230 	//Create test database
   231 	TInt err = TheDb.Create(KTestDatabase3);
   232 	TEST2(err, KErrNone);
   233 	_LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 BLOB)"); 
   234 	err = TheDb.Exec(KCreateStmt);
   235 	TEST(err >= 0);
   236 	//Insert 1 row, using a binary stream
   237 	_LIT8(KInsertStmt, "INSERT INTO A(Fld1,Fld2) VALUES(:p1,:p2)"); 
   238 	RSqlStatement stmt; 
   239 	err = stmt.Prepare(TheDb, KInsertStmt);
   240 	TEST2(err, KErrNone);
   241 	err = stmt.BindInt(0, 1);
   242 	TEST2(err, KErrNone);
   243 
   244 	RSqlParamWriteStream out;
   245 	err = out.BindBinary(stmt, 1);
   246 	TEST2(err, KErrNone);
   247 	
   248 	const TInt KDataSize = 100;
   249 	TUint16 columnData[KDataSize];
   250 	for(TInt i=0;i<KDataSize;i++)
   251 		{
   252 		columnData[i] = (TUint16)i;
   253 		}
   254 		
   255 	out.WriteL(columnData, KDataSize);
   256 	out.CommitL();
   257 	err = stmt.Exec();
   258 	TEST2(err, 1);
   259 	
   260 	out.Close();
   261 	stmt.Close();
   262 
   263 	//Try to read the inserted row, using a binary stream
   264 	_LIT8(KSelectStmt, "SELECT * FROM A WHERE Fld1=1"); 
   265 	err = stmt.Prepare(TheDb, KSelectStmt);
   266 	TEST2(err, KErrNone);
   267 	err = stmt.Next();
   268 	TEST2(err, KSqlAtRow);
   269 
   270 	RSqlColumnReadStream in;
   271 	TInt idx = stmt.ColumnIndex(_L("Fld2"));
   272 	TInt type = stmt.ColumnType(idx);
   273 	TInt size = stmt.ColumnSize(idx);
   274 	err = in.ColumnBinary(stmt,idx); // panic occurs here, if the defect is not fixed
   275 	TEST2(err, KErrNone);
   276 	in.Close();
   277 	
   278 	//Cleanup
   279 	stmt.Close();
   280 	TheDb.Close();
   281 	(void)RSqlDatabase::Delete(KTestDatabase3);
   282 	}
   283 
   284 /**
   285 @SYMTestCaseID			SYSLIB-SQL-UT-4033
   286 @SYMTestCaseDesc		Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
   287 						The test creates a database with a table with 2 TEXT columns. Then inserts
   288 						a record using a prepared statement with parameters. 
   289 						The second text column value is set twice calling RSqlStatement::BindText().
   290 						Then the test makes an attempt to read the TEXT columns using a SELECT statement - 
   291 						RSqlStatement. If the defect is not fixed, the RSqlStatement::ColumnText() returns a 
   292 						bad value for the first TEXT column.
   293 @SYMTestPriority		High
   294 @SYMTestActions			Test for defect INC091580 - SQL returns bogus pointer when too much text in field.
   295 @SYMTestExpectedResults Test must not fail
   296 @SYMDEF					INC091580
   297 */
   298 void INC091580L()
   299 	{
   300 	_LIT8(KCreateStmt, "CREATE TABLE A(Fld1 INTEGER, Fld2 TEXT, Fld3 TEXT)"); 
   301 	TInt err = TheDb.Create(KTestDatabase3); 
   302 	TEST2(err, KErrNone);
   303 	err = TheDb.Exec(KCreateStmt);
   304 	TEST(err >= 0);
   305 
   306 	_LIT8(KInsertStmt,"INSERT INTO A(Fld1,Fld2,Fld3) VALUES(1,:p1,:p2)"); 
   307 	RSqlStatement stmt; 
   308 	err = stmt.Prepare(TheDb, KInsertStmt); 
   309 	TEST2(err, KErrNone);
   310 	err = stmt.BindText(0, _L("AAA"));// "AAA" assigned to p1 parameter
   311 	TEST2(err, KErrNone);
   312 
   313 	err = stmt.BindText(1,_L("123456789ABCD"));//"123456789ABCD" assigned to p2 parameter (Fld2 column)
   314 	TEST2(err, KErrNone);
   315 	err = stmt.BindText(1, _L("123456789ABCDE"));//"123456789ABCDE" assigned to p2 parameter (Fld3 column)
   316 	TEST2(err, KErrNone);
   317 	err = stmt.Exec();
   318 	TEST(err >= 0);
   319 	
   320 	stmt.Close();
   321 
   322 	_LIT8(KSelectStmt,"SELECT * FROM A WHERE Fld1=1"); 
   323 	err = stmt.Prepare(TheDb, KSelectStmt); 
   324 	TEST2(err, KErrNone);
   325 	err = stmt.Next();
   326 	TEST2(err, KSqlAtRow);
   327 
   328 	TPtrC fld2 = stmt.ColumnTextL(1); // returns bad value if the defect is not fixed
   329 	TPtrC fld3 = stmt.ColumnTextL(2);
   330 
   331 	TEST(fld2 == _L("AAA"));
   332 	TEST(fld3 == _L("123456789ABCDE"));
   333 	
   334 	//Cleanup
   335 	stmt.Close();
   336 	TheDb.Close();
   337 	(void)RSqlDatabase::Delete(KTestDatabase3);
   338 	}
   339 
   340 /**
   341 @SYMTestCaseID			SYSLIB-SQL-CT-1815
   342 @SYMTestCaseDesc		KSqlErrFull test.
   343 						Create a test database with a table, which first column is declared as
   344 						"INTEGER PRIMARY KEY AUTOINCREMENT".
   345 						Insert one record into the table, initializing the ROWID with 0x7FFFFFFFFFFFFFFF
   346 						(KMaxTInt64). Try to insert one more record into the table. The operation must
   347 						fails with KSqlErrDiskFull.
   348 @SYMTestPriority		High
   349 @SYMTestActions			Verifying that SQL server returns KSqlErrFull when there are no more available row ids.
   350 @SYMTestExpectedResults Test must not fail
   351 @SYMREQ					REQ5792
   352                         REQ5793
   353 */
   354 void SqlErrFullTest()
   355 	{
   356 	TInt err = TheDb.Create(KTestDatabase1);
   357 	TEST2(err, KErrNone);
   358 	err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT, T TEXT)"));
   359 	TEST(err >= 0);
   360 	
   361 	TBuf8<100> sql;
   362 	
   363 	sql.Copy(_L8("INSERT INTO A(ROWID,T) VALUES("));
   364 	sql.AppendNum(KMaxTInt64);
   365 	sql.Append(_L8(", 'TTT')"));
   366 	err = TheDb.Exec(sql);
   367 	TEST(err >= 0);
   368 	
   369 	err = TheDb.Exec(_L8("INSERT INTO A(T) VALUES('UUU')"));
   370 	TEST2(err, KSqlErrFull);
   371 	
   372 	RSqlStatement stmt;
   373 	err = stmt.Prepare(TheDb, _L8("SELECT ROWID FROM A"));
   374 	TEST2(err, KErrNone);
   375 	err = stmt.Next();
   376 	TEST2(err, KSqlAtRow);
   377 	TInt64 val = stmt.ColumnInt64(0);
   378 	TEST(val == KMaxTInt64);
   379 	err = stmt.Next();
   380 	TEST2(err, KSqlAtEnd);
   381 	stmt.Close();
   382 	
   383 	TheDb.Close();
   384 	(void)RSqlDatabase::Delete(KTestDatabase1);
   385 	}
   386 
   387 /**
   388 @SYMTestCaseID			SYSLIB-SQL-CT-1816-0001
   389 @SYMTestCaseDesc		Test for defect INC094870 - Database became corrupted and cannot be opened.
   390 						Case 1: Create a test database and set the database encoding to be UTF-8. Create a table.
   391 						Close and open again the database. "Database open" operation should not panic.
   392 						Case 2: Create a test database and set the database encoding to be UTF-8. Open two 
   393 						connections to the database and check the encoding. It should be UTF-8.
   394 @SYMTestPriority		High
   395 @SYMTestActions			Test for defect INC094870 - Database became corrupted and cannot be opened.
   396 @SYMTestExpectedResults Test must not fail
   397 @SYMDEF					INC094870
   398 */
   399 void INC094870L()
   400 	{
   401 	(void)RSqlDatabase::Delete(KTestDatabase3);
   402 	//Test 1 - with a single database
   403 	TInt err = TheDb.Create(KTestDatabase3);
   404 	TEST2(err, KErrNone);
   405 	err = TheDb.Exec(_L8("PRAGMA cache_size=1000"));
   406 	TEST(err >= 0);
   407     err = TheDb.SetIsolationLevel(RSqlDatabase::EReadUncommitted);
   408 	TEST(err >= 0);
   409     err = TheDb.Exec(_L8("PRAGMA encoding = \"UTF-8\";"));
   410 	TEST(err >= 0);
   411     err = TheDb.Exec(_L8("PRAGMA case_sensitive_like = 0"));
   412 	TEST(err >= 0);
   413     err = TheDb.Exec(_L8("CREATE TABLE RDFS_Namespace(NamespaceId        INTEGER NOT NULL,Uri                TEXT NOT NULL,ReadOnly           INTEGER NOT NULL,VID                INTEGER NOT NULL,PRIMARY KEY(NamespaceId),UNIQUE(Uri));"));
   414 	TEST(err >= 0);
   415 	//Close and reopen the database. The Open() call should not fail.
   416     TheDb.Close();
   417     err  = TheDb.Open(KTestDatabase3); // This call fails if the defect is not fixed
   418 	TEST2(err, KErrNone);
   419     TheDb.Close();
   420 	//Test 2 - with two database connections
   421 	(void)RSqlDatabase::Delete(KTestDatabase3);
   422 	_LIT8(KEncoding, "encoding=UTF-8");
   423 	_LIT(KUtf8, "UTF-8");
   424 	RSqlDatabase db1, db2;
   425 	//Connection 1: Create a database with default encoding UTF-8.
   426 	err = db1.Create(KTestDatabase3, &KEncoding);
   427 	TEST2(err, KErrNone);
   428 	TBuf<100> buf;
   429 	//Connection 1: Check the database encoding
   430 	TSqlScalarFullSelectQuery query(db1);
   431 	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
   432 	TEST2(err, KErrNone);
   433 	TEST(buf.Find(KUtf8) >= 0);
   434 	//Connection 1: Create a table
   435 	err = db1.Exec(_L8("CREATE TABLE Tbl(Id INTEGER, T BLOB)"));
   436 	TEST(err >= 0);
   437 	//Connection 1: Check the database encoding
   438 	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
   439 	TEST2(err, KErrNone);
   440 	TEST(buf.Find(KUtf8) >= 0);
   441 	//Connection 2: open the same database
   442 	err = db2.Open(KTestDatabase3);
   443 	TEST2(err, KErrNone);
   444 	//Connection 1: Check the database encoding
   445 	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
   446 	TEST2(err, KErrNone);
   447 	TEST(buf.Find(KUtf8) >= 0);
   448 	//Connection 2: Check the database encoding
   449 	query.SetDatabase(db2);
   450 	err = query.SelectTextL(_L8("PRAGMA encoding"), buf);
   451 	TEST2(err, KErrNone);
   452 	TEST(buf.Find(KUtf8) >= 0);
   453 	//Cleanup
   454 	db2.Close();
   455 	db1.Close();
   456 	(void)RSqlDatabase::Delete(KTestDatabase3);
   457 	}
   458 
   459 /**
   460 @SYMTestCaseID			SYSLIB-SQL-CT-1817-0001
   461 @SYMTestCaseDesc		Test for defect INC095412 - Retrieving query results may corrupt heap.
   462 						Open t_inc095412.db test database and prepare SQL query (the SQL statement is in the test code). 
   463 						Execute RSqlStatement::Next() and then try to retrieve the text value of column number 1.
   464 						If the defect is not fixed RSqlStatement::ColumnText() will panic.
   465 @SYMTestPriority		High
   466 @SYMTestActions			Test for defect INC095412 - Retrieving query results may corrupt heap.
   467 @SYMTestExpectedResults Test must not fail
   468 @SYMDEF					INC095412
   469 */
   470 void INC095412()
   471 	{
   472     TInt err = TheDb.Open(KTestDatabase4);
   473     TEST2(err, KErrNone);
   474     RSqlStatement stmt;
   475     err = stmt.Prepare(TheDb, _L("SELECT ObjId, Uri, InstanceOf, Flags, p1.PropertyId, p1.PropertyTypeId, p1.Value, p1.Source, p1.Confidence FROM Objects JOIN Properties p1 ON ObjId = p1.HostObjId WHERE  (  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ?  )  ) OR  ( (NOT Flags%3) = ? AND (NOT Flags%11) = ? AND InstanceOf IN  ( ? , ? , ? , ?  )  )  );"));
   476     TEST2(err, KErrNone);
   477     const TInt KPrmValues[] = {0, 0, 33, 40, 47, 45, 43, 42, 50, 39, 51, 44, 41, 46, 38, 48, 49, 0, 0, 26, 40, 53, 54, 57, 52, 39, 58, 56, 41, 38, 55, 0, 0, 26, 40, 53, 54, 57, 52, 39, 58, 56, 41, 38, 55, 0, 0, 38, 40, 39, 41};
   478     for(TInt i=0;i<sizeof(KPrmValues)/sizeof(KPrmValues[0]);++i)
   479     	{
   480     	err = stmt.BindInt(i, KPrmValues[i]);
   481     	TEST2(err, KErrNone);
   482     	}
   483     err = stmt.Next();
   484     TEST2(err, KSqlAtRow);
   485     TPtrC ptr;
   486     stmt.ColumnText(1, ptr); // May corrupt heap and panic the test application if the defect is not fixed!
   487     stmt.Close();
   488     TheDb.Close();
   489 	}
   490 	
   491 /**
   492 @SYMTestCaseID			SYSLIB-SQL-UT-3427
   493 @SYMTestCaseDesc		Test for DEF104242 - The SQL server fails to open database with default security policy only.
   494 						The test plays with C:[21212125]T_OneDefPolicy.db secure database, which was created by
   495 						an external tool and the database security policy table contains just a single record
   496 						with the default security policy. The default security policy is set to be 
   497 						TSecurityPolicy::EAlwaysPass. The test attempts to read from the database, modify the database
   498 						content, modify the database schema.
   499 @SYMTestPriority		High
   500 @SYMTestActions			Test for DEF104242 - The SQL server fails to open database with default security policy only.
   501 @SYMTestExpectedResults Test must not fail
   502 @SYMDEF					DEF104242
   503 */
   504 void DEF104242()
   505 	{
   506 	TInt err = TheDb.Open(_L("C:[21212125]T_OneDefPolicy.db"));
   507 	TEST2(err, KErrNone);
   508 	//Read
   509 	RSqlStatement stmt;
   510 	err = stmt.Prepare(TheDb, _L("SELECT t1key, data from t1"));
   511 	TEST2(err, KErrNone);
   512 	while((err = stmt.Next()) == KSqlAtRow)
   513 		{
   514 		TheTest.Printf(_L("t1key=%d\r\n"), stmt.ColumnInt(0));
   515 		}
   516 	TEST2(err, KSqlAtEnd);
   517 	stmt.Close();
   518 	//Write
   519 	err = TheDb.Exec(_L("INSERT INTO t1(t1key) VALUES(12)"));
   520 	TEST2(err, 1);
   521 	//Schema
   522 	err = TheDb.Exec(_L("CREATE TABLE AAA(Id INTEGER)"));
   523 	TEST(err >= 0);
   524 	//Cleanup
   525 	TheDb.Close();
   526 	}
   527 	
   528 /**
   529 @SYMTestCaseID			SYSLIB-SQL-UT-3430
   530 @SYMTestCaseDesc		Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
   531 						The test attempts to execute 2 SELECT queries ("IN" and "IN + JOIN"). The table, on
   532 						which queries operate, has multi-column primary key. The right-hand side of the 
   533 						"IN" operator contains NULL.
   534 @SYMTestPriority		High
   535 @SYMTestActions			Test for DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3.
   536 @SYMTestExpectedResults Test must not fail
   537 @SYMDEF					DEF104437
   538 */
   539 void DEF104437()
   540 	{
   541 	//Test case 1 - "IN" + "JOIN"
   542 	(void)RSqlDatabase::Delete(KTestDatabase5);
   543 	TInt err = TheDb.Create(KTestDatabase5);
   544 	TEST2(err, KErrNone);
   545 	err = TheDb.Exec(_L("CREATE TABLE inmk(cls TEXT,sec INTEGER,inst INTEGER)"));
   546 	TEST(err >= 0);
   547 	err = TheDb.Exec(_L("INSERT INTO inmk VALUES ('ORD', 2751, 2750)"));
   548 	TEST2(err, 1);
   549 	err = TheDb.Exec(_L("CREATE TABLE clss(hrar TEXT,cls TEXT,PRIMARY KEY (hrar, cls))"));
   550 	TEST(err >= 0);
   551 	err = TheDb.Exec(_L("CREATE TABLE rels(prnt_inst INTEGER,chld_inst INTEGER)"));
   552 	TEST(err >= 0);
   553 	RSqlStatement stmt;
   554 	_LIT(KSelectSql,
   555 	"SELECT I.sec\
   556 	  FROM inmk I\
   557 	   LEFT JOIN\
   558 	     rels R ON R.prnt_inst = I.inst\
   559 	   LEFT JOIN\
   560 	      inmk UI ON UI.inst = R.chld_inst\
   561 	   LEFT JOIN\
   562 	     clss C1U ON C1U.cls = UI.cls AND C1U.hrar = 'STH'\
   563 	   LEFT JOIN\
   564 	     clss C10U ON C10U.hrar = c1u.hrar AND C10U.cls IN (C1U.cls)\
   565 	  WHERE I.sec = 2751;");
   566 	err = stmt.Prepare(TheDb, KSelectSql);
   567 	TEST2(err, KErrNone);
   568 	while((err = stmt.Next()) == KSqlAtRow)
   569 		{
   570 		TInt val = stmt.ColumnInt(0);
   571 		TEST2(val, 2751);
   572 		TheTest.Printf(_L("column value=%d\r\n"), val);
   573 		}
   574 	TEST2(err, KSqlAtEnd);
   575 	stmt.Close();
   576 	TheDb.Close();
   577 	//////////////////////////////////////////////////////////////
   578 	//Test case 2 - "IN"
   579 	(void)RSqlDatabase::Delete(KTestDatabase5);
   580 	err = TheDb.Create(KTestDatabase5);
   581 	TEST2(err, KErrNone);
   582 	err = TheDb.Exec(_L("CREATE TABLE b(y,z,PRIMARY KEY(y, z))"));
   583 	TEST(err >= 0);
   584 	err = stmt.Prepare(TheDb, _L("SELECT * FROM b WHERE y = NULL AND z IN ('hello')"));
   585 	TEST2(err, KErrNone);
   586 	while((err = stmt.Next()) == KSqlAtRow)
   587 		{
   588 		}
   589 	TEST2(err, KSqlAtEnd);
   590 	stmt.Close();
   591 	TheDb.Close();
   592 	(void)RSqlDatabase::Delete(KTestDatabase5);
   593 	}
   594 
   595 /**
   596 @SYMTestCaseID			SYSLIB-SQL-UT-3442
   597 @SYMTestCaseDesc		Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
   598 						The test does the following steps:
   599 						1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
   600 						2) Insert only one record in A, such that, the "Name" column length is less than 
   601 						   8 characters, the "Data" column length is 1K bytes.
   602 						3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
   603 						4) Call RSqlStatement::Next() to get the record
   604 						5) Create RSqlColumnReadStream for column 0 (the "Name" column)
   605 						6) Try to access the "Data" column value, without using a stream
   606 						7) Try to read the "Name" column using the stream
   607 						8) Compare the read "Name" column value vs. the original column value (at the moment 
   608 						   when the table record was stored)
   609 @SYMTestPriority		High
   610 @SYMTestActions			Test for DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid.
   611 @SYMTestExpectedResults Test must not fail
   612 @SYMDEF					DEF105259
   613 */
   614 void DEF105259L()
   615 	{
   616 	(void)RSqlDatabase::Delete(KTestDatabase3);
   617 	TInt err = TheDb.Create(KTestDatabase3);
   618 	TEST2(err, KErrNone);
   619 	
   620 	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
   621 	TEST(err >= 0);
   622 	
   623 	const TInt KBlobDataSize = 1024;
   624 	HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
   625 	TEST(recBuf != NULL);
   626 	TPtr sql = recBuf->Des();
   627 	sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
   628 	for(TInt i=0;i<KBlobDataSize;++i)
   629 		{
   630 		TBuf<2> tmp;
   631 		tmp.AppendFormat(_L("%02X"), i % 256);
   632 		sql.Append(tmp);
   633 		}
   634 	sql.Append(_L("')"));
   635 	
   636 	err = TheDb.Exec(sql);
   637 	TEST2(err, 1);
   638 
   639 	delete recBuf;
   640 	
   641 	RSqlStatement stmt;
   642 	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
   643 	TEST2(err, KErrNone);
   644 	
   645 	err = stmt.Next();
   646 	TEST2(err, KSqlAtRow);
   647 	
   648 	RSqlColumnReadStream strm;
   649 	err = strm.ColumnText(stmt, 0);
   650 	TEST2(err, KErrNone);
   651 	
   652 	TPtrC8 data;
   653 	err = stmt.ColumnBinary(1, data);
   654 	TEST2(err, KErrNone);
   655 
   656 	TBuf<10> name;
   657 	strm.ReadL(name, 3);
   658 	TEST(name == _L("A12"));
   659 
   660 	strm.Close();	
   661 	stmt.Close();
   662 	TheDb.Close();
   663 	(void)RSqlDatabase::Delete(KTestDatabase3);
   664 	}
   665 
   666 /**
   667 @SYMTestCaseID			SYSLIB-SQL-UT-3470
   668 @SYMTestCaseDesc		Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
   669 						The test creates a database with a table: A(Name TEXT, Data BLOB). One record is inserted
   670 						in the table. Then the test creates a statement object with "SELECT * FROM A" sql statement.
   671 						The test moves the statement cursor on the record and attempts to access the BLOB column
   672 						using a stream. When the stream object is created, the test attempts to create an embedded
   673 						store object from the stream, using CEmbeddedStore::FromLC(strm) call. If the defect
   674 						is not fixed, the call will panic.
   675 @SYMTestPriority		High
   676 @SYMTestActions			Test for DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable.
   677 @SYMTestExpectedResults Test must not fail
   678 @SYMDEF					DEF105681
   679 */
   680 void DEF105681L()
   681 	{	
   682 	(void)RSqlDatabase::Delete(KTestDatabase3);
   683 	TInt err = TheDb.Create(KTestDatabase3);
   684 	TEST2(err, KErrNone);
   685 	
   686 	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
   687 	TEST(err >= 0);
   688 	
   689 	err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('A12',x'0400000000')"));
   690 	TEST2(err, 1);
   691 	
   692 	RSqlStatement stmt;
   693 	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
   694 	TEST2(err, KErrNone);
   695 	
   696 	err = stmt.Next();
   697 	TEST2(err, KSqlAtRow);
   698 
   699 	RSqlColumnReadStream strm;
   700 	err = strm.ColumnBinary(stmt, 1);
   701 	TEST2(err, KErrNone);
   702 	CEmbeddedStore* store = CEmbeddedStore::FromLC(strm);
   703 	CleanupStack::PopAndDestroy(store);
   704 
   705 	strm.Close();	
   706 	stmt.Close();
   707 
   708 	//Testing with a NULL binary column value
   709 	err = TheDb.Exec(_L("INSERT INTO A(Name,Data) VALUES('BBB',NULL)"));
   710 	TEST2(err, 1);
   711 
   712 	err = stmt.Prepare(TheDb, _L("SELECT * FROM A WHERE Name='BBB'"));
   713 	TEST2(err, KErrNone);
   714 	
   715 	err = stmt.Next();
   716 	TEST2(err, KSqlAtRow);
   717 
   718 	err = strm.ColumnBinary(stmt, 1);
   719 	TEST2(err, KErrNone);
   720 	store = NULL;
   721 	TRAP(err, store = CEmbeddedStore::FromL(strm));
   722 	TEST2(err, KErrEof);
   723 	delete store;
   724 
   725 	strm.Close();	
   726 	stmt.Close();
   727 	
   728 	
   729 	TheDb.Close();
   730 	(void)RSqlDatabase::Delete(KTestDatabase3);
   731 	}
   732 
   733 /**
   734 @SYMTestCaseID			SYSLIB-SQL-UT-3476
   735 @SYMTestCaseDesc		Test for DEF106391 - SQL server does not deallocate the already allocated memory.
   736 						The test is executed only on the Emulator, because its execution depends on the amount
   737 						of the available memory and the amount of free disk space - factors which cannot be easily 
   738 						resolved on target hardware.
   739 						The test creates a database with a table: T(Id INTEGER, Data BLOB). 
   740 						One record with a BLOB (either 0.79Mb or 0.9Mb) is inserted using RSqlDatabase::Exec().
   741 						Another record with a BLOB (either 1.58 or 1.8Mb) is inserted using RSqlStatement and BLOB parameter.
   742 						If the defect is not fixed, after the first INSERT the SQL server will not free occupied by
   743 						the statement memory. The available heap memory won't be enough for the execution of the second INSERT statement.
   744 						The second INSERT will fail with KErrNoMemory.
   745 @SYMTestPriority		High
   746 @SYMTestActions			Test for DEF106391 - SQL server does not deallocate the already allocated memory.
   747 @SYMTestExpectedResults Test must not fail
   748 @SYMDEF					DEF106391
   749 */
   750 void DEF106391()
   751 	{
   752 #if defined __WINS__ ||	defined __WINSCW__
   753 #ifndef SYMBIAN_USE_SQLITE_VERSION_3_6_4
   754     const TInt KBlobSize = 900 * 1024;
   755 #else
   756     const TInt KBlobSize = 790 * 1024;
   757 #endif    
   758 
   759 	_LIT8(KConfigStr, "encoding=UTF-8");
   760 
   761 	HBufC8* sqlBuf = HBufC8::New(KBlobSize * 2 + 200);//"+ 200" - for the SQL INSERT statement
   762 	TEST(sqlBuf != NULL);
   763 
   764 	(void)RSqlDatabase::Delete(KTestDatabase5);
   765 	
   766 	//Step 1: insert a record with a very large BLOB column (using RSqlDatabase::Exec())
   767 	//        (the operation is rolled back because there may not be enough disk space)
   768 	TVolumeInfo volInfo;
   769 	TInt err = TheFs.Volume(volInfo);
   770 	TEST2(err, KErrNone);
   771 	TheTest.Printf(_L("INSERT#1, Volume size: %ldK  Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
   772 	TheTest.Printf(_L("Test BLOB size: %dK\r\n"), KBlobSize / 1024);
   773 	
   774 	err = TheDb.Create(KTestDatabase5, &KConfigStr);
   775 	TEST2(err, KErrNone);
   776 	
   777 	TSqlResourceProfiler profiler(TheDb);
   778 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterMaxAlloc);
   779 	
   780 	err = TheDb.Exec(_L8("CREATE TABLE T(Id INTEGER, Data BLOB)"));
   781 	TEST(err >= 0);
   782 	TPtr8 sql = sqlBuf->Des();
   783 	sql.Copy(_L8("BEGIN TRANSACTION;INSERT INTO T(Id,Data) VALUES(1, x'"));
   784 	for(TInt i=0;i<KBlobSize;++i)
   785 		{
   786 		sql.Append(_L8("A5"));
   787 		}
   788 	sql.Append(_L8("');"));	
   789 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
   790 	err = TheDb.Exec(sql);
   791 	TEST2(err, 1);
   792 	err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
   793 	TEST(err >= 0);
   794 	TBuf8<32> profilerRes8;
   795 	TBuf<32> profilerRes;
   796 	if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
   797 		{
   798 		profilerRes.Copy(profilerRes8);
   799 		TheTest.Printf(_L("RSqlDatabase::Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
   800 		}
   801 
   802 	//Step 2: insert a record with a very large BLOB column (using RSqlStatement::Exec())
   803 	//        (the operation is rolled back because there may not be enough disk space)
   804 	err = TheFs.Volume(volInfo);
   805 	TEST2(err, KErrNone);
   806 	TheTest.Printf(_L("INSERT#2, Volume size: %ldK  Free space: %ldK\r\n"), volInfo.iSize / 1024, volInfo.iFree / 1024);
   807 	TheTest.Printf(_L("Test BLOB size: %dK\r\n"), sql.Length() / 1024);
   808 	
   809 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMaxAlloc);
   810 	RSqlStatement stmt;
   811 	err = stmt.Prepare(TheDb, _L("INSERT INTO T(Id, Data) VALUES(2, :V)"));
   812 	TEST2(err, KErrNone);
   813 	err = stmt.BindBinary(0, sql);
   814 	TEST2(err, KErrNone);
   815 	err = TheDb.Exec(_L("BEGIN TRANSACTION"));
   816 	TEST(err >= 0);
   817 	err = stmt.Exec();
   818 	TEST2(err, 1);
   819 	err = TheDb.Exec(_L("ROLLBACK TRANSACTION"));
   820 	TEST(err >= 0);
   821 	stmt.Close();
   822 	if(profiler.Query(TSqlResourceProfiler::ESqlCounterMaxAlloc, profilerRes8) == KErrNone)
   823 		{
   824 		profilerRes.Copy(profilerRes8);
   825 		TheTest.Printf(_L("RSqlStatement::Bind/Exec(): <SQL server max alloc>;<SQLite max alloc>=%S\r\n"), &profilerRes);
   826 		}
   827 	
   828 	delete sqlBuf;
   829 
   830 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterMaxAlloc);
   831 	TheDb.Close();
   832 	(void)RSqlDatabase::Delete(KTestDatabase5);
   833 #endif// defined __WINS__ || defined __WINSCW__	
   834 	}
   835 
   836 /**
   837 @SYMTestCaseID			SYSLIB-SQL-UT-3501
   838 @SYMTestCaseDesc		Test for DEF109025 - SQL, dangling long binary/text column value pointer
   839 						The test does the following steps:
   840 						1) Create a table: CREATE TABLE A(Name TEXT, Data BLOB);
   841 						2) Insert only one record in A, such that, the "Name" column length is less than 
   842 						   8 characters, the "Data" column length is 1K bytes.
   843 						3) Create RSqlStatement object with the following SQL statement: SELECT * FROM A
   844 						4) Call RSqlStatement::Next() to get the record
   845 						5) Allocate a 1024 bytes buffer (so, when the row buffer has to be reallocated, the system will be forced to 
   846 						   search another block of memory, because the current one is capped by the allocated 1024 bytes)
   847 						6) Get a pointer to the "name" column value
   848 						7) Get a pointer to the "data" column value
   849 						8) Check the "name" column value. If the defect still exists, the "name" pointer will point to a deleted 
   850 						   block of memory.
   851 @SYMTestPriority		High
   852 @SYMTestActions			Test for DEF109025 - SQL, dangling long binary/text column value pointer.
   853 @SYMTestExpectedResults Test must not fail
   854 @SYMDEF					DEF109025
   855 */
   856 void DEF109025()
   857 	{
   858 	(void)RSqlDatabase::Delete(KTestDatabase3);
   859 	TInt err = TheDb.Create(KTestDatabase3);
   860 	TEST2(err, KErrNone);
   861 	
   862 	err = TheDb.Exec(_L("CREATE TABLE A(Name TEXT, Data BLOB)"));
   863 	TEST(err >= 0);
   864 	
   865 	const TInt KBlobDataSize = 1024;
   866 	HBufC* recBuf = HBufC::New(KBlobDataSize * 2 + 100);
   867 	TEST(recBuf != NULL);
   868 	TPtr sql = recBuf->Des();
   869 	sql.Copy(_L("INSERT INTO A(Name,Data) VALUES('A12',x'"));
   870 	for(TInt i=0;i<KBlobDataSize;++i)
   871 		{
   872 		TBuf<2> tmp;
   873 		tmp.AppendFormat(_L("%02X"), i % 256);
   874 		sql.Append(tmp);
   875 		}
   876 	sql.Append(_L("')"));
   877 	
   878 	err = TheDb.Exec(sql);
   879 	TEST2(err, 1);
   880 
   881 	delete recBuf;
   882 	
   883 	RSqlStatement stmt;
   884 	err = stmt.Prepare(TheDb, _L("SELECT * FROM A"));
   885 	TEST2(err, KErrNone);
   886 	
   887 	err = stmt.Next();
   888 	TEST2(err, KSqlAtRow);
   889 
   890 	TUint8* mem = new TUint8[1024];	//This memory block will be allocated right after the row buffer,
   891 	TEST(mem != NULL);				//so the ColumnBinary() call will reallocate the row buffer somewhere else, not at the same address.
   892 
   893 	TPtrC name;
   894 	err = stmt.ColumnText(0, name);
   895 	TEST2(err, KErrNone);
   896 	
   897 	TPtrC8 data;
   898 	err = stmt.ColumnBinary(1, data);
   899 	TEST2(err, KErrNone);
   900 
   901 	TEST(name == _L("A12"));
   902 
   903 	delete [] mem;
   904 	stmt.Close();
   905 	TheDb.Close();
   906 	(void)RSqlDatabase::Delete(KTestDatabase3);
   907 	}
   908 
   909 /**
   910 @SYMTestCaseID			SYSLIB-SQL-UT-3546
   911 @SYMTestCaseDesc		Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
   912 						The test does the following steps:
   913 						1) Create a table: CREATE TABLE A(Id INTEGER, Data BLOB);
   914 						2) Create a RSqlStatement object stmt;
   915 						3) Prepare stmt with the following SQL statement:
   916 						INSERT INTO A(Id,Data) VALUES(:Val1,:Val2);
   917 						4) Set the Val2 field with an empty descriptor("") by using RSqlStatement::BindBinary();
   918 						5) Execute the statement;
   919 						6) If the defect still exist, stmt.BindBinary() will cause a panic;
   920 @SYMTestPriority		High
   921 @SYMTestActions			Test for DEF109843 - SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed.
   922 @SYMTestExpectedResults Test must not fail
   923 @SYMDEF					DEF109843
   924 */
   925 void DEF109843()
   926 	{
   927 	(void)RSqlDatabase::Delete(KTestDatabase5);
   928 	TInt err = TheDb.Create(KTestDatabase5);
   929 	TEST2(err, KErrNone);
   930 	
   931 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Data BLOB)"));
   932 	TEST(err >= 0);
   933 
   934 	RSqlStatement stmt;
   935 	err = stmt.Prepare(TheDb, _L("INSERT INTO A(Id,Data) VALUES(:Val1,:Val2)"));
   936 	TEST2(err, KErrNone);
   937 	
   938 	TInt paramIndex;
   939 	paramIndex = stmt.ParameterIndex(_L(":Val1"));
   940 	TEST(paramIndex >= 0);
   941 	
   942 	err = stmt.BindInt(paramIndex, 1);
   943 	TEST2(err, KErrNone);
   944 	
   945 	paramIndex = stmt.ParameterIndex(_L(":Val2"));
   946 	TEST(paramIndex >= 0);
   947 	
   948 	TPtrC8 emptyEntry (_L8(""));
   949 	err = stmt.BindBinary(paramIndex, emptyEntry);
   950 	TEST2(err, KErrNone);
   951 	
   952 	err = stmt.Exec();
   953 	TEST(err >= 0);
   954 	
   955 	stmt.Close();
   956 	TheDb.Close();
   957 	(void)RSqlDatabase::Delete(KTestDatabase5);
   958 	}
   959 
   960 /**
   961 @SYMTestCaseID			SYSLIB-SQL-UT-4005
   962 @SYMTestCaseDesc		Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
   963 						The test does the following steps:
   964 						1) DB3: 
   965 							CREATE TABLE A(Id INTEGER, Id1 INTEGER)
   966 							INSERT INTO A(Id,Id1) VALUES(2,3)
   967 						2) DB2:
   968 							CREATE TABLE B(Id INTEGER, Id1 INTEGER)
   969 							INSERT INTO B(Id,Id1) VALUES(2,3)
   970 						3) DB:
   971 							CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)
   972 							INSERT INTO MAIN(Id,Id1) VALUES(2,3)
   973 						4) Attach DB2 and DB3 to DB.
   974 						5) Execute:
   975 							INSERT INTO B SELECT * FROM B UNION ALL SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id);
   976 							UPDATE A SET Id= (SELECT Id1 FROM B WHERE Id=1) WHERE EXISTS ( SELECT MAIN.Id1 FROM MAIN WHERE MAIN.Id = A.Id1);
   977 @SYMTestPriority		High
   978 @SYMTestActions			Test for DEF114698 - SqlSrv.EXE::!SQL Server Insert/Update Error.
   979 @SYMTestExpectedResults Test must not fail
   980 @SYMDEF					DEF114698
   981 */
   982 void DEF114698()
   983 	{
   984 	(void)RSqlDatabase::Delete(KTestDatabase1);
   985 	(void)RSqlDatabase::Delete(KTestDatabase2);
   986 	(void)RSqlDatabase::Delete(KTestDatabase5);
   987 	
   988 	TInt err = TheDb.Create(KTestDatabase5);
   989 	TEST2(err, KErrNone);
   990 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER)"));
   991 	TEST(err >= 0);
   992 	err = TheDb.Exec(_L("INSERT INTO A(Id,Id1) VALUES(2,3)"));
   993 	TEST2(err, 1);
   994 	TheDb.Close();
   995 	
   996 	err = TheDb.Create(KTestDatabase2);
   997 	TEST2(err, KErrNone);
   998 	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER)"));
   999 	TEST(err >= 0);
  1000 	err = TheDb.Exec(_L("INSERT INTO B(Id,Id1) VALUES(2,3)"));
  1001 	TEST2(err, 1);
  1002 	TheDb.Close();
  1003 	
  1004 	err = TheDb.Create(KTestDatabase1);
  1005 	TEST2(err, KErrNone);
  1006 	err = TheDb.Exec(_L("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER)"));
  1007 	TEST(err >= 0);
  1008 	err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(2,3)"));
  1009 	TEST2(err, 1);
  1010 	
  1011 	err = TheDb.Attach(KTestDatabase2, _L("db2"));
  1012 	TEST2(err, KErrNone);
  1013 	err = TheDb.Attach(KTestDatabase5, _L("db3"));
  1014 	TEST2(err, KErrNone);
  1015 	
  1016 	err = TheDb.Exec(_L("INSERT INTO B SELECT * FROM B UNION ALL SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id)"));
  1017 	TEST2(err, 2);
  1018 	err = TheDb.Exec(_L("UPDATE A SET Id= (SELECT Id1 FROM B WHERE Id=1) WHERE EXISTS ( SELECT MAIN.Id1 FROM MAIN WHERE MAIN.Id = A.Id1)"));
  1019 	TEST2(err, 0);
  1020 
  1021 	err = TheDb.Detach(_L("db3"));
  1022 	TEST2(err, KErrNone);
  1023 	err = TheDb.Detach(_L("db2"));
  1024 	TEST2(err, KErrNone);
  1025 	
  1026 	TheDb.Close();
  1027 	(void)RSqlDatabase::Delete(KTestDatabase5);
  1028 	(void)RSqlDatabase::Delete(KTestDatabase2);
  1029 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1030 	}
  1031 
  1032 /**
  1033 @SYMTestCaseID			SYSLIB-SQL-UT-4009-0001
  1034 @SYMTestCaseDesc		Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
  1035 						The test does the following steps:
  1036 						1) Create a database with two tables
  1037 							CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)
  1038 							CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)
  1039 						2) Prepare the following statement
  1040 							DELETE FROM A WHERE Id1 IN (SELECT Id1 FROM B WHERE Id IN (1,11) UNION SELECT * FROM B WHERE Id1=2 ORDER BY Id ASC LIMIT 1)
  1041 						If the defect is not fixed, step (2) asserts in SQLITE.
  1042 @SYMTestPriority		High
  1043 @SYMTestActions			Test for DEF115556 SqlSrv.EXE::!SQL Server when preparing complex sql query.
  1044 @SYMTestExpectedResults Test must not fail
  1045 @SYMDEF					DEF115556
  1046 */
  1047 void DEF115556()
  1048 	{
  1049 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1050 	TInt err = TheDb.Create(KTestDatabase1);
  1051 	TEST2(err, KErrNone);
  1052 
  1053 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
  1054 	TEST(err >= 0);
  1055 	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
  1056 	TEST(err >= 0);
  1057 
  1058 	RSqlStatement stmt;
  1059 	err = stmt.Prepare(TheDb, _L("DELETE FROM A WHERE Id1 IN (SELECT Id1 FROM B WHERE Id IN (1,11) UNION SELECT * FROM B WHERE Id1=2 ORDER BY Id ASC LIMIT 1)"));
  1060 	TEST(err != KErrDied);
  1061 	TPtrC errDescr = TheDb.LastErrorMessage();
  1062 	RDebug::Print(_L("\"Stmt prepare\" %d error. Message:\"%S\"\r\n"), err, &errDescr);
  1063 	stmt.Close();
  1064 	
  1065 	TheDb.Close();
  1066 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1067 	}
  1068 
  1069 
  1070 /**
  1071 @SYMTestCaseID			SYSLIB-SQL-UT-4012
  1072 @SYMTestCaseDesc		Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
  1073 						It is an OOM test. In the loop, the test does the following steps:
  1074 						1) Create a database. 
  1075 						2) Set heap failure.
  1076 						3) Open the database
  1077 						4) Execute the statement which caused the panic before this defect is fixed.
  1078 						5) Close the database.
  1079 
  1080 						If the defect is not fixed, step (5) will panic with CSession Code = 2.
  1081 						
  1082 						Note: It's possible for database operations to be performed even after memory
  1083  						allocation has failed. This is because SQLITE reuses some pages of the page
  1084  						cache which have been allocated but are curently not in use. This means it is 
  1085  						necessary to undo any operations on the database and continue checking for
  1086  						memory and resource leaks even after an operation has been completed successfully
  1087 @SYMTestPriority		High
  1088 @SYMTestActions			Test for DEF115954: CSession Code = 2 executing SQL stmt in OOM loop.
  1089 @SYMTestExpectedResults Test program must not panic.
  1090 @SYMDEF					DEF115954
  1091 */
  1092 void DEF115954()
  1093 	{
  1094 	TInt err = KErrNone;
  1095 	TInt failingAllocationNo = 0;
  1096 	TInt allocationNo = 0;
  1097 	TheTest.Printf(_L("\r\n"));
  1098 	while(allocationNo < KDEF115954MaxAllocLimit)
  1099  		{
  1100 		TheTest.Printf(_L("%d    \r"), allocationNo);
  1101   		RSqlDatabase::Delete(KTestDatabase1);
  1102   		err = TheDb.Create(KTestDatabase1);
  1103   		TEST(err == KErrNone);
  1104   		TheDb.Close(); 
  1105   		
  1106   		const TInt KDelayedDbHeapFailureMask = 0x1000;
  1107   		TSqlResourceTester::SetDbHeapFailure(KDelayedDbHeapFailureMask, ++allocationNo);
  1108 
  1109   		err = TheDb.Open(KTestDatabase1);
  1110   		TEST(err == KErrNone);
  1111 
  1112   		err = TheDb.Exec(_L("CREATE TABLE node(id INTEGER PRIMARY KEY,name TEXT);CREATE INDEX node_idx ON node(name);CREATE TABLE edge(orig INTEGER REFERENCES node,dest INTEGER REFERENCES node,PRIMARY KEY(orig, dest));CREATE INDEX edge_idx ON edge(dest,orig)"));
  1113   		TheDb.Close();
  1114   		if(err != KErrNoMemory)
  1115 			{
  1116 			TEST2(err, KErrNone);	
  1117 			}
  1118 		else
  1119 			{
  1120 			failingAllocationNo = allocationNo;
  1121 			}
  1122   
  1123   		TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
  1124   		}
  1125 	TheTest.Printf(_L("\r\n=== OOM Test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
  1126 	TEST(err == KErrNone);
  1127 	}
  1128 	
  1129 /**
  1130 @SYMTestCaseID			SYSLIB-SQL-UT-4008
  1131 @SYMTestCaseDesc		Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
  1132 						The test creates 2 tables with couple of records and a "BEFORE DELETE" trigger on the first table.
  1133 						Then the test deletes 1 record from the first table and checks the record count in both tables.
  1134 						In both cases the record count should not be 0.
  1135 @SYMTestPriority		Critical
  1136 @SYMTestActions			Test for DEF115567 - Critical SQLite defect that can cause database corruption during UPDATE/DELETE.
  1137 @SYMTestExpectedResults Test must not fail
  1138 @SYMDEF					DEF115567
  1139 */
  1140 void DEF115567L()
  1141 	{
  1142 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1143 	TInt err = TheDb.Create(KTestDatabase1);
  1144 	TEST2(err, KErrNone);
  1145 	err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
  1146 	TEST(err >= 0);
  1147 	err = TheDb.Exec(_L("CREATE TRIGGER t3_t BEFORE DELETE ON t3 BEGIN DELETE FROM t4 WHERE t4.a = old.a;DELETE FROM t3 WHERE a = 2;END"));
  1148 	TEST(err >= 0);
  1149 	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(1,1)"));
  1150 	TEST2(err, 1);
  1151 	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(2,2)"));
  1152 	TEST2(err, 1);
  1153 	err = TheDb.Exec(_L("INSERT INTO t3 VALUES(3,3)"));
  1154 	TEST2(err, 1);
  1155 	err = TheDb.Exec(_L("INSERT INTO t4 VALUES(1,1)"));
  1156 	TEST2(err, 1);
  1157 	err = TheDb.Exec(_L("INSERT INTO t4 VALUES(3,3)"));
  1158 	TEST2(err, 1);
  1159 	err = TheDb.Exec(_L("DELETE FROM t3 WHERE a=1 OR a=2"));
  1160 	TEST2(err, 1);
  1161 	TSqlScalarFullSelectQuery query(TheDb);
  1162 	TInt rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t3"));
  1163 	TEST2(rowcnt, 1);
  1164 	rowcnt = query.SelectIntL(_L("SELECT COUNT(*) FROM t4"));
  1165 	TEST2(rowcnt, 1);
  1166 	TheDb.Close();
  1167 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1168 	}	
  1169 
  1170 /**
  1171 @SYMTestCaseID			SYSLIB-SQL-CT-4019
  1172 @SYMTestCaseDesc		Test for DEF116397 Attaching a non-db file should return KSqlErrNotDb rather than KErrEof
  1173 @SYMTestPriority		Medium
  1174 @SYMTestActions			Test for DEF116397 - SQL, Attaching database returns KErrEof(-25).
  1175 @SYMTestExpectedResults Test must not fail
  1176 @SYMDEF					DEF116397
  1177 */
  1178 void DEF116397()
  1179 	{
  1180 	//Test error code opening a corrupt db file
  1181 	TInt err = TheDb.Open(KCorruptDb);
  1182 	TEST2(err, KSqlErrNotDb);
  1183 	TheDb.Close();
  1184 	
  1185 	//create a sql db file
  1186 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1187 	err = TheDb.Create(KTestDatabase1);
  1188 	TEST2(err, KErrNone);
  1189 	err = TheDb.Exec(_L("CREATE TABLE t3(a INTEGER, b INTEGER);CREATE TABLE t4(a INTEGER, b INTEGER)"));
  1190 	TEST(err >= 0);
  1191 	TheDb.Close();
  1192 	
  1193 	//open the db file
  1194 	err=TheDb.Open(KTestDatabase1);
  1195 	TEST2(err,KErrNone);
  1196 	
  1197 	//try to attach a non db file
  1198 	err=TheDb.Attach(KCorruptDb,_L("db2"));
  1199 	TEST2(err,KSqlErrNotDb);
  1200 	
  1201 	TheDb.Close();
  1202 	(void)RSqlDatabase::Delete(KTestDatabase1);			
  1203 	}
  1204 
  1205 /**
  1206 @SYMTestCaseID			SYSLIB-SQL-UT-4029
  1207 @SYMTestCaseDesc		Test for DEF119403 - creates a databse, retrieves its Collation Dll Name and makes 
  1208 						sure the Collation Dll Name doesn't contain the path 
  1209 @SYMTestPriority		Medium
  1210 @SYMTestActions			Test for DEF119403 Database re-index unnecessarily during open operation 
  1211 @SYMTestExpectedResults Test must not fail
  1212 @SYMDEF					DEF119403
  1213 */
  1214 void DEF119403L()
  1215 	{
  1216 	//create a sql db file
  1217 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1218 	TInt err = TheDb.Create(KTestDatabase1);
  1219 	TEST2(err, KErrNone);
  1220 	
  1221 	TFileName buf;
  1222 	TSqlScalarFullSelectQuery query(TheDb);
  1223 	//Get Collation Dll Name from SYMBIAN_SETTINGS
  1224 	err = query.SelectTextL(_L8("SELECT CollationDllName FROM SYMBIAN_SETTINGS"), buf);
  1225 	TEST2(err, KErrNone);
  1226 	TParse parse;
  1227 	parse.Set(buf, NULL, NULL);
  1228 	
  1229 	//Check that the Collation Dll Name doesn't include the path
  1230 	TEST(!parse.PathPresent());
  1231 	
  1232 	TheDb.Close();
  1233 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1234 
  1235 	}
  1236 
  1237 // Helper function for DEF120237L()
  1238 TInt ExecuteSelect(RSqlDatabase& aDatabase, const TDesC8& aSelectStatement)
  1239 	{
  1240 	RSqlStatement statement;
  1241 
  1242 	TInt err = statement.Prepare(aDatabase, aSelectStatement);
  1243 	TEST2(err, KErrNone);
  1244 	
  1245 	TInt ret;
  1246 	TInt count = 0;
  1247 	TheTest.Printf(_L("Results:\n"));
  1248 	while((ret = statement.Next()) == KSqlAtRow)
  1249 	    {  
  1250 	    TPtrC coltext;
  1251 	    err = statement.ColumnText(0, coltext);
  1252 	    TEST2(err, KErrNone);
  1253 	    
  1254 	    RDebug::RawPrint(coltext);
  1255 	    TheTest.Printf(_L("\n"));
  1256 	    count++;
  1257 	    }
  1258 	TEST2(ret, KSqlAtEnd);
  1259 	
  1260 	statement.Close();	
  1261 	return count;
  1262 	}
  1263 
  1264 /**
  1265 @SYMTestCaseID			SYSLIB-SQL-CT-4031
  1266 @SYMTestCaseDesc		Test for DEF120237 - Checks that When using SELECT together with 
  1267                         the LIKE operator the right number of results are returned.
  1268 @SYMTestPriority		Medium
  1269 @SYMTestActions			1) Create a database and fill it with test data.
  1270                         2) Execute a SELECT statement with the LIKE operator and the % wildcard
  1271                         3) Check that the expected number of results are returned.
  1272 @SYMTestExpectedResults The SELECT statements should return the expected number of results.
  1273 @SYMDEF					DEF120237
  1274 */
  1275 void DEF120237L()
  1276 	{
  1277 	const TInt KSelectTest1ExpectedResults = 3;
  1278 	const TInt KSelectTest2ExpectedResults = 3;
  1279 	
  1280 	_LIT8(KCfgStr, "encoding=UTF-8");
  1281 	_LIT8(KCreate, "CREATE TABLE A(Id INTEGER,Name TEXT collate nocase)"); //Adding "collate nocase" allows us to see defect
  1282 	_LIT8(KIndex, "CREATE INDEX name_index on A (name)"); //Adding index allows us to see defect
  1283 
  1284 	_LIT8(KRecord1, "INSERT INTO A VALUES(1, '\"AAA')");
  1285 	_LIT8(KRecord2, "INSERT INTO A VALUES(2, '\"AAB')");
  1286 	_LIT8(KRecord3, "INSERT INTO A VALUES(3, '\"AAC')");
  1287 	_LIT8(KRecord4, "INSERT INTO A VALUES(4, '&BAA')");
  1288 	_LIT8(KRecord5, "INSERT INTO A VALUES(5, '%BAA')");
  1289 	_LIT8(KRecord6, "INSERT INTO A VALUES(6, '''BAA')");
  1290 	_LIT8(KRecord7, "INSERT INTO A VALUES(7, '''BAB')");
  1291 	_LIT8(KRecord8, "INSERT INTO A VALUES(8, '''BAC')");
  1292 
  1293 	//Create database
  1294 	RSqlDatabase database;
  1295 	CleanupClosePushL(database);
  1296 	
  1297 	(void*)database.Delete(KTestDatabase6);
  1298 	User::LeaveIfError(database.Create(KTestDatabase6, &KCfgStr));
  1299 	TInt err = database.Exec(KCreate);
  1300 	TEST(err >= KErrNone);
  1301 	
  1302 	err = database.Exec(KIndex);
  1303 	TEST(err >= KErrNone);
  1304 	
  1305 	//Insert Neccessary Data
  1306 	err = database.Exec(KRecord1);
  1307 	TEST2(err, 1);
  1308 	err = database.Exec(KRecord2);
  1309 	TEST2(err, 1);
  1310 	err = database.Exec(KRecord3);
  1311 	TEST2(err, 1);
  1312 	err = database.Exec(KRecord4);
  1313 	TEST2(err, 1);
  1314 	err = database.Exec(KRecord5);
  1315 	TEST2(err, 1);
  1316 	err = database.Exec(KRecord6);
  1317 	TEST2(err, 1);
  1318 	err = database.Exec(KRecord7);
  1319 	TEST2(err, 1);
  1320 	err = database.Exec(KRecord8);
  1321 	TEST2(err, 1);
  1322 
  1323 	//Case 1 when search criteria is "
  1324 	//Defect: Select does not return result
  1325 	_LIT8(KSelectTest1, "select name from A where name like '\"%'");
  1326 	TInt numResults = ExecuteSelect(database, KSelectTest1);
  1327 	TheTest.Printf(_L("Case 1 Results: %d\n"), numResults);
  1328 	TEST2(numResults, KSelectTest1ExpectedResults);
  1329 	
  1330 	//Case 2 when search criteria is '
  1331 	//Defect: Select returns data beginning with & and % as well
  1332 	_LIT8(KSelectTest2,"select name from A where name like '''%'");
  1333 	numResults = ExecuteSelect(database, KSelectTest2);
  1334 	TheTest.Printf(_L("Case 2 Results: %d\n"), numResults);
  1335 	TEST2(numResults, KSelectTest2ExpectedResults);
  1336 
  1337 	CleanupStack::PopAndDestroy(1);
  1338 	}
  1339 
  1340 /**
  1341 @SYMTestCaseID			PDS-SQL-CT-4120
  1342 @SYMTestCaseDesc		Test for DEF125881 - Checks that when a INSERT statement is executed
  1343 						under a I/O failure simulation, the correct error code will be returned
  1344 @SYMTestPriority		Medium
  1345 @SYMTestActions			1) Create a database and fill it with test data.
  1346                         2) Execute a INSERT statement under a I/O failure simulation
  1347                         3) Check that the expected return error code is retruned
  1348 @SYMTestExpectedResults The INSERT statement should return the correct error code under I/O failure
  1349 @SYMDEF					DEF125881
  1350 */
  1351 void DEF125881L()
  1352 	{
  1353 	_LIT(KDbPath, "c:\\t_sqldefect-def125881.db");
  1354 	_LIT(KSchema, "CREATE TABLE test(t TEXT);");
  1355 	_LIT(KInsert, "INSERT INTO test (t) VALUES (\'mkldfmklmklmkldfmkldfmklm\
  1356 												  klcdmklmkldsdklfjwoierthj\
  1357 												  iofnkjwefniwenfwenfjiowen\
  1358 												  mkldfmklmklmkldfmkldfmklm\
  1359 												  klcdmklmkldsdklfjwoierthj\
  1360 												  mkldfmklmklmkldfmkldfmklm\
  1361 												  klcdmklmkldsdklfjwoierthj\
  1362 												  iofnkjwefniwenfwenfjiowen\
  1363 												  mkldfmklmklmkldfmkldfmklm\
  1364 												  klcdmklmkldsdklfjwoierthj\
  1365 												  iofnkjwefniwenfwenfjiowen\
  1366 												  mkldfmklmklmkldfmkldfmklm\
  1367 												  klcdmklmkldsdklfjwoierthj\
  1368 												  iofnkjwefniwenfwenfjiowen\
  1369 												  iofnkjwefniwenfwenfjiowen\
  1370 												  fiwenfwejnfwinsdf2sdf4sdf\');");
  1371 	
  1372 	_LIT(KLogFormat, "After %d operations: %d returned\n");
  1373 	
  1374 	// Create file server session
  1375 	RFs fsSession;
  1376 	CleanupClosePushL(fsSession);
  1377 	User::LeaveIfError(fsSession.Connect());
  1378 	
  1379 	// Open a SQL DB, setup basic schema
  1380 	RSqlDatabase sqlDb;
  1381 	CleanupClosePushL(sqlDb);
  1382 	
  1383 	TRAPD(createErr, sqlDb.OpenL(KDbPath));
  1384 	if (createErr != KErrNone)
  1385 		{
  1386 		sqlDb.CreateL(KDbPath);
  1387 		User::LeaveIfError(sqlDb.Exec(KSchema));
  1388 		}	
  1389 	
  1390 	// Create a SQL statement
  1391 	RSqlStatement stmnt;
  1392 	TInt err = stmnt.Prepare(sqlDb, KInsert);
  1393 	TEST2(err,KErrNone);
  1394 	
  1395 	// Begin test
  1396 	TInt fsError = KErrGeneral;
  1397 	TInt count = 0;
  1398 	
  1399 	const TInt KMaxOps = 300;
  1400 
  1401 	TSqlResourceProfiler pr(sqlDb);
  1402 	pr.Start(TSqlResourceProfiler::ESqlCounterOsCallDetails);
  1403 	pr.Reset(TSqlResourceProfiler::ESqlCounterOsCallDetails);
  1404 	
  1405 	while (fsError != 1 && count <= KMaxOps)
  1406 		{
  1407 		// Setup for KErrGeneral failure
  1408 		fsSession.SetErrorCondition(KErrGeneral, count);
  1409 		
  1410 		// Database operation
  1411 		fsError = stmnt.Exec();
  1412 		stmnt.Reset();
  1413 		
  1414 		// Test for KErrGeneral
  1415 		TheTest.Printf(KLogFormat, count, fsError);
  1416 		TEST( (fsError == KErrGeneral) || (fsError == 1) || (fsError == KSqlErrIO));
  1417 		
  1418 		// Increment fail-after count
  1419 		++count;
  1420 		}
  1421 	fsSession.SetErrorCondition(KErrNone);
  1422 	pr.Stop(TSqlResourceProfiler::ESqlCounterOsCallDetails);
  1423 	stmnt.Close();
  1424 	CleanupStack::PopAndDestroy(2); // fsSession, sqlDb
  1425 	(void)RSqlDatabase::Delete(KDbPath);
  1426 	}
  1427 
  1428 /**
  1429 @SYMTestCaseID			PDS-SQL-CT-4128
  1430 @SYMTestCaseDesc		Test for DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases.
  1431 						When executing a pragma which deosn't return any results (e.g performing "PRAGMA index_list"
  1432 						on a table with no index. The client panics when RSqlStatement::Next() is called. 
  1433 						This test checks the client does not panic in this case
  1434 @SYMTestPriority		High
  1435 @SYMTestActions			DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases
  1436 @SYMTestExpectedResults Test must not fail
  1437 @SYMDEF					DEF129581
  1438 */
  1439 void DEF129581()
  1440 	{
  1441 	_LIT8(KPragma, "Pragma index_list(T)");
  1442 	_LIT8(KCreateTable, "CREATE TABLE T (A INTEGER)");
  1443 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1444 	
  1445 	//create a sql db file and make sure no index is added to it
  1446 	TInt err = TheDb.Create(KTestDatabase1);
  1447 	TEST2(err, KErrNone);
  1448 
  1449 	//create a table
  1450 	err = TheDb.Exec(KCreateTable);
  1451 	TEST(err >= KErrNone);
  1452 	
  1453 	RSqlStatement stmt;
  1454 	
  1455 	//Executes a "Pragam index_list.." statement
  1456 	err = stmt.Prepare(TheDb, KPragma);
  1457 	TEST2(err, KErrNone);
  1458 	
  1459 	//Calls RSqlStatement::Next() to make sure the client does not panic.
  1460 	err = stmt.Next();
  1461 	TEST2(err, KSqlAtEnd);
  1462 	
  1463 	stmt.Close();
  1464 	TheDb.Close();
  1465 	(void)RSqlDatabase::Delete(KTestDatabase1);
  1466 	}
  1467 
  1468 /**
  1469 @SYMTestCaseID          PDS-SQL-CT-4153
  1470 @SYMTestCaseDesc        Test for DEF143047: SQL, default "max parameter count" value, compatibility problem.
  1471                         This test case proves that an SQL statement with more than 1000 parameters can be prepared 
  1472                         successfully. The default value of the SQLITE_MAX_VARIABLE_NUMBER macro is 999. 
  1473                         Changed to 32767 with this defect fix.
  1474 @SYMTestPriority        High
  1475 @SYMTestActions         DEF143047: SQL, default "max parameter count" value, compatibility problem
  1476 @SYMTestExpectedResults Test must not fail
  1477 @SYMDEF                 DEF143047
  1478 */
  1479 void DEF143047()
  1480     {
  1481     (void)RSqlDatabase::Delete(KTestDatabase1);
  1482     
  1483     TInt err = TheDb.Create(KTestDatabase1);
  1484     TEST2(err, KErrNone);
  1485 
  1486     _LIT8(KCreateTable, "CREATE TABLE T(A INTEGER)");
  1487     err = TheDb.Exec(KCreateTable);
  1488     TEST(err >= KErrNone);
  1489     
  1490     const TInt KPrmCount = 1200;
  1491     HBufC8* buf = HBufC8::New(KPrmCount * 2 + 200);
  1492     TEST(buf != NULL);
  1493     TPtr8 sql = buf->Des();
  1494     sql.Copy(_L8("SELECT * FROM T WHERE A IN(?"));
  1495     for(TInt i=0;i<KPrmCount;++i)
  1496         {
  1497         sql.Append(_L8(",?"));
  1498         }
  1499     sql.Append(_L8(")"));
  1500     
  1501     RSqlStatement stmt;
  1502     err = stmt.Prepare(TheDb,sql);
  1503     if(err != KErrNone)
  1504         {
  1505         TPtrC errdes = TheDb.LastErrorMessage();
  1506         TheTest.Printf(_L("RSqlStatement::Prepare() failed. Err %d, ErrMsg: \"%S\".\r\n"), err, &errdes);
  1507         }
  1508     TEST2(err, KErrNone);
  1509     stmt.Close();
  1510     
  1511     delete buf;
  1512     TheDb.Close();
  1513     (void)RSqlDatabase::Delete(KTestDatabase1);
  1514     }
  1515 
  1516 /**
  1517 @SYMTestCaseID          PDS-SQL-UT-4157
  1518 @SYMTestCaseDesc        Test for PDEF143461  Calling CSqlSrvDatabase::LastErrorMessage() does not panic with the descriptor alignment error
  1519 @SYMTestPriority        Normal
  1520 @SYMTestActions         Test for PDEF143461  - CSqlSrvDatabase::LastErrorMessage() alignment problem.
  1521                         This tests the following SQLite Error messages to make sure it doesn't panic:
  1522                         1)library routine called out of sequence
  1523                         2)out of memory
  1524 @SYMTestExpectedResults Test must not fail
  1525 @SYMDEF                 PDEF143461 
  1526 */
  1527 void PDEF143461L()
  1528     {
  1529     (void) RSqlDatabase::Delete(KTestDatabase6);
  1530     
  1531     //Create and setup the database file
  1532     RSqlDatabase db;
  1533     TInt err =0;
  1534     err = db.Create(KTestDatabase6);
  1535     TEST2(err, KErrNone);
  1536     err = db.Exec(_L("CREATE TABLE t(num INTEGER)"));
  1537     TEST2(err, 1);
  1538     err = db.Exec(_L("INSERT INTO t VALUES(1)"));
  1539     TEST2(err, 1);
  1540     err = db.Exec(_L("INSERT INTO t VALUES(2)"));
  1541     TEST2(err, 1);
  1542 
  1543     
  1544     //Purposely commit an error so LastErrorMessage can be called 
  1545     RSqlStatement stmt;
  1546     err = stmt.Prepare(db, _L("DELETE FROM t WHERE ROWID=?"));
  1547     TEST2(err, KErrNone);
  1548     err = stmt.BindInt(0, 1);
  1549     TEST2(err, KErrNone);        
  1550     err = stmt.Exec();
  1551     TEST2(err, 1);
  1552     
  1553     //Should have reset stmt here
  1554     err = stmt.BindInt(0, 2);
  1555     TEST2(err, KErrNone); 
  1556     err = stmt.Exec();
  1557     TEST2(err, KSqlErrMisuse);
  1558     
  1559     //Test "library routine called out of sequence" error message 
  1560     //If the defect is not fixed then it will panic here   
  1561     TPtrC errMsg = db.LastErrorMessage();
  1562     RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
  1563 
  1564     stmt.Close();
  1565     db.Close();
  1566     
  1567     TInt allocationNo = 0;
  1568     //The mask allows the out of memory simulation of the SQL Server to be delayed until the database is opened
  1569     const TInt KDelayedDbHeapFailureMask = 0x1000;
  1570     
  1571     do
  1572         {
  1573         TSqlResourceTester::SetDbHeapFailure(RHeap::EDeterministic |KDelayedDbHeapFailureMask, ++allocationNo);
  1574         err = db.Open(KTestDatabase6);
  1575         TEST2(err, KErrNone);
  1576         err = db.Exec(_L("INSERT INTO t VALUES(3)"));
  1577         TSqlResourceTester::SetDbHeapFailure(RHeap::ENone, 0);
  1578         
  1579         TheTest.Printf(_L("%d    \r"), allocationNo);
  1580         //Test "out of memory" error message, if the defect is not fixed then it will panic here   
  1581         TPtrC errMsg = db.LastErrorMessage();
  1582         RDebug::Print(_L("errMsg=%S\r\n"), &errMsg);
  1583         db.Close();
  1584         }
  1585     while (err == KErrNoMemory);
  1586     TEST2(err, 1);
  1587     }
  1588 
  1589 /**
  1590 @SYMTestCaseID          PDS-SQL-CT-4166
  1591 @SYMTestCaseDesc        Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
  1592 @SYMTestPriority        Medium
  1593 @SYMTestActions         1) Create a simple database and close it (this will automatically delete the journal file
  1594                         2) Create a 15 bytes garbage journal file which is just less than the minimum file size allowed.
  1595                         3) Reopen the database and checks that the open operation does not fail even thou we've used a 
  1596                         garbage journal file which is too small
  1597 @SYMTestExpectedResults The RSqlDatabase::Open operation should not fail
  1598 @SYMDEF                 DEF144027
  1599                         DEF144238
  1600 */
  1601 void DEF144027()
  1602     {
  1603     (void) RSqlDatabase::Delete(KTestDatabase7);
  1604     (void) TheFs.Delete(KTestDatabase7Journal);
  1605     
  1606     TInt err = TheDb.Create(KTestDatabase7);
  1607     TEST2(err, KErrNone);
  1608     
  1609     err = TheDb.Exec(_L("CREATE TABLE t1(NUM INTEGER)"));
  1610     TEST2(err, 1);
  1611     
  1612     err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
  1613     TEST2(err, 1);
  1614     
  1615     TheDb.Close();
  1616     
  1617     //Created a garbage 15 bytes journal file 
  1618     RFile file;
  1619     err = file.Create(TheFs, KTestDatabase7Journal, EFileWrite);
  1620     TEST2(err, KErrNone);
  1621     
  1622     _LIT8(KJournalJunkData, "A123456789B1234");//15 bytes
  1623     err = file.Write(0, KJournalJunkData);
  1624     TEST2(err, KErrNone);
  1625     
  1626     file.Flush();
  1627     file.Close();
  1628     
  1629     //Here we check the open operation does not return an error, 
  1630     //even though there is a journal file less than 16 bytes
  1631     err = TheDb.Open(KTestDatabase7);
  1632     TEST2(err, KErrNone);
  1633     TheDb.Close();
  1634     }
  1635 
  1636 /**
  1637 Test defect where calling RSQLStatement::DeclaredColumnType() on a table which contains long (> 20 characters) column type 
  1638 names results in a USER 11 panic.
  1639 This test should pass because these are valid SQL column types 
  1640 */
  1641 void LongColumnTypeTest()
  1642 	{
  1643 	(void)RSqlDatabase::Delete(KTestDatabase3);
  1644 	TInt err = TheDb.Create(KTestDatabase3);
  1645 	TEST2(err, KErrNone);
  1646 	
  1647 	_LIT8(KCreateStmt, "CREATE TABLE t(a CHARACTER VARYING(100000), b NCHAR VARYING(100000), c NATIONAL CHARACTER(100000), d NATIONAL CHARACTER VARYING(100000))");
  1648 	err = TheDb.Exec(KCreateStmt);
  1649 	TEST(err >= 0);
  1650 	
  1651 	//Select all columns (SELECT *)
  1652 	_LIT(KSelectStmt, "SELECT * FROM t");
  1653 	RSqlStatement stmt;
  1654 	err = stmt.Prepare(TheDb, KSelectStmt);
  1655 	TEST2(err, KErrNone);
  1656 	
  1657 	TSqlColumnType colType;
  1658 	err = stmt.DeclaredColumnType(0, colType);
  1659 	TEST2(err,KErrNone);
  1660 	TEST2(colType, ESqlText);
  1661 	
  1662 	err = stmt.DeclaredColumnType(1, colType);
  1663 	TEST2(err,KErrNone);
  1664 	TEST2(colType, ESqlText);
  1665 	
  1666 	err = stmt.DeclaredColumnType(2, colType);
  1667 	TEST2(err,KErrNone);
  1668 	TEST2(colType, ESqlText);
  1669 	
  1670 	err = stmt.DeclaredColumnType(3, colType);
  1671 	TEST2(err,KErrNone);
  1672 	TEST2(colType, ESqlText);
  1673 	
  1674 	stmt.Close();
  1675 
  1676 	TheDb.Close();
  1677 	(void)RSqlDatabase::Delete(KTestDatabase3); 
  1678 	}
  1679 
  1680 void DoTestsL()
  1681 	{
  1682 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1763 \"SQL against a detached db\" test "));
  1683 	SqlDetachedDbTest();	
  1684 
  1685 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4034 Corrupted db file (file length too short)"));
  1686 	CorruptDbFileTest();	
  1687 	
  1688 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4035 Attempt to attach a file which name cannot be parsed"));
  1689 	AttachBadDbFileNameTest();	
  1690 
  1691 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4036 Attempt to attach a secure database. The client cannot pass the security checks"));
  1692 	AttachSecureDbTest();	
  1693 
  1694 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4032 INC091579 - SQL Panic 7 when streaming BLOB fields"));
  1695 	INC091579L();
  1696 
  1697 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4033 INC091580 - SQL returns bogus pointer when too much text in field..."));
  1698 	INC091580L();
  1699 
  1700 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1815 Testing KSqlErrFull error code "));
  1701 	SqlErrFullTest();
  1702 	
  1703 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1816-0001 INC094870 - [SQL] Database became corrupted and cannot be opened "));
  1704 	INC094870L();
  1705 
  1706 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1817-0001 INC095412: [SQL] Retrieving query results may corrupt heap "));
  1707  	INC095412();
  1708 
  1709 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3427 DEF104242 - The SQL server fails to open database with default security policy only "));
  1710 	DEF104242();
  1711 
  1712 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3430 DEF104437 - RSqlStatement::Next() panics the SQL server with KERN-EXEC 3 "));
  1713 	DEF104437();
  1714 	
  1715 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3442 DEF105259 - SQL, RSqlColumnReadStream's internal buffer may become invalid "));
  1716 	DEF105259L();
  1717 
  1718 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3470 DEF105681 - SQL, HReadOnlyBuf::ConstructL() sets a pointer to a local TPtr8 variable "));
  1719 	DEF105681L();
  1720 
  1721 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3476 DEF106391 SQL server does not deallocate the already allocated memory "));
  1722 	DEF106391();
  1723 	
  1724 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3501 DEF109025 SQL, dangling long binary/text column value pointer "));
  1725 	DEF109025();
  1726 	
  1727 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3546 DEF109843 SQL, RSQLStatement::BindBinary() is causing panic if empty descriptor is passed "));
  1728 	DEF109843();
  1729 
  1730 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4005 DEF114698: SqlSrv.EXE::!SQL Server Insert/Update Error "));
  1731 	DEF114698();
  1732 
  1733 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4008 DEF115567 Critical SQLite defect that can cause database corruption during UPDATE/DELETE "));
  1734 	DEF115567L();
  1735 
  1736 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4009-0001 DEF115556: SqlSrv.EXE::!SQL Server when preparing complex sql query "));
  1737 	DEF115556();
  1738 	
  1739 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4012 DEF115954: CSession Code = 2 executing SQL stmt in OOM loop ")); 
  1740 	DEF115954();
  1741 
  1742 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4019 DEF116397: SQL, Attaching database returns KErrEof(-25) "));
  1743 	DEF116397();
  1744 
  1745 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4029 DEF119403: Database re-index unnecessarily during open operation"));
  1746 	DEF119403L();
  1747 	
  1748 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4031 DEF120237: SQL, SQLITE3.3.17, \"collate nocase\", wrong results."));
  1749 	DEF120237L();
  1750 	
  1751 	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4120 DEF125881: RSqlDatabase::Exec() returns KErrAlreadyExists in I/O failure use cases."));
  1752 	DEF125881L();
  1753     
  1754     TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4128 DEF129581: All Pragmas are allowed to be executed on non-secure SQL databases."));
  1755     DEF129581();
  1756     
  1757     TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4153 DEF143047: SQL, default \"max parameter count\" value, compatibility problem."));
  1758     DEF143047();
  1759     
  1760     TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4157 PDEF143461 : CSqlSrvDatabase::LastErrorMessage() alignment problem"));
  1761     PDEF143461L();
  1762     
  1763     TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4166 DEF144027: SQL Open returns error if the reported and actual file size are different"));
  1764     DEF144027();
  1765     
  1766     TheTest.Next(_L("RSQLStatement::DeclaredColumnType() causes USER 11 panic when table contains long column type strings"));
  1767     LongColumnTypeTest();
  1768  
  1769 	}
  1770 
  1771 TInt E32Main()
  1772 	{
  1773 	TheTest.Title();
  1774 	
  1775 	CTrapCleanup* tc = CTrapCleanup::New();
  1776 	
  1777 	__UHEAP_MARK;
  1778 	
  1779 	CreateTestEnv();
  1780 	DeleteTestFiles();
  1781 	TInt err = RSqlDatabase::Copy(KCorruptDbZ, KCorruptDb);	
  1782 	TEST2(err, KErrNone);
  1783 	TRAP(err, DoTestsL());
  1784 	DeleteTestFiles();
  1785 	TheFs.SetErrorCondition(KErrNone);
  1786 	TheFs.Close();
  1787 	TEST2(err, KErrNone);
  1788 
  1789 	__UHEAP_MARKEND;
  1790 	
  1791 	TheTest.End();
  1792 	TheTest.Close();
  1793 	
  1794 	delete tc;
  1795 
  1796 	User::Heap().Check();
  1797 	return KErrNone;
  1798 	}