os/persistentdata/persistentstorage/sql/TEST/t_sqlapi2.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-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 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <e32math.h>
    18 #include <bautils.h>
    19 #include <s32buf.h>				//MStreamBuf
    20 #include <sqldb.h>
    21 #include "SqlResourceProfiler.h"
    22 
    23 ///////////////////////////////////////////////////////////////////////////////////////
    24 
    25 RTest TheTest(_L("t_sqlapi2 test"));
    26 RSqlDatabase TheDb;
    27 RSqlStatement TheStmt;
    28 
    29 _LIT(KTestDir, "c:\\test\\");
    30 _LIT(KTestDbName1, "c:\\test\\t_sqlapi2_1.db");
    31 _LIT(KTestDbName2, "c:\\private\\1111C1EF\\t_sqlapi2_2.db");//t_sqlapi2 app - private database
    32 
    33 _LIT(KDbInjectedName1, "DELETE FROM symbian_settings;c:\\test\\A.db");
    34 _LIT(KDbInjectedName2, "c:\\test\\A.db;DELETE FROM symbian_settings;");
    35 
    36 const TInt KBufLen = 8192;
    37 TBuf<KBufLen> TheBuf;
    38 
    39 ///////////////////////////////////////////////////////////////////////////////////////
    40 
    41 void DeleteTestFiles()
    42 	{
    43 	TheStmt.Close();
    44 	TheDb.Close();
    45 	(void)RSqlDatabase::Delete(KDbInjectedName2);
    46 	(void)RSqlDatabase::Delete(KDbInjectedName1);
    47 	(void)RSqlDatabase::Delete(KTestDbName2);
    48 	(void)RSqlDatabase::Delete(KTestDbName1);
    49 	}
    50 
    51 ///////////////////////////////////////////////////////////////////////////////////////
    52 ///////////////////////////////////////////////////////////////////////////////////////
    53 //Test macros and functions
    54 void Check(TInt aValue, TInt aLine)
    55 	{
    56 	if(!aValue)
    57 		{
    58 		DeleteTestFiles();
    59 		TheTest(EFalse, aLine);
    60 		}
    61 	}
    62 void Check(TInt aValue, TInt aExpected, TInt aLine)
    63 	{
    64 	if(aValue != aExpected)
    65 		{
    66 		DeleteTestFiles();
    67 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    68 		TheTest(EFalse, aLine);
    69 		}
    70 	}
    71 #define TEST(arg) ::Check((arg), __LINE__)
    72 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    73 
    74 ///////////////////////////////////////////////////////////////////////////////////////
    75 
    76 void CreateTestEnv()
    77     {
    78     RFs fs;
    79 	TInt err = fs.Connect();
    80 	TEST2(err, KErrNone);
    81 
    82 	err = fs.MkDir(KTestDir);
    83 	TEST(err == KErrNone || err == KErrAlreadyExists);
    84 
    85 	err = fs.CreatePrivatePath(EDriveC);
    86 	TEST(err == KErrNone || err == KErrAlreadyExists);
    87 
    88 	fs.Close();
    89 	}
    90 
    91 ///////////////////////////////////////////////////////////////////////////////////////
    92 
    93 /**
    94 @SYMTestCaseID			SYSLIB-SQL-UT-3512
    95 @SYMTestCaseDesc		RSqlStatement::ColumnCount() - SELECT statements test
    96 						The test creates a database with a table and then checks the ColumnCount()
    97 						return result for the following statements:
    98 						- select all columns;
    99 						- select a subset;
   100 						- select an expression;
   101 						- select a constant;
   102 						- multi-table select;
   103 						- select a function;
   104 						- select plus sub-query;
   105 @SYMTestPriority		High
   106 @SYMTestActions			RSqlStatement::ColumnCount() test
   107 @SYMTestExpectedResults Test must not fail
   108 @SYMREQ					REQ8035
   109 */
   110 void ColumnCountTest()
   111 	{
   112 
   113 	TInt err = TheDb.Create(KTestDbName1);
   114 	TEST2(err, KErrNone);
   115 	//Create table 1
   116 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT,Id2 INTEGER,Data BLOB)"));
   117 	TEST(err >= 0);
   118 	
   119 	err = TheDb.Exec(_L("INSERT INTO A VALUES(1,'AAA',6234567890,x'11AAFD0C771188')"));
   120 	TEST2(err, 1);
   121 		
   122 	//Select all columns (SELECT *)
   123 	err = TheStmt.Prepare(TheDb, _L("SELECT * FROM A"));
   124 	TEST2(err, KErrNone);
   125 	TInt cnt = TheStmt.ColumnCount();
   126 	TEST2(cnt, 4);
   127 	TheStmt.Close();
   128 	//Select all columns (SELECT a,b,c...)
   129 	err = TheStmt.Prepare(TheDb, _L("SELECT Id,Name,Id2,Data FROM A"));
   130 	TEST2(err, KErrNone);
   131 	cnt = TheStmt.ColumnCount();
   132 	TEST2(cnt, 4);
   133 	TheStmt.Close();
   134 	//Select column subset
   135 	err = TheStmt.Prepare(TheDb, _L("SELECT Id,Name,Data FROM A"));
   136 	TEST2(err, KErrNone);
   137 	cnt = TheStmt.ColumnCount();
   138 	TEST2(cnt, 3);
   139 	TheStmt.Close();
   140 	//Select column subset + expression
   141 	err = TheStmt.Prepare(TheDb, _L("SELECT Id,Id+Id2 FROM A"));
   142 	TEST2(err, KErrNone);
   143 	cnt = TheStmt.ColumnCount();
   144 	TEST2(cnt, 2);
   145 	TheStmt.Close();
   146 	//Select column subset + constant
   147 	err = TheStmt.Prepare(TheDb, _L("SELECT Id,Id2,345.78 FROM A"));
   148 	TEST2(err, KErrNone);
   149 	cnt = TheStmt.ColumnCount();
   150 	TEST2(cnt, 3);
   151 	TheStmt.Close();
   152 	//Select SQL function
   153 	err = TheStmt.Prepare(TheDb, _L("SELECT COUNT(*) FROM A"));
   154 	TEST2(err, KErrNone);
   155 	cnt = TheStmt.ColumnCount();
   156 	TEST2(cnt, 1);
   157 	TheStmt.Close();
   158 	//Create table 2
   159 	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, S INTEGER)"));
   160 	TEST(err >= 0);
   161 	err = TheDb.Exec(_L("INSERT INTO B VALUES(1,25)"));
   162 	TEST2(err, 1);
   163 	//Multitable select
   164 	err = TheStmt.Prepare(TheDb, _L("SELECT A.Id,B.S FROM A,B WHERE A.Id = B.Id"));
   165 	TEST2(err, KErrNone);
   166 	cnt = TheStmt.ColumnCount();
   167 	TEST2(cnt, 2);
   168 	TheStmt.Close();
   169 	//Select + Subquery
   170 	err = TheStmt.Prepare(TheDb, _L("SELECT Id FROM A WHERE (SELECT S FROM B WHERE A.Id = B.Id) > 10"));
   171 	TEST2(err, KErrNone);
   172 	cnt = TheStmt.ColumnCount();
   173 	TEST2(cnt, 1);
   174 	TheStmt.Close();
   175 	//Cleanup
   176 	TheDb.Close();
   177 	(void)RSqlDatabase::Delete(KTestDbName1);
   178 	}
   179 
   180 /**
   181 @SYMTestCaseID			SYSLIB-SQL-UT-3513
   182 @SYMTestCaseDesc		RSqlStatement::ColumnCount() - DDL and DML statements test
   183 						The test creates a database with a table and then checks the ColumnCount() return result for
   184 						DML statements (INSERT/UPDATE/DELETE) and DDL statements (CREATE TABLE/INDEX, DROP TABLE?INDEX).
   185 						The column count for DML and DDL statements should be 0.
   186 @SYMTestPriority		High
   187 @SYMTestActions			RSqlStatement::ColumnCount() test
   188 @SYMTestExpectedResults Test must not fail
   189 @SYMREQ					REQ8035
   190 */
   191 void ColumnCountTest2()
   192 	{
   193 	TInt err = TheDb.Create(KTestDbName1);
   194 	TEST2(err, KErrNone);
   195 	//Create table
   196 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Name TEXT,Id2 INTEGER,Data BLOB)"));
   197 	TEST(err >= 0);
   198 	err = TheDb.Exec(_L("INSERT INTO A VALUES(1,'AAA',6234567890,x'11AAFD0C771188')"));
   199 	TEST2(err, 1);
   200 	//INSERT statement
   201 	err = TheStmt.Prepare(TheDb, _L("INSERT INTO A(Id,Id2) VALUES(:P1,:P2)"));
   202 	TEST2(err, KErrNone);
   203 	TInt cnt = TheStmt.ColumnCount();
   204 	TEST2(cnt, 0);
   205 	TheStmt.Close();
   206 	//UPDATE statement
   207 	err = TheStmt.Prepare(TheDb, _L("UPDATE A SET Id2=100 WHERE Id=:P1"));
   208 	TEST2(err, KErrNone);
   209 	cnt = TheStmt.ColumnCount();
   210 	TEST2(cnt, 0);
   211 	TheStmt.Close();
   212 	//DELETE statement
   213 	err = TheStmt.Prepare(TheDb, _L("DELETE FROM A WHERE Id=:P1"));
   214 	TEST2(err, KErrNone);
   215 	cnt = TheStmt.ColumnCount();
   216 	TEST2(cnt, 0);
   217 	TheStmt.Close();
   218 	//CREATE TABLE statement
   219 	err = TheStmt.Prepare(TheDb, _L("CREATE TABLE B AS SELECT * FROM A"));
   220 	TEST2(err, KErrNone);
   221 	cnt = TheStmt.ColumnCount();
   222 	TEST2(cnt, 0);
   223 	TheStmt.Close();
   224 	//DROP TABLE statement
   225 	err = TheStmt.Prepare(TheDb, _L("DROP TABLE A"));
   226 	TEST2(err, KErrNone);
   227 	cnt = TheStmt.ColumnCount();
   228 	TEST2(cnt, 0);
   229 	TheStmt.Close();
   230 	//CREATE INDEX statement
   231 	err = TheStmt.Prepare(TheDb, _L("CREATE INDEX I ON A(Id)"));
   232 	TEST2(err, KErrNone);
   233 	cnt = TheStmt.ColumnCount();
   234 	TEST2(cnt, 0);
   235 	err = TheStmt.Exec();
   236 	TEST(err >= 0);
   237 	TheStmt.Close();
   238 	//DROP INDEX statement
   239 	err = TheStmt.Prepare(TheDb, _L("DROP INDEX I"));
   240 	TEST2(err, KErrNone);
   241 	cnt = TheStmt.ColumnCount();
   242 	TEST2(cnt, 0);
   243 	TheStmt.Close();
   244 	//CREATE TRIGGER statement
   245 	err = TheStmt.Prepare(TheDb,
   246 			_L("CREATE TRIGGER Trg BEFORE DELETE ON A \
   247 	             BEGIN \
   248 	                SELECT CASE WHEN ((SELECT Id2 FROM A WHERE A.Id = old.Id) > 0) \
   249 	                            THEN RAISE (ABORT, 'Id2 > 0') \
   250 	                END;\
   251 	             END;"));
   252 	TEST2(err, KErrNone);
   253 	cnt = TheStmt.ColumnCount();
   254 	TEST2(cnt, 0);
   255 	TheStmt.Close();
   256 	//CREATE VIEW statement
   257 	err = TheStmt.Prepare(TheDb, _L("CREATE VIEW V AS SELECT * FROM A"));
   258 	TEST2(err, KErrNone);
   259 	cnt = TheStmt.ColumnCount();
   260 	TEST2(cnt, 0);
   261 	err = TheStmt.Exec();
   262 	TEST(err >= 0);
   263 	TheStmt.Close();
   264 	//DROP VIEW statement
   265 	err = TheStmt.Prepare(TheDb, _L("DROP VIEW V"));
   266 	TEST2(err, KErrNone);
   267 	cnt = TheStmt.ColumnCount();
   268 	TEST2(cnt, 0);
   269 	TheStmt.Close();
   270 	//Cleanup
   271 	TheDb.Close();
   272 	(void)RSqlDatabase::Delete(KTestDbName1);
   273 	}
   274 
   275 /**
   276 @SYMTestCaseID			SYSLIB-SQL-UT-3514
   277 @SYMTestCaseDesc		RSqlStatement::DeclaredColumnType() test
   278 						The test creates a database with a table and then checks the DeclaredColumnType() return result for:
   279 						- select all column from the table and check their types;
   280 						- multi-table select plus column type checks;
   281 						- select expression - the expected column type is ESqlInt;
   282 						- select constant - the expected column type is ESqlInt;
   283 @SYMTestPriority		High
   284 @SYMTestActions			RSqlStatement::ColumnCount() test
   285 @SYMTestExpectedResults Test must not fail
   286 @SYMREQ					REQ8035
   287 */
   288 void DeclaredColumnTypeTest()
   289 	{
   290 	TInt err = TheDb.Create(KTestDbName1);
   291 	TEST2(err, KErrNone);
   292 	const char* KColTypeNames[] =
   293 		{"INTEGER", "LONG INTEGER", "INT", "SHORT INT", "SMALL INT", "TINY INT", "SHORT", "INT64",
   294 		"TEXT", "LONGTEXT", "CLOB", "CHAR", "CHARACTER(20)", "LONG TEXT",
   295 		"BINARY", "LONG BINARY", "LONGBINARY", "BLOB", "LONGBLOB", "LONG BLOB",
   296 		"REAL", "FLOAT", "DOUBLE", "LONG DOUBLE",
   297 		"LONG LONG", "BOO HOO"};
   298 	const TSqlColumnType KColTypes[] =
   299 		{ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,
   300 		 ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,
   301 		 ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,
   302 		 ESqlReal,ESqlReal,ESqlReal,ESqlReal,
   303 		 ESqlInt,ESqlInt};
   304 	const TInt KColTypeCnt = sizeof(KColTypes) / sizeof(KColTypes[0]);
   305 	TEST2(sizeof(KColTypeNames) / sizeof(KColTypeNames[0]), KColTypeCnt);
   306 	//Create table 1
   307 	TBuf8<512> sql;
   308 	sql.Copy(_L8("CREATE TABLE T("));
   309 	for(TInt i=0;i<KColTypeCnt;++i)
   310 		{
   311 		sql.Append(TChar('A'));
   312 		sql.AppendNum(i + 1);
   313 		sql.Append(TChar(' '));
   314 		sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
   315 		sql.Append(TChar(','));
   316 		}
   317 	sql.Replace(sql.Length() - 1, 1, _L8(")"));
   318 	err = TheDb.Exec(sql);
   319 	TEST(err >= 0);
   320 	//Select all columns (SELECT *)
   321 	err = TheStmt.Prepare(TheDb, _L("SELECT * FROM T"));
   322 	TEST2(err, KErrNone);
   323 	TInt cnt = TheStmt.ColumnCount();
   324 	TEST2(cnt, KColTypeCnt);
   325 	TSqlColumnType colType;
   326 	for(TInt i=0;i<KColTypeCnt;++i)
   327 		{
   328 		TInt err = TheStmt.DeclaredColumnType(i, colType);
   329 		TEST2(err, KErrNone);
   330 		TEST2(colType, KColTypes[i]);
   331 		}
   332 	TheStmt.Close();
   333 	//Create table 2
   334 	err = TheDb.Exec(_L8("CREATE TABLE T2(Id INTEGER, DATA BLOB)"));
   335 	TEST(err >= 0);
   336 	//Multi-table select
   337 	err = TheStmt.Prepare(TheDb, _L("SELECT T.A1,T2.Id,T.A9,T2.Data FROM T,T2"));
   338 	TEST2(err, KErrNone);
   339 	err = TheStmt.DeclaredColumnType(0, colType);
   340 	TEST2(err, KErrNone);
   341 	TEST2(colType, ESqlInt);
   342 	err = TheStmt.DeclaredColumnType(1, colType);
   343 	TEST2(err, KErrNone);
   344 	TEST2(colType, ESqlInt);
   345 	err = TheStmt.DeclaredColumnType(2, colType);
   346 	TEST2(err, KErrNone);
   347 	TEST2(colType, ESqlText);
   348 	err = TheStmt.DeclaredColumnType(3, colType);
   349 	TEST2(err, KErrNone);
   350 	TEST2(colType, ESqlBinary);
   351 	TheStmt.Close();
   352 	//Select expression
   353 	err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES FROM t2"));
   354 	TEST2(err, KErrNone);
   355 	err = TheStmt.DeclaredColumnType(0, colType);
   356 	TEST2(err, KErrNone);
   357 	TEST2(colType, ESqlInt);
   358 	TheStmt.Close();
   359 	//Select constant
   360 	err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES, 55.89 FROM t2"));
   361 	TEST2(err, KErrNone);
   362 	err = TheStmt.DeclaredColumnType(1, colType);
   363 	TEST2(err, KErrNone);
   364 	TEST2(colType, ESqlInt);
   365 	TheStmt.Close();
   366 	//Cleanup
   367 	TheDb.Close();
   368 	(void)RSqlDatabase::Delete(KTestDbName1);
   369 	}
   370 
   371 /**
   372 @SYMTestCaseID			SYSLIB-SQL-UT-4017
   373 @SYMTestCaseDesc		RSqlStatement::ColumnName(TInt, TPtrC&) test
   374 						The test creates a database with a table and then checks the ColumnName() return result for:
   375 						- select all column from the table and check their names;
   376 						- multi-table select plus column name checks;
   377 						- select expression - the expected column name is RES
   378 						- select constant - the expected column type is 55.89 
   379 @SYMTestPriority		High
   380 @SYMTestActions			RSqlStatement::ColumnName() test
   381 @SYMTestExpectedResults Test must not fail
   382 @SYMCR				    RMAD-7B7EV5
   383                         Add SQL Server APIs to retrieve column and parameter names
   384 */	
   385 void ColumnNameTest()
   386 	{
   387 	TInt err = TheDb.Create(KTestDbName1);
   388 	TEST2(err, KErrNone);
   389 	const char* KColTypeNames[] = 
   390 		{"INTEGER", "LONG INTEGER", "INT", "SHORT INT", "SMALL INT", "TINY INT", "SHORT", "INT64",
   391 		"TEXT", "LONGTEXT", "CLOB", "CHAR", "CHARACTER(20)", "LONG TEXT",
   392 		"BINARY", "LONG BINARY", "LONGBINARY", "BLOB", "LONGBLOB", "LONG BLOB",
   393 		"REAL", "FLOAT", "DOUBLE", "LONG DOUBLE",
   394 		"LONG LONG", "BOO HOO"};
   395 	const TSqlColumnType KColTypes[] = 
   396 		{ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,ESqlInt,
   397 		 ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,ESqlText,
   398 		 ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,ESqlBinary,
   399 		 ESqlReal,ESqlReal,ESqlReal,ESqlReal,
   400 		 ESqlInt,ESqlInt};
   401 	const TInt KColTypeCnt = sizeof(KColTypes) / sizeof(KColTypes[0]);
   402 	TEST2(sizeof(KColTypeNames) / sizeof(KColTypeNames[0]), KColTypeCnt);
   403 	//Create table 1
   404 	TBuf8<512> sql;
   405 	sql.Copy(_L8("CREATE TABLE T("));
   406 	for(TInt i=0;i<KColTypeCnt;++i)
   407 		{
   408 		sql.Append(TChar('A'));
   409 		sql.AppendNum(i + 1);
   410 		sql.Append(TChar(' '));
   411 		sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
   412 		sql.Append(TChar(','));
   413 		}
   414 	sql.Replace(sql.Length() - 1, 1, _L8(")"));
   415 	err = TheDb.Exec(sql);
   416 	TEST(err >= 0);
   417 	//Select all columns (SELECT *)
   418 	err = TheStmt.Prepare(TheDb, _L("SELECT * FROM T"));
   419 	TEST2(err, KErrNone);
   420 	TInt cnt = TheStmt.ColumnCount();
   421 	TEST2(cnt, KColTypeCnt);
   422 	TPtrC colName;
   423 	TBuf<128> expectedColName;
   424 	for(TInt i=0;i<KColTypeCnt;++i)
   425 		{
   426 		expectedColName.Zero();
   427 		expectedColName.Append(TChar('A'));
   428 		expectedColName.AppendNum(i + 1);
   429 		TInt err = TheStmt.ColumnName(i, colName);
   430 		TEST2(err, KErrNone);
   431 		TEST2(colName.Compare(expectedColName), 0);
   432 		TSqlColumnType type;
   433 		err = TheStmt.DeclaredColumnType(i, type);
   434 		TEST2(err, KErrNone);
   435 		TEST2(type, KColTypes[i]);
   436 		}
   437 	TheStmt.Close();
   438 	//Create table 2
   439 	err = TheDb.Exec(_L8("CREATE TABLE T2(Id INTEGER, DATA BLOB)"));
   440 	TEST(err >= 0);
   441 	//Multi-table select
   442 	err = TheStmt.Prepare(TheDb, _L("SELECT T.A1,T2.Id,T.A9,T2.DATA FROM T,T2"));
   443 	TEST2(err, KErrNone);
   444 	err = TheStmt.ColumnName(0, colName);
   445 	TEST2(err, KErrNone);
   446 	TEST2(colName.Compare(_L("A1")), 0);
   447 	err = TheStmt.ColumnName(1, colName);
   448 	TEST2(err, KErrNone);
   449 	TEST2(colName.Compare(_L("Id")), 0);
   450 	err = TheStmt.ColumnName(2, colName);
   451 	TEST2(err, KErrNone);
   452 	TEST2(colName.Compare(_L("A9")), 0);
   453 	err = TheStmt.ColumnName(3, colName);
   454 	TEST2(err, KErrNone);
   455 	TEST2(colName.Compare(_L("DATA")), 0);
   456 	TheStmt.Close();
   457 	//Select expression
   458 	err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES FROM t2"));
   459 	TEST2(err, KErrNone);
   460 	err = TheStmt.ColumnName(0, colName);
   461 	TEST2(err, KErrNone);
   462 	TEST2(colName.Compare(_L("RES")), 0);
   463 	//Too big column index
   464     err = TheStmt.ColumnName(1323, colName);
   465     TEST2(err, KErrNotFound);
   466     //Negative column index 
   467     err = TheStmt.ColumnName(-100, colName);
   468     TEST2(err, KErrNotFound);
   469 	TheStmt.Close();
   470 	//Select constant
   471 	err = TheStmt.Prepare(TheDb, _L("SELECT (Id + Data) AS RES, 55.89 FROM t2"));
   472 	TEST2(err, KErrNone);
   473 	err = TheStmt.ColumnName(1, colName);
   474 	TEST2(err, KErrNone);
   475 	TEST2(colName.Compare(_L("55.89")), 0);
   476 	TheStmt.Close();
   477 	//Cleanup
   478 	TheDb.Close();
   479 	(void)RSqlDatabase::Delete(KTestDbName1);
   480 	}
   481 
   482 /**
   483 @SYMTestCaseID			SYSLIB-SQL-UT-4018
   484 @SYMTestCaseDesc		RSqlStatement::ParameterName(TInt, TPtrC&) and RSqlStatement::ParamName(TInt, TPtrC&) test
   485 						DML test:
   486 						The test creates a database with a table and prepares an insert query.
   487 						The test then checks the ParameterName() and ParamName() return result for:
   488 						- Named parameters - return the named param
   489 						- Unnamed parameters - return ?<param-index>
   490 @SYMTestPriority		High
   491 @SYMTestActions			RSqlStatement::ParameterName() and RSqlStatement::ParamName() test
   492 @SYMTestExpectedResults Test must not fail
   493 @SYMCR					RMAD-7B7EV5
   494                         Add SQL Server APIs to retrieve column and parameter names
   495 */	
   496 void ParamNameTest()
   497 	{
   498 	TInt err = TheDb.Create(KTestDbName1);
   499 	TEST2(err, KErrNone);
   500 	const char* KColTypeNames[] = 
   501 		{"INTEGER", "TEXT"};
   502 	const TInt KColTypeCnt = sizeof(KColTypeNames) / sizeof(KColTypeNames[0]);
   503 	//Create table 1
   504 	TBuf8<256> sql;
   505 	sql.Copy(_L8("CREATE TABLE T("));
   506 	for(TInt i=0;i<KColTypeCnt;++i)
   507 		{
   508 		sql.Append(TChar('A'));
   509 		sql.AppendNum(i + 1);
   510 		sql.Append(TChar(' '));
   511 		sql.Append((TUint8*)KColTypeNames[i], User::StringLength((TUint8*)KColTypeNames[i]));
   512 		sql.Append(TChar(','));
   513 		}
   514 	sql.Replace(sql.Length() - 1, 1, _L8(")"));
   515 	err = TheDb.Exec(sql);
   516 	TEST(err >= 0);
   517 	TheStmt.Close();
   518 	
   519 	// Create insert statement, then check param names
   520 	err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (:prm1, :prm2)"));
   521 	TEST2(err, KErrNone);
   522 	TPtrC paramName;
   523 	TBuf<128> expectedParamName;
   524 	for(TInt i=0;i<KColTypeCnt;++i)
   525 		{
   526 		expectedParamName.Zero();
   527 		expectedParamName.Append(_L(":prm"));
   528 		expectedParamName.AppendNum(i + 1);
   529 		TInt paramIndex = TheStmt.ParameterIndex(expectedParamName);
   530 		TEST2(paramIndex, i);
   531 		TInt err = TheStmt.ParameterName(i, paramName);
   532 		TEST2(err, KErrNone);
   533 		TEST2(paramName.Compare(expectedParamName), 0);
   534 		err = TheStmt.ParamName(i, paramName);
   535 		TEST2(err, KErrNone);
   536 		TEST2(paramName.Compare(expectedParamName), 0);
   537 		}
   538     //Too big parameter index
   539     err = TheStmt.ParamName(1323, paramName);
   540     TEST2(err, KErrNotFound);
   541     //Negative parameter index 
   542     err = TheStmt.ParamName(-100, paramName);
   543     TEST2(err, KErrNotFound);
   544 	TheStmt.Close();
   545 	
   546 	//SQL statement without parameters
   547     err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (1, '1')"));
   548     TEST2(err, KErrNone);
   549     err = TheStmt.ParamName(0, paramName);
   550     TEST2(err, KErrNotFound);
   551     TheStmt.Close();
   552 
   553 	// Create insert statement, then check param names
   554 	err = TheStmt.Prepare(TheDb, _L("INSERT INTO T (A1, A2) VALUES (:prm1, ?)"));
   555 	TEST2(err, KErrNone);
   556 	
   557 	expectedParamName.Zero();
   558 	expectedParamName.Append(_L(":prm1"));
   559 	TInt paramIndex = TheStmt.ParameterIndex(expectedParamName);
   560 	TEST2(paramIndex, 0);
   561 	err = TheStmt.ParameterName(0, paramName);
   562 	TEST2(err, KErrNone);
   563 	TEST2(paramName.Compare(expectedParamName), 0);
   564 	err = TheStmt.ParamName(0, paramName);
   565 	TEST2(err, KErrNone);
   566 	TEST2(paramName.Compare(expectedParamName), 0);
   567 
   568 	expectedParamName.Zero();
   569 	expectedParamName.Append(_L("?1"));
   570 	err = TheStmt.ParameterName(1, paramName);
   571 	TEST2(err, KErrNone);
   572 	paramIndex = TheStmt.ParameterIndex(expectedParamName);
   573 	TEST2(paramIndex, 1);
   574 	TEST2(paramName.Compare(expectedParamName), 0);
   575 	
   576 	err = TheStmt.ParamName(1, paramName);
   577 	TEST2(err, KErrNone);
   578 	TEST2(paramName.Compare(expectedParamName), 0);
   579 
   580 	TheStmt.Close();
   581 	
   582 	//Cleanup
   583 	TheDb.Close();
   584 	(void)RSqlDatabase::Delete(KTestDbName1);
   585 	}
   586 
   587 
   588 /**
   589 @SYMTestCaseID			SYSLIB-SQL-UT-4006
   590 @SYMTestCaseDesc		Test for DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query.
   591 						The test does the following steps:
   592 						1) Creates a 16-bit database and using 16-bit queries proves that the "GROUP BY GROUP BY" syntax error
   593 						   does not cause an assert inside the SQLITE code.
   594 						2) Creates a 8-bit database and using 8-bit queries proves that the "GROUP BY GROUP BY" syntax error
   595 						   does not cause an assert inside the SQLITE code.
   596 @SYMTestPriority		Medium
   597 @SYMTestActions			Test for DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query.
   598 @SYMTestExpectedResults Test must not fail
   599 @SYMDEF					DEF115300
   600 */
   601 void DEF115300()
   602 	{
   603 
   604 	//Step 1: 16-bit statements
   605 	(void)RSqlDatabase::Delete(KTestDbName1);
   606 	TInt err = TheDb.Create(KTestDbName1);
   607 	TEST2(err, KErrNone);
   608 
   609 	err = TheDb.Exec(_L("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
   610 	TEST2(err, 1);
   611 	err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(2,3)"));
   612 	TEST2(err, 1);
   613 	err = TheDb.Exec(_L("INSERT INTO MAIN(Id,Id1) VALUES(3,4)"));
   614 	TEST2(err, 1);
   615 
   616 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
   617 	TEST2(err, 1);
   618 	err = TheDb.Exec(_L("INSERT INTO A(Id, Id1) VALUES(2,3)"));
   619 	TEST2(err, 1);
   620 	err = TheDb.Exec(_L("INSERT INTO A(Id, Id1) VALUES(4,4)"));
   621 	TEST2(err, 1);
   622 
   623 	err = TheDb.Exec(_L("CREATE TABLE B(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
   624 	TEST2(err, 1);
   625 	err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(2,3)"));
   626 	TEST2(err, 1);
   627 	err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(5,4)"));
   628 	TEST2(err, 1);
   629 	err = TheDb.Exec(_L("INSERT INTO B(Id, Id1) VALUES(5,4)"));
   630 	TEST2(err, 1);
   631 
   632 	err = TheDb.Exec(_L("CREATE VIEW v2 AS SELECT Id,Id1,F2 FROM B"));
   633 	TEST2(err, 1);
   634 	err = TheDb.Exec(_L("CREATE VIEW v1 AS SELECT Id,Id1,F2 FROM A"));
   635 	TEST2(err, 1);
   636 	err = TheDb.Exec(_L("CREATE VIEW v3 AS SELECT Id,Id1,F2 FROM B"));
   637 	TEST2(err, 1);
   638 
   639 	RSqlStatement stmt;
   640 	err = stmt.Prepare(TheDb, _L("SELECT * FROM v2 LEFT JOIN MAIN ON v2.Id = MAIN.Id LEFT JOIN A ON MAIN.Id = A.Id GROUP BY GROUP BY MAIN.Id"));
   641 	stmt.Close();
   642 	TEST(err != KErrNone && err != KErrServerTerminated);
   643 
   644 	TheDb.Close();
   645 	err = RSqlDatabase::Delete(KTestDbName1);
   646 	TEST2(err, KErrNone);
   647 
   648 	//Step 2: 8-bit statements
   649 	_LIT8(KServerConfigString1, "encoding=\"UTF-8\"");
   650 	err = TheDb.Create(KTestDbName1, &KServerConfigString1);
   651 	TEST2(err, KErrNone);
   652 
   653 	err = TheDb.Exec(_L8("CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER, F2 BLOB)"));
   654 	TEST2(err, 1);
   655 
   656 	err = stmt.Prepare(TheDb, _L8("SELECT * FROM main GROUP BY GROUP BY main.Id"));
   657 	stmt.Close();
   658 	TEST(err != KErrNone && err != KErrServerTerminated);
   659 
   660 	TheDb.Close();
   661 	err = RSqlDatabase::Delete(KTestDbName1);
   662 	TEST2(err, KErrNone);
   663 	}
   664 
   665 /**
   666 @SYMTestCaseID			SYSLIB-SQL-UT-4007
   667 @SYMTestCaseDesc		Test for DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed.
   668 						The test does the following steps, using public shared and private secure database:
   669 						1) Creates a test database with a table and one index using one of the collations.
   670 						2) Updates the symbian_settings table, setting the collation dll name column value 
   671 						   to be a "bbbababz" string (Simulates that there is no valid collation dll name).
   672 						3) Reopens the database. This operation should cause a database reindexing, since the index uses
   673 						   one of the user-defined collation methods.
   674 						   The default system collation dll name should be stored in the symbian_settings table.
   675 						4) Verifies that symbian_settings table contains only one record and that the collation dll name
   676 						   column value has been updated.
   677 @SYMTestPriority		Medium
   678 @SYMTestActions			Test for DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed.
   679 @SYMTestExpectedResults Test must not fail
   680 @SYMDEF					DEF115331
   681 */
   682 void DEF115331L()
   683 	{
   684 	const TPtrC KDbNames[]		=	{KTestDbName1(),	KTestDbName2()};
   685 
   686 	for(TInt i=0;i<(sizeof(KDbNames)/sizeof(KDbNames[0]));++i)
   687 		{
   688 		//Step 1: Create a test database with a table and one index using one of the collations.
   689 		(void)RSqlDatabase::Delete(KDbNames[i]);
   690 		TInt err = TheDb.Create(KDbNames[i]);
   691 		TEST2(err, KErrNone);
   692 
   693 		err = TheDb.Exec(_L("CREATE TABLE A(C TEXT)"));
   694 		TEST2(err, 1);
   695 
   696 		err = TheDb.Exec(_L("CREATE INDEX I ON A(C COLLATE CompareC1)"));
   697 		TEST2(err, 1);
   698 
   699 		//Step 2: Make sure that the collation dll name is set and unique (not the default collation).
   700 		err = TheDb.Exec(_L("UPDATE symbian_settings SET CollationDllName='bbbababz'"));
   701 		TEST2(err, 1);
   702 
   703 		TheDb.Close();
   704 
   705 		//Step 3: Reopen the database. That step should cause a database reindexing, because the default collation dll 
   706 		//        name is not the one stored in the table.
   707 		err = TheDb.Open(KDbNames[i]);
   708 		TEST2(err, KErrNone);
   709 
   710 		TSqlScalarFullSelectQuery query(TheDb);
   711 
   712 		//Step 4: Check that the settigns table has only one record.
   713 		TInt cnt = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings"));
   714 		TEST2(cnt, 1);
   715 
   716 		//Step 5: Check that the collation dll name in the settings table has been updated.
   717 		TFileName collationDllName;
   718 		err = query.SelectTextL(_L("SELECT CollationDllName FROM symbian_settings"), collationDllName);
   719 		TEST2(err, KErrNone);
   720 		_LIT(KTestCollationDllName, "bbbababz");//The same as the used in step 2 - above.
   721 		TEST(collationDllName != KTestCollationDllName);
   722 
   723 		TheDb.Close();
   724 		err = RSqlDatabase::Delete(KDbNames[i]);
   725 		TEST2(err, KErrNone);
   726 		}
   727 	}
   728 
   729 /**
   730 @SYMTestCaseID			SYSLIB-SQL-UT-4079
   731 @SYMTestCaseDesc		RSqlDatabase::Create() and RSqlDatabase::Open() - injection test
   732 						The test attempts to create or open a database which name contains
   733 						"DELETE FROM symbian_settings" statement.If it is possible to open or
   734 						create a database with that name, the "symbian_settings" table content
   735 						should stay unchanged.
   736 @SYMTestPriority		Medium
   737 @SYMTestActions			RSqlDatabase::Create() and RSqlDatabase::Open() - injection test
   738 @SYMTestExpectedResults Test must not fail
   739 @SYMREQ					REQ5792
   740 */
   741 void InjectionTest()
   742 	{
   743 	TInt err = TheDb.Create(KDbInjectedName1);
   744 	TEST(err != KErrNone);
   745 
   746 	err = TheDb.Create(KDbInjectedName2);
   747 	TEST2(err, KErrNone);
   748 	
   749 	TSqlScalarFullSelectQuery query(TheDb);
   750 	TInt recCount = 0;
   751 	TRAP(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
   752 	TEST2(err, KErrNone);
   753 	TEST2(recCount, 1);
   754 	TheDb.Close();
   755 	
   756 	err = TheDb.Open(KDbInjectedName2);
   757 	TEST2(err, KErrNone);
   758 	recCount = 0;
   759 	query.SetDatabase(TheDb);
   760 	TRAP(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
   761 	TEST2(err, KErrNone);
   762 	TEST2(recCount, 1);
   763 	TheDb.Close();
   764 		
   765 	(void)RSqlDatabase::Delete(KDbInjectedName2);
   766 	(void)RSqlDatabase::Delete(KDbInjectedName1);
   767 	}
   768 
   769 /**
   770 @SYMTestCaseID			SYSLIB-SQL-UT-4038
   771 @SYMTestCaseDesc		Background compaction - two connections usability test.
   772 						The test creates a database connection with a background compaction mode. The the test 
   773 						locks the database in a transaction. Then the test creates a second connection
   774 						to the same database while the first connection is in a transaction.
   775 @SYMTestPriority		Medium
   776 @SYMTestActions			Background compaction - two connections usability test.
   777 @SYMTestExpectedResults Test must not fail
   778 @SYMREQ					REQ10271
   779 */
   780 void TwoConnectionsTest()
   781 	{
   782 	(void)RSqlDatabase::Delete(KTestDbName1);
   783 	RSqlDatabase db1, db2;
   784 	TInt err = db1.Create(KTestDbName1);
   785 	TEST2(err, KErrNone);
   786 	err = db1.Exec(_L("CREATE TABLE A(I INTEGER); INSERT INTO A VALUES(1)"));
   787 	TEST2(err, 1);
   788 	err = db1.Exec(_L("BEGIN TRANSACTION"));
   789 	TEST(err >= 0);
   790 	err = db1.Exec(_L("INSERT INTO A VALUES(2)"));
   791 	TEST2(err, 1);
   792 	err = db2.Open(KTestDbName1);
   793 	TEST2(err, KErrNone);
   794 	err = db1.Exec(_L("COMMIT TRANSACTION"));
   795 	TEST(err >= 0);
   796 	db2.Close();		
   797 	db1.Close();		
   798 	(void)RSqlDatabase::Delete(KTestDbName1);
   799 	}
   800 
   801 TInt StackOverflowThreadFunc(void* aData)
   802 	{
   803 	CTrapCleanup* tc = CTrapCleanup::New();
   804 	TEST(tc != NULL);
   805 	
   806 	User::SetJustInTime(EFalse);	// disable debugger panic handling
   807 	
   808 	TInt* cntptr = reinterpret_cast<TInt*> (aData);
   809 	TEST(cntptr != NULL);
   810 	TInt cnt = *cntptr;
   811 
   812 	HBufC* buf = HBufC::New(cnt * 12 + 32);//enough for the "SELECT Id FROM A WHERE Id=v1 OR Id=v2 OR ..." string
   813 	if(!buf)
   814 		{
   815 		delete tc;
   816 		return KErrNoMemory;	
   817 		}
   818 	TPtr sql = buf->Des();
   819 	
   820 	TInt err = TheDb.Open(KTestDbName1);
   821 	if(err != KErrNone)
   822 		{
   823 		delete buf;
   824 		delete tc;
   825 		return err;	
   826 		}
   827 
   828 	TTime now;
   829 	now.UniversalTime();
   830 	TInt64 seed = now.Int64();
   831 
   832 	sql.Copy(_L("SELECT Id FROM A WHERE "));
   833 	for(TInt i=0;i<cnt;++i)
   834 		{
   835 		sql.Append(_L("Id="));
   836 		sql.AppendNum(Math::Rand(seed) % cnt);
   837 		sql.Append(_L(" OR "));
   838 		}
   839 	sql.SetLength(sql.Length() - 4);//Remove the last " OR "
   840 
   841 	RSqlStatement stmt;
   842 	err = stmt.Prepare(TheDb, sql);
   843 	stmt.Close();
   844 	
   845 	TheDb.Close();
   846 	delete buf;
   847 	delete tc;
   848 	
   849 	return err;
   850 	}
   851 
   852 /**
   853 @SYMTestCaseID			SYSLIB-SQL-UT-4080
   854 @SYMTestCaseDesc		SQL server stack overflow test
   855 						The test creates a database and runs a thread. The thread opens the database
   856 						and attempts to execute a SELECT statement, which format is:
   857 						"SELECT Id FROM A WHERE Id=1 OR Id=2 OR...OR Id=N",
   858 						where N is a number passed as an argument from the main thread, starts from 100000
   859 						and is increased or decreased on each test iteration, depending on the reported result from the thread.
   860 						Finally, the main thread will report the max number of the OR subexpressions that can be included
   861 						in the SELECT statement, without an error to be reported.
   862 						The test should not crash the SQL server, if the server stack size and parsing tree depth has
   863 						been properly configured.
   864 @SYMTestPriority		Medium
   865 @SYMTestActions			SQL server stack overflow test
   866 @SYMTestExpectedResults Test must not fail
   867 @SYMREQ					REQ5792
   868 */
   869 void SqlServerStackOverflowTest()
   870 	{
   871 	(void)RSqlDatabase::Delete(KTestDbName1);
   872 	TInt err = TheDb.Create(KTestDbName1);
   873 	TEST2(err, KErrNone);
   874 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER PRIMARY KEY AUTOINCREMENT)"));
   875 	TEST2(err, 1);
   876 	TheDb.Close();
   877 	
   878 	TInt prev = 0, next = 100000;
   879 	while(Abs(next - prev) > 0)
   880 		{
   881 		TInt count = next;
   882 		TheTest.Printf(_L("'OR' expr. count: %d\r\n"), count);
   883 		RThread thread;
   884 		_LIT(KThreadName,"ORThread");						//stack	minheap		maxheap
   885 		err = thread.Create(KThreadName, &StackOverflowThreadFunc, 0x2000, 0x00100000, 0x02000000, &count);
   886 		TEST2(err, KErrNone);
   887 		
   888 		TRequestStatus status;
   889 		thread.Logon(status);
   890 		TEST2(status.Int(), KRequestPending);
   891 		thread.Resume();
   892 		User::WaitForRequest(status);
   893 		User::SetJustInTime(ETrue);	// enable debugger panic handling
   894 
   895 		TInt exitType = thread.ExitType();
   896 		const TDesC& exitCategory = thread.ExitCategory();
   897 		TInt exitReason = thread.ExitReason();
   898 		TheTest.Printf(_L("Exit type: %d, exit reason: %d, exit category: %S\r\n"), exitType, exitReason, &exitCategory);
   899 		thread.Close();
   900 		TEST(exitReason != KErrServerTerminated);
   901 		TEST(exitType != EExitPanic);
   902 
   903 		TInt tmp = next;		
   904 		if(status.Int() != KErrNone)
   905 			{//The number of the OR subexpressions is too big and cannot be parsed. Decrease the number, repeat the test.
   906 			next -= Abs(next - prev) / 2;
   907 			}
   908 		else
   909 			{//KErrNone: The number of the OR subexpressions has been successfully parsed. Increase the number, repeat the test.
   910 			next += Abs(next - prev) / 2;
   911 			}
   912 		prev = tmp;
   913 		}
   914 	TheTest.Printf(_L("The test has succeeded with an expression with %d ORs\r\n"), prev);
   915 	}
   916 
   917 void AssertSettingsTable()
   918 	{
   919 	TSqlScalarFullSelectQuery query(TheDb);
   920 	TInt recCount = 0;
   921 	TRAPD(err, recCount = query.SelectIntL(_L("SELECT COUNT(*) FROM symbian_settings")));
   922 	TEST2(err, KErrNone);
   923 	TEST2(recCount, 1);
   924 	}
   925 
   926 /**
   927 @SYMTestCaseID			SYSLIB-SQL-UT-4086
   928 @SYMTestCaseDesc		RSqlBlobWriteStream::OpenL() and RSqlBlobReadStream::OpenL() - injection test
   929 						The test attempts to open a blob stream with an attached database name containing
   930 						"DELETE FROM symbian_settings" statement. The test should not delete the content of the
   931 						"symbian_settings" table.
   932 						The test also attempts to open a blob stream with a set of very long database/table/column names.
   933 @SYMTestPriority		Medium
   934 @SYMTestActions			RSqlBlobWriteStream::OpenL() and RSqlBlobReadStream::OpenL() - injection test
   935 @SYMTestExpectedResults Test must not fail
   936 @SYMREQ					REQ5792
   937                         REQ10410
   938 						REQ10411
   939 						REQ10418
   940 */
   941 void BlobStreamInjectionTest()
   942 	{
   943 	(void)RSqlDatabase::Delete(KTestDbName1);
   944 	TInt err = TheDb.Create(KTestDbName1);
   945 	TEST2(err, KErrNone);
   946 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER,Data BLOB)"));
   947 	TEST2(err, 1);
   948 	err = TheDb.Exec(_L("INSERT INTO A VALUES(1, x'11223344556677889900')"));
   949 	TEST2(err, 1);
   950 	_LIT(KAttachDb, "AttachDb");
   951 	err = TheDb.Attach(KTestDbName1, KAttachDb);
   952 	TEST2(err, KErrNone);
   953 	//RSqlBlobWriteStream::OpenL() - attached database  name injected
   954 	RSqlBlobWriteStream strm1;
   955 	TRAP(err, strm1.OpenL(TheDb, _L("A"), _L("Data"), 1, _L("Id;DELETE FROM symbian_settings;")));
   956 	TEST(err != KErrNone);
   957 	AssertSettingsTable();
   958 	//RSqlBlobReadStream::OpenL() - attached database  name injected
   959 	RSqlBlobReadStream strm2;
   960 	TRAP(err, strm2.OpenL(TheDb, _L("A"), _L("Data"), 1, _L("Id;DELETE FROM symbian_settings;")));
   961 	TEST(err != KErrNone);
   962 	AssertSettingsTable();
   963 	//Attempt to open a write blob stream with a set of very long database/table/column names.
   964 	TBuf<KMaxFileName + 10> longName;
   965 	longName.SetLength(longName.MaxLength());
   966 	RSqlBlobWriteStream strm3;
   967 	TRAP(err, strm3.OpenL(TheDb, longName, longName, 1, longName));
   968 	TEST(err != KErrNone);
   969 	//Attempt to open a read blob stream with a set of very long database/table/column names.
   970 	RSqlBlobReadStream strm4;
   971 	TRAP(err, strm4.OpenL(TheDb, longName, longName, 1, longName));
   972 	TEST(err != KErrNone);
   973 	//Attempt to open a write blob stream with a set of KNullDesC database/table/column names.
   974 	RSqlBlobWriteStream strm5;
   975 	TRAP(err, strm5.OpenL(TheDb, KNullDesC, KNullDesC, 1, KNullDesC));
   976 	TEST(err != KErrNone);
   977 	//Attempt to open a read blob stream with a set of KNullDesC database/table/column names.
   978 	RSqlBlobReadStream strm6;
   979 	TRAP(err, strm6.OpenL(TheDb, KNullDesC, KNullDesC, 1, KNullDesC));
   980 	TEST(err != KErrNone);
   981 	//Attempt to open a read blob stream, where the blob column name is invalid and contains non-convertible characters.
   982     TBuf<3> invName;
   983     invName.SetLength(3);
   984     invName[0] = TChar(0xD800); 
   985     invName[1] = TChar(0xFC00); 
   986     invName[2] = TChar(0x0000);
   987 	RSqlBlobReadStream strm7;
   988 	TRAP(err, strm7.OpenL(TheDb,  _L("A"), invName, 1, KNullDesC));
   989 	TEST(err != KErrNone);
   990 	//Attempt to open a read blob stream, where the table name is invalid and contains non-convertible characters.
   991 	RSqlBlobReadStream strm8;
   992 	TRAP(err, strm8.OpenL(TheDb, invName, _L("Data"), 1, KNullDesC));
   993 	TEST(err != KErrNone);
   994 	//Attempt to open a read blob stream, where the attached db name is invalid and contains non-convertible characters.
   995 	RSqlBlobReadStream strm9;
   996 	TRAP(err, strm9.OpenL(TheDb, _L("A"), _L("Data"), 1, invName));
   997 	TEST(err != KErrNone);
   998 	//
   999 	err = TheDb.Detach(KAttachDb);
  1000 	TEST2(err, KErrNone);
  1001 	TheDb.Close();
  1002 	(void)RSqlDatabase::Delete(KTestDbName1);
  1003 	}
  1004 	
  1005 /**
  1006 @SYMTestCaseID			SYSLIB-SQL-UT-4087
  1007 @SYMTestCaseDesc		Bound parameter values test.
  1008 						The test verifies that bound parameters with big text/binary values retain their values after
  1009 						the RSqlStatement::Reset() call. The old bound paramegter values can be used for the next 
  1010 						RSqlStatement::Exec() call.
  1011 @SYMTestActions			Bound parameter values test.
  1012 @SYMTestExpectedResults Test must not fail
  1013 @SYMTestPriority		High
  1014 @SYMREQ					REQ5792
  1015 */
  1016 void BoundParameterValuesTest()
  1017 	{
  1018 	(void)RSqlDatabase::Delete(KTestDbName1);
  1019 	TInt err = TheDb.Create(KTestDbName1);
  1020 	TEST2(err, KErrNone);
  1021 	err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
  1022 	TEST2(err, 1);
  1023 	err = TheDb.Exec(_L("CREATE TABLE A2(T1 TEXT, T2 TEXT)"));
  1024 	TEST2(err, 1);
  1025 	
  1026 	RSqlStatement stmt1, stmt2;
  1027 	err = stmt1.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
  1028 	TEST2(err, KErrNone);
  1029 	err = stmt2.Prepare(TheDb, _L("INSERT INTO A2 VALUES(:Prm1, :Prm2)"));
  1030 	TEST2(err, KErrNone);
  1031 	//Insert 1 record into table "A1". T2 = "ZZZZ.....".
  1032 	TheBuf.SetLength(KBufLen - 100);
  1033 	TheBuf.Fill(TChar('Z'));
  1034 	err = stmt1.BindText(0, TheBuf);
  1035 	TEST2(err, KErrNone);
  1036 	err = stmt1.BindText(1, TheBuf);
  1037 	TEST2(err, KErrNone);
  1038 	err = stmt1.Exec();
  1039 	TEST2(err, 1);
  1040 	err = stmt1.Reset();
  1041 	TEST2(err, KErrNone);
  1042 	//Insert 1 record into table "A2". T2 = "AAAAAAA.....".
  1043 	TheBuf.SetLength(KBufLen);
  1044 	TheBuf.Fill(TChar('A'));
  1045 	err = stmt2.BindText(0, TheBuf);
  1046 	TEST2(err, KErrNone);
  1047 	err = stmt2.BindText(1, TheBuf);
  1048 	TEST2(err, KErrNone);
  1049 	err = stmt2.Exec();
  1050 	TEST2(err, 1);
  1051 	err = stmt2.Reset();
  1052 	TEST2(err, KErrNone);
  1053 	//Insert 1 record into table "A1". T2 not set. T2 should be initialized with the previous bound value - "ZZZZZZ....".
  1054 	//If the problem is not fixed, the SQLITE will attempt to access an already deleted region of memory.
  1055 	TheBuf.SetLength(KBufLen - 100);
  1056 	TheBuf.Fill(TChar('B'));
  1057 	err = stmt1.BindText(0, TheBuf);
  1058 	TEST2(err, KErrNone);
  1059 	err = stmt1.Exec();
  1060 	TEST2(err, 1);
  1061 	err = stmt1.Reset();
  1062 	TEST2(err, KErrNone);
  1063 	
  1064 	stmt2.Close();
  1065 	stmt1.Close();
  1066 	
  1067 	//Check the inserted records.
  1068 	TSqlScalarFullSelectQuery q(TheDb);
  1069 	TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=1"), TheBuf));
  1070 	TEST2(err, KErrNone);
  1071 	TEST2(TheBuf.Length(), (KBufLen - 100));
  1072 	for(TInt i1=0;i1<(KBufLen - 100);++i1)
  1073 		{
  1074 		TEST2(TheBuf[i1], TChar('Z'));	
  1075 		}
  1076 	TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=2"), TheBuf));
  1077 	TEST2(err, KErrNone);
  1078 	TEST2(TheBuf.Length(), (KBufLen - 100));
  1079 	for(TInt i2=0;i2<(KBufLen - 100);++i2)
  1080 		{
  1081 		TEST2(TheBuf[i2], TChar('Z'));	
  1082 		}
  1083 	
  1084 	TheDb.Close();
  1085 	(void)RSqlDatabase::Delete(KTestDbName1);
  1086 	}
  1087 
  1088 /**
  1089 @SYMTestCaseID			SYSLIB-SQL-UT-4076
  1090 @SYMTestCaseDesc		Bound parameter values test.
  1091 						The test verifies that when a RSqlParamWriteStream object is used for binding parameter values,
  1092 						it is safe to erverse the order of RSqlParamWriteStream::Close() and RSqlStatement::Close() calls.
  1093 @SYMTestActions			Bound parameter values test.
  1094 @SYMTestExpectedResults Test must not fail
  1095 @SYMTestPriority		High
  1096 @SYMREQ					REQ5792
  1097 */
  1098 void BoundParameterValuesTest2()
  1099 	{
  1100 	(void)RSqlDatabase::Delete(KTestDbName1);
  1101 	TInt err = TheDb.Create(KTestDbName1);
  1102 	TEST2(err, KErrNone);
  1103 	err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
  1104 	TEST2(err, 1);
  1105 	
  1106 	RSqlStatement stmt;
  1107 	err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
  1108 	TEST2(err, KErrNone);
  1109 	RSqlParamWriteStream strm;
  1110 	err = strm.BindText(stmt, 0);
  1111 	TEST2(err, KErrNone);
  1112 	err = stmt.Exec();
  1113 	TEST2(err, 1);
  1114 	stmt.Close();
  1115 	strm.Close();
  1116 
  1117 	TheDb.Close();
  1118 	(void)RSqlDatabase::Delete(KTestDbName1);
  1119 	}
  1120 
  1121 /**
  1122 @SYMTestCaseID			SYSLIB-SQL-UT-4077
  1123 @SYMTestCaseDesc		Bound parameter values test.
  1124 						The test verifies that when a RSqlParamWriteStream object is used for binding parameter values,
  1125 						it is possible to write the parameter value, then call RSqlParamWriteStream::Close() and finally -
  1126 						RSqlStatement::Exec() to execute the operation (an INSERT statement). The test verifies that the record
  1127 						has really been inserted and the column value is equal to the bound parameter value
  1128 @SYMTestActions			Bound parameter values test.
  1129 @SYMTestExpectedResults Test must not fail
  1130 @SYMTestPriority		High
  1131 @SYMREQ					REQ5792
  1132 */
  1133 void BoundParameterValuesTest3()
  1134 	{
  1135 	(void)RSqlDatabase::Delete(KTestDbName1);
  1136 	TInt err = TheDb.Create(KTestDbName1);
  1137 	TEST2(err, KErrNone);
  1138 	err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
  1139 	TEST2(err, 1);
  1140 	
  1141 	RSqlStatement stmt;
  1142 	err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
  1143 	TEST2(err, KErrNone);
  1144 	RSqlParamWriteStream strm;
  1145 	err = strm.BindText(stmt, 0);
  1146 	TEST2(err, KErrNone);
  1147 	_LIT(KText, "AAAA");
  1148 	TRAP(err, strm.WriteL(KText));
  1149 	TEST2(err, KErrNone);
  1150 	TRAP(err, strm.CommitL());
  1151 	TEST2(err, KErrNone);
  1152 	strm.Close();
  1153 	err = stmt.Exec();
  1154 	TEST2(err, 1);
  1155 	stmt.Close();
  1156 
  1157 	TSqlScalarFullSelectQuery q(TheDb);
  1158 	TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1"), TheBuf));
  1159 	TEST2(err, KErrNone);
  1160 	TEST(KText() == TheBuf);	
  1161 
  1162 	TheDb.Close();
  1163 	(void)RSqlDatabase::Delete(KTestDbName1);
  1164 	}
  1165 
  1166 /**
  1167 @SYMTestCaseID			SYSLIB-SQL-UT-4083
  1168 @SYMTestCaseDesc		Bound parameter values test.
  1169 						The test prepares an INSERT sql statement and inserts two records using streams to bind the parameter values.
  1170 						For the second INSERT no parameter value is bound to the first parameter. The expectation is that the value
  1171 						that has been bound for the first record will be used for the second record also.
  1172 @SYMTestActions			Bound parameter values test.
  1173 @SYMTestExpectedResults Test must not fail
  1174 @SYMTestPriority		High
  1175 @SYMREQ					REQ5792
  1176 */
  1177 void BoundParameterValuesTest4()
  1178 	{
  1179 	(void)RSqlDatabase::Delete(KTestDbName1);
  1180 	TInt err = TheDb.Create(KTestDbName1);
  1181 	TEST2(err, KErrNone);
  1182 	err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
  1183 	TEST2(err, 1);
  1184 	
  1185 	RSqlStatement stmt;
  1186 	err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
  1187 	TEST2(err, KErrNone);
  1188 	
  1189 	RSqlParamWriteStream strm;
  1190 	err = strm.BindText(stmt, 0);
  1191 	TEST2(err, KErrNone);
  1192 	_LIT(KText1, "AAAA");
  1193 	TRAP(err, strm.WriteL(KText1));
  1194 	TEST2(err, KErrNone);
  1195 	TRAP(err, strm.CommitL());
  1196 	TEST2(err, KErrNone);
  1197 	strm.Close();
  1198 	
  1199 	err = strm.BindText(stmt, 1);
  1200 	TEST2(err, KErrNone);
  1201 	_LIT(KText2, "BBBBBBBBBB");
  1202 	TRAP(err, strm.WriteL(KText2));
  1203 	TEST2(err, KErrNone);
  1204 	TRAP(err, strm.CommitL());
  1205 	TEST2(err, KErrNone);
  1206 	strm.Close();
  1207 	
  1208 	err = stmt.Exec();
  1209 	TEST2(err, 1);
  1210 	err = stmt.Reset();
  1211 	TEST2(err, KErrNone);
  1212 	
  1213 	err = strm.BindText(stmt, 1);
  1214 	TEST2(err, KErrNone);
  1215 	_LIT(KText3, "CCCCCCCCCCC");
  1216 	TRAP(err, strm.WriteL(KText3));
  1217 	TEST2(err, KErrNone);
  1218 	TRAP(err, strm.CommitL());
  1219 	TEST2(err, KErrNone);
  1220 	strm.Close();
  1221 	
  1222 	err = stmt.Exec();
  1223 	TEST2(err, 1);
  1224 	
  1225 	stmt.Close();
  1226 
  1227 	TSqlScalarFullSelectQuery q(TheDb);
  1228 	TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=1"), TheBuf));
  1229 	TEST2(err, KErrNone);
  1230 	TEST(KText1() == TheBuf);	
  1231 	TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=1"), TheBuf));
  1232 	TEST2(err, KErrNone);
  1233 	TEST(KText2() == TheBuf);	
  1234 
  1235 	TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=2"), TheBuf));
  1236 	TEST2(err, KErrNone);
  1237 	TEST(KText1() == TheBuf);	
  1238 	TRAP(err, q.SelectTextL(_L("SELECT T2 FROM A1 WHERE ROWID=2"), TheBuf));
  1239 	TEST2(err, KErrNone);
  1240 	TEST(KText3() == TheBuf);	
  1241 
  1242 	TheDb.Close();
  1243 	(void)RSqlDatabase::Delete(KTestDbName1);
  1244 	}
  1245 
  1246 /**
  1247 @SYMTestCaseID			SYSLIB-SQL-UT-4105
  1248 @SYMTestCaseDesc		Bound parameter values test.
  1249 						BC test. Even though it is correct to execute only one CommitL() on a parameter stream,
  1250 						it should be possible to execute more than one CommitL(). It should be possible also
  1251 						the stream data to be updated after the first commit operation and the expectation is that
  1252 						the updated parameter data should be used for the column value.
  1253 @SYMTestActions			Bound parameter values test.
  1254 @SYMTestExpectedResults Test must not fail
  1255 @SYMTestPriority		High
  1256 @SYMREQ					REQ5792
  1257 */
  1258 void BoundParameterValuesTest5()
  1259 	{
  1260 	(void)RSqlDatabase::Delete(KTestDbName1);
  1261 	TInt err = TheDb.Create(KTestDbName1);
  1262 	TEST2(err, KErrNone);
  1263 	err = TheDb.Exec(_L("CREATE TABLE A1(T1 TEXT, T2 TEXT)"));
  1264 	TEST2(err, 1);
  1265 	
  1266 	RSqlStatement stmt;
  1267 	err = stmt.Prepare(TheDb, _L("INSERT INTO A1 VALUES(:Prm1, :Prm2)"));
  1268 	TEST2(err, KErrNone);
  1269 	
  1270 	RSqlParamWriteStream strm;
  1271 	err = strm.BindText(stmt, 0);
  1272 	TEST2(err, KErrNone);
  1273 	_LIT(KText1, "AAAA");
  1274 	TRAP(err, strm.WriteL(KText1));
  1275 	TEST2(err, KErrNone);
  1276 	TRAP(err, strm.CommitL());
  1277 	TEST2(err, KErrNone);
  1278 	TRAP(err, strm.Sink()->SeekL(MStreamBuf::EWrite, EStreamBeginning, 0));
  1279 	TEST2(err, KErrNone);
  1280 	_LIT(KText2, "DTAA");
  1281 	TRAP(err, strm.WriteL(KText2));
  1282 	TEST2(err, KErrNone);
  1283 	TRAP(err, strm.CommitL());
  1284 	TEST2(err, KErrNone);
  1285 	strm.Close();
  1286 
  1287 	err = stmt.Exec();
  1288 	TEST2(err, 1);
  1289 	
  1290 	stmt.Close();
  1291 
  1292 	TSqlScalarFullSelectQuery q(TheDb);
  1293 	TRAP(err, q.SelectTextL(_L("SELECT T1 FROM A1 WHERE ROWID=1"), TheBuf));
  1294 	TEST2(err, KErrNone);
  1295 	TEST(KText2() == TheBuf);	
  1296 
  1297 	TheDb.Close();
  1298 	(void)RSqlDatabase::Delete(KTestDbName1);
  1299 	}
  1300 
  1301 void PrintConfig(TSqlResourceProfiler& aProfiler)
  1302 	{
  1303 	TBuf8<128> config;
  1304 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterConfig, config) == KErrNone)
  1305 		{
  1306 		_LIT(KCacheSize, "Cache size: %S pages\r\n");
  1307 		_LIT(KPageSize, "Page size: %S bytes\r\n");
  1308 		_LIT(KEncoding, "Encoding: %S\r\n");
  1309 		_LIT(KDefaultSoftHeapLimit, "Default soft heap limit: %S Kb\r\n");
  1310 		_LIT(KVacuumMode, "Vacuum mode: %S\r\n");
  1311 	
  1312 		TPtrC KText[] = {KCacheSize(), KPageSize(), KEncoding(), KDefaultSoftHeapLimit(), KVacuumMode()};
  1313 	
  1314 		for(TInt i=0;i<config.Length();++i)
  1315 			{
  1316 			if(config[i] == TChar(';'))	
  1317 				{
  1318 				config[i] = TChar(' ');	
  1319 				}
  1320 			}
  1321 		TInt idx = 0;
  1322 		TLex8 lex(config);
  1323 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1324 			{
  1325 			TPtrC8 num8 = lex.NextToken();
  1326 			TBuf<20> num;
  1327 			num.Copy(num8);
  1328 			TheTest.Printf(KText[idx], &num);
  1329 			++idx;
  1330 			}
  1331 		}
  1332 	}
  1333 
  1334 void PrintFileIo(TSqlResourceProfiler& aProfiler)
  1335 	{
  1336 	TBuf8<300> countersValues;
  1337 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterFileIO, countersValues) == KErrNone)
  1338 		{
  1339 		TheTest.Printf(_L("=========================\r\n"));
  1340 		_LIT(KFileCreate, "File Create");
  1341 		_LIT(KFileOpen, "File Open");
  1342 		_LIT(KFileClose, "File Close");
  1343 		_LIT(KFileDelete, "File Delete");
  1344 		_LIT(KFileRead, "File Read");
  1345 		_LIT(KFileWrite, "File Write");
  1346 		_LIT(KFileSeek, "File Seek");
  1347 		_LIT(KFileSize, "File Size");
  1348 		_LIT(KFileSetSize, "File SetSize");
  1349 		_LIT(KFileSync, "File Sync");
  1350 		_LIT(KFileDrive, "File Drive");
  1351 		_LIT(KFileAdopt, "File Adopt");
  1352 		_LIT(KFsClose, "Fs Close");
  1353 		_LIT(KFsConnect, "Fs Connect");
  1354 		_LIT(KFsGetSystemDrive, "Fs GetSystemDrive");
  1355 		_LIT(KFsCreatePrivatePath, "Fs CreatePrivatePath");
  1356 		_LIT(KFsPrivatePath, "Fs PrivatePath");
  1357 		_LIT(KFsVolumeIoParam, "Fs VolumeIoParam");
  1358 		_LIT(KFsEntry, "Fs Entry");
  1359 		_LIT(KFsAtt, "Fs Att");
  1360 		_LIT(KFileCreateTemp, "File CreateTemp");
  1361 		_LIT(KFileAttach, "File Attach");
  1362 		_LIT(KBytesWritten, "File Bytes Written");
  1363 		_LIT(KBytesRead, "File Bytes Read");
  1364 		TPtrC KText[] = 
  1365 			{
  1366 			KFileCreate(), KFileOpen(), KFileClose(), KFileDelete(), KFileRead(), KFileWrite(), KFileSeek(), KFileSize(),
  1367 			KFileSetSize(), KFileSync(), KFileDrive(), KFileAdopt(), KFsClose(), KFsConnect(), KFsGetSystemDrive(), 
  1368 			KFsCreatePrivatePath(), KFsPrivatePath(), KFsVolumeIoParam(), KFsEntry(), KFsAtt(), KFileCreateTemp(), 
  1369 			KFileAttach(), KBytesWritten(), KBytesRead()
  1370 			};
  1371 		
  1372 		for(TInt i=0;i<countersValues.Length();++i)
  1373 			{
  1374 			if(countersValues[i] == TChar(';'))	
  1375 				{
  1376 				countersValues[i] = TChar(' ');	
  1377 				}
  1378 			}
  1379 		TInt idx = 0;
  1380 		TLex8 lex(countersValues);
  1381 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1382 			{
  1383 			TPtrC8 num8 = lex.NextToken();
  1384 			TBuf<20> num;
  1385 			num.Copy(num8);
  1386 			TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
  1387 			++idx;
  1388 			}
  1389 		}
  1390 	}
  1391 
  1392 void PrintOsCall(TSqlResourceProfiler& aProfiler)
  1393 	{
  1394 	TBuf8<300> countersValues;
  1395 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterOsCall, countersValues) == KErrNone)
  1396 		{
  1397 		TheTest.Printf(_L("=========================\r\n"));
  1398 		_LIT(KEOsFileClose, "FileClose");
  1399 		_LIT(KEOsFileRead, "FileRead");
  1400 		_LIT(KEOsFileWrite, "FileWrite");
  1401 		_LIT(KEOsFileTruncate, "FileTruncate");
  1402 		_LIT(KEOsFileSync, "FileSync");
  1403 		_LIT(KEOsFileFileSize, "FileSize");
  1404 		_LIT(KEOsFileLock, "FileLock");
  1405 		_LIT(KEOsFileUnlock, "FileUnlock");
  1406 		_LIT(KEOsFileCheckReservedLock, "FileCheckReservedLock");
  1407 		_LIT(KEOsFileFileControl, "FileIoControl");
  1408 		_LIT(KEOsFileSectorSize, "FileSectorSize");
  1409 		_LIT(KEOsFileDeviceCharacteristics, "FileDeviceCharacteristics");
  1410 		_LIT(KEOsVfsOpen, "VfsOpen");
  1411 		_LIT(KEOsVfsDelete, "VfsDelete");
  1412 		_LIT(KEOsVfsAccess, "VfsAccess");
  1413 		_LIT(KEOsVfsFullPathName, "VfsFullPathName");
  1414 		_LIT(KEOsVfsRandomness, "VfsRandomnes");
  1415 		_LIT(KEOsVfsSleep, "VfsSleep");
  1416 		_LIT(KEOsVfsCurrentTime, "VfsCurrentTime");
  1417 		_LIT(KEOsVfsGetLastError, "VfsGetLastError");
  1418 		TPtrC KText[] = 
  1419 			{
  1420 			KEOsFileClose(), KEOsFileRead(), KEOsFileWrite(), KEOsFileTruncate(), KEOsFileSync(), 
  1421 			KEOsFileFileSize(), KEOsFileLock(), KEOsFileUnlock(), KEOsFileCheckReservedLock(), KEOsFileFileControl(), 
  1422 			KEOsFileSectorSize(), KEOsFileDeviceCharacteristics(), 
  1423 			KEOsVfsOpen(), KEOsVfsDelete(), KEOsVfsAccess(), KEOsVfsFullPathName(), KEOsVfsRandomness(), KEOsVfsSleep(), 
  1424 			KEOsVfsCurrentTime(), KEOsVfsGetLastError()};
  1425 		
  1426 		for(TInt i=0;i<countersValues.Length();++i)
  1427 			{
  1428 			if(countersValues[i] == TChar(';'))	
  1429 				{
  1430 				countersValues[i] = TChar(' ');	
  1431 				}
  1432 			}
  1433 		TInt idx = 0;
  1434 		TLex8 lex(countersValues);
  1435 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1436 			{
  1437 			TPtrC8 num8 = lex.NextToken();
  1438 			TBuf<20> num;
  1439 			num.Copy(num8);
  1440 			TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
  1441 			++idx;
  1442 			}
  1443 		}
  1444 	}
  1445 
  1446 void PrintOsCallTime(TSqlResourceProfiler& aProfiler)
  1447 	{
  1448 	TBuf8<300> callTimes;
  1449 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterOsCallTime, callTimes) == KErrNone)
  1450 		{
  1451 		TheTest.Printf(_L("=========================\r\n"));
  1452 		_LIT(KEOsFileClose, "FileClose");
  1453 		_LIT(KEOsFileRead, "FileRead");
  1454 		_LIT(KEOsFileWrite, "FileWrite");
  1455 		_LIT(KEOsFileTruncate, "FileTruncate");
  1456 		_LIT(KEOsFileSync, "FileSync");
  1457 		_LIT(KEOsFileFileSize, "FileSize");
  1458 		_LIT(KEOsFileLock, "FileLock");
  1459 		_LIT(KEOsFileUnlock, "FileUnlock");
  1460 		_LIT(KEOsFileCheckReservedLock, "FileCheckReservedLock");
  1461 		_LIT(KEOsFileFileControl, "FileIoControl");
  1462 		_LIT(KEOsFileSectorSize, "FileSectorSize");
  1463 		_LIT(KEOsFileDeviceCharacteristics, "FileDeviceCharacteristics");
  1464 		_LIT(KEOsVfsOpen, "VfsOpen");
  1465 		_LIT(KEOsVfsDelete, "VfsDelete");
  1466 		_LIT(KEOsVfsAccess, "VfsAccess");
  1467 		_LIT(KEOsVfsFullPathName, "VfsFullPathName");
  1468 		_LIT(KEOsVfsRandomness, "VfsRandomnes");
  1469 		_LIT(KEOsVfsSleep, "VfsSleep");
  1470 		_LIT(KEOsVfsCurrentTime, "VfsCurrentTime");
  1471 		_LIT(KEOsVfsGetLastError, "VfsGetLastError");
  1472 		TPtrC KText[] = 
  1473 			{
  1474 			KEOsFileClose(), KEOsFileRead(), KEOsFileWrite(), KEOsFileTruncate(), KEOsFileSync(), 
  1475 			KEOsFileFileSize(), KEOsFileLock(), KEOsFileUnlock(), KEOsFileCheckReservedLock(), KEOsFileFileControl(), 
  1476 			KEOsFileSectorSize(), KEOsFileDeviceCharacteristics(), 
  1477 			KEOsVfsOpen(), KEOsVfsDelete(), KEOsVfsAccess(), KEOsVfsFullPathName(), KEOsVfsRandomness(), KEOsVfsSleep(), 
  1478 			KEOsVfsCurrentTime(), KEOsVfsGetLastError()};
  1479 		
  1480 		for(TInt i=0;i<callTimes.Length();++i)
  1481 			{
  1482 			if(callTimes[i] == TChar(';'))	
  1483 				{
  1484 				callTimes[i] = TChar(' ');	
  1485 				}
  1486 			}
  1487 		TInt idx = 0;
  1488 		TLex8 lex(callTimes);
  1489 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1490 			{
  1491 			TPtrC8 num8 = lex.NextToken();
  1492 			TBuf<20> num;
  1493 			num.Copy(num8);
  1494 			TheTest.Printf(_L("==Operation %S, time %S us\r\n"), &KText[idx], &num);
  1495 			++idx;
  1496 			}
  1497 		}
  1498 	}
  1499 
  1500 void PrintIpc(TSqlResourceProfiler& aProfiler)
  1501 	{
  1502 	TBuf8<300> countersValues;
  1503 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterIpc, countersValues) == KErrNone)
  1504 		{
  1505 		TheTest.Printf(_L("=========================\r\n"));
  1506 		_LIT(KIpcRq, "IPC requests");
  1507 		_LIT(KIpcRead, "IPC read");
  1508 		_LIT(KIpcWrite, "IPC write");
  1509 		_LIT(KIpcReadBytes, "IPC read bytes");
  1510 		_LIT(KIpcWriteBytes, "IPC write bytes");
  1511 		TPtrC KText[] = 
  1512 			{
  1513 			KIpcRq(), KIpcRead(), KIpcWrite(), KIpcReadBytes(), KIpcWriteBytes()
  1514 			};
  1515 		
  1516 		for(TInt i=0;i<countersValues.Length();++i)
  1517 			{
  1518 			if(countersValues[i] == TChar(';'))	
  1519 				{
  1520 				countersValues[i] = TChar(' ');	
  1521 				}
  1522 			}
  1523 		TInt idx = 0;
  1524 		TLex8 lex(countersValues);
  1525 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1526 			{
  1527 			TPtrC8 num8 = lex.NextToken();
  1528 			TBuf<20> num;
  1529 			num.Copy(num8);
  1530 			TheTest.Printf(_L("==Operation %S, count %S\r\n"), &KText[idx], &num);
  1531 			++idx;
  1532 			}
  1533 		}
  1534 	}
  1535 
  1536 void PrintMemory(TSqlResourceProfiler& aProfiler)
  1537 	{
  1538 	TBuf8<300> countersValues;
  1539 	if(aProfiler.Query(TSqlResourceProfiler::ESqlCounterMemory, countersValues) == KErrNone)
  1540 		{
  1541 		TheTest.Printf(_L("=========================\r\n"));
  1542 		_LIT(KMemorySrvAllocatedCnt, "Server allocated cnt");
  1543 		_LIT(KMemorySrvAllocatedSize, "Server allocated size");
  1544 		_LIT(KMemorySrvFreeSpace, "Server free space");
  1545 		_LIT(KMemorySrvLargestBlockSize, "Server larges block size");
  1546 		_LIT(KMemorySQLiteAllocatedCnt, "SQLite allocated cnt");
  1547 		_LIT(KMemorySQLiteReallocatedCnt, "SQLite reallocated cnt");
  1548 		_LIT(KMemorySQLiteFreedCnt, "SQLite freed cnt");
  1549 		_LIT(KMemorySQLiteAllocatedBytes, "SQLite allocated bytes");
  1550 		_LIT(KMemorySQLiteFreedBytes, "SQLite freed bytes");
  1551 		_LIT(KMemorySQLiteAllocTime, "SQLite alloc, us");
  1552 		_LIT(KMemorySQLiteReallocTime, "SQLite realloc, us");
  1553 		_LIT(KMemorySQLiteFreeTime, "SQLite free, us");
  1554 		TPtrC KText[] = 
  1555 			{
  1556 			KMemorySrvAllocatedCnt(), KMemorySrvAllocatedSize(), KMemorySrvFreeSpace(), KMemorySrvLargestBlockSize(), 
  1557 			KMemorySQLiteAllocatedCnt(), KMemorySQLiteReallocatedCnt(), KMemorySQLiteFreedCnt(), 
  1558 			KMemorySQLiteAllocatedBytes(), KMemorySQLiteFreedBytes(),
  1559 			KMemorySQLiteAllocTime(), KMemorySQLiteReallocTime(), KMemorySQLiteFreeTime()
  1560 			};
  1561 		
  1562 		for(TInt i=0;i<countersValues.Length();++i)
  1563 			{
  1564 			if(countersValues[i] == TChar(';'))	
  1565 				{
  1566 				countersValues[i] = TChar(' ');	
  1567 				}
  1568 			}
  1569 		TInt idx = 0;
  1570 		TLex8 lex(countersValues);
  1571 		while (!lex.Eos() && idx < (sizeof(KText)/sizeof(KText[0])))
  1572 			{
  1573 			TPtrC8 num8 = lex.NextToken();
  1574 			TBuf<20> num;
  1575 			num.Copy(num8);
  1576 			TheTest.Printf(_L("==%S=%S\r\n"), &KText[idx], &num);
  1577 			++idx;
  1578 			}
  1579 		}
  1580 	}
  1581 
  1582 /**
  1583 @SYMTestCaseID			SYSLIB-SQL-UT-4088
  1584 @SYMTestCaseDesc		TSqlResouceProfiler - file I/O and configuration test.
  1585 						The test enables the file I/O profiling and then executes a simple INSERT statement
  1586 						and prints out the profiling results. The test also prints the current database configuration.
  1587 @SYMTestActions			TSqlResouceProfiler - file I/O and configuration test.
  1588 @SYMTestExpectedResults Test must not fail
  1589 @SYMTestPriority		Medium
  1590 @SYMREQ					REQ5792
  1591 */
  1592 void ProfilerTest()
  1593 	{
  1594 	(void)RSqlDatabase::Delete(KTestDbName1);
  1595 	TInt err = TheDb.Create(KTestDbName1);	
  1596 	TEST2(err, KErrNone);
  1597 	err = TheDb.Exec(_L("CREATE TABLE A(Id INTEGER, T TEXT)"));
  1598 	TEST2(err, 1);
  1599 	
  1600 	TSqlResourceProfiler profiler(TheDb);
  1601 	
  1602 	PrintConfig(profiler);
  1603 	
  1604 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterFileIO);
  1605 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterOsCall);
  1606 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterOsCallTime);
  1607 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterIpc);
  1608 	(void)profiler.Start(TSqlResourceProfiler::ESqlCounterMemory);
  1609 	
  1610 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterFileIO);
  1611 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCall);
  1612 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterOsCallTime);
  1613 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterIpc);
  1614 	(void)profiler.Reset(TSqlResourceProfiler::ESqlCounterMemory);
  1615 
  1616 	err = TheDb.Exec(_L("INSERT INTO A VALUES(1, 'ABCDEEFGH')"));
  1617 	TEST2(err, 1);
  1618 	
  1619 	PrintFileIo(profiler);
  1620 	PrintOsCall(profiler);
  1621 	PrintOsCallTime(profiler);
  1622 	PrintIpc(profiler);
  1623 	PrintMemory(profiler);
  1624 
  1625 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterIpc);
  1626 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCallTime);
  1627 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterOsCall);
  1628 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterFileIO);
  1629 	(void)profiler.Stop(TSqlResourceProfiler::ESqlCounterMemory);
  1630 
  1631 	TheDb.Close();
  1632 	(void)RSqlDatabase::Delete(KTestDbName1);
  1633 	}
  1634 
  1635 TInt CompoundSelectStackOverflowThreadFunc(void* aData)
  1636 	{
  1637 	CTrapCleanup* tc = CTrapCleanup::New();
  1638 	TEST(tc != NULL);
  1639 	
  1640 	User::SetJustInTime(EFalse);	// disable debugger panic handling
  1641 	
  1642 	TInt* cntptr = reinterpret_cast<TInt*> (aData);
  1643 	TEST(cntptr != NULL);
  1644 	const TInt KSelectStmtCnt = *cntptr;
  1645 
  1646 	HBufC* buf = HBufC::New(KSelectStmtCnt * 25 + 32);//enough for the "SELECT I FROM A UNION SELECT I FROM A..." string
  1647 	if(!buf)
  1648 		{
  1649 		delete tc;
  1650 		return KErrNoMemory;	
  1651 		}
  1652 	TPtr sql = buf->Des();
  1653 
  1654 	(void)RSqlDatabase::Delete(KTestDbName1);
  1655 	RSqlDatabase db;
  1656 	TInt err = db.Create(KTestDbName1);
  1657 	if(err != KErrNone)
  1658 		{
  1659 		delete buf;
  1660 		return err;	
  1661 		}
  1662 	err = db.Exec(_L("CREATE TABLE A(I INTEGER);INSERT INTO A VALUES(1);"));
  1663 	if(err < 1)
  1664 		{
  1665 		delete buf;
  1666 		return err;	
  1667 		}
  1668 	
  1669 	for(TInt i=0;i<KSelectStmtCnt;i++)
  1670 		{
  1671 		sql.Append(_L("SELECT I FROM A UNION ")); 
  1672 		}
  1673 	sql.SetLength(sql.Length() - 7);
  1674 	RSqlStatement stmt;
  1675 	err = stmt.Prepare(db, sql);//This call can crash the server with "stack overflow"
  1676 	stmt.Close(); 
  1677 	
  1678 	db.Close();
  1679 	delete buf;
  1680 	(void)RSqlDatabase::Delete(KTestDbName1);
  1681 	return err;
  1682 	}
  1683 
  1684 void CompoundSelectStackOverflowTest()
  1685 	{
  1686 	const TInt KMaxSelectStmtCnt = 64;
  1687 	for(TInt cnt=KMaxSelectStmtCnt;cnt>0;--cnt)
  1688 		{
  1689 		TheTest.Printf(_L("SELECT statement count: %d\r\n"), cnt);
  1690 		RThread thread;
  1691 		_LIT(KThreadName,"S2Thread");						//stack	minheap		maxheap
  1692 		TInt err = thread.Create(KThreadName, &CompoundSelectStackOverflowThreadFunc, 0x2000, 0x00100000, 0x02000000, &cnt);
  1693 		TEST2(err, KErrNone);
  1694 		
  1695 		TRequestStatus status;
  1696 		thread.Logon(status);
  1697 		TEST2(status.Int(), KRequestPending);
  1698 		thread.Resume();
  1699 		User::WaitForRequest(status);
  1700 		User::SetJustInTime(ETrue);	// enable debugger panic handling
  1701 
  1702 		TInt exitType = thread.ExitType();
  1703 		const TDesC& exitCategory = thread.ExitCategory();
  1704 		TInt exitReason = thread.ExitReason();
  1705 		TheTest.Printf(_L("Exit type: %d, exit reason: %d, exit category: %S\r\n"), exitType, exitReason, &exitCategory);
  1706 		thread.Close();
  1707 		if(exitReason == KErrServerTerminated)	//SQL server --> stack overflow
  1708 			{
  1709 			continue;	
  1710 			}
  1711 		TEST2(exitReason, KErrNone);
  1712 		TheTest.Printf(_L("  The test has succeeded with SELECT statement count=%d\r\n"), cnt);
  1713 		break;
  1714 		}
  1715 	}
  1716 
  1717 /**
  1718 @SYMTestCaseID			PDS-SQL-CT-4198
  1719 @SYMTestCaseDesc		Expired SQL statements test.
  1720 						The test creates a database and opens 2 connections to that database.
  1721 						Connection 2 prepares couple of SELECT and INSERT statements (8-bit and 16-bit).
  1722 						Then connection 1 renames the table used in the already prepared statements.
  1723 						Connection 2 attempts to execute the prepared statements. The execution should fail
  1724 						because the database schema has changed after they were prepared.
  1725 @SYMTestActions			Expired SQL statements test.
  1726 @SYMTestExpectedResults Test must not fail
  1727 @SYMTestPriority		High
  1728 @SYMDEF					DEF145236
  1729 */
  1730 void ExpiredStmtTest()
  1731 	{
  1732 	(void)RSqlDatabase::Delete(KTestDbName1);
  1733 	//Create a database and create db connection 1.
  1734 	TInt err = TheDb.Create(KTestDbName1);
  1735 	TEST2(err, KErrNone);
  1736 	err = TheDb.Exec(_L("CREATE TABLE A(C1 INTEGER)"));
  1737 	TEST(err >= 0);
  1738 	err = TheDb.Exec(_L("INSERT INTO A(C1) VALUES(1)"));
  1739 	TEST2(err, 1);
  1740 	
  1741 	//Create db connection 2 to the same database, as db connection 1.
  1742 	RSqlDatabase db2;
  1743 	err = db2.Open(KTestDbName1);
  1744 	TEST2(err, KErrNone);
  1745 	
  1746 	//Db connection 2. Prepare SELECT and INSERT, 8-bit and 16-bit statements. 
  1747 	RSqlStatement stmt1, stmt2, stmt3, stmt4;
  1748 	err = stmt1.Prepare(db2, _L("SELECT * FROM A"));
  1749 	TEST2(err, KErrNone);
  1750 	err = stmt2.Prepare(db2, _L8("SELECT * FROM A"));
  1751 	TEST2(err, KErrNone);
  1752 	err = stmt3.Prepare(db2, _L("INSERT INTO A(C1) VALUES(2)"));
  1753 	TEST2(err, KErrNone);
  1754 	err = stmt4.Prepare(db2, _L8("INSERT INTO A(C1) VALUES(3)"));
  1755 	TEST2(err, KErrNone);
  1756 	
  1757 	//Modify the A table structure from the other connection
  1758 	//err = TheDb.Exec(_L("ALTER TABLE A ADD C2 INTEGER"));
  1759 	err = TheDb.Exec(_L("ALTER TABLE A RENAME TO B"));
  1760 	TEST(err >= 0);
  1761 	
  1762 	//Try to execute the already prepared statements.
  1763 	err = stmt1.Next();
  1764 	TEST2(err, KSqlErrSchema);
  1765 	err = stmt1.Next();
  1766 	TEST(err != KSqlAtRow);
  1767 	err = stmt2.Next();
  1768 	TEST(err != KSqlAtRow);
  1769 	err = stmt3.Exec();
  1770 	TEST(err < 0);
  1771 	err = stmt4.Exec();
  1772 	TEST(err < 0);
  1773 	//
  1774 	stmt4.Close();
  1775 	stmt3.Close();
  1776 	stmt2.Close();
  1777 	stmt1.Close();
  1778 	db2.Close();
  1779 	TheDb.Close();
  1780 	err = RSqlDatabase::Delete(KTestDbName1);
  1781 	TEST2(err, KErrNone);
  1782 	}
  1783 
  1784 void DoTestsL()
  1785 	{
  1786 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3512 RSqlStatement::ColumnCount() tests "));
  1787 	ColumnCountTest();
  1788 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3513 RSqlStatement::ColumnCount(), non-SELECT tests "));
  1789 	ColumnCountTest2();
  1790 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-3514 RSqlStatement::DeclaredColumnType() tests "));
  1791 	DeclaredColumnTypeTest();
  1792 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4017 RSqlStatement::ColumnName() tests"));	
  1793 	ColumnNameTest();
  1794 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4018 RSqlStatement::ParameterName() and RSqlStatement::ParamName() tests"));	
  1795 	ParamNameTest();
  1796 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4006 DEF115300 - SqlSrv.EXE::!SQL Server when preparing invalid LEFT JOIN sql query "));	
  1797 	DEF115300();
  1798 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4007 DEF115331 - SQL, bad code coverage for db reindexing if default collation has changed "));
  1799 	DEF115331L();
  1800 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4079 RSqlDatabase::Create() and RSqlDatabase::Open() - injection tests"));	
  1801 	InjectionTest();
  1802 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4038 Two connections test"));	
  1803 	TwoConnectionsTest();
  1804 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4080 SQL server stack overflow test"));
  1805 	SqlServerStackOverflowTest();
  1806 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4086 RSqlBlobWriteStream/RSqlBlobReadStream injection test"));
  1807 	BlobStreamInjectionTest();
  1808 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4087 Bound parameter values test 1"));
  1809 	BoundParameterValuesTest();
  1810 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4076 Bound parameter values test 2"));
  1811 	BoundParameterValuesTest2();
  1812 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4077 Bound parameter values test 3"));
  1813 	BoundParameterValuesTest3();
  1814 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4083 Bound parameter values test 4"));
  1815 	BoundParameterValuesTest4();
  1816 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4105 Bound parameter values test 5"));
  1817 	BoundParameterValuesTest5();
  1818 	TheTest.Next( _L(" @SYMTestCaseID:SYSLIB-SQL-UT-4088 TSqlResourceProfiler - file I/O and configuration test"));
  1819 	ProfilerTest();
  1820 	TheTest.Next( _L(" Compound SELECT, stack overflow test"));
  1821 	CompoundSelectStackOverflowTest();
  1822 	TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4198 Expired statements test"));
  1823 	ExpiredStmtTest();
  1824 	}
  1825 
  1826 TInt E32Main()
  1827 	{
  1828 	TheTest.Title();
  1829 
  1830 	CTrapCleanup* tc = CTrapCleanup::New();
  1831 
  1832 	__UHEAP_MARK;
  1833 
  1834 	CreateTestEnv();
  1835 	DeleteTestFiles();
  1836 	TRAPD(err, DoTestsL());
  1837 	DeleteTestFiles();
  1838 	TEST2(err, KErrNone);
  1839 
  1840 	__UHEAP_MARKEND;
  1841 
  1842 	TheTest.End();
  1843 	TheTest.Close();
  1844 
  1845 	delete tc;
  1846 
  1847 	User::Heap().Check();
  1848 	return KErrNone;
  1849 	}