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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 LOCAL_D RTest TheTest (_L ("t_dbdefect"));
23 LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
24 LOCAL_D RSemaphore TheWaitToStartSem;
25 LOCAL_D RSemaphore TheWaitForThreadsReadySem;
27 LOCAL_D RDbs TheDbs1, TheDbs2;
28 LOCAL_D RDbNamedDatabase TheDb1, TheDb2;
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");
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')");
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'");
52 _LIT(KText16Name, "text16");
53 _LIT(KTableName, "test");
54 _LIT(KIndexName, "test_index");
55 _LIT(KMaxStringFormat, "%0256d");
63 (void)TheFs.Delete(KDbName);
67 //-----------------------------------------------------------------------------
69 // Test macros and functions.
71 //-----------------------------------------------------------------------------
72 // If (!aValue) then the test will be panicked, the test data files will be
74 LOCAL_C void Check(TInt aValue, TInt aLine)
79 TheTest(EFalse, aLine);
84 // If (aValue != aExpected) then the test will be panicked, the test data files
86 LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
88 if(aValue != aExpected)
90 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
92 TheTest(EFalse, aLine);
97 //Use these to test conditions.
98 #define TEST(arg) ::Check((arg), __LINE__)
99 #define TEST2(aValue, aExpected) ::Check((aValue), (aExpected), __LINE__)
100 //-----------------------------------------------------------------------------
101 //-----------------------------------------------------------------------------
109 const TTest KQuery[]=
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 '\\'")}
123 const TTest KBadQuery[]=
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 '\\'")}
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;
143 static void DoDbmsConnectThreadSubFunctionL (TInt aThreadNumber)
147 CleanupClosePushL (TheDbSession);
149 RDebug::Print (KStart (), aThreadNumber);
150 RDebug::Print (KConnect (), aThreadNumber);
152 // Signal the main thread to continue
153 TheWaitForThreadsReadySem.Signal (1);
155 // Wait until we are signalled
156 TheWaitToStartSem.Wait ();
159 TInt r = TheDbSession.Connect ();
163 RDebug::Print (KConSuccess (), aThreadNumber);
164 TheDbSession.Close ();
168 RDebug::Print (KConFailed (), aThreadNumber, r);
172 CleanupStack::PopAndDestroy (1); // session
175 static TInt DoDbmsConnectThread (TAny* aThreadNumber)
179 CTrapCleanup* trapCleanup = CTrapCleanup::New ();
180 __ASSERT_ALWAYS (trapCleanup!=NULL, User::Invariant ());
182 TInt* threadNumber = static_cast <TInt*> (aThreadNumber);
183 TRAPD (err, DoDbmsConnectThreadSubFunctionL (*threadNumber));
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
200 LOCAL_C void Defect_DEF44697L ()
202 TheTest.Next (_L (" @SYMTestCaseID:SYSLIB-DBMS-CT-0644 Defect_DEF44697L "));
206 // find out the number of open handles
207 TInt startProcessHandleCount;
208 TInt startThreadHandleCount;
209 RThread ().HandleCount (startProcessHandleCount, startThreadHandleCount);
211 /////////////////////
212 // The Test Begins...
215 ::CleanupClosePushL (::TheWaitForThreadsReadySem);
216 User::LeaveIfError (::TheWaitForThreadsReadySem.CreateLocal (0));
218 ::CleanupClosePushL (::TheWaitToStartSem);
219 User::LeaveIfError (::TheWaitToStartSem.CreateLocal (0));
221 // Create the threads.
222 RThread createTestThread_1;
223 RThread createTestThread_2;
224 RThread createTestThread_3;
226 TBuf<100> thread_name;
227 TInt KThreadNumber1 = 1;
228 TInt KThreadNumber2 = 2;
229 TInt KThreadNumber3 = 3;
231 // Create the first test thread______________________________
232 thread_name = KName ();
233 thread_name.AppendNum (KThreadNumber1);
236 createTestThread_1.Create (thread_name,
237 (TThreadFunction) DoDbmsConnectThread,
243 // Default priority of Main thread is EPriorityNormal
244 createTestThread_1.SetPriority(EPriorityMore);
246 TheTest.Printf (_L ("%S thread started\n"), &thread_name);
248 // Request notification when the thread dies.
249 TRequestStatus threadStatus_1;
250 createTestThread_1.Logon (threadStatus_1);
252 //___________________________________________________________
254 // Create the second test thread______________________________
255 thread_name = KName ();
256 thread_name.AppendNum (KThreadNumber2);
259 createTestThread_2.Create (thread_name,
260 (TThreadFunction) DoDbmsConnectThread,
266 // Default priority of Main thread is EPriorityNormal
267 createTestThread_2.SetPriority(EPriorityMore);
269 TheTest.Printf (_L ("%S thread started\n"), &thread_name);
271 // Request notification when the tread dies.
272 TRequestStatus threadStatus_2;
273 createTestThread_2.Logon (threadStatus_2);
275 //___________________________________________________________
277 // Create the third test thread______________________________
278 thread_name = KName ();
279 thread_name.AppendNum (KThreadNumber3);
282 createTestThread_3.Create (thread_name,
283 (TThreadFunction) DoDbmsConnectThread,
289 // Default priority of Main thread is EPriorityNormal
290 createTestThread_3.SetPriority(EPriorityMore);
292 TheTest.Printf (_L ("%S thread started\n"), &thread_name);
294 // Request notification when the tread dies.
295 TRequestStatus threadStatus_3;
296 createTestThread_3.Logon (threadStatus_3);
298 //___________________________________________________________
300 TheTest (threadStatus_1.Int () == KRequestPending);
301 TheTest (threadStatus_2.Int () == KRequestPending);
302 TheTest (threadStatus_3.Int () == KRequestPending);
304 // Make threads eligible for execution
305 createTestThread_1.Resume ();
306 createTestThread_2.Resume ();
307 createTestThread_3.Resume ();
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
313 // 1: Main thread Waits for ALL test threads to become ready.
314 // 2: Main thread Signals ALL test threads to run.
316 // 1: Test thread Signals Main thread
317 // 2: Test thread Waits for Main thread
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.
324 // The problems come with the way Time slicing works due to
325 // other threads of higher priority being run.
327 // Higher priority: Ensures the test thread runs before the
330 // Timer: Safeguards when multiple core processors are being used.
332 // The Higher priority fixes the problem on single core processors
333 // and multiple cores processors (SMP) where each core can run a
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.
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.
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.
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.
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.
361 TheWaitForThreadsReadySem.Wait();
362 TheWaitForThreadsReadySem.Wait();
363 TheWaitForThreadsReadySem.Wait();
365 // Sleep for a while to allow threads to block on the semaphore
366 User::After (KOneSecond<<2); // 4 seconds
368 // Signal all the threads to continue
369 TheWaitToStartSem.Signal (KThreadCount);
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);
376 TheTest.Printf (KStatus, KThreadNumber1, threadStatus_1.Int ());
377 TheTest.Printf (KStatus, KThreadNumber2, threadStatus_2.Int ());
378 TheTest.Printf (KStatus, KThreadNumber3, threadStatus_3.Int ());
380 TheTest (threadStatus_1.Int () == KErrNone);
381 TheTest (threadStatus_2.Int () == KErrNone);
382 TheTest (threadStatus_3.Int () == KErrNone);
384 CleanupStack::PopAndDestroy (&::TheWaitToStartSem);
385 CleanupStack::PopAndDestroy (&::TheWaitForThreadsReadySem);
388 /////////////////////
390 // check that no handles have leaked
391 TInt endProcessHandleCount;
392 TInt endThreadHandleCount;
393 RThread ().HandleCount (endProcessHandleCount, endThreadHandleCount);
395 TheTest (startThreadHandleCount == endThreadHandleCount);
402 // Test for LIKE Predicate for EDbColLongText16
403 LOCAL_C void LikePredicateDbColLongText16TestL()
405 TheTest.Next (_L ("LikePredicateDbColLongText16TestL"));
409 User::LeaveIfError(fsSession.Connect());
410 CleanupClosePushL(fsSession);
411 RDbNamedDatabase database;
412 User::LeaveIfError(database.Replace(fsSession, KDbName));
413 CleanupClosePushL(database);
417 CDbColSet* columns= CDbColSet::NewLC();
419 TDbCol name(KColName,EDbColLongText16,KDbNameLen);
420 name.iAttributes = TDbCol::ENotNull;
422 TDbCol name2(KCol2Name,EDbColLongText16,KDbNameLen);
425 columns->AddL(name2);
426 User::LeaveIfError (database.CreateTable (KTable, *columns));
427 CleanupStack::PopAndDestroy(); // columns
429 // Insert values into table
430 TInt error = database.Execute(KSQLInsert1);
432 error =database.Execute(KSQLInsert2);
434 error =database.Execute(KSQLInsert3);
436 error = database.Execute(KSQLInsert4);
438 error = database.Execute(KSQLInsert5);
440 error = database.Execute(KSQLInsert6);
442 error = database.Execute(KSQLInsert7);
446 TheTest.Next(_L("Test for valid LIKE predicate queries"));
449 for(TInt i =0;i<KNumQueries;++i)
451 RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
453 view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
456 typedef TBuf<256> TScriptLine;
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));
476 // test for illegal statements, check they return KErrArgument
477 TheTest.Next(_L("Test that illegal queries return KErrArgument"));
480 for(TInt j =0;j<KNumBadQueries;++j)
482 RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
484 TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
485 TheTest(prepErr==KErrArgument);
489 CleanupStack::PopAndDestroy(&database); // database
490 CleanupStack::PopAndDestroy(&fsSession); // fsSession
495 // for LIKE Predicate for EDbColLongText8
496 LOCAL_C void LikePredicateDbColLongText8TestL()
498 TheTest.Next (_L ("LikePredicate DbColLongText8 TestL"));
503 User::LeaveIfError(fsSession.Connect());
504 CleanupClosePushL(fsSession);
505 RDbNamedDatabase database;
506 User::LeaveIfError(database.Replace(fsSession, KDbName));
507 CleanupClosePushL(database);
511 CDbColSet* columns= CDbColSet::NewLC();
513 TDbCol name(KColName,EDbColLongText8,KDbNameLen);
514 name.iAttributes = TDbCol::ENotNull;
516 TDbCol name2(KCol2Name,EDbColLongText8,KDbNameLen);
519 columns->AddL(name2);
521 User::LeaveIfError (database.CreateTable (KTable, *columns));
522 CleanupStack::PopAndDestroy(); // columns
524 // Insert values into the table
525 TInt error = database.Execute(KSQLInsert1);
527 error =database.Execute(KSQLInsert2);
529 error =database.Execute(KSQLInsert3);
531 error = database.Execute(KSQLInsert4);
533 error = database.Execute(KSQLInsert5);
535 error = database.Execute(KSQLInsert6);
537 error = database.Execute(KSQLInsert7);
540 TheTest.Next(_L("Test for valid LIKE predicate queries"));
543 for(TInt i =0;i<KNumQueries;++i)
545 RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
547 TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
549 TInt evErr = view.EvaluateAll();
553 result.Copy(TPtrC(KQuery[i].result));
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);
573 // test for illegal statements, check they return KErrArgument
574 TheTest.Next(_L("Test that illegal queries return KErrArgument"));
578 for(TInt j =0;j<KNumBadQueries;++j)
580 RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
582 TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
583 TheTest(prepErr==KErrArgument);
588 CleanupStack::PopAndDestroy(&database); // database
589 CleanupStack::PopAndDestroy(&fsSession); // fsSession
594 // Test for LIKE Predicate for EDbColText
595 LOCAL_C void LikePredicateDbColTextTestL()
597 TheTest.Next (_L ("LikePredicate DbColText TestL"));
601 User::LeaveIfError(fsSession.Connect());
602 CleanupClosePushL(fsSession);
603 RDbNamedDatabase database;
604 User::LeaveIfError(database.Replace(fsSession, KDbName));
605 CleanupClosePushL(database);
609 CDbColSet* columns= CDbColSet::NewLC();
611 TDbCol name(KColName,EDbColText,KDbNameLen);
612 name.iAttributes = TDbCol::ENotNull;
614 TDbCol name2(KCol2Name,EDbColText,KDbNameLen);
617 columns->AddL(name2);
619 User::LeaveIfError (database.CreateTable (KTable, *columns));
620 CleanupStack::PopAndDestroy(); // columns
622 // Insert values into the table
623 TInt error = database.Execute(KSQLInsert1);
625 error =database.Execute(KSQLInsert2);
627 error =database.Execute(KSQLInsert3);
629 error = database.Execute(KSQLInsert4);
631 error = database.Execute(KSQLInsert5);
633 error = database.Execute(KSQLInsert6);
635 error = database.Execute(KSQLInsert7);
639 TheTest.Next(_L("Test for valid LIKE predicate queries"));
642 for(TInt i =0;i<KNumQueries;++i)
644 RDebug::Print(_L("Executing statement: %s \n"),(KQuery[i].query));
646 TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KQuery[i].query), EDbCompareFolded), view.EReadOnly);
647 if(TPtrC(KQuery[i].result).Length() == 0)
649 TheTest(prepErr != KErrNone);
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));
670 // test for illegal statements, check they return KErrArgument
671 TheTest.Next(_L("Test that illegal queries return KErrArgument"));
673 for(TInt j =0;j<KNumBadQueries;++j)
675 RDebug::Print(_L("Executing illegal statement: %s \n"),(KBadQuery[j].query));
677 TInt prepErr = view.Prepare(database, TDbQuery(TPtrC(KBadQuery[j].query), EDbCompareFolded), view.EReadOnly);
678 TheTest(prepErr==KErrArgument);
682 CleanupStack::PopAndDestroy(&database); // database
683 CleanupStack::PopAndDestroy(&fsSession); // fsSession
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.
696 LOCAL_C void Defect_INC076370L()
698 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1592 Defect INC076370 "));
699 LikePredicateDbColTextTestL(); //EDbColText
700 LikePredicateDbColLongText16TestL(); //EDbColLongText16
701 LikePredicateDbColLongText8TestL(); //EDbColLongText8
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.
713 LOCAL_C void Defect_INC083027L()
715 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1667 Defect INC083027 "));
717 CleanupClosePushL(fs);
718 User::LeaveIfError(fs.Connect());
721 RDbNamedDatabase database;
722 CleanupClosePushL(database);
723 User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
725 CDbColSet* columns = CDbColSet::NewLC();
726 const TInt maxTextLength = 256;
727 TDbCol text16Col(KText16Name, EDbColLongText16, maxTextLength);
728 columns->AddL(text16Col);
730 TBuf<KMaxColName> targetColName;
731 targetColName = KText16Name;
734 User::LeaveIfError(database.CreateTable(KTableName, *columns));
737 CDbKey* key = CDbKey::NewLC();
738 TInt keyLength = 122;
739 TDbKeyCol keyCol(targetColName, keyLength);
741 User::LeaveIfError(database.CreateIndex(KIndexName, KTableName, *key));
742 CleanupStack::PopAndDestroy(2); // key and columns
745 HBufC* sqlQueryBuf = HBufC::NewLC(512);
746 TPtr sqlQuery(sqlQueryBuf->Des());
747 _LIT(KSQLInsertFormat, "SELECT %S FROM %S");
748 sqlQuery.Format(KSQLInsertFormat, &targetColName, &KTableName);
751 User::LeaveIfError(insertview.Prepare(database, TDbQuery(sqlQuery), RDbView::EInsertOnly));
753 HBufC* tmpBuf = HBufC::NewLC(maxTextLength);
754 TPtr maxString(tmpBuf->Des());
755 maxString.Format(KMaxStringFormat, 0);
756 insertview.InsertL();
757 insertview.SetColL(1, maxString);
763 User::LeaveIfError(deleteview.Prepare(database, TDbQuery(sqlQuery), RDbView::EUpdatable));
764 User::LeaveIfError(deleteview.EvaluateAll());
766 while (deleteview.NextL())
769 TRAPD(err , deleteview.DeleteL());
770 TheTest(err==KErrNone);
774 CleanupStack::PopAndDestroy(2); // tmpBuf, sqlQueryBuf
775 CleanupStack::PopAndDestroy(&database); // database
776 CleanupStack::PopAndDestroy(&fs); // fs
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.
787 LOCAL_C void Defect_INC093657L ()
789 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-1894 Defect INC093657 "));
791 CleanupClosePushL(fs);
792 User::LeaveIfError(fs.Connect());
795 RDbNamedDatabase database;
796 CleanupClosePushL(database);
797 User::LeaveIfError(database.Replace(fs, _L("c:\\test.db")));
799 CDbColSet* columns = CDbColSet::NewLC();
800 const TInt maxTextLength = 256;
801 TDbCol column(KColName, EDbColLongText16, maxTextLength);
802 columns->AddL(column);
805 User::LeaveIfError(database.CreateTable(KTableName, *columns));
806 CleanupStack::PopAndDestroy(); // columns
808 //execute a pointless request that is intended to detect subtle memory corruptions in CSqlMultiNode::Concatenate
810 TInt err = view.Prepare(database, TDbQuery(KSqlRequestGranularity));
812 TheTest(err==KErrNone);
817 CleanupStack::PopAndDestroy(&database); // database
818 CleanupStack::PopAndDestroy(&fs); // fs
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:
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
842 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3467 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory"));
844 TInt err = fs.Connect();
845 TheTest(err == KErrNone);
848 err = db.Replace(fs, KDbName);
849 TheTest(err == KErrNone);
851 const TInt KColCnt = 3;
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);
859 err = tbl.Open(db, _L("A"));
860 TheTest(err == KErrNone);
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
867 const TInt KTestCnt = 100;
869 CDbColSet* colset[KTestCnt];
870 for(i=0;i<KTestCnt;++i)
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
877 for(i=0;i<KTestCnt;++i)
884 //The same test is repeated for TDbKeyCol's copy constructor and "=" operator
885 CDbKey* key[KTestCnt];
886 for(i=0;i<KTestCnt;++i)
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
893 for(i=0;i<KTestCnt;++i)
899 err = fs.Delete(KDbName);
900 TheTest(err == KErrNone);
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
916 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3469 DEF105615 DBMS, CDbColSet::operator[](TDbColNo) operator may access an invalid memory - 2 "));
918 const TDbColType KColType = EDbColText16;
919 const TInt KMaxColLen = 73;
920 const TInt KColAttributes = TDbCol::ENotNull;
921 _LIT(KColName, "Name");
923 TDbCol srcDbCol(KColName, EDbColText16, KMaxColLen);
924 srcDbCol.iAttributes = KColAttributes;
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);
933 //TDbCol - "=" operator
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);
941 //TDbCol - self assignment
943 TheTest(srcDbCol.iType == KColType);
944 TheTest(srcDbCol.iMaxLength == KMaxColLen);
945 TheTest(srcDbCol.iAttributes == KColAttributes);
946 TheTest(srcDbCol.iName == KColName);
948 const TInt KKeyLen = 29;
949 const TDbKeyCol::TOrder KKeyOrder = TDbKeyCol::EDesc;
950 _LIT(KKeyName, "Name22");
952 TDbKeyCol srcDbKeyCol(KKeyName, KKeyLen, KKeyOrder);
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);
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);
967 //TDbKeyCol - self assignment
968 srcDbKeyCol = srcDbKeyCol;
969 TheTest(srcDbKeyCol.iOrder == KKeyOrder);
970 TheTest(srcDbKeyCol.iLength == KKeyLen);
971 TheTest(srcDbKeyCol.iName == KKeyName);
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:
988 while((err = dbUpdate.Next()) > 0) //from "Conenction 1"
991 err = tbl.Open(TheDb2, _L("A")); //from "Conenction 2"
995 @SYMTestExpectedResults The test should not fail or panic.
998 void Defect_INC101720()
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);
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)
1018 _LIT(KSqlFmtStr, "INSERT INTO A(Id2, Name) VALUES(%d, 'TestNameString')");
1020 TUint32 id = Math::Random() % KTestRecCount;
1021 sql.Format(KSqlFmtStr, id + 1);
1022 err = TheDb1.Execute(sql);
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);
1038 err = dbUpdate.Execute(TheDb1, _L("UPDATE A SET Name = 'ModifiedNameString' WHERE Id2 > 10"));
1039 TEST2(err, KErrNone);
1041 while((err = dbUpdate.Next()) > 0)
1045 err = tbl.Open(TheDb2, _L("A"));
1046 TEST2(err, KErrNone);
1049 TEST(step > 1);//just to be sure that the test executes dbUpdate.Next() more than once
1050 TEST2(err, KErrNone);
1052 err = TheDb1.Commit();
1053 TEST2(err, KErrNone);
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
1080 void Defect_INC107268L()
1082 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-UT-3484 Defect INC107268 - DBMS Hindi collation doesn't work on long text fields"));
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
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;
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;
1101 const TInt KMaxStringSize = 256;
1103 TBuf<KMaxStringSize> inLineBoundryA;
1104 TBuf<KMaxStringSize> inLineBoundryB;
1105 TBuf<KMaxStringSize> truncBoundryA;
1106 TBuf<KMaxStringSize> truncBoundryB;
1107 TBuf<KMaxStringSize> padding;
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);
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);
1121 padding.Fill(Kb, KInlineLimit);
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);
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);
1137 // e and '(grave) characters seperately
1139 e_grave.Append( Ke );
1140 e_grave.Append( Kgrave );
1142 // e with grave character - this should sort the same as e_grave
1144 egrave.Append( Kegrave );
1148 e_grave.Append(K2); // make e_grave sort second
1149 egrave.Append(K1); // make egrave sort first
1151 // Check with database
1152 _LIT(KPosLmLandmarkTable, "lmt_landmark");
1153 _LIT(KPosLmLandmarkIdCol, "lmc_lmid");
1154 _LIT(KPosLmNameCol, "lmc_name");
1156 TInt err = TheDb1.Replace( TheFs, KDbName );
1157 TEST2 (err, KErrNone);
1158 CleanupClosePushL(TheDb1);
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.
1166 err = TheDb1.CreateTable( KPosLmLandmarkTable, *columns );
1167 TEST2 (err, KErrNone);
1168 CleanupStack::PopAndDestroy(columns);
1171 err = table.Open( TheDb1, KPosLmLandmarkTable );
1172 TEST2 (err, KErrNone);
1173 CleanupClosePushL(table);
1175 // add rows to table
1177 table.SetColL( 2, egrave); // row 0 - sorted 8th
1181 table.SetColL( 2, e_grave ); // row 1 - sorted 9th
1185 table.SetColL( 2, inLineBoundryA ); // row 2 - sorted 3rd (incorrectly - negative test case)
1189 table.SetColL( 2, inLineBoundryB ); // row 3 - sorted 2nd (incorrectly - negative test case)
1193 table.SetColL( 2, nullString ); // row 4 - sorted 1st
1197 table.SetColL( 2, truncBoundryB ); // row 5 - sorted 5th
1201 table.SetColL( 2, truncBoundryA ); // row 6 - sorted 4th
1205 CleanupStack::PopAndDestroy(); // table.close()
1207 // do an sql select with Order By to sort columns
1208 _LIT(KPosLmSqlSelectOrderByString, "SELECT %S, %S FROM %S ORDER BY %S");
1210 sql.Format( KPosLmSqlSelectOrderByString,
1211 &KPosLmLandmarkIdCol,
1213 &KPosLmLandmarkTable,
1217 CleanupClosePushL(view);
1218 err = view.Prepare( TheDb1, TDbQuery( sql, EDbCompareCollated ) );
1219 TEST2 (err, KErrNone);
1220 err = view.EvaluateAll();
1221 TEST2 (err, KErrNone);
1223 // Now check that view is ordered correctly
1224 const TUint32 ExpectedOrder[] = {4,3,2,6,5,0,1};
1226 while (view.NextL())
1229 TEST2(view.ColUint32(1), ExpectedOrder[x]); // check we got the expected order
1232 TEST2(x, 7); // check we got the right number of values
1233 CleanupStack::PopAndDestroy(2); // TheDb1.Close(); view.Close()
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
1250 TheTest.Next(_L(" @SYMTestCaseID:PDS-DBMS-UT-4001 INC128224 SQL statement with ESCAPE panics in DBMS"));
1252 TInt err = TheDb1.Replace(TheFs, KDbName);
1253 TEST2(err, KErrNone);
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')"));
1259 err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('BBBBBB','RRR')"));
1261 err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CCCCC','AAQWWT')"));
1263 err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('DDDDDD','TUQQPQQQQSSS')"));
1265 err = TheDb1.Execute(_L("INSERT INTO A(T1,T2) VALUES('C*CABS','IAAAIAAAIA')"));
1269 err = view.Prepare(TheDb1, _L("SELECT * FROM A WHERE (T1 LIKE '*C\\*C*' ESCAPE '\\') AND (T2 LIKE 'I?A*')"));
1270 TEST2(err, KErrNone);
1275 TPtrC t1 = view.ColDes(1);
1276 TPtrC t2 = view.ColDes(2);
1277 RDebug::Print(_L("T1=\"%S\", T2=\"%S\"\r\n"), &t1, &t2);
1284 (void)TheFs.Delete(KDbName);
1287 LOCAL_C void DoTestsL ()
1290 CleanupClosePushL(TheFs);
1291 Defect_INC076370L();
1292 Defect_INC083027L();
1293 Defect_DEF44697L ();
1294 Defect_INC093657L();
1298 Defect_INC107268L();
1300 CleanupStack::PopAndDestroy(); // TheFs.Close()
1305 GLDEF_C TInt E32Main ()
1309 TheTest.Start (_L ("Verify Defect Fixes"));
1311 TheTrapCleanup = CTrapCleanup::New ();
1312 __ASSERT_ALWAYS (TheTrapCleanup!=NULL, User::Invariant ());
1314 TInt err = TheFs.Connect();
1315 TheTest(err == KErrNone);
1317 TRAP (err,DoTestsL ());
1318 TheTest (err==KErrNone);
1320 delete TheTrapCleanup;
1322 //Wait some time, because DBMS server won't be destroyed right after the last DBMS session
1324 TheTest.Printf(_L("Wait DBMS server shutdown...\n"));
1325 const TInt KExitDelay = 6000000;
1326 User::After(KExitDelay);