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.
16 // MSVC++ up to 5.0 has problems with expanding inline functions
17 // This disables the mad warnings for the whole project
18 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
19 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
31 void Start(const TDesC& aDes);
37 LOCAL_D RTest test(_L("t_dbbig - Test Large DBMS objects"));
38 LOCAL_D CTrapCleanup* TheTrapCleanup;
39 LOCAL_D CFileStore* TheStore;
40 LOCAL_D RDbStoreDatabase TheDatabase;
41 LOCAL_D RDbTable TheTable;
44 const TInt KTestCleanupStack=0x20;
45 const TPtrC KTestDir=_L("C:\\DBMS-TST\\");
46 const TPtrC KTestFile=_L("T_BIG.DB");
47 const TPtrC KTableName(_S("table"));
48 const TPtrC KIndexText=_S("text");
49 const TPtrC KIndexInt=_S("int");
50 const TPtrC KColumnText=_S("text");
51 const TPtrC KColumnInt=_S("int");
52 const TPtrC KIncFormat=_S("%5d\r");
53 const TInt KRecords=1000;
54 const TPtrC KOtherTable=_S("extra");
56 static TTimer TheTimer;
58 void TTimer::Start(const TDesC& aDes)
60 test.Printf(_L(" %S: "),&aDes);
61 iTicks=User::FastCounter();
66 TUint ticks = User::FastCounter() - iTicks;
68 test(HAL::Get(HAL::EFastCounterFrequency, freq) == KErrNone);
69 const TInt KMicroSecIn1Sec = 1000000;
70 const TInt KMsIn1Sec = 1000;
71 double v = ((double)ticks * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
72 test.Printf(_L("%d ms\r\n"),v2/KMsIn1Sec);
76 @SYMTestCaseID SYSLIB-DBMS-CT-1309
77 @SYMTestCaseDesc Create the database-in-a-store
78 @SYMTestPriority Medium
79 @SYMTestActions Calls up RDbStoreDatabase::CreateL() function
80 @SYMTestExpectedResults Test must not fail
83 LOCAL_C void CreateDatabaseL()
85 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1309 "));
86 CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,KTestFile,EFileRead|EFileWrite);
87 store->SetTypeL(KPermanentFileStoreLayoutUid);
89 id=TheDatabase.CreateL(store);
97 @SYMTestCaseID SYSLIB-DBMS-CT-1310
98 @SYMTestCaseDesc Open the database-in-a-store
99 @SYMTestPriority Medium
100 @SYMTestActions Call up RDbStoreDatabase::OpenL()
101 @SYMTestExpectedResults Test must not fail
104 LOCAL_C void OpenDatabaseL()
106 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1310 "));
107 CFileStore* store=CPermanentFileStore::OpenLC(TheFs,KTestFile,EFileRead|EFileWrite);
108 TheDatabase.OpenL(store,store->Root());
114 @SYMTestCaseID SYSLIB-DBMS-CT-1311
115 @SYMTestCaseDesc Close the database in store
116 @SYMTestPriority Medium
117 @SYMTestActions Test for RDbStoreDatabase::Close() function
118 @SYMTestExpectedResults Test must not fail
121 LOCAL_C void CloseDatabase()
123 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1311 "));
128 LOCAL_C void CreateTableL()
130 CDbColSet *cs=CDbColSet::NewLC();
131 TDbCol col1(KColumnInt,EDbColInt32);
132 col1.iAttributes=TDbCol::ENotNull;
134 TDbCol col2(KColumnText,EDbColText,200/sizeof(TText));
135 col2.iAttributes=TDbCol::ENotNull;
137 test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
138 CleanupStack::PopAndDestroy();
141 LOCAL_C void WriteRecordsL(TInt aCount)
145 for (TInt ii=0;ii<aCount;++ii)
151 TheTable.SetColL(1,jj);
153 TheTable.SetColL(2,text);
159 @SYMTestCaseID SYSLIB-DBMS-CT-1312
160 @SYMTestCaseDesc Create a table in database
161 @SYMTestPriority Medium
162 @SYMTestActions Build a table and write records into the table.Test for commiting the transactions.
163 @SYMTestExpectedResults Test must not fail
166 LOCAL_C void BuildTableL(TInt aCount)
168 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1312 "));
169 TheTimer.Start(_L("build"));
172 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
173 WriteRecordsL(aCount);
174 test(TheDatabase.Commit()==KErrNone);
180 @SYMTestCaseID SYSLIB-DBMS-CT-1313
181 @SYMTestCaseDesc Tests for total rows in the rowset
182 @SYMTestPriority Medium
183 @SYMTestActions Iterate through the table.Test for the total numbers of rows available
184 @SYMTestExpectedResults Test must not fail
187 LOCAL_C void IterateL(RDbTable::TPosition aDirection)
189 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1313 "));
190 TheTimer.Start(_L("iterate"));
192 while (TheTable.GotoL(aDirection))
198 test(cc=TheTable.CountL());
202 @SYMTestCaseID SYSLIB-DBMS-CT-0580
203 @SYMTestCaseDesc Tests the database definition and enquiry functions
204 @SYMTestPriority Medium
205 @SYMTestActions Tests by setting an active index for the table.
206 @SYMTestExpectedResults Test must not fail
209 LOCAL_C void TestIndexL(const TDesC& aName,const CDbKey& aKey)
211 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0580 "));
212 TheTimer.Start(_L("build"));
213 test(TheDatabase.CreateIndex(aName,KTableName,aKey)==KErrNone);
215 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
216 test(TheTable.SetIndex(aName)==KErrNone);
217 IterateL(TheTable.ENext);
222 @SYMTestCaseID SYSLIB-DBMS-CT-0581
223 @SYMTestCaseDesc Tests the database definition and enquiry functions
224 @SYMTestPriority Medium
225 @SYMTestActions Tests for bookmark which saves the current location of a rowset.
226 @SYMTestExpectedResults Test must not fail
229 LOCAL_C void TestBookmarkL()
231 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0581 creating alien bookmark "));
232 CDbColSet* cs=CDbColSet::NewLC();
233 TDbCol col(_L("column"),EDbColUint8);
234 col.iAttributes=TDbCol::ENotNull+TDbCol::EAutoIncrement;
236 test (TheDatabase.CreateTable(KOtherTable,*cs)==KErrNone);
237 CleanupStack::PopAndDestroy();
239 test (extra.Open(TheDatabase,KOtherTable)==KErrNone);
242 TDbBookmark alien=extra.Bookmark();
245 test.Next(_L("Alien bookmark"));
246 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
247 TRAPD(r,TheTable.GotoL(alien));
248 test (r==KErrNotFound);
249 test (TheTable.SetIndex(KIndexInt)==KErrNone);
250 TRAP(r,TheTable.GotoL(alien));
251 test (r==KErrNotFound);
252 test (TheTable.SetIndex(KIndexText)==KErrNone);
253 TRAP(r,TheTable.GotoL(alien));
254 test (r==KErrNotFound);
256 test.Next(_L("Cross-view bookmarks"));
257 TheTable.LastL(); // indexed view
258 TheTable.PreviousL();
259 TDbBookmark mark=TheTable.Bookmark();
260 test (extra.Open(TheDatabase,KTableName)==KErrNone);
261 TRAP(r,extra.GotoL(mark));
263 test (extra.PreviousL());
264 TRAP(r,TheTable.GotoL(extra.Bookmark()));
268 test.Next(_L("Bookmark persistence"));
270 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
271 TRAP(r,TheTable.GotoL(mark));
275 test.Next(_L("Delete alien record"));
276 test (extra.Open(TheDatabase,KOtherTable)==KErrNone);
277 TRAP(r, extra.GotoL(mark));
278 test (r==KErrNotFound);
279 TRAP(r,extra.GotoL(alien));
282 TRAP(r,extra.GotoL(alien));
283 test (r==KErrNotFound);
286 test.Next(_L("Delete extra table"));
287 test (TheDatabase.DropTable(KOtherTable)==KErrNone);
288 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
289 TRAP(r,TheTable.GotoL(alien));
290 test (r==KErrNotFound);
297 @SYMTestCaseID SYSLIB-DBMS-CT-1314
298 @SYMTestCaseDesc Discarding indexes belonging to the table on database
299 @SYMTestPriority Medium
300 @SYMTestActions Tests for RDbIncremental::DropTable(),RDbIncremental::Next() function.
301 @SYMTestExpectedResults Test must not fail
304 LOCAL_C void BreakIndex()
306 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1314 "));
307 TheTimer.Start(_L("break"));
310 test(drop.DropTable(TheDatabase,KTableName,step)==KErrNone);
311 test(drop.Next(step)==KErrNone);
313 drop.Close(); // abort the drop
314 test(TheDatabase.IsDamaged());
319 @SYMTestCaseID SYSLIB-DBMS-CT-1315
320 @SYMTestCaseDesc Database recovery test
321 @SYMTestPriority Medium
322 @SYMTestActions Calls up RDbStoreDatabase::Recover() function
323 @SYMTestExpectedResults Test must not fail
326 LOCAL_C void Recover()
328 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1315 "));
329 TheTimer.Start(_L("recover"));
330 test(TheDatabase.Recover()==KErrNone);
332 test(!TheDatabase.IsDamaged());
336 @SYMTestCaseID SYSLIB-DBMS-CT-1316
337 @SYMTestCaseDesc Tests for dropping an index
338 @SYMTestPriority Medium
339 @SYMTestActions Drop an integer and text index from the table. Test for damage of database
340 @SYMTestExpectedResults Test must not fail
343 LOCAL_C void DropIndexes()
345 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1316 "));
346 TheTimer.Start(_L("drop Int[32]"));
347 test(TheDatabase.DropIndex(KIndexInt,KTableName)==KErrNone);
349 TheTimer.Start(_L("drop Text[200]"));
350 test(TheDatabase.DropIndex(KIndexText,KTableName)==KErrNone);
352 test(!TheDatabase.IsDamaged());
356 @SYMTestCaseID SYSLIB-DBMS-CT-1317
357 @SYMTestCaseDesc Deleting a table from the database
358 @SYMTestPriority Medium
359 @SYMTestActions Delete the rows from the rowset.Check for empty rows in the rowset.
360 @SYMTestExpectedResults Test must not fail
363 LOCAL_C void DeleteTableL()
365 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1317 "));
366 const TInt KTenthRecords=KRecords/10;
368 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
371 for (ii=0;ii<15;++ii)
377 TDbBookmark mark=TheTable.Bookmark();
379 TheDatabase.Commit();
382 TheTimer.Start(_L("delete table"));
383 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
385 TheTable.GotoL(mark);
387 for (ii=0;ii<KTenthRecords*2-16;++ii)
393 for (ii=0;ii<KTenthRecords*2;++ii)
395 TheTable.PreviousL();
398 TheTable.BeginningL();
399 for (ii=0;ii<KTenthRecords*3;++ii)
401 for (ii=0;ii<KTenthRecords*2;++ii)
406 for (ii=0;ii<KTenthRecords*2;++ii)
408 TheTable.PreviousL();
411 for (ii=0;ii<KTenthRecords;++ii)
416 for (ii=0;ii<KTenthRecords;++ii)
418 TheTable.PreviousL();
421 test (TheTable.CountL()==0);
422 test (!TheTable.NextL());
423 test (!TheTable.PreviousL());
424 test (TheDatabase.Commit()==KErrNone);
430 @SYMTestCaseID SYSLIB-DBMS-CT-0579
431 @SYMTestCaseDesc Tests the database definition and enquiry functions
432 @SYMTestPriority Medium
433 @SYMTestActions Executes the index and bookmark tests
434 @SYMTestExpectedResults Test must not fail
437 LOCAL_C void BigTestL()
439 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0579 Table "));
441 BuildTableL(KRecords);
442 test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
444 IterateL(TheTable.EPrevious);
445 TheTable.BeginningL();
446 IterateL(TheTable.ENext);
448 IterateL(TheTable.EPrevious);
450 test.Next(_L("Int32 Index"));
451 CDbKey *key=CDbKey::NewLC();
452 key->AddL(KColumnInt);
454 TestIndexL(KIndexInt,*key);
455 test.Next(_L("Text[200] Index"));
457 key->AddL(KColumnText);
459 TestIndexL(KIndexText,*key);
460 test.Next(_L("Bookmarks"));
462 test.Next(_L("Int32 Index"));
463 TheTimer.Start(_L("drop"));
464 test(TheDatabase.DropIndex(KIndexInt,KTableName)==KErrNone);
467 key->AddL(KColumnInt);
469 TestIndexL(KIndexInt,*key);
470 CleanupStack::PopAndDestroy();
471 test.Next(_L("Break & Recover"));
474 test.Next(_L("Drop Indexes"));
476 test.Next(_L("Delete all records"));
483 // Prepare the test directory.
485 LOCAL_C void setupTestDirectory()
487 TInt r=TheFs.Connect();
489 r=TheFs.MkDir(KTestDir);
490 test(r==KErrNone || r==KErrAlreadyExists);
491 r=TheFs.SetSessionPath(KTestDir);
496 // Initialise the cleanup stack.
498 LOCAL_C void setupCleanup()
500 TheTrapCleanup=CTrapCleanup::New();
501 test(TheTrapCleanup!=NULL);
504 for (TInt i=KTestCleanupStack;i>0;i--)\
505 CleanupStack::PushL((TAny*)0);\
506 CleanupStack::Pop(KTestCleanupStack);\
511 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
514 TInt err = fsSession.Connect();
518 if(fsSession.Entry(aFullName, entry) == KErrNone)
520 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
521 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
524 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
526 err = fsSession.Delete(aFullName);
529 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
536 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
541 // Test streaming conversions.
543 GLDEF_C TInt E32Main()
546 setupTestDirectory();
550 test.Start(_L("Standard database"));
554 // clean up data files used by this test - must be done before call to End() - DEF047652
555 _LIT(KTestDbName, "C:\\DBMS-TST\\T_BIG.DB");
556 ::DeleteDataFile(KTestDbName);
561 delete TheTrapCleanup;