Update contrib.
1 // Copyright (c) 1998-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.
14 // Test code for bugs that have been fixed, to help prevent regression
23 LOCAL_D RTest test(_L("t_dbbug"));
24 LOCAL_D CTrapCleanup* TheTrapCleanup;
26 LOCAL_D RDbNamedDatabase TheDatabase;
28 const TInt KTestCleanupStack=0x40;
30 void Check(TInt aValue,TInt aExpected,TInt aLine)
32 if (aValue!=aExpected)
34 test.Printf(_L("*** Expected %d: got %d\r\n"),aExpected,aValue);
35 test.operator()(EFalse,aLine);
38 #define test2(a,b) Check(a,b,__LINE__)
40 static void Print(const TText* aString)
42 test.Printf(_L("%s\n"),aString);
45 ////////////////////////////////////////////
47 _LIT(KTestDatabase,"c:\\dbms-tst\\bug.db");
56 static const TDesC& Name();
60 const TDesC& Defect_590829::Name()
66 /////////////////////////////////////////////////
68 // Length of text data used for each entry. This will be
69 // equivalent to 400 bytes for ansi characters. The number of
70 // bytes must not be less than 256 (or 128 for this const).
71 // If it is a stream will not be used for transfer of data.
72 const TInt KTextDataLength = 200;
75 const TInt KMaxColLength = 1000;
77 // Buffer size to cause HDbsBuf::DoReadL() ipc check to be executed
78 const TInt KBufSizeDoReadL = 1000;
80 // Buffer size to cause HDbsBuf::UnderflowL() ipc check to be executed
81 const TInt KBufSizeUnderflowL = 500;
87 static const TDesC& Name();
91 const TDesC& Defect_071149::Name()
98 HDbsBuf did not handle case when iIpc.iHandle is 0 causing IPC calls to panic.
99 The handle is 0 when opening a stream and all data is retrieved in this request.
101 @SYMTestCaseID SYSLIB-DBMS-CT-1491
102 @SYMTestCaseDesc Tests for defect number 590829
103 @SYMTestPriority High
104 @SYMTestActions Tests by setting up failure conditions.
105 @SYMTestExpectedResults Test must not fail
108 void Defect_071149::TestL()
110 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1491 "));
111 Print(_S("Creating test database"));
113 // Connect to dbms and open db
116 test2 (db.Replace(TheFs,KTestDatabase),KErrNone);
119 test2(dbs.Connect(), KErrNone);
120 test2(db.Open(dbs,KTestDatabase), KErrNone);
122 // creating column to hold LongText
123 CDbColSet *colSet = CDbColSet::NewL();
124 CleanupStack::PushL(colSet);
125 colSet->AddL(TDbCol(_L("Id"), EDbColLongText, KMaxColLength));
128 test2(db.CreateTable(KTableA, *colSet), KErrNone);
129 CleanupStack::PopAndDestroy(colSet);
131 // create text data to add to table
132 HBufC* testText = HBufC::New(KTextDataLength);
133 test(testText !=NULL );
134 TPtr ptr = testText->Des();
135 for(TInt y=0;y<KTextDataLength;++y)
137 ptr.Append(TChar('A'));
142 test2 (newTable.Open(db,KTableA),KErrNone);
145 newTable.SetColL(1, ptr);
148 test2 (db.Commit(),KErrNone);
149 test2 (newTable.CountL(), 1);
155 // disconnect from db and dbms
160 // Connect to dbms and open db
161 test2(dbs.Connect(), KErrNone);
162 test2(db.Open(dbs,KTestDatabase), KErrNone);
164 // Test handle check in HDbsBuf::DoReadL() - See defect
165 // If the handle check did not exist in the production code then
170 test2 (testTable.Open(db,KTableA),KErrNone);
177 rs.OpenLC( testTable, 1);
180 TBuf<KBufSizeDoReadL> buf;
181 TRAPD(err, rs.ReadL( buf, buf.MaxLength()));
186 CleanupStack::PopAndDestroy(); // Close rs
190 // Test handle check in HDbsBuf::UnderflowL() - additional error not in defect
191 // If the handle check did not exist in the production code then
195 test2 (testTable.Open(db,KTableA),KErrNone);
200 RDbColReadStream rs2;
201 rs2.OpenLC( testTable, 1);
204 TBuf<KBufSizeUnderflowL> buf2;
205 TRAP(err, rs2.ReadL( buf2, buf2.MaxLength()));
210 CleanupStack::PopAndDestroy(); // Close rs
218 /////////////////////////////////////////////////
221 Cached, unused tables were breaking the iterator in CDbTableDatabase::CheckIdle
222 The latter function has been re-written to restart the iteration when tables are Idle()'d
224 @SYMTestCaseID SYSLIB-DBMS-CT-0582
225 @SYMTestCaseDesc Tests for defect number 590829
226 @SYMTestPriority Medium
227 @SYMTestActions Tests by setting up failure conditions.
228 @SYMTestExpectedResults Test must not fail
231 void Defect_590829::TestL()
233 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0582 "));
234 Print(_S("Creating test database"));
235 test2 (TheDatabase.Replace(TheFs,KTestDatabase),KErrNone);
237 test2 (TheDatabase.Execute(_L("create table A (id counter)")),KErrNone);
238 test2 (TheDatabase.Execute(_L("create table B (id counter)")),KErrNone);
239 test2 (TheDatabase.Execute(_L("create table C (id counter)")),KErrNone);
240 test2 (TheDatabase.Commit(),KErrNone);
242 Print(_S("Setting up failure"));
244 test2 (tA.Open(TheDatabase,KTableA),KErrNone);
245 test2 (tB.Open(TheDatabase,KTableB),KErrNone);
247 test2 (tC.Open(TheDatabase,KTableC),KErrNone);
252 Print(_S("Testing fix"));
253 test2 (TheDatabase.Commit(),KErrNone);
254 TheDatabase.Destroy();
257 /////////////////////////////////////////////////
263 static const TDesC& Name();
265 static TInt Thread(TAny*);
266 static void ThreadL();
270 const TDesC& Defect_394751::Name()
272 _LIT(KName,"394751");
276 void Defect_394751::ThreadL()
280 User::LeaveIfError(dbs.Connect());
281 User::LeaveIfError(db.Open(dbs,KTestDatabase));
283 db.Begin(); /// panic now
284 User::Panic(_L("T_BUG failure"),0);
287 TInt Defect_394751::Thread(TAny*)
289 User::SetJustInTime(EFalse); // disable debugger panic handling
290 CTrapCleanup* cleanup=CTrapCleanup::New();
299 @SYMTestCaseID SYSLIB-DBMS-CT-0583
300 @SYMTestCaseDesc Tests for defect number 394751
301 @SYMTestPriority Medium
302 @SYMTestActions Tests for thread exit status.
303 @SYMTestExpectedResults Test must not fail
306 void Defect_394751::TestL()
310 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0583 "));
311 Print(_S("Creating test database"));
312 test2 (TheDatabase.Replace(TheFs,KTestDatabase),KErrNone);
316 test2 (dbs.Connect(),KErrNone);
318 Print(_S("Running test thread"));
320 _LIT(KTestThread,"Defect Fix 394751");
321 test2 (t.Create(KTestThread,&Thread,0x2000,0x1000,0x10000,0,EOwnerThread),KErrNone);
324 test2 (s.Int(),KRequestPending);
326 Print(_S("Awaiting completion"));
327 User::WaitForRequest(s);
328 _LIT(KCategory,"DBMS-Table");
329 test2 (t.ExitType(),EExitPanic);
330 test (t.ExitCategory()==KCategory);
331 test2 (t.ExitReason(),11); // begin nested transaction
332 User::SetJustInTime(ETrue); // enable debugger panic handling
335 test2 (dbs.ResourceCount(),0);
339 ///////////////////////////////////////////////////////////
341 class Defect_COMBBAR_463J5D
345 static const TDesC& Name();
347 static void WaitForServerExit();
348 static void KillDbmsServer();
349 static TInt Thread(TAny*);
352 const TDesC& Defect_COMBBAR_463J5D::Name()
354 _LIT(KName,"COMBBAR_463J5D");
358 void Defect_COMBBAR_463J5D::KillDbmsServer()
360 _LIT(KDbmsServer,"edbsrv.exe");
362 //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
363 TBuf<64> pattern(KDbmsServer);
364 TInt length = pattern.Length();
366 TFindProcess procFinder(pattern);
368 while (procFinder.Next(name) == KErrNone)
370 if (name.Length() > length)
371 {//If found name is a string containing aProcessName string.
372 TChar c(name[length]);
373 if (c.IsAlphaDigit() ||
377 // If the found name is other valid application name
378 // starting with aProcessName string.
379 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
384 if (proc.Open(name) == KErrNone)
387 //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
393 void Defect_COMBBAR_463J5D::WaitForServerExit()
395 _LIT(KDbmsServer,"*!DBMS server");
397 TFindThread ft(KDbmsServer);
398 if (ft.Next(n)==KErrNone)
401 if (t.Open(ft)==KErrNone)
405 User::WaitForRequest(s);
411 TInt Defect_COMBBAR_463J5D::Thread(TAny*)
413 // Just try to start the server
417 return dbs.Connect();
421 @SYMTestCaseID SYSLIB-DBMS-CT-0584
422 @SYMTestCaseDesc Tests for defect number COMBBAR_463J5D
423 @SYMTestPriority Medium
424 @SYMTestActions Testing that defect COMBBAR_463J5D in ER5 Defects database has been fixed
425 @SYMTestExpectedResults Test must not fail
428 void Defect_COMBBAR_463J5D::TestL()
430 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0584 "));
431 Print(_S("Kill the server if it has started"));
434 Print(_S("Create the launching threads"));
436 TRequestStatus s1,s2;
438 test2 (t1.Create(KThread1,&Thread,0x2000,0,0,EOwnerThread),KErrNone);
439 t1.SetPriority(EPriorityLess);
442 test2 (t2.Create(KThread2,&Thread,0x2000,0,0,EOwnerThread),KErrNone);
443 t2.SetPriority(EPriorityLess);
446 Print(_S("Run the threads and wait"));
449 User::WaitForRequest(s1,s2);
450 if (s1==KRequestPending)
451 User::WaitForRequest(s1);
453 User::WaitForRequest(s2);
455 test2 (t1.ExitType(),EExitKill);
456 if (s1.Int()!=KErrNotFound)
457 test2 (s1.Int(),KErrNone);
458 test2 (t2.ExitType(),EExitKill);
459 if (s2.Int()!=KErrNotFound)
460 test2 (s2.Int(),KErrNone);
465 /////////////////////////////////////////////////////////
467 class Defect_EDNATHE_48AEZW
471 static const TDesC& Name();
474 const TDesC& Defect_EDNATHE_48AEZW::Name()
476 _LIT(KName,"EDNATHE_48AEZW");
480 @SYMTestCaseID SYSLIB-DBMS-CT-0585
481 @SYMTestCaseDesc Tests for defect number EDNATHE_48AEZW
482 @SYMTestPriority Medium
483 @SYMTestActions Tests for navigation and deletion
484 @SYMTestExpectedResults Test must not fail
487 void Defect_EDNATHE_48AEZW::TestL()
489 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0585 "));
490 Print(_S("Set up database"));
491 test2 (TheDatabase.Replace(TheFs,KTestDatabase),KErrNone);
492 test2 (TheDatabase.Begin(),KErrNone);
493 test2 (TheDatabase.Execute(_L("create table A (id counter)")),KErrNone);
495 test2 (v1.Prepare(TheDatabase,_L("select * from A"),v1.EInsertOnly),KErrNone);
496 test2 (v1.EvaluateAll(),KErrNone);
497 for (TInt ii=0;ii<4;++ii)
502 test2 (TheDatabase.Commit(),KErrNone);
505 Print(_S("test navigation"));
506 test2 (v1.Prepare(TheDatabase,_L("select * from A where id=0")),KErrNone);
507 test2 (v1.EvaluateAll(),KErrNone);
510 test2 (v2.Prepare(TheDatabase,_L("select * from A where id=1")),KErrNone);
511 test2 (v2.EvaluateAll(),KErrNone);
514 TRAPD(r, v1.NextL());
519 Print(_S("test deletion"));
521 test2 (v2.Prepare(TheDatabase,_L("select * from A where id=2")),KErrNone);
522 test2 (v2.EvaluateAll(),KErrNone);
525 TRAP(r,v1.DeleteL());
536 /////////////////////////////////////////////////////////
538 static void NextTest(const TDesC& aName)
541 buf=_S("Checking Defect ");
546 template <typename T>
551 const TDesC& name = T::Name();
555 Print(_S("Defect fixed"));
559 LOCAL_C void setupTestDirectory()
561 // Prepare the test directory.
564 TInt r=TheFs.Connect();
567 r=TheFs.MkDir(KTestDatabase);
568 test(r==KErrNone || r==KErrAlreadyExists);
571 LOCAL_C void setupCleanup()
573 // Initialise the cleanup stack.
576 TheTrapCleanup=CTrapCleanup::New();
577 test(TheTrapCleanup!=NULL);
580 for (TInt i=KTestCleanupStack;i>0;i--)\
581 CleanupStack::PushL((TAny*)0);\
582 CleanupStack::Pop(KTestCleanupStack);\
587 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
590 TInt err = fsSession.Connect();
594 if(fsSession.Entry(aFullName, entry) == KErrNone)
596 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
597 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
600 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
602 err = fsSession.Delete(aFullName);
605 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
612 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
616 GLDEF_C TInt E32Main()
618 // Test streaming conversions.
623 setupTestDirectory();
626 test.Start(_L("Verifying defect fixes"));
627 RunTest<Defect_COMBBAR_463J5D>();
628 // The following short delay is needed for ccover builds only.
629 // Without the pause, the kernel scheduler would intermittently
630 // crash 0.3s after the last test ended.
632 test.Printf(_L("Resume test after delay.\n"));
634 RunTest<Defect_394751>();
636 test.Printf(_L("Resume test after delay.\n"));
638 RunTest<Defect_590829>();
640 test.Printf(_L("Resume test after delay.\n"));
642 RunTest<Defect_071149>();
644 test.Printf(_L("Resume test after delay.\n"));
646 RunTest<Defect_EDNATHE_48AEZW>();
648 // clean up data files used by this test - must be done before call to End() - DEF047652
649 ::DeleteDataFile(KTestDatabase);
653 delete TheTrapCleanup;