os/persistentdata/persistentstorage/dbms/tdbms/t_dbdefect.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <d32dbms.h>
    17 #include <e32math.h>
    18 #include <e32test.h>
    19 #include <f32file.h>
    20 #include <s32buf.h>
    21 
    22 LOCAL_D RTest 			TheTest (_L ("t_dbdefect"));
    23 LOCAL_D CTrapCleanup*	TheTrapCleanup = NULL;
    24 LOCAL_D RSemaphore 		TheWaitToStartSem;
    25 LOCAL_D RSemaphore 		TheWaitForThreadsReadySem;
    26 LOCAL_D RFs 			TheFs;
    27 LOCAL_D RDbs			TheDbs1, TheDbs2;
    28 LOCAL_D RDbNamedDatabase TheDb1, TheDb2;
    29 
    30 _LIT (KName,			"ConnectTestThread_");
    31 _LIT (KStart,			"Starting thread %x.\n");
    32 _LIT (KConnect,			"Thread %x: Waiting to connect...\n");
    33 _LIT (KConSuccess,		"Thread %x: Connection succeeded.\n");
    34 _LIT (KConFailed,		"Thread %x: Connection failed. Error %d.\n");
    35 _LIT (KStatus,			"Status of thread %x is %d.\n");
    36 
    37 
    38 _LIT(KTable, 			"TABLE");
    39 _LIT(KColName,			"Fld");
    40 _LIT(KCol2Name, 		"Fld2");
    41 _LIT(KDbName,			"C:\\DBMS-TST\\TESTDB22.DB");
    42 _LIT(KSQLInsert1, 		"INSERT INTO TABLE (Fld, Fld2) VALUES ('ACDC\\','BLAH')");
    43 _LIT(KSQLInsert2, 		"INSERT INTO TABLE   (Fld) VALUES ('ABCDEFGH')");
    44 _LIT(KSQLInsert3, 		"INSERT INTO TABLE   (Fld) VALUES ('A?CDEFGH')");
    45 _LIT(KSQLInsert4, 		"INSERT INTO TABLE   (Fld) VALUES ('A?*?CDEFGH')");
    46 _LIT(KSQLInsert5, 		"INSERT INTO TABLE   (Fld) VALUES ('A*CDEFGH')");
    47 _LIT(KSQLInsert6, 		"INSERT INTO TABLE   (Fld, Fld2) VALUES ('ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP','ADCB')");
    48 _LIT(KSQLInsert7, 		"INSERT INTO TABLE   (Fld) VALUES ('XZD\\FZX')");
    49 
    50 _LIT(KSqlRequestGranularity, "SELECT Fld FROM test WHERE (Fld LIKE '1' AND Fld LIKE '2') AND Fld LIKE '3'  AND Fld LIKE '4'  AND Fld LIKE '5'  AND Fld LIKE '6'");
    51 
    52 _LIT(KText16Name, 		"text16");
    53 _LIT(KTableName, 		"test");
    54 _LIT(KIndexName, 		"test_index");
    55 _LIT(KMaxStringFormat, 	"%0256d");
    56 
    57 void TestCleanup()
    58 	{
    59 	TheDb2.Close();
    60 	TheDb1.Close();
    61 	TheDbs2.Close();
    62 	TheDbs1.Close();
    63 	(void)TheFs.Delete(KDbName);
    64 	TheFs.Close();
    65 	}
    66 
    67 //-----------------------------------------------------------------------------
    68 //
    69 // Test macros and functions.
    70 //
    71 //-----------------------------------------------------------------------------
    72 // If (!aValue) then the test will be panicked, the test data files will be
    73 // deleted.
    74 LOCAL_C void Check(TInt aValue, TInt aLine)
    75 	{
    76 	if(!aValue)
    77 		{
    78 		TestCleanup();
    79 		TheTest(EFalse, aLine);
    80 		}
    81 	}
    82 
    83 
    84 // If (aValue != aExpected) then the test will be panicked, the test data files
    85 // will be deleted.
    86 LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
    87 	{
    88 	if(aValue != aExpected)
    89 		{
    90 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    91 		TestCleanup();
    92 		TheTest(EFalse, aLine);
    93 		}
    94 	}
    95 
    96 
    97 //Use these to test conditions.
    98 #define TEST(arg)                ::Check((arg), __LINE__)
    99 #define TEST2(aValue, aExpected) ::Check((aValue), (aExpected), __LINE__)
   100 //-----------------------------------------------------------------------------
   101 //-----------------------------------------------------------------------------
   102 
   103 struct TTest
   104 	{
   105 	const TText* result;
   106 	const TText* query;
   107 	};
   108 
   109 const TTest KQuery[]=
   110 	{
   111 	{_S("ACDC\\"),_S("SELECT Fld FROM TABLE WHERE  Fld LIKE 'ACDC\\' AND Fld2 LIKE '*BL*'")},
   112 	{_S("A*CDEFGH"),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*A\\*C*' ESCAPE '\\'")},
   113 	{_S("A?CDEFGH"),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*A\\?C*' ESCAPE '\\'")},
   114 	{_S("A?*?CDEFGH"),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*A\\?\\*\\?C*' ESCAPE '\\'")},
   115 	{_S("ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP"),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*1234*'")},
   116 	{_S("BLAH"),_S("SELECT Fld2 FROM TABLE WHERE  Fld LIKE '*AC*' AND Fld2 LIKE '?LA?'")},
   117 	{_S("BLAH"),_S("SELECT Fld2 FROM TABLE WHERE  Fld LIKE 'NOTINTABLE' OR Fld2 LIKE '?LA?'")},
   118 	{_S("ADCDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOPQRSTUVWXYZ123456789ACDEFGHIJKLMNOP"),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*ADC*' AND Fld2 LIKE 'ADC?'")},
   119 	{_S("A*CDEFGH"),_S("SELECT Fld FROM TABLE WHERE Fld LIKE '*\\*C*' ESCAPE '\\'")},
   120 	{_S("XZD\\FZX"),_S("SELECT Fld FROM TABLE WHERE Fld LIKE '*D\\\\*' ESCAPE '\\'")}
   121 	};
   122 
   123 const TTest KBadQuery[]=
   124 	{
   125 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE 'A?C' ESCAPE '\\'")},
   126 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE 'A*C' ESCAPE '\\'")},
   127 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE '?A\\?C' ESCAPE '\\'")},
   128 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE '?A\\?C?' ESCAPE '\\'")},
   129 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*A\\??\\?C*' ESCAPE '\\'")},
   130 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*A*\\*C*' ESCAPE '\\'")},
   131 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE 'ABC' ESCAPE '\\'")},
   132 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE 'ABC*' ESCAPE '\\'")},
   133 	{_S(""),_S("SELECT * FROM TABLE WHERE  Fld LIKE '*ABC' ESCAPE '\\'")}
   134 	};
   135 
   136 const TInt KNumQueries = 10;
   137 const TInt KNumBadQueries = 9;
   138 const TInt KThreadCount	= 3;
   139 const TInt KOneSecond 	= 1000000;
   140 const TInt KDbNameLen   = 255;
   141 const TInt KMaxColName = 32;
   142 
   143 static void DoDbmsConnectThreadSubFunctionL (TInt aThreadNumber)
   144 	{
   145 	// The session
   146 	RDbs TheDbSession;
   147 	CleanupClosePushL (TheDbSession);
   148 
   149 	RDebug::Print (KStart (), aThreadNumber);
   150 	RDebug::Print (KConnect (), aThreadNumber);
   151 
   152  	// Signal the main thread to continue
   153  	TheWaitForThreadsReadySem.Signal (1);
   154 
   155 	// Wait until we are signalled
   156 	TheWaitToStartSem.Wait ();
   157 
   158 	// Connect to Dbms
   159 	TInt r = TheDbSession.Connect ();
   160 
   161 	if (r == KErrNone)
   162 		{
   163 		RDebug::Print (KConSuccess (), aThreadNumber);
   164 		TheDbSession.Close ();
   165 		}
   166 	else
   167 		{
   168 		RDebug::Print (KConFailed (), aThreadNumber, r);
   169 		User::Leave (r);
   170 		}
   171 
   172 	CleanupStack::PopAndDestroy (1); // session
   173 	}
   174 
   175 static TInt DoDbmsConnectThread (TAny* aThreadNumber)
   176 	{
   177 	__UHEAP_MARK;
   178 
   179 	CTrapCleanup* trapCleanup = CTrapCleanup::New ();
   180 	__ASSERT_ALWAYS (trapCleanup!=NULL, User::Invariant ());
   181 
   182 	TInt* threadNumber = static_cast <TInt*> (aThreadNumber);
   183 	TRAPD (err, DoDbmsConnectThreadSubFunctionL (*threadNumber));
   184 
   185 	delete trapCleanup;
   186 
   187 	__UHEAP_MARKEND;
   188 
   189 	return err;
   190 	}
   191 
   192 /**
   193 @SYMTestCaseID          SYSLIB-DBMS-CT-0644
   194 @SYMTestCaseDesc        Test for defect no 44697
   195 @SYMTestPriority        Medium
   196 @SYMTestActions         Test for defect fixes
   197 @SYMTestExpectedResults Test must not fail
   198 @SYMREQ                 REQ0000
   199 */
   200 LOCAL_C void Defect_DEF44697L ()
   201 	{
   202 	TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-DBMS-CT-0644 Defect_DEF44697L "));
   203 
   204 	__UHEAP_MARK;
   205 
   206   	// find out the number of open handles
   207 	TInt startProcessHandleCount;
   208 	TInt startThreadHandleCount;
   209 	RThread ().HandleCount (startProcessHandleCount, startThreadHandleCount);
   210 
   211 	/////////////////////
   212 	// The Test Begins...
   213 
   214  	// Create semaphores
   215  	::CleanupClosePushL (::TheWaitForThreadsReadySem);
   216  	User::LeaveIfError (::TheWaitForThreadsReadySem.CreateLocal (0));
   217 
   218  	::CleanupClosePushL (::TheWaitToStartSem);
   219  	User::LeaveIfError (::TheWaitToStartSem.CreateLocal (0));
   220 
   221  	// Create the threads.
   222  	RThread createTestThread_1;
   223  	RThread createTestThread_2;
   224  	RThread createTestThread_3;
   225 
   226  	TBuf<100> thread_name;
   227 	TInt KThreadNumber1 = 1;
   228 	TInt KThreadNumber2 = 2;
   229 	TInt KThreadNumber3 = 3;
   230 
   231  	// Create the first test thread______________________________
   232 	thread_name = KName ();
   233 	thread_name.AppendNum (KThreadNumber1);
   234 
   235  	User::LeaveIfError (
   236  		createTestThread_1.Create (thread_name,
   237 								   (TThreadFunction) DoDbmsConnectThread,
   238 								   KDefaultStackSize,
   239 								   KMinHeapSize,
   240 								   KMinHeapSize,
   241 								   &KThreadNumber1));
   242 
   243  	// Default priority of Main thread is EPriorityNormal
   244  	createTestThread_1.SetPriority(EPriorityMore);
   245 
   246  	TheTest.Printf (_L ("%S thread started\n"), &thread_name);
   247 
   248  	// Request notification when the thread dies.
   249  	TRequestStatus threadStatus_1;
   250  	createTestThread_1.Logon (threadStatus_1);
   251 
   252 	//___________________________________________________________
   253 
   254  	// Create the second test thread______________________________
   255 	thread_name = KName ();
   256 	thread_name.AppendNum (KThreadNumber2);
   257 
   258  	User::LeaveIfError (
   259  		createTestThread_2.Create (thread_name,
   260 								   (TThreadFunction) DoDbmsConnectThread,
   261 								   KDefaultStackSize,
   262 								   KMinHeapSize,
   263 								   KMinHeapSize,
   264 								   &KThreadNumber2));
   265 
   266   	// Default priority of Main thread is EPriorityNormal
   267  	createTestThread_2.SetPriority(EPriorityMore);
   268 
   269  	TheTest.Printf (_L ("%S thread started\n"), &thread_name);
   270 
   271  	// Request notification when the tread dies.
   272  	TRequestStatus threadStatus_2;
   273  	createTestThread_2.Logon (threadStatus_2);
   274 
   275 	//___________________________________________________________
   276 
   277  	// Create the third test thread______________________________
   278 	thread_name = KName ();
   279 	thread_name.AppendNum (KThreadNumber3);
   280 
   281  	User::LeaveIfError (
   282  		createTestThread_3.Create (thread_name,
   283 								   (TThreadFunction) DoDbmsConnectThread,
   284 								   KDefaultStackSize,
   285 								   KMinHeapSize,
   286 								   KMinHeapSize,
   287 								   &KThreadNumber3));
   288 
   289   	// Default priority of Main thread is EPriorityNormal
   290  	createTestThread_3.SetPriority(EPriorityMore);
   291 
   292  	TheTest.Printf (_L ("%S thread started\n"), &thread_name);
   293 
   294  	// Request notification when the tread dies.
   295  	TRequestStatus threadStatus_3;
   296  	createTestThread_3.Logon (threadStatus_3);
   297 
   298 	//___________________________________________________________
   299 
   300 	TheTest (threadStatus_1.Int () == KRequestPending);
   301 	TheTest (threadStatus_2.Int () == KRequestPending);
   302 	TheTest (threadStatus_3.Int () == KRequestPending);
   303 
   304  	// Make threads eligible for execution
   305  	createTestThread_1.Resume ();
   306  	createTestThread_2.Resume ();
   307  	createTestThread_3.Resume ();
   308 
   309 	// The way this works is that the main thread blocks until all
   310 	// the test threads are ready (semaphore 1) and then signals them
   311 	// (semaphore 2).
   312 	//
   313 	// 1: Main thread Waits for ALL test threads to become ready.
   314 	// 2: Main thread Signals ALL test threads to run.
   315 	//
   316 	// 1: Test thread Signals Main thread
   317 	// 2: Test thread Waits for Main thread
   318 	//
   319 	// There is still a slight race condition between the
   320 	// test thread signalling (semaphore 1) and then waiting
   321 	// (semaphore 2) which is why we use both higher priority test
   322 	// threads and a timer.
   323 	//
   324 	// The problems come with the way Time slicing works due to
   325 	// other threads of higher priority being run.
   326 	//
   327 	// Higher priority: Ensures the test thread runs before the
   328 	// the main thread.
   329 	//
   330 	// Timer: Safeguards when multiple core processors are being used.
   331 	//
   332 	// The Higher priority fixes the problem on single core processors
   333 	// and multiple cores processors (SMP) where each core can run a
   334 	// thread.
   335 	//
   336 	// It should also ensure that if the system is so busy that it
   337 	// affects the test thread execution, the test thread will still
   338 	// get to the Wait state before the Main thread can Signal.
   339 	//
   340 	// However, on multiple cores the Main thread may run at the same
   341 	// time as the test thread, so we need to make sure that when the
   342 	// test thread Signals it can acheive its Wait state before the
   343 	// Main thread Signals. For example, if the timer has elapsed on the
   344 	// Main thread and the sytem is busy, the test thread should still
   345 	// run before the Main thread due to it higher priority.
   346 	//
   347 	// We also have to think about things like priority inheritance
   348 	// where a thread that has a handle on a Mutex inherits the same
   349 	// priority as a thread Waiting on it. This shouldn't happen for
   350 	// Semaphores as there is no one handle, i.e. no critical section.
   351 	//
   352 	// This higher priority inheritance will take affect when a low
   353 	// priority thread that has a handle on the Mutex blocks because of
   354 	// another medium priority running thread. So in effect a high
   355 	// priority thread Waiting on this Mutex is also blocked.
   356 	//
   357 	// It is also worth noting that on EKA1 emulator, scheduling is
   358 	// performed by windows. On EKA2 emulator scheduling is performed
   359 	// by Symbian so that it is the same as hardware.
   360 
   361 	TheWaitForThreadsReadySem.Wait();
   362 	TheWaitForThreadsReadySem.Wait();
   363 	TheWaitForThreadsReadySem.Wait();
   364 
   365   	// Sleep for a while to allow threads to block on the semaphore
   366   	User::After (KOneSecond<<2); // 4 seconds
   367 
   368  	// Signal all the threads to continue
   369  	TheWaitToStartSem.Signal (KThreadCount);
   370 
   371  	// Wait for all threads to complete, don't care on the order.
   372 	User::WaitForRequest (threadStatus_1);
   373 	User::WaitForRequest (threadStatus_2);
   374 	User::WaitForRequest (threadStatus_3);
   375 
   376 	TheTest.Printf (KStatus, KThreadNumber1, threadStatus_1.Int ());
   377 	TheTest.Printf (KStatus, KThreadNumber2, threadStatus_2.Int ());
   378 	TheTest.Printf (KStatus, KThreadNumber3, threadStatus_3.Int ());
   379 
   380 	TheTest (threadStatus_1.Int () == KErrNone);
   381 	TheTest (threadStatus_2.Int () == KErrNone);
   382 	TheTest (threadStatus_3.Int () == KErrNone);
   383 
   384 	CleanupStack::PopAndDestroy (&::TheWaitToStartSem);
   385 	CleanupStack::PopAndDestroy (&::TheWaitForThreadsReadySem);
   386 
   387 	// The Test Ends...
   388 	/////////////////////
   389 
   390 	// check that no handles have leaked
   391 	TInt endProcessHandleCount;
   392 	TInt endThreadHandleCount;
   393 	RThread ().HandleCount (endProcessHandleCount, endThreadHandleCount);
   394 
   395 	TheTest (startThreadHandleCount == endThreadHandleCount);
   396 
   397 	__UHEAP_MARKEND;
   398 	}
   399 
   400 
   401 
   402 // Test for LIKE Predicate for EDbColLongText16
   403 LOCAL_C void LikePredicateDbColLongText16TestL()
   404  	{
   405  	TheTest.Next (_L ("LikePredicateDbColLongText16TestL"));
   406  	//Creating database
   407 
   408 	RFs fsSession;
   409     User::LeaveIfError(fsSession.Connect());
   410     CleanupClosePushL(fsSession);
   411 	RDbNamedDatabase database;
   412 	User::LeaveIfError(database.Replace(fsSession, KDbName));
   413 	CleanupClosePushL(database);
   414 
   415 	//Create table
   416 
   417 	CDbColSet* columns= CDbColSet::NewLC();
   418 
   419 	TDbCol name(KColName,EDbColLongText16,KDbNameLen);
   420 	name.iAttributes = TDbCol::ENotNull;
   421 
   422 	TDbCol name2(KCol2Name,EDbColLongText16,KDbNameLen);
   423 
   424 	columns->AddL(name);
   425 	columns->AddL(name2);
   426    	User::LeaveIfError (database.CreateTable (KTable, *columns));
   427 	CleanupStack::PopAndDestroy(); // columns
   428 
   429     // Insert values into table
   430     TInt error =	database.Execute(KSQLInsert1);
   431     TheTest(error>=0);
   432     error =database.Execute(KSQLInsert2);
   433     TheTest(error>=0);
   434     error =database.Execute(KSQLInsert3);
   435     TheTest(error>=0);
   436 	error =	database.Execute(KSQLInsert4);
   437 	TheTest(error>=0);
   438 	error =	database.Execute(KSQLInsert5);
   439 	TheTest(error>=0);
   440 	error = database.Execute(KSQLInsert6);
   441 	TheTest(error>=0);
   442 	error = database.Execute(KSQLInsert7);
   443 	TheTest(error>=0);
   444 
   445 
   446 	TheTest.Next(_L("Test for valid LIKE predicate queries"));
   447 
   448 
   449 	for(TInt i =0;i<KNumQueries;++i)
   450 		{
   451 		RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
   452 		RDbView view;
   453 		view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
   454 		view.EvaluateAll();
   455 		view.FirstL();
   456 		typedef TBuf<256> TScriptLine;
   457 		TInt count =0;
   458 		while (view.AtRow())
   459 			{
   460 			view.GetL();
   461 			count++;
   462 			RDbColReadStream rd;
   463 			rd.OpenLC(view,1);
   464 			TScriptLine text;
   465 			rd.ReadL(text,view.ColLength(1));
   466 			CleanupStack::PopAndDestroy();
   467 			RDebug::Print(_L("Expected result: %s Actual Result: %S\n"),(KQuery[i].result),&text);
   468 			TInt err = text.Compare(TPtrC(KQuery[i].result));
   469 			TheTest(err ==0);
   470 			view.NextL();
   471 			}
   472 		view.Close();
   473 		}
   474 
   475 
   476 	// test for illegal statements, check they return KErrArgument
   477 	TheTest.Next(_L("Test that illegal queries return KErrArgument"));
   478 
   479 
   480 	for(TInt j =0;j<KNumBadQueries;++j)
   481 		{
   482 		RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
   483 		RDbView view;
   484 		TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
   485 		TheTest(prepErr==KErrArgument);
   486 		view.Close();
   487 		}
   488 
   489     CleanupStack::PopAndDestroy(&database); // database
   490     CleanupStack::PopAndDestroy(&fsSession); // fsSession
   491  	}
   492 
   493 
   494 
   495  //  for LIKE Predicate for EDbColLongText8
   496 LOCAL_C void LikePredicateDbColLongText8TestL()
   497  	{
   498 	TheTest.Next (_L ("LikePredicate DbColLongText8 TestL"));
   499 
   500  	//Creating database
   501 
   502 	RFs      fsSession;
   503     User::LeaveIfError(fsSession.Connect());
   504     CleanupClosePushL(fsSession);
   505 	RDbNamedDatabase database;
   506 	User::LeaveIfError(database.Replace(fsSession, KDbName));
   507 	CleanupClosePushL(database);
   508 
   509 	//Create table
   510 
   511 	CDbColSet* columns= CDbColSet::NewLC();
   512 
   513 	TDbCol name(KColName,EDbColLongText8,KDbNameLen);
   514 	name.iAttributes = TDbCol::ENotNull;
   515 
   516 	TDbCol name2(KCol2Name,EDbColLongText8,KDbNameLen);
   517 
   518 	columns->AddL(name);
   519 	columns->AddL(name2);
   520 
   521 	User::LeaveIfError (database.CreateTable (KTable, *columns));
   522 	CleanupStack::PopAndDestroy(); // columns
   523 
   524 	// Insert values into the table
   525  	TInt error =	database.Execute(KSQLInsert1);
   526     TheTest(error>=0);
   527     error =database.Execute(KSQLInsert2);
   528     TheTest(error>=0);
   529     error =database.Execute(KSQLInsert3);
   530     TheTest(error>=0);
   531 	error =	database.Execute(KSQLInsert4);
   532 	TheTest(error>=0);
   533 	error =	database.Execute(KSQLInsert5);
   534 	TheTest(error>=0);
   535 	error = database.Execute(KSQLInsert6);
   536 	TheTest(error>=0);
   537 	error = database.Execute(KSQLInsert7);
   538 	TheTest(error>=0);
   539 
   540 	TheTest.Next(_L("Test for valid LIKE predicate queries"));
   541 
   542 
   543 	for(TInt i =0;i<KNumQueries;++i)
   544 		{
   545 		RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
   546 		RDbView view;
   547 		TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
   548 		TheTest(prepErr>=0);
   549 		TInt evErr = view.EvaluateAll();
   550 		TheTest(evErr==0);
   551 		TBuf8<256> result;
   552 		TBuf8<256> colname;
   553 		result.Copy(TPtrC(KQuery[i].result));
   554 		view.FirstL();
   555 
   556 		while (view.AtRow())
   557 			{
   558 			view.GetL();
   559 			RDbColReadStream rd;
   560 			rd.OpenLC(view,1);
   561 			rd.ReadL(colname,view.ColLength(1));
   562 			CleanupStack::PopAndDestroy();
   563 			RDebug::Print(_L("Expected result: %S Actual Result: %S\n"),&result,&colname);
   564 			TInt err = colname.CompareF(result);
   565 			TheTest(err ==0);
   566 
   567 			view.NextL();
   568 			}
   569 
   570 		view.Close();
   571 		}
   572 
   573 		// test for illegal statements, check they return KErrArgument
   574 	TheTest.Next(_L("Test that illegal queries return KErrArgument"));
   575 
   576 
   577 
   578 	for(TInt j =0;j<KNumBadQueries;++j)
   579 		{
   580 		RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
   581 		RDbView view;
   582 		TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
   583 		TheTest(prepErr==KErrArgument);
   584 
   585 		view.Close();
   586 		}
   587 
   588    	CleanupStack::PopAndDestroy(&database); // database
   589     CleanupStack::PopAndDestroy(&fsSession); // fsSession
   590  	}
   591 
   592 
   593 
   594 // Test for LIKE Predicate for EDbColText
   595 LOCAL_C void LikePredicateDbColTextTestL()
   596  	{
   597  	TheTest.Next (_L ("LikePredicate DbColText TestL"));
   598  	//Creating database
   599 
   600 	RFs      fsSession;
   601     User::LeaveIfError(fsSession.Connect());
   602     CleanupClosePushL(fsSession);
   603 	RDbNamedDatabase database;
   604 	User::LeaveIfError(database.Replace(fsSession, KDbName));
   605 	CleanupClosePushL(database);
   606 
   607 	//Create table
   608 
   609 	CDbColSet* columns= CDbColSet::NewLC();
   610 
   611 	TDbCol name(KColName,EDbColText,KDbNameLen);
   612 	name.iAttributes = TDbCol::ENotNull;
   613 
   614 	TDbCol name2(KCol2Name,EDbColText,KDbNameLen);
   615 
   616 	columns->AddL(name);
   617 	columns->AddL(name2);
   618 
   619 	User::LeaveIfError (database.CreateTable (KTable, *columns));
   620 	CleanupStack::PopAndDestroy(); // columns
   621 
   622  	// Insert values into the table
   623     TInt error =	database.Execute(KSQLInsert1);
   624     TheTest(error>=0);
   625     error =database.Execute(KSQLInsert2);
   626     TheTest(error>=0);
   627     error =database.Execute(KSQLInsert3);
   628     TheTest(error>=0);
   629 	error =	database.Execute(KSQLInsert4);
   630 	TheTest(error>=0);
   631 	error =	database.Execute(KSQLInsert5);
   632 	TheTest(error>=0);
   633 	error = database.Execute(KSQLInsert6);
   634 	TheTest(error>=0);
   635 	error = database.Execute(KSQLInsert7);
   636 	TheTest(error>=0);
   637 
   638 
   639 	TheTest.Next(_L("Test for valid LIKE predicate queries"));
   640 
   641 
   642 	for(TInt i =0;i<KNumQueries;++i)
   643 		{
   644 		RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
   645 		RDbView view;
   646 		TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
   647 		if(TPtrC(KQuery[i].result).Length() == 0)
   648 			{
   649 			TheTest(prepErr != KErrNone);
   650 			continue;
   651 			}
   652 
   653 		view.EvaluateAll();
   654 		TBufC<256> colname;
   655 		TBufC<256> res;
   656 		view.FirstL();
   657 		while (view.AtRow())
   658 			{
   659 			view.GetL();
   660 			colname = view.ColDes(1);
   661 			res= KQuery[i].result;
   662 			RDebug::Print(_L("Expected result: %s Actual Result: %S\n"),(KQuery[i].result),&colname);
   663 			TInt err =	colname.Compare(TPtrC(KQuery[i].result));
   664 			TheTest(err ==0);
   665 			view.NextL();
   666 			}
   667 		view.Close();
   668 		}
   669 
   670 	// test for illegal statements, check they return KErrArgument
   671 	TheTest.Next(_L("Test that illegal queries return KErrArgument"));
   672 
   673 	for(TInt j =0;j<KNumBadQueries;++j)
   674 		{
   675 		RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
   676 		RDbView view;
   677 		TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
   678 		TheTest(prepErr==KErrArgument);
   679 		view.Close();
   680 		}
   681 
   682     CleanupStack::PopAndDestroy(&database); // database
   683     CleanupStack::PopAndDestroy(&fsSession); // fsSession
   684     }
   685 
   686 
   687 
   688  /**
   689 @SYMTestCaseID 			SYSLIB-DBMS-UT-1592
   690 @SYMTestCaseDesc     	Testing limited-ESCAPE-clause
   691 @SYMTestPriority     	High
   692 @SYMTestActions      	Execute DBMS query with ESCAPE-clause
   693 @SYMTestExpectedResults The test should not fail.
   694 @SYMDEF INC076370
   695 */
   696 LOCAL_C void Defect_INC076370L()
   697 	{
   698 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1592 Defect INC076370 "));
   699 	LikePredicateDbColTextTestL(); //EDbColText
   700 	LikePredicateDbColLongText16TestL(); //EDbColLongText16
   701 	LikePredicateDbColLongText8TestL();	//EDbColLongText8
   702 	}
   703 
   704  /**
   705 @SYMTestCaseID 			SYSLIB-DBMS-UT-1667
   706 @SYMTestCaseDesc     	Testing RdbRowSet::DeleteL() with EDbColLongText16 type columns
   707 @SYMTestPriority     	High
   708 @SYMTestActions      	Create a table with a EDbColLongText16 type column and then use
   709 						RdbRowSet::DeleteL() to delete the current row.
   710 @SYMTestExpectedResults The test should not fail.
   711 @SYMDEF INC083027
   712 */
   713 LOCAL_C void Defect_INC083027L()
   714 	{
   715 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1667 Defect INC083027 "));
   716 	RFs fs;
   717 	CleanupClosePushL(fs);
   718 	User::LeaveIfError(fs.Connect());
   719 
   720 	// create database
   721 	RDbNamedDatabase database;
   722 	CleanupClosePushL(database);
   723 	User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
   724 
   725 	CDbColSet* columns = CDbColSet::NewLC();
   726 	const TInt maxTextLength = 256;
   727 	TDbCol text16Col(KText16Name, EDbColLongText16, maxTextLength);
   728 	columns->AddL(text16Col);
   729 
   730 	TBuf<KMaxColName> targetColName;
   731 	targetColName = KText16Name;
   732 
   733 	// create table
   734 	User::LeaveIfError(database.CreateTable(KTableName, *columns));
   735 
   736 	//create index
   737 	CDbKey* key = CDbKey::NewLC();
   738 	TInt keyLength = 122;
   739 	TDbKeyCol keyCol(targetColName, keyLength);
   740 	key->AddL(keyCol);
   741 	User::LeaveIfError(database.CreateIndex(KIndexName, KTableName, *key));
   742 	CleanupStack::PopAndDestroy(2);		// key and columns
   743 
   744 	//insert rows
   745 	HBufC* sqlQueryBuf = HBufC::NewLC(512);
   746 	TPtr sqlQuery(sqlQueryBuf->Des());
   747 	_LIT(KSQLInsertFormat, "SELECT %S FROM %S");
   748 	sqlQuery.Format(KSQLInsertFormat, &targetColName, &KTableName);
   749 
   750 	RDbView insertview;
   751 	User::LeaveIfError(insertview.Prepare(database, TDbQuery(sqlQuery), RDbView::EInsertOnly));
   752 
   753 	HBufC* tmpBuf = HBufC::NewLC(maxTextLength);
   754 	TPtr maxString(tmpBuf->Des());
   755 	maxString.Format(KMaxStringFormat, 0);
   756 	insertview.InsertL();
   757 	insertview.SetColL(1, maxString);
   758 	insertview.PutL();
   759 	insertview.Close();
   760 
   761 	//delete the row
   762 	RDbView deleteview;
   763 	User::LeaveIfError(deleteview.Prepare(database, TDbQuery(sqlQuery), RDbView::EUpdatable));
   764 	User::LeaveIfError(deleteview.EvaluateAll());
   765 
   766 	while (deleteview.NextL())
   767 		{
   768 		deleteview.GetL();
   769 		TRAPD(err , deleteview.DeleteL());
   770 		TheTest(err==KErrNone);
   771 		}
   772 	deleteview.Close();
   773 
   774 	CleanupStack::PopAndDestroy(2);  // tmpBuf, sqlQueryBuf
   775     CleanupStack::PopAndDestroy(&database); // database
   776     CleanupStack::PopAndDestroy(&fs); // fs
   777 	}
   778 
   779  /**
   780 @SYMTestCaseID          SYSLIB-DBMS-UT-1894
   781 @SYMTestCaseDesc        Testing memory handling in CSqlMultiNode::Concatenate()
   782 @SYMTestPriority        Medium
   783 @SYMTestActions         Execute a special request to a database which will trigger CSqlMultiNode::Concatenate(), and the size of one of the SQL nodes will be divisible by the CSqlMultiNode granularity
   784 @SYMTestExpectedResults The test should not fail or panic.
   785 @SYMDEF INC093657
   786 */
   787 LOCAL_C void Defect_INC093657L ()
   788    {
   789    TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1894 Defect INC093657 "));
   790    RFs fs;
   791    CleanupClosePushL(fs);
   792    User::LeaveIfError(fs.Connect());
   793 
   794    // create database
   795    RDbNamedDatabase database;
   796    CleanupClosePushL(database);
   797    User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
   798 
   799    CDbColSet* columns = CDbColSet::NewLC();
   800    const TInt maxTextLength = 256;
   801    TDbCol column(KColName, EDbColLongText16, maxTextLength);
   802    columns->AddL(column);
   803 
   804    // create table
   805    User::LeaveIfError(database.CreateTable(KTableName, *columns));
   806    CleanupStack::PopAndDestroy();  // columns
   807 
   808    //execute a pointless request that is intended to detect subtle memory corruptions in CSqlMultiNode::Concatenate
   809    RDbView view;
   810    TInt err = view.Prepare(database, TDbQuery(KSqlRequestGranularity));
   811 
   812    TheTest(err==KErrNone);
   813 
   814    view.Close();
   815    database.Destroy();
   816 
   817    CleanupStack::PopAndDestroy(&database); // database
   818    CleanupStack::PopAndDestroy(&fs); // fs
   819    }
   820 
   821 /**
   822 @SYMTestCaseID			SYSLIB-DBMS-UT-3467
   823 @SYMTestCaseDesc		Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
   824 						The test creates a table with 3 coluumns and a multi-column key (3 columns). The column
   825 						names length is such that when RDbRowSet::ColSetL() is called for retrieving the column
   826 						names, the CDbColSet array data member will make just a single memory allocation, where
   827 						all TDbCol elements will be stored. Then the test repeats 100 times, the following statements:
   828 							<retrieve a colset>;
   829 							<create a copy of colset's last TDbCol element using TDbCol's copy constructor>;
   830 							<create a copy of colset's last TDbCol element using TDbCol's "=" operator>;
   831 						If the test uses the compiler generated TDbCol's copy constructor and "=" operator,
   832 						the test crashes at some iteration, because an invalid memory region is accessed and
   833 						the crash is: KERN-EXEC 3.
   834 						The same test is repeated for TDbKeyCol's copy constructor and "=" operator.
   835 @SYMTestPriority		High
   836 @SYMTestActions			Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
   837 @SYMTestExpectedResults The test must not fail
   838 @SYMREQ					DEF105615
   839 */
   840 void DEF105615L()
   841 	{
   842    	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3467 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory"));
   843 	RFs fs;
   844 	TInt err = fs.Connect();
   845 	TheTest(err == KErrNone);
   846 
   847 	RDbNamedDatabase db;
   848 	err = db.Replace(fs, KDbName);
   849 	TheTest(err == KErrNone);
   850 
   851 	const TInt KColCnt = 3;
   852 
   853 	err = db.Execute(_L("CREATE TABLE A(A1234567890 INTEGER, B1234567890 INTEGER, C12345 INTEGER)"));
   854 	TheTest(err == KErrNone);
   855 	err = db.Execute(_L("CREATE INDEX I1 ON A(A1234567890, B1234567890, C12345)"));
   856 	TheTest(err == KErrNone);
   857 
   858 	RDbTable tbl;
   859 	err = tbl.Open(db, _L("A"));
   860 	TheTest(err == KErrNone);
   861 
   862 	//It is very hard to reproduce the problem, because the memory region after the memory, occupied by
   863 	//CDbColSet's array, may be valid. That is the reason the test is repeated in a loop KTestCnt times,
   864 	//where every  ColSetL() call will allocate a new block of memory for its array and at some point TDbCol's
   865 	//copy constructor and "=" operator may try to access an invalid memory area, if the compiler generated
   866 	//ones are used.
   867 	const TInt KTestCnt = 100;
   868 	TInt i;
   869 	CDbColSet* colset[KTestCnt];
   870 	for(i=0;i<KTestCnt;++i)
   871 		{
   872 		TRAP(err, colset[i] = tbl.ColSetL());
   873 		TheTest(err == KErrNone);
   874 		TDbCol lastCol = (*colset[i])[KColCnt];		//copy constructor
   875 		lastCol = (*colset[i])[KColCnt];			//"=" operator
   876 		}
   877 	for(i=0;i<KTestCnt;++i)
   878 		{
   879 		delete colset[i];
   880 		}
   881 
   882 	tbl.Close();
   883 
   884 	//The same test is repeated for TDbKeyCol's copy constructor and "=" operator
   885 	CDbKey* key[KTestCnt];
   886 	for(i=0;i<KTestCnt;++i)
   887 		{
   888 		TRAP(err, key[i] = db.KeyL(_L("I1"), _L("A")));
   889 		TheTest(err == KErrNone);
   890 		TDbKeyCol lastKeyCol = (*key[i])[KColCnt - 1];	//copy constructor
   891 		lastKeyCol = (*key[i])[KColCnt - 1];			//"=" operator
   892 		}
   893 	for(i=0;i<KTestCnt;++i)
   894 		{
   895 		delete key[i];
   896 		}
   897 
   898 	db.Close();
   899 	err = fs.Delete(KDbName);
   900 	TheTest(err == KErrNone);
   901 	fs.Close();
   902 	}
   903 
   904 /**
   905 @SYMTestCaseID			SYSLIB-DBMS-UT-3469
   906 @SYMTestCaseDesc		Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
   907 						The test creates TDbCol and TDbKeyCol objects, creates their copies using copy constructors
   908 						and "=" operators and checks that the copies were constructed correctly,
   909 @SYMTestPriority		High
   910 @SYMTestActions			Test for DEF105615 "DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory".
   911 @SYMTestExpectedResults The test must not fail
   912 @SYMREQ					DEF105615
   913 */
   914 void DEF105615_2()
   915 	{
   916    	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3469 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory - 2 "));
   917 
   918    	const TDbColType KColType = EDbColText16;
   919    	const TInt KMaxColLen = 73;
   920    	const TInt KColAttributes = TDbCol::ENotNull;
   921    	_LIT(KColName, "Name");
   922 
   923    	TDbCol srcDbCol(KColName, EDbColText16, KMaxColLen);
   924    	srcDbCol.iAttributes = KColAttributes;
   925 
   926 	//TDbCol - copy constructor
   927    	TDbCol dbColCopy1(srcDbCol);
   928    	TheTest(dbColCopy1.iType == srcDbCol.iType && dbColCopy1.iType == KColType);
   929    	TheTest(dbColCopy1.iMaxLength == srcDbCol.iMaxLength && dbColCopy1.iMaxLength == KMaxColLen);
   930    	TheTest(dbColCopy1.iAttributes == srcDbCol.iAttributes && dbColCopy1.iAttributes == KColAttributes);
   931    	TheTest(dbColCopy1.iName == srcDbCol.iName && dbColCopy1.iName == KColName);
   932 
   933 	//TDbCol - "=" operator
   934    	TDbCol dbColCopy2;
   935    	dbColCopy2 = srcDbCol;
   936    	TheTest(dbColCopy2.iType == srcDbCol.iType && dbColCopy2.iType == KColType);
   937    	TheTest(dbColCopy2.iMaxLength == srcDbCol.iMaxLength && dbColCopy2.iMaxLength == KMaxColLen);
   938    	TheTest(dbColCopy2.iAttributes == srcDbCol.iAttributes && dbColCopy2.iAttributes == KColAttributes);
   939    	TheTest(dbColCopy2.iName == srcDbCol.iName && dbColCopy2.iName == KColName);
   940 
   941 	//TDbCol - self assignment
   942 	srcDbCol = srcDbCol;
   943    	TheTest(srcDbCol.iType == KColType);
   944    	TheTest(srcDbCol.iMaxLength == KMaxColLen);
   945    	TheTest(srcDbCol.iAttributes == KColAttributes);
   946    	TheTest(srcDbCol.iName == KColName);
   947 
   948    	const TInt KKeyLen = 29;
   949    	const TDbKeyCol::TOrder KKeyOrder = TDbKeyCol::EDesc;
   950    	_LIT(KKeyName, "Name22");
   951 
   952    	TDbKeyCol srcDbKeyCol(KKeyName, KKeyLen, KKeyOrder);
   953 
   954 	//TDbKeyCol - copy constructor
   955    	TDbKeyCol dbKeyColCopy1(srcDbKeyCol);
   956    	TheTest(dbKeyColCopy1.iOrder == srcDbKeyCol.iOrder && dbKeyColCopy1.iOrder == KKeyOrder);
   957    	TheTest(dbKeyColCopy1.iLength == srcDbKeyCol.iLength && dbKeyColCopy1.iLength == KKeyLen);
   958    	TheTest(dbKeyColCopy1.iName == srcDbKeyCol.iName && dbKeyColCopy1.iName == KKeyName);
   959 
   960 	//TDbKeyCol - "=" operator
   961    	TDbKeyCol dbKeyColCopy2;
   962    	dbKeyColCopy2 = srcDbKeyCol;
   963    	TheTest(dbKeyColCopy2.iOrder == srcDbKeyCol.iOrder && dbKeyColCopy2.iOrder == KKeyOrder);
   964    	TheTest(dbKeyColCopy2.iLength == srcDbKeyCol.iLength && dbKeyColCopy2.iLength == KKeyLen);
   965    	TheTest(dbKeyColCopy2.iName == srcDbKeyCol.iName && dbKeyColCopy2.iName == KKeyName);
   966 
   967 	//TDbKeyCol - self assignment
   968 	srcDbKeyCol = srcDbKeyCol;
   969    	TheTest(srcDbKeyCol.iOrder == KKeyOrder);
   970    	TheTest(srcDbKeyCol.iLength == KKeyLen);
   971    	TheTest(srcDbKeyCol.iName == KKeyName);
   972    	}
   973 
   974 /**
   975 @SYMTestCaseID          SYSLIB-DBMS-UT-3413
   976 @SYMTestCaseDesc        Testing that "incremental update" operations running in one connection does not
   977 						interfere with database operations executed from a second connection
   978 @SYMTestPriority        High
   979 @SYMTestActions         Create a test database with one table and insert some records there (> 100).
   980 						Create 2 database connections.
   981 						Open that database from connection 1 and execute an incremental update operation
   982 						in a transaction. At the same time try to open and close the same table from
   983 						connection 2, mixing these operations with the RDbUpdate::Next() calls from
   984 						connection 1. So the call pattern should be:
   985 						@code
   986 						RDbUpdate dbUpdate;
   987 						....
   988 						while((err = dbUpdate.Next()) > 0)		//from "Conenction 1"
   989 							{
   990 							RDbTable tbl;
   991 							err = tbl.Open(TheDb2, _L("A"));	//from "Conenction 2"
   992 							...
   993 							}
   994 						@endcode
   995 @SYMTestExpectedResults The test should not fail or panic.
   996 @SYMDEF INC101720
   997 */
   998 void Defect_INC101720()
   999 	{
  1000     TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3413 "));
  1001 	//Create the test database
  1002 	TInt err = TheDb1.Replace(TheFs, KDbName);
  1003 	TEST2(err, KErrNone);
  1004 	TheDb1.Close();
  1005 	//Establish the first database connection
  1006 	err = TheDbs1.Connect();
  1007 	TEST2(err, KErrNone);
  1008 	err = TheDb1.Open(TheDbs1, KDbName);
  1009 	TEST2(err, KErrNone);
  1010 	//Create a test table and fill the table with enough test records (> 100)
  1011 	err = TheDb1.Execute(_L("CREATE TABLE A(Id COUNTER, Id2 INTEGER, Name LONG VARCHAR)"));
  1012 	TEST2(err, KErrNone);
  1013 	const TInt KTestRecCount = 200;
  1014 	err = TheDb1.Begin();
  1015 	TEST2(err, KErrNone);
  1016 	for(TInt i=0;i<KTestRecCount;++i)
  1017 		{
  1018 		_LIT(KSqlFmtStr, "INSERT INTO A(Id2, Name) VALUES(%d, 'TestNameString')");
  1019 		TBuf<100> sql;
  1020 		TUint32 id = Math::Random() % KTestRecCount;
  1021 		sql.Format(KSqlFmtStr, id + 1);
  1022 		err = TheDb1.Execute(sql);
  1023 		TEST2(err, 1);
  1024 		}
  1025 	err = TheDb1.Commit();
  1026 	TEST2(err, KErrNone);
  1027 	//Establish a second connection with the same test database
  1028 	err = TheDbs2.Connect();
  1029 	TEST2(err, KErrNone);
  1030 	err = TheDb2.Open(TheDbs2, KDbName);
  1031 	TEST2(err, KErrNone);
  1032 	//The test: Conenction 1 - "incremental update" operation.
  1033 	//			Connection 2 - "open table/close table" operations mixed with the incremental Next-s.
  1034 	//Expectation: The test must not fail.
  1035 	err = TheDb1.Begin();
  1036 	TEST2(err, KErrNone);
  1037 	RDbUpdate dbUpdate;
  1038 	err = dbUpdate.Execute(TheDb1, _L("UPDATE A SET Name = 'ModifiedNameString' WHERE Id2 > 10"));
  1039 	TEST2(err, KErrNone);
  1040 	TInt step = 0;
  1041 	while((err = dbUpdate.Next()) > 0)
  1042 		{
  1043 		++step;
  1044 		RDbTable tbl;
  1045 		err = tbl.Open(TheDb2, _L("A"));
  1046 		TEST2(err, KErrNone);
  1047 		tbl.Close();
  1048 		}
  1049 	TEST(step > 1);//just to be sure that the test executes dbUpdate.Next() more than once
  1050 	TEST2(err, KErrNone);
  1051 	dbUpdate.Close();
  1052 	err = TheDb1.Commit();
  1053 	TEST2(err, KErrNone);
  1054 	//Cleanup
  1055 	TheDb2.Close();
  1056 	TheDbs2.Close();
  1057 	TheDb1.Close();
  1058 	TheDbs1.Close();
  1059 	}
  1060 
  1061 /**
  1062 @SYMTestCaseID          SYSLIB-DBMS-UT-3484
  1063 @SYMTestCaseDesc        DBMS Hindi collation doesn't work on long text fields.
  1064 @SYMTestPriority        Medium
  1065 @SYMTestActions         This test is to check that DBMS correctly sorts columns using Collation, when
  1066 						the columns are of type EDbColLongText16.  Previous implementations split the
  1067 						strings to be compared into chunks, however this could cause it to be sorted
  1068 						incorrectly if it was split on a combining or accent character.  This fault
  1069 						occurs on the default locale as well as Hindi.  Test steps:
  1070 						* Create a database table and adds several unicode strings to EDbColLongText16
  1071 						  column in table.  One set of strings have an ascii character followed by
  1072 						  an accent (e + ') and the other set have the combined equivilant ascii
  1073 						  character (è).  These should have the same sort order,however if are split
  1074 						  then will compare differently.
  1075 						* Sort the columns using EDbCompareCollated
  1076 						* Check that the columns were sorted in the correct order
  1077 @SYMTestExpectedResults The columns should get sorted into ascending order correctly
  1078 @SYMDEF INC107268
  1079 */
  1080 void Defect_INC107268L()
  1081 	{
  1082 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3484 Defect INC107268 - DBMS Hindi collation doesn't work on long text fields"));
  1083 
  1084      // some unicode characters
  1085      const TChar Ka(0x0061); 		// a
  1086      const TChar Kb(0x0062); 		// b
  1087      const TChar Ke(0x0065);			// e
  1088      const TChar Kgrave(0x0060); 	// ' (grave)
  1089      const TChar Kegrave(0x00e8);  	// e with grave
  1090      const TChar K1(0x0031);			// 1
  1091      const TChar K2(0x0032);			// 2
  1092 
  1093   	// the maximum characters in a EDbColLongText16 string before dbms stops storing
  1094   	// the string inline, and we need to read it from a stream (see TBlobKey).
  1095   	const TInt KInlineLimit = 127;
  1096 
  1097   	// maximum number of characters buffered in TBlobKey when string stored out of line.
  1098   	// (see TBlobKey::ETruncSize which is in bytes)
  1099   	const TInt KTruncLimit = 16;
  1100 
  1101   	const TInt KMaxStringSize = 256;
  1102 
  1103   	TBuf<KMaxStringSize> inLineBoundryA;
  1104   	TBuf<KMaxStringSize> inLineBoundryB;
  1105   	TBuf<KMaxStringSize> truncBoundryA;
  1106   	TBuf<KMaxStringSize> truncBoundryB;
  1107   	TBuf<KMaxStringSize> padding;
  1108 
  1109      // this string will be stored inline.  It should sort to be < stringB
  1110      inLineBoundryA.Fill(Ka, KInlineLimit-2);
  1111      inLineBoundryA.Append(Kegrave);
  1112      inLineBoundryA.Append(K1);
  1113 
  1114      // this string is just over the break point, so *is* truncated.
  1115      // this is expected to get sorted incorrecly as combining character is split off (negative test case)
  1116      inLineBoundryB.Fill(Ka, KInlineLimit-2);
  1117      inLineBoundryB.Append(Ke);
  1118      inLineBoundryB.Append(Kgrave);
  1119      inLineBoundryB.Append(K2);
  1120 
  1121      padding.Fill(Kb, KInlineLimit);
  1122 
  1123      // this string is longger that KInlineLimit so is stored out of line
  1124      truncBoundryA.Fill(Kb, KTruncLimit-2);
  1125      truncBoundryA.Append(Kegrave);
  1126      truncBoundryA.Append(K1);
  1127      truncBoundryA.Append(padding);
  1128 
  1129      // this string has combining characters that fall on boundry of ETruncSize value (32 bytes)
  1130      truncBoundryB.Fill(Kb, KTruncLimit-2);
  1131      truncBoundryB.Append(Ke);
  1132      truncBoundryB.Append(Kgrave);
  1133      truncBoundryB.Append(K2);
  1134      truncBoundryB.Append(padding);
  1135 
  1136 
  1137      // e and '(grave) characters seperately
  1138      TBuf<3> e_grave;
  1139      e_grave.Append( Ke );
  1140      e_grave.Append( Kgrave );
  1141 
  1142      // e with grave character - this should sort the same as e_grave
  1143      TBuf<3> egrave;
  1144      egrave.Append( Kegrave );
  1145 
  1146      TBuf<1> nullString;
  1147 
  1148  	e_grave.Append(K2); // make e_grave sort second
  1149      egrave.Append(K1);  // make egrave sort first
  1150 
  1151      // Check with database
  1152      _LIT(KPosLmLandmarkTable, "lmt_landmark");
  1153      _LIT(KPosLmLandmarkIdCol, "lmc_lmid");
  1154      _LIT(KPosLmNameCol, "lmc_name");
  1155 
  1156      TInt err = TheDb1.Replace( TheFs, KDbName );
  1157      TEST2 (err, KErrNone);
  1158  	CleanupClosePushL(TheDb1);
  1159 
  1160      CDbColSet* columns = CDbColSet::NewLC();
  1161      TDbCol idField( KPosLmLandmarkIdCol, EDbColUint32 );
  1162      idField.iAttributes |= TDbCol::EAutoIncrement;
  1163      columns->AddL( idField );
  1164      columns->AddL( TDbCol( KPosLmNameCol, EDbColLongText16 ) ); // Works with EDbColText16.  Defect only for EDbColLongText16.
  1165 
  1166      err = TheDb1.CreateTable( KPosLmLandmarkTable, *columns );
  1167      TEST2 (err, KErrNone);
  1168      CleanupStack::PopAndDestroy(columns);
  1169 
  1170      RDbTable table;
  1171      err = table.Open( TheDb1, KPosLmLandmarkTable );
  1172      TEST2 (err, KErrNone);
  1173      CleanupClosePushL(table);
  1174 
  1175  	// add rows to table
  1176    	table.InsertL();
  1177      table.SetColL( 2, egrave); // row 0 - sorted 8th
  1178      table.PutL();
  1179 
  1180  	table.InsertL();
  1181      table.SetColL( 2, e_grave ); // row 1 - sorted 9th
  1182      table.PutL();
  1183 
  1184      table.InsertL();
  1185      table.SetColL( 2, inLineBoundryA ); // row 2 - sorted 3rd (incorrectly - negative test case)
  1186      table.PutL();
  1187 
  1188      table.InsertL();
  1189      table.SetColL( 2, inLineBoundryB ); // row 3 - sorted 2nd (incorrectly - negative test case)
  1190      table.PutL();
  1191 
  1192      table.InsertL();
  1193      table.SetColL( 2, nullString ); // row 4 - sorted 1st
  1194      table.PutL();
  1195 
  1196    	table.InsertL();
  1197      table.SetColL( 2, truncBoundryB ); // row 5 - sorted 5th
  1198      table.PutL();
  1199 
  1200      table.InsertL();
  1201      table.SetColL( 2, truncBoundryA ); // row 6 - sorted 4th
  1202      table.PutL();
  1203 
  1204 
  1205      CleanupStack::PopAndDestroy(); // table.close()
  1206 
  1207  	// do an sql select with Order By to sort columns
  1208      _LIT(KPosLmSqlSelectOrderByString, "SELECT %S, %S FROM %S ORDER BY %S");
  1209      TBuf<200> sql;
  1210      sql.Format( KPosLmSqlSelectOrderByString,
  1211                  &KPosLmLandmarkIdCol,
  1212                  &KPosLmNameCol,
  1213                  &KPosLmLandmarkTable,
  1214                  &KPosLmNameCol);
  1215 
  1216      RDbView view;
  1217      CleanupClosePushL(view);
  1218      err = view.Prepare( TheDb1, TDbQuery( sql, EDbCompareCollated ) );
  1219      TEST2 (err, KErrNone);
  1220      err = view.EvaluateAll();
  1221      TEST2 (err, KErrNone);
  1222 
  1223      // Now check that view is ordered correctly
  1224      const TUint32 ExpectedOrder[] = {4,3,2,6,5,0,1};
  1225      TInt x = 0;
  1226      while (view.NextL())
  1227          {
  1228          view.GetL();
  1229          TEST2(view.ColUint32(1), ExpectedOrder[x]); // check we got the expected order
  1230          x++;
  1231          }
  1232      TEST2(x, 7); // check we got the right number of values
  1233      CleanupStack::PopAndDestroy(2); // TheDb1.Close(); view.Close()
  1234  	}
  1235 
  1236 
  1237 /**
  1238 @SYMTestCaseID          PDS-DBMS-UT-4001
  1239 @SYMTestCaseDesc        INC128224 SQL statement with ESCAPE panics in DBMS.
  1240 @SYMTestPriority        High
  1241 @SYMTestActions         The test verifies that SELECT statement with a LIKE redicate with an ESCAPE clause 
  1242 						followed by another LIKE predicate does not causes a crash in DBMS.
  1243 						The test creates a test database, inserts some records and then runs a SELECT
  1244 						statement that has one LIKE predicate with an ESCAPE followed by another LIKE.
  1245 @SYMTestExpectedResults The test should pass and should not crash the DBMS
  1246 @SYMDEF INC128224
  1247 */
  1248 void INC128224L()
  1249 	{
  1250    	TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4001 INC128224 SQL statement with ESCAPE panics in DBMS"));
  1251 	
  1252 	TInt err = TheDb1.Replace(TheFs, KDbName);
  1253 	TEST2(err, KErrNone);
  1254 	
  1255 	err = TheDb1.Execute(_L("CREATE TABLE A(T1 VARCHAR(100),T2 VARCHAR(150))"));
  1256 	TEST2(err, KErrNone);
  1257 	err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('AAAAAA','HGS')"));
  1258 	TEST2(err, 1);
  1259 	err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('BBBBBB','RRR')"));
  1260 	TEST2(err, 1);
  1261 	err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CCCCC','AAQWWT')"));
  1262 	TEST2(err, 1);
  1263 	err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('DDDDDD','TUQQPQQQQSSS')"));
  1264 	TEST2(err, 1);
  1265 	err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CABS','IAAAIAAAIA')"));
  1266 	TEST2(err, 1);
  1267 	
  1268 	RDbView view;
  1269 	err = view.Prepare(TheDb1, _L("SELECT * FROM A WHERE (T1 LIKE '*C\\*C*' ESCAPE '\\') AND (T2 LIKE 'I?A*')"));
  1270 	TEST2(err, KErrNone);
  1271 	TInt cnt = 0;
  1272 	while(view.NextL())
  1273 		{
  1274 		view.GetL();
  1275 		TPtrC t1 = view.ColDes(1);
  1276 		TPtrC t2 = view.ColDes(2);
  1277 		RDebug::Print(_L("T1=\"%S\", T2=\"%S\"\r\n"), &t1, &t2);
  1278 		++cnt;
  1279 		}
  1280 	view.Close();
  1281 	TEST2(cnt, 1);
  1282 	
  1283 	TheDb1.Close();
  1284 	(void)TheFs.Delete(KDbName);
  1285 	}
  1286    
  1287 LOCAL_C void DoTestsL ()
  1288 	{
  1289 	__UHEAP_MARK;
  1290 	CleanupClosePushL(TheFs);
  1291 	Defect_INC076370L();
  1292 	Defect_INC083027L();
  1293 	Defect_DEF44697L ();
  1294 	Defect_INC093657L();
  1295 	Defect_INC101720();
  1296 	DEF105615L();
  1297 	DEF105615_2();
  1298 	Defect_INC107268L();
  1299 	INC128224L();
  1300 	CleanupStack::PopAndDestroy(); // TheFs.Close()
  1301 	__UHEAP_MARKEND;
  1302 	}
  1303 
  1304 
  1305 GLDEF_C TInt E32Main ()
  1306 	{
  1307 	__UHEAP_MARK;
  1308 	TheTest.Title ();
  1309 	TheTest.Start (_L ("Verify Defect Fixes"));
  1310 
  1311 	TheTrapCleanup = CTrapCleanup::New ();
  1312 	__ASSERT_ALWAYS (TheTrapCleanup!=NULL, User::Invariant ());
  1313 
  1314 	TInt err = TheFs.Connect();
  1315 	TheTest(err == KErrNone);
  1316 
  1317 	TRAP (err,DoTestsL ());
  1318 	TheTest (err==KErrNone);
  1319 
  1320 	delete TheTrapCleanup;
  1321 
  1322 	//Wait some time, because DBMS server won't be destroyed right after the last DBMS session
  1323 	//being clossed.
  1324 	TheTest.Printf(_L("Wait DBMS server shutdown...\n"));
  1325 	const TInt KExitDelay = 6000000;
  1326 	User::After(KExitDelay);
  1327 
  1328 	TheTest.End ();
  1329 	TheTest.Close ();
  1330 
  1331 	__UHEAP_MARKEND;
  1332 	return (0);
  1333 	}