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.
23 LOCAL_D RTest test(_L("t_dbsrv: Test DBMS server"));
24 LOCAL_D CTrapCleanup* TheTrapCleanup;
27 LOCAL_D RDbNamedDatabase TheDatabase;
28 LOCAL_D RDbTable TheTable;
29 LOCAL_D RDbView TheView;
31 const TInt KTestCleanupStack=0x40;
32 const TPtrC KTestDatabase(_S("c:\\dbms-tst\\share.db"));
33 const TPtrC KTestFormat(_S(""));
34 const TPtrC KTable1(_S("Table1"));
35 const TPtrC KTable2(_S("Table2"));
36 const TInt KRowCount=1000;
37 const TUint KExitDelay=6*0x100000; // ~6 seconds
39 const TPtrC KCreateTable1=_S("CREATE TABLE Table1 (Id INTEGER,Name CHAR(200),Memo LONG VARCHAR,Memo2 LONG VARBINARY)");
40 const TPtrC KCreateTable2=_S("CREATE TABLE Table2 (Id INTEGER,Name CHAR(200),Memo LONG VARCHAR)");
41 const TPtrC KDropTable1=_S("DROP TABLE Table1");
42 const TPtrC KDropTable2=_S("DROP TABLE Table2");
44 _LIT(KTestSpdFile1, "c:\\dbms-tst\\11335577.spd");
45 _LIT(KTestSpdFile2, "c:\\dbms-tst\\11335578.spd");
46 _LIT(KTestSpdFile3, "c:\\dbms-tst\\11335579.spd");
47 _LIT(KTestSpdFile4, "c:\\dbms-tst\\1133557A.spd");
49 const TInt KReturnValueForCompare = 10;
50 const TInt KReturnValueForFind = 20;
55 void Start(const TDesC& aDes);
61 static TTimer TheTimer;
63 void TTimer::Start(const TDesC& aDes)
65 test.Printf(_L(" %S: "),&aDes);
66 iTicks=User::FastCounter();
71 TUint ticks = User::FastCounter() - iTicks;
73 test(HAL::Get(HAL::EFastCounterFrequency, freq) == KErrNone);
74 const TInt KMicroSecIn1Sec = 1000000;
75 const TInt KMsIn1Sec = 1000;
76 double v = ((double)ticks * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
77 test.Printf(_L("%d ms\r\n"),v2/KMsIn1Sec);
80 void DeleteTestFiles()
82 (void)TheFs.Delete(KTestDatabase);
83 (void)TheFs.Delete(KTestSpdFile1);
84 (void)TheFs.Delete(KTestSpdFile2);
85 (void)TheFs.Delete(KTestSpdFile3);
86 (void)TheFs.Delete(KTestSpdFile4);
89 void Check(TInt aValue,TInt aExpected,TInt aLine)
91 if (aValue!=aExpected)
94 test.Printf(_L("*** Expected %d: got %d\r\n"),aExpected,aValue);
95 test.operator()(EFalse,aLine);
98 #define test2(a,b) Check(a,b,__LINE__)
100 LOCAL_C void Connect()
102 test2(TheDbs.Connect(),KErrNone);
103 TheDbs.ResourceMark();
106 LOCAL_C void Disconnect()
108 TheDbs.ResourceCheck();
112 LOCAL_C void Execute(const TDesC& aSql)
114 test2 (TheDatabase.Execute(aSql),KErrNone);
117 LOCAL_C void WriteRecordsL(TInt aCount)
119 TheTimer.Start(_L("writing"));
123 for (TInt ii=0;ii<aCount;++ii)
129 TheTable.SetColL(1,jj);
131 TheTable.SetColL(2,text);
134 test2 (TheDatabase.Commit(),KErrNone);
138 LOCAL_C void Ipc(TInt aCount)
140 TheTimer.Start(_L("ipc"));
142 TheDatabase.InTransaction();
146 LOCAL_C void LoopL(RDbTable::TPosition aDirection)
148 TheTimer.Start(_L("loop"));
150 while (TheTable.GotoL(aDirection))
152 test2 (cc,TheTable.CountL());
156 LOCAL_C void IterateL(RDbTable::TPosition aDirection)
158 TheTimer.Start(_L("iterate"));
160 while (TheTable.GotoL(aDirection))
165 text.Num(TheTable.ColInt(1));
166 test (text==TheTable.ColDes(2));
168 test2 (cc,TheTable.CountL());
172 LOCAL_C void LocateL(const TDesC& aSql)
174 test2 (TheView.Prepare(TheDatabase,aSql),KErrNone);
175 test2 (TheView.EvaluateAll(),KErrNone);
176 TheTimer.Start(_L("locate"));
177 test (!TheView.NextL());
182 LOCAL_C void Locate1L()
184 LocateL(_L("select * from Table1 where id is null"));
187 LOCAL_C void Locate2L()
189 LocateL(_L("select * from Table1 where id = -12345"));
192 LOCAL_C TInt DeleteL()
194 TheTimer.Start(_L("deleting"));
197 TheTable.BeginningL();
198 while (TheTable.NextL())
203 test (TheTable.CountL()==0);
204 test (TheDatabase.Commit()==KErrNone);
209 LOCAL_C TInt DeleteSQL()
211 TheTimer.Start(_L("deleting [SQL]"));
212 TInt cc=TheDatabase.Execute(_L("delete from Table1"));
214 test (TheTable.CountL()==0);
219 LOCAL_C void BenchmarkL()
221 TInt r=TheTable.Open(TheDatabase,KTable1);
226 LoopL(TheTable.ENext);
228 IterateL(TheTable.ENext);
234 const TPtrC KSemaphore(_S("Connect-test"));
236 LOCAL_C TInt ConnectThread(TAny*)
239 s.OpenGlobal(KSemaphore,EOwnerThread);
243 User::After(0x100000);
252 @SYMTestCaseID SYSLIB-DBMS-CT-0605
253 @SYMTestCaseDesc Single and multiple database connection tests
254 @SYMTestPriority Medium
255 @SYMTestActions Setup a DBMS server session Search the server for pattern matching
256 @SYMTestExpectedResults Test must not fail
259 LOCAL_C void TestConnect()
261 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0605 Single connection "));
262 test (TheDbs.Connect()==KErrNone);
264 test.Next(_L("Deferred exit"));
265 TFindServer find(_L("!DBMS server"));
267 test2 (find.Next(result),KErrNone);
268 test.Next(_L("Multiple connection"));
271 test2 (dbs.Connect(),KErrNone);
274 test.Next(_L("Deferred exit"));
275 find.Find(_L("!DBMS server"));
276 test2 (find.Next(result),KErrNone);
277 User::After(KExitDelay);
278 find.Find(_L("!DBMS server"));
279 test2 (find.Next(result),KErrNotFound);
280 test.Next(_L("multiple thread connections"));
282 test2 (s.CreateGlobal(KSemaphore,0,EOwnerThread),KErrNone);
284 test2 (t.Create(KSemaphore,ConnectThread,0x2000,0x1000,0x10000,0,EOwnerThread),KErrNone);
293 User::WaitForRequest(st);
294 test2 (TheDbs.ResourceCount(),0);
296 test.Next(_L("Deferred exit"));
297 find.Find(_L("!DBMS server"));
298 test2 (find.Next(result),KErrNone);
299 User::After(KExitDelay);
300 find.Find(_L("!DBMS server"));
301 test2 (find.Next(result),KErrNotFound);
306 @SYMTestCaseID SYSLIB-DBMS-CT-0606
307 @SYMTestCaseDesc Tests for benchmark
308 @SYMTestPriority Medium
309 @SYMTestActions Tests for creating database and writing a table.Test for no error conditions.
310 @SYMTestExpectedResults Test must not fail
313 LOCAL_C void TestBenchL()
315 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0606 Create database "));
316 TInt r=TheDatabase.Replace(TheFs,KTestDatabase,KTestFormat);
318 Execute(KCreateTable1);
319 test.Next(_L("write table"));
320 r=TheTable.Open(TheDatabase,KTable1);
322 WriteRecordsL(KRowCount);
324 test.Next(_L("BenchmarkL"));
325 TRAPD(errCode, BenchmarkL());
326 test(errCode == KErrNone);
327 test.Next(_L("Open server-side"));
330 r=TheDatabase.Open(TheDbs,KTestDatabase);
332 test.Next(_L("BenchmarkL"));
333 TRAP(errCode, BenchmarkL());
334 test(errCode == KErrNone);
335 test.Next(_L("Wrap up"));
342 @SYMTestCaseID SYSLIB-DBMS-CT-0607
343 @SYMTestCaseDesc Tests for opening a shared database
344 @SYMTestPriority Medium
345 @SYMTestActions Tests for database open,column type,write and drop table
346 @SYMTestExpectedResults Test must not fail
349 LOCAL_C void TestOpenL()
351 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0607 Create database "));
352 test2 (TheDatabase.Replace(TheFs,KTestDatabase,KTestFormat),KErrNone);
354 test.Next(_L("Open as shared"));
356 test2 (TheDatabase.Open(TheDbs,KTestDatabase),KErrNone);
357 Execute(KCreateTable1);
358 test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
359 test2 (TheTable.ColCount(),4);
360 test2 (TheTable.ColType(1),EDbColInt32);
361 test2 (TheTable.ColType(2),EDbColText);
362 test2 (TheTable.ColType(3),EDbColLongText);
363 test2 (TheTable.ColType(4),EDbColLongBinary);
364 delete TheTable.ColSetL();
365 test.Next(_L("write table"));
366 WriteRecordsL(KRowCount);
367 test.Next(_L("Check table"));
369 test (TheTable.AtBeginning());
370 test (!TheTable.AtRow());
371 test (!TheTable.AtEnd());
372 test2 (TheTable.CountL(),KRowCount);
373 IterateL(TheTable.ENext);
374 test (!TheTable.AtBeginning());
375 test (!TheTable.AtRow());
376 test (TheTable.AtEnd());
377 test.Next(_L("Delete rows"));
378 test2 (DeleteL(),KRowCount);
380 test.Next(_L("Drop table"));
381 Execute(KDropTable1);
388 @SYMTestCaseID SYSLIB-DBMS-CT-0608
389 @SYMTestCaseDesc Tests for database locking
390 @SYMTestPriority Medium
391 @SYMTestActions Tests for shared,exclusive locks on database
392 @SYMTestExpectedResults Test must not fail
395 LOCAL_C void TestLocking()
399 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0608 Open databases "));
401 test2 (TheDatabase.Open(TheDbs,KTestDatabase),KErrNone);
402 test2 (db.Open(TheDbs,KTestDatabase,KTestFormat),KErrNone);
404 test2 (ob.Open(TheDatabase),KErrNone);
406 test.Next(_L("Shared locks"));
408 ob.NotifyUnlock(stat);
409 test2 (TheDatabase.Begin(),KErrNone);
410 test2 (db.Begin(),KErrNone);
411 test2 (TheDatabase.Commit(),KErrNone);
413 test2 (stat.Int(),KRequestPending); // should not report yet
414 test2 (db.Commit(),KErrNone);
415 User::WaitForRequest(stat);
416 test2 (stat.Int(),ob.EUnlock);
418 test.Next(_L("Exclusive locks"));
419 ob.NotifyUnlock(stat);
420 test2 (TheDatabase.Begin(),KErrNone);
421 test2 (db.Begin(),KErrNone);
422 test2 (TheDatabase.Execute(KCreateTable1),KErrLocked); // cannot acquire
423 test2 (db.Commit(),KErrNone); // release lock
424 test2 (TheDatabase.Execute(KCreateTable1),KErrNone); // upgrade to X-lock
425 test2 (db.Begin(),KErrLocked); // cannot share
426 test2 (TheTable.Open(db,KTable1),KErrNone);
427 TRAP(r,TheTable.InsertL()); // cannot lock
428 test2 (r,KErrLocked);
430 test2 (db.Execute(KDropTable1),KErrLocked); // cannot lock
431 test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
432 TRAP(r,TheTable.InsertL()); // we own the lock
436 test2 (TheDatabase.Execute(KDropTable1),KErrNone);
437 test2 (stat.Int(),KRequestPending); // no NotifyUnlock yet
438 test2 (TheDatabase.Commit(),KErrNone);
439 User::WaitForRequest(stat);
440 test2 (stat.Int(),ob.ECommit);
450 @SYMTestCaseID SYSLIB-DBMS-CT-0609
451 @SYMTestCaseDesc Tests for sharing a database
452 @SYMTestPriority Medium
453 @SYMTestActions Tests for opening a database more than once.
454 Tests the integrity of the table data
455 @SYMTestExpectedResults Test must not fail
458 LOCAL_C void TestShareL()
460 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0609 Open database "));
462 TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
464 Execute(KCreateTable1);
465 test.Next(_L("Open it again"));
467 test (db.Open(TheDbs,KTestDatabase,KTestFormat)==KErrNone);
468 test (TheTable.Open(db,KTable1)==KErrNone);
469 test2 (TheTable.ColCount(),4);
470 test2 (TheTable.ColType(1),EDbColInt32);
471 test2 (TheTable.ColType(2),EDbColText);
472 test2 (TheTable.ColType(3),EDbColLongText);
473 test2 (TheTable.ColType(4),EDbColLongBinary);
474 delete TheTable.ColSetL();
477 test.Next(_L("write table"));
478 test (TheTable.Open(TheDatabase,KTable1)==KErrNone);
479 WriteRecordsL(KRowCount);
481 test.Next(_L("Check table"));
484 test (TheTable.Open(TheDatabase,KTable1)==KErrNone);
485 test (TheTable.AtBeginning());
486 test (!TheTable.AtRow());
487 test (!TheTable.AtEnd());
488 test (TheTable.CountL()==KRowCount);
489 IterateL(TheTable.ENext);
490 test (!TheTable.AtBeginning());
491 test (!TheTable.AtRow());
492 test (TheTable.AtEnd());
493 test.Next(_L("Delete rows"));
494 test (DeleteSQL()==KRowCount);
496 test.Next(_L("Drop table"));
497 Execute(KDropTable1);
503 LOCAL_C void TestScenario1L()
505 test.Start(_L("Take stream-lock on client 2"));
506 test (TheView.FirstL());
508 RDbColReadStream rcol;
509 rcol.OpenLC(TheView,3);
510 test2 (rcol.ReadUint16L(),0);
511 test.Next(_L("Take a [shared] transaction-lock on client 1"));
512 test2 (TheDatabase.Begin(),KErrNone);
513 test.Next(_L("Attempt a write-lock on client 1"));
514 TRAPD(r,TheTable.InsertL());
515 test2 (r,KErrLocked);
516 test2 (rcol.ReadUint16L(),1);
517 test.Next(_L("Release locks on client 1 and then 2"));
518 TheDatabase.Rollback();
519 CleanupStack::PopAndDestroy(); // rcol
523 LOCAL_C void TestScenario2L()
525 test.Start(_L("Take stream-lock on client 2"));
526 test (TheView.FirstL());
528 RDbColReadStream rcol;
529 rcol.OpenLC(TheView,3);
530 test2 (rcol.ReadUint16L(),0);
531 test.Next(_L("Take a [shared] transaction-lock on client 1"));
532 test2 (TheDatabase.Begin(),KErrNone);
533 test.Next(_L("Attempt a write-lock on client 1"));
534 TRAPD(r,TheTable.InsertL());
535 test2 (r,KErrLocked);
536 test2 (rcol.ReadUint16L(),1);
537 test.Next(_L("Release client 2 stream-lock"));
538 CleanupStack::PopAndDestroy(); // rcol
539 test.Next(_L("Take write-lock on client 1"));
540 TheTable.InsertL(); // read-lock removed
541 test.Next(_L("release client 1 locks"));
543 TheDatabase.Rollback();
547 LOCAL_C void TestScenario3L(RDbDatabase& aClient2)
549 test.Start(_L("Take transaction-lock on client 1"));
550 test2 (TheDatabase.Begin(),KErrNone);
551 test.Next(_L("Take stream-lock on client 2"));
552 test (TheView.FirstL());
554 RDbColReadStream rcol;
555 rcol.OpenLC(TheView,3);
556 test2 (rcol.ReadUint16L(),0);
557 test.Next(_L("Release client 1 lock"));
558 TheDatabase.Rollback();
559 test.Next(_L("Take write-lock on client 2"));
560 RDbTable table2; // need a second cursor (cannot do insert with open streams)
561 test2 (table2.Open(aClient2,KTable1,table2.EInsertOnly),KErrNone);
562 TRAPD(r,table2.InsertL());
564 test.Next(_L("Release stream-lock"));
565 CleanupStack::PopAndDestroy();
566 test.Next(_L("Release write-lock"));
569 test.Next(_L("check the system is unlocked"));
570 test2 (TheDatabase.Begin(),KErrNone);
571 test2 (TheDatabase.Commit(),KErrNone);
575 LOCAL_C void TestScenario4L()
577 test.Start(_L("Take transaction-lock on client 1"));
578 test2 (TheDatabase.Begin(),KErrNone);
579 test.Next(_L("Take stream-lock on client 1"));
580 test (TheTable.FirstL());
582 RDbColReadStream rcol;
583 rcol.OpenLC(TheTable,3);
584 test2 (rcol.ReadUint16L(),0);
585 test.Next(_L("Take write-lock on client 1"));
586 RDbTable table2; // need a second cursor (cannot do insert with open streams)
587 test2 (table2.Open(TheDatabase,KTable1,table2.EInsertOnly),KErrNone);
588 TRAPD(r,table2.InsertL());
590 test.Next(_L("Release write-lock"));
593 test.Next(_L("Release stream-lock"));
594 CleanupStack::PopAndDestroy();
595 test.Next(_L("release transaction-lock"));
596 test2 (TheDatabase.Commit(),KErrNone);
600 LOCAL_C void TestScenario5L()
602 test.Start(_L("Begin compaction on client 1"));
605 test2 (inc.Compact(TheDatabase,s),KErrNone);
606 test.Next(_L("Attempt a stream-lock on client 2"));
607 test (TheView.FirstL());
609 RDbColReadStream rcol;
610 TRAPD(r,rcol.OpenL(TheView,3));
611 test (r==KErrLocked);
612 test.Next(_L("Attempt a stream-lock on client 1"));
613 TRAP(r,rcol.OpenL(TheTable,3));
614 test (r==KErrAccessDenied);
615 test.Next(_L("Release compaction lock"));
620 LOCAL_C void TestScenario6L()
622 test.Start(_L("Begin compaction on client 1 - open and read columns"));
627 test2 (inc.Compact(TheDatabase,s),KErrNone);
629 test.Next(_L("Attempt to open a table on client 1"));
630 TInt r=TheTable.Open(TheDatabase,KTable1);
633 //read short column data
636 TheTable.ColInt32(1);
638 // We cant write to tables
639 TRAP(r,TheTable.InsertL());
640 test (r==KErrAccessDenied);
642 RDbColReadStream rcol;
643 // We can't read long columns
646 TRAP(r, rcol.OpenL(TheTable,3));
647 test2 (r,KErrAccessDenied);
649 // can read other columns
650 TRAP(r, rcol.OpenL(TheTable,4));
654 test.Next(_L("Release compaction lock"));
659 LOCAL_C void TestScenario7L()
661 test.Start(_L("Open tables on client 1 - Begin compaction on client 1"));
664 test.Next(_L("Attempt to open a table on client 1"));
665 TInt r=TheTable.Open(TheDatabase,KTable1);
668 test.Next(_L("Begin compaction on client 1"));
671 test2 (inc.Compact(TheDatabase,s),KErrNone);
673 //read short column data
676 TheTable.ColInt32(1);
678 // We cant write to tables
679 TRAP(r,TheTable.InsertL());
680 test (r==KErrAccessDenied);
682 RDbColReadStream rcol;
686 TRAP(r, rcol.OpenL(TheTable,3));
687 test2 (r,KErrAccessDenied);
690 TRAP(r, rcol.OpenL(TheTable,4));
694 test.Next(_L("Release compaction lock"));
699 LOCAL_C void TestScenario8L()
701 test.Start(_L("Take update-lock on client 1"));
702 test2 (TheDatabase.Begin(),KErrNone);
704 test.Next(_L("Read blob without locking on client 2"));
705 test (TheView.FirstL());
707 RDbColReadStream rcol;
708 rcol.OpenLC(TheView,4); // 1K blob
709 test2 (rcol.ReadInt32L(),0);
710 CleanupStack::PopAndDestroy();
711 TRAPD(r,rcol.OpenL(TheView,3)); // 4K text blob
712 test2 (r,KErrLocked);
713 test.Next(_L("Release client 1 lock"));
715 TheDatabase.Rollback();
720 @SYMTestCaseID SYSLIB-DBMS-CT-0610
721 @SYMTestCaseDesc Tests for a defect on database
722 @SYMTestPriority Medium
723 @SYMTestActions Tests for database connection
724 @SYMTestExpectedResults Test must not fail
727 LOCAL_C void TestDefectL()
729 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0610 Build test database "));
731 TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
733 Execute(KCreateTable1);
734 test2 (TheTable.Open(TheDatabase,KTable1),KErrNone);
736 RDbColWriteStream wcol;
737 wcol.OpenLC(TheTable,3);
739 for (ii=0;ii<2048;++ii)
740 wcol.WriteUint16L(ii);
742 CleanupStack::PopAndDestroy();
743 wcol.OpenLC(TheTable,4);
744 for (ii=0;ii<256;++ii)
745 wcol.WriteInt32L(ii);
747 CleanupStack::PopAndDestroy();
750 test.Next(_L("open client 2 connection"));
752 test2 (db.Open(TheDbs,KTestDatabase,KTestFormat),KErrNone);
753 test2 (TheView.Prepare(db,_L("select * from Table1")),KErrNone);
754 test2 (TheView.EvaluateAll(),KErrNone);
756 test.Next(_L("Scenario 1"));
759 test.Next(_L("Scenario 2"));
762 test.Next(_L("Scenario 3"));
765 test.Next(_L("Scenario 4"));
768 test.Next(_L("Scenario 5"));
771 test.Next(_L("Scenario 6"));
774 test.Next(_L("Scenario 7"));
777 test.Next(_L("Scenario 8"));
781 test.Next(_L("tidy up"));
782 test2 (TheDatabase.Begin(),KErrNone);
786 Execute(KDropTable1);
787 test2 (TheDatabase.Commit(),KErrNone);
794 @SYMTestCaseID PDS-DBMS-CT-4002
795 @SYMTestCaseDesc Testing RDbIncremental API
796 @SYMTestPriority High
797 @SYMTestActions Executing SQL using RDbIncremental, Altering tables, creating and droping indexes
798 @SYMTestExpectedResults After execution Table should exist in DB, after altering, table colums should change,
799 creation of index should create index column in table, dropping index should remove
803 LOCAL_C void TestRDbIncrementalAPIL()
805 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4002 Testing RDbIncremental API"));
808 TInt err = TheDatabase.Open(TheDbs,KTestDatabase);
809 test2(err, KErrNone);
811 test.Next(_L("RDbIncremental API"));
815 test2(TheDatabase.Begin(), KErrNone);
816 err = inc.Execute(TheDatabase, KCreateTable2, step);
817 test2(err, KErrNone);
820 err = inc.Next(step);
821 test2(err, KErrNone);
825 test.Next(_L("AlterTable"));
826 CDbColSet* colSet = CDbColSet::NewLC();
827 colSet->AddL(TDbCol(_L("Id2"), EDbColUint32));
828 colSet->AddL(TDbCol(_L("Memo2"), EDbColText));
829 test2(colSet->Count(), 2);
830 err = inc.AlterTable(TheDatabase, KTable2, *colSet, step);
831 test2(err, KErrNone);
834 err = inc.Next(step);
835 test2(err, KErrNone);
838 err = TheDatabase.Commit();
839 test2(err, KErrNone);
841 test.Next(_L("CreateIndex"));
842 TDbKeyCol kcol(_L("Id2"), TDbKeyCol::EAsc);
843 CDbKey* key = CDbKey::NewLC();
844 test2(TheDatabase.Begin(), KErrNone);
846 err = inc.CreateIndex(TheDatabase, _L("Id2"), KTable2, *key, step);
847 test2(err, KErrNone);
850 err = inc.Next(step);
851 test2(err, KErrNone);
855 test.Next(_L("DropIndex"));
856 err = inc.DropIndex(TheDatabase, _L("Id2"), KTable2, step);
857 test2(err, KErrNone);
860 err = inc.Next(step);
861 test2(err, KErrNone);
864 err = inc.Execute(TheDatabase, KDropTable2, step);
865 test2(err, KErrNone);
868 err = inc.Next(step);
869 test2(err, KErrNone);
871 err = TheDatabase.Commit();
872 test2(err, KErrNone);
875 CleanupStack::PopAndDestroy(2);
883 @SYMTestCaseID PDS-DBMS-CT-4003
884 @SYMTestCaseDesc Testing RDbUpdate API
885 @SYMTestPriority High
886 @SYMTestActions Executing DML command using RDbUpdate, checking if rowCount working properly
887 @SYMTestExpectedResults After DML execution, rowCount should return proper number of afected rows.
890 LOCAL_C void TestRDbUpdate()
892 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4003 Testing RDbUpdate API"));
893 _LIT(DMLinsert, "INSERT INTO Table2 VALUES (2,'Mietek', 'Mietek ma kota')");
896 TInt err = TheDatabase.Open(TheDbs,KTestDatabase);
897 test2(err, KErrNone);
899 err = TheDatabase.Begin();
900 test2(err, KErrNone);
902 err = TheDatabase.Execute(KCreateTable2, EDbCompareNormal);
903 test(err >= KErrNone);
906 err = update.Execute(TheDatabase, DMLinsert, EDbCompareNormal );
908 RDebug::Printf("Error on Execute %d",err);
909 test2(err, KErrNone);
911 TInt rows = update.RowCount();
912 RDebug::Printf("Afected rows %d",rows);
916 err = TheDatabase.Commit();
917 test2(err, KErrNone);
925 @SYMTestCaseID PDS-DBMS-CT-4004
926 @SYMTestCaseDesc Testing RDbRow API
927 @SYMTestPriority High
928 @SYMTestActions Test for construction functions for RDbRow
929 @SYMTestExpectedResults After Creation/Opening row should be a valid object.
932 LOCAL_C void TestRDbRowL()
934 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4004 Testing RDbRow API"));
935 const TInt KRowSize = 300;
936 const TInt KRealRowSize = 512;
939 row.CreateL(KRowSize);
940 RDebug::Printf("Rows %d %d",row.Size(), row.MaxSize() );
941 test2(row.MaxSize(), KRealRowSize);
942 TAny* rptr = row.First();
945 row2.Open(rptr, KRowSize, 2*KRowSize);
946 RDebug::Printf("Row2s %d %d", KRowSize, row2.MaxSize());
947 test2(row2.Size(), KRowSize);
948 test2(row2.MaxSize(), 2*KRowSize);
955 * Helper function for SYSLIB-DBMS-CT-4005 Testing TTextOps API
957 LOCAL_C TInt HelperCompareForTestTTextOps(const TText8*,TInt,const TText8*,TInt)
959 return KReturnValueForCompare;
962 * Helper function for SYSLIB-DBMS-CT-4005 Testing TTextOps API
964 LOCAL_C TInt HelperFindForTestTTextOps(const TDesC8&,const TText8*,TInt)
966 return KReturnValueForFind;
969 @SYMTestCaseID PDS-DBMS-CT-4005
970 @SYMTestCaseDesc Testing TTextOps API
971 @SYMTestPriority High
972 @SYMTestActions Test for Compare and Find functions for TTextOps
973 @SYMTestExpectedResults Test if those functions really calling proper targets.
976 LOCAL_C void TestTTextOps()
978 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4005 Testing TTextOps API"));
981 text.iCompare8 = HelperCompareForTestTTextOps;
982 text.iFind8 = HelperFindForTestTTextOps;
983 TInt ret = text.Compare(_L8("Ala ma kota"), _L8("Ala ma konia"));
984 test2(ret, KReturnValueForCompare);
985 ret = text.Find(_L8("Ala ma kota"), _L8("ma ko"));
986 test2(ret, KReturnValueForFind);
991 #if defined __WINS__ || defined __WINSCW__
993 LOCAL_C TInt ExecuteRemoteL(const TDesC& aCommand, const TDesC& aCommandLineArg)
996 User::LeaveIfError(process.Create(aCommand, aCommandLineArg));
998 TRequestStatus status;
999 process.Logon(status);
1002 User::WaitForRequest(status);
1003 TInt exitReason = process.ExitReason();
1006 User::LeaveIfError(exitReason);
1011 #endif //defined __WINS__ || defined __WINSCW__
1014 @SYMTestCaseID PDS-DBMS-CT-4007
1015 @SYMTestCaseDesc Testing SPConv - This test case uses the Edbsconv tool
1016 so therefore only runs on WINSCW builds
1017 @SYMTestPriority High
1018 @SYMTestActions Launch the external tool to generate SPD files
1019 @SYMTestExpectedResults Should produce SPD files and report no errors
1022 LOCAL_C void TestSPConvL()
1024 test.Start(_L(" @SYMTestCaseID:PDS-DBMS-CT-4007 Testing SPConv"));
1026 #if defined __WINS__ || defined __WINSCW__
1028 _LIT(KRomTxtFile1, "z:\\test\\11335577.txt");
1029 _LIT(KRomTxtFile2, "z:\\test\\11335578.txt");
1030 _LIT(KRomTxtFile3, "z:\\test\\11335579.txt");
1031 _LIT(KRomTxtFile4, "z:\\test\\1133557A.txt");
1032 _LIT(KCommand,"Edbspconv");
1033 _LIT(KCommandParameter, " /f=%S /b=%S /s");
1035 TBuf<200> commandParameter;
1037 test.Next(_L("Create SPD File from \"11335577.txt\""));
1038 commandParameter.Format(KCommandParameter, &KRomTxtFile1, &KTestSpdFile1);
1039 ExecuteRemoteL(KCommand, commandParameter);
1041 test.Next(_L("Create SPD File from \"11335578.txt\""));
1042 commandParameter.Format(KCommandParameter, &KRomTxtFile2, &KTestSpdFile2);
1043 ExecuteRemoteL(KCommand, commandParameter);
1045 test.Next(_L("Create SPD File from \"11335579.txt\""));
1046 commandParameter.Format(KCommandParameter, &KRomTxtFile3, &KTestSpdFile3);
1047 ExecuteRemoteL(KCommand, commandParameter);
1049 test.Next(_L("Create SPD File from \"1133557A.txt\""));
1050 commandParameter.Format(KCommandParameter, &KRomTxtFile4, &KTestSpdFile4);
1051 ExecuteRemoteL(KCommand, commandParameter);
1054 RDebug::Print(_L("Testing SPConv - This test case cannot run on hardware"));
1057 test.Next(_L("End"));
1063 @SYMTestCaseID SYSLIB-DBMS-CT-0611
1064 @SYMTestCaseDesc Tests the behaviour of observers
1065 @SYMTestPriority Medium
1066 @SYMTestActions Tests for DDL,DML
1067 @SYMTestExpectedResults Test must not fail
1070 LOCAL_C void TestObserverL()
1072 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0611 Single connection/observer "));
1074 TInt r=TheDatabase.Open(TheDbs,KTestDatabase);
1077 r=ob.Open(TheDatabase);
1080 test.Next(_L("Cancel"));
1081 TRequestStatus stat;
1082 ob.NotifyUnlock(stat);
1083 test (stat==KRequestPending);
1085 User::WaitForRequest(stat);
1086 test (stat==KErrCancel);
1088 test.Next(_L("Close"));
1089 ob.NotifyUnlock(stat);
1090 test (stat==KRequestPending);
1092 User::WaitForRequest(stat);
1093 test (stat==KErrCancel);
1095 test.Next(_L("DDL"));
1096 r=ob.Open(TheDatabase);
1098 ob.NotifyUnlock(stat);
1099 test (stat==KRequestPending);
1100 Execute(KCreateTable1);
1101 User::WaitForRequest(stat);
1102 test (stat==ob.ECommit);
1104 test.Next(_L("DML"));
1105 ob.NotifyUnlock(stat);
1106 test (stat==KRequestPending);
1107 r=TheTable.Open(TheDatabase,KTable1);
1110 User::WaitForRequest(stat);
1111 test (stat==ob.ECommit);
1113 test.Next(_L("Locked read"));
1114 ob.NotifyUnlock(stat);
1115 TheDatabase.Begin();
1116 test (stat==KRequestPending);
1117 TheDatabase.Commit();
1118 User::WaitForRequest(stat);
1119 test (stat==ob.EUnlock);
1121 test.Next(_L("Database closed"));
1122 ob.NotifyUnlock(stat);
1124 TheDatabase.Close();
1125 User::WaitForRequest(stat);
1126 test (stat==ob.EClose);
1127 ob.NotifyUnlock(stat);
1128 User::WaitForRequest(stat);
1129 test (stat==ob.EClose);
1131 test.Next(_L("Re-open database"));
1132 r=TheDatabase.Open(TheDbs,KTestDatabase);
1134 ob.NotifyUnlock(stat);
1135 User::WaitForRequest(stat);
1136 test (stat==ob.EClose);
1139 test.Next(_L("Multiple connections and observers"));
1140 r=ob.Open(TheDatabase);
1142 RDbNamedDatabase db2;
1143 r=db2.Open(TheDbs,KTestDatabase);
1149 test.Next(_L("Cancel"));
1150 ob.NotifyUnlock(stat);
1151 TRequestStatus stat2;
1152 ob2.NotifyUnlock(stat2);
1153 test (stat==KRequestPending);
1155 User::WaitForRequest(stat);
1156 test (stat==KErrCancel);
1157 test (stat2==KRequestPending);
1159 User::WaitForRequest(stat2);
1160 test (stat2==KErrCancel);
1162 test.Next(_L("Close"));
1163 ob.NotifyUnlock(stat);
1164 ob2.NotifyUnlock(stat2);
1165 test (stat2==KRequestPending);
1167 User::WaitForRequest(stat2);
1168 test (stat2==KErrCancel);
1169 test (stat==KRequestPending);
1171 User::WaitForRequest(stat);
1172 test (stat==KErrCancel);
1174 test.Next(_L("NotifyChange"));
1175 r=ob.Open(TheDatabase);
1179 ob.NotifyUnlock(stat);
1180 ob2.NotifyChange(stat2);
1181 TheDatabase.Begin();
1182 r=TheDatabase.Commit();
1184 User::WaitForRequest(stat);
1185 test (stat==ob.EUnlock);
1186 test (stat2==KRequestPending);
1187 ob.NotifyUnlock(stat);
1191 User::WaitForRequest(stat);
1192 test (stat==ob.EUnlock);
1193 test (stat2==KRequestPending);
1194 Execute(KDropTable1);
1195 User::WaitForRequest(stat2);
1196 test (stat2==ob.ECommit);
1198 test.Next(_L("missed event"));
1199 ob.NotifyUnlock(stat);
1200 User::WaitForRequest(stat);
1201 test (stat==ob.ECommit);
1203 test.Next(_L("database close"));
1204 ob.NotifyUnlock(stat);
1205 test (stat==KRequestPending);
1206 ob2.NotifyUnlock(stat2);
1207 test (stat2==KRequestPending);
1208 TheDatabase.Close();
1209 User::After(0x20000); // ~.1s
1210 test (stat==KRequestPending);
1211 test (stat2==KRequestPending);
1213 User::WaitForRequest(stat);
1214 test (stat==ob.EClose);
1215 User::WaitForRequest(stat2);
1216 test (stat2==ob.EClose);
1217 ob.NotifyUnlock(stat);
1218 User::WaitForRequest(stat);
1219 test (stat==ob.EClose);
1222 ob2.NotifyUnlock(stat2);
1223 User::WaitForRequest(stat2);
1224 test (stat2==ob.EClose);
1232 LOCAL_C void setupTestDirectory()
1234 // Prepare the test directory.
1237 TInt r=TheFs.Connect();
1240 r=TheFs.MkDir(KTestDatabase);
1241 test(r==KErrNone || r==KErrAlreadyExists);
1244 LOCAL_C void setupCleanup()
1246 // Initialise the cleanup stack.
1249 TheTrapCleanup=CTrapCleanup::New();
1250 test(TheTrapCleanup!=NULL);
1253 for (TInt i=KTestCleanupStack;i>0;i--)\
1254 CleanupStack::PushL((TAny*)0);\
1255 CleanupStack::Pop(KTestCleanupStack);\
1260 LOCAL_C void KillDbmsServer()
1262 _LIT(KDbmsServer,"edbsrv.exe");
1264 TBuf<64> pattern(KDbmsServer);
1265 TInt length = pattern.Length();
1267 TFindProcess procFinder(pattern);
1269 while (procFinder.Next(name) == KErrNone)
1271 if (name.Length() > length)
1272 {//If found name is a string containing aProcessName string.
1273 TChar c(name[length]);
1274 if (c.IsAlphaDigit() ||
1278 // If the found name is other valid application name
1279 // starting with aProcessName string.
1280 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
1285 if (proc.Open(name) == KErrNone)
1288 //RDebug::Print(_L("\"%S\" process killed.\n"), &name);
1295 TVersionName n=RDbs::Version().Name();
1296 test.Printf(_L("DBMS server v%S\n"),&n);
1298 test.Start(_L("Connection"));
1301 test.Next(_L("Open Database"));
1302 TRAP(r,TestOpenL());
1305 test.Next(_L("test defect"));
1306 TRAP(r,TestDefectL());
1309 test.Next(_L("Share Database"));
1310 TRAP(r,TestShareL());
1313 test.Next(_L("Locking"));
1314 TRAP(r,TestLocking());
1317 test.Next(_L("Observers"));
1318 TRAP(r,TestObserverL());
1321 test.Next(_L("Benchmarks"));
1322 TRAP(r,TestBenchL());
1325 test.Next(_L("RDbIncremental"));
1326 TRAP(r, TestRDbIncrementalAPIL() );
1329 test.Next(_L("RDbUpdate"));
1332 test.Next(_L("RDbRow"));
1333 TRAP(r, TestRDbRowL() );
1336 test.Next(_L("TTextOpsL"));
1339 test.Next(_L("TestSPConvL"));
1340 TRAP(r, TestSPConvL() );
1341 test2 (r, KErrNone);
1343 test.Next(_L("Waiting for server exit"));
1347 GLDEF_C TInt E32Main()
1349 // Test streaming conversions.
1355 setupTestDirectory();
1360 delete TheTrapCleanup;