Update contrib.
1 // Copyright (c) 1998-2010 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 const TInt KTestCleanupStack=0x20;
25 // This is a path specification and should not be used as is
26 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_SPAGE.DAT");
27 _LIT(KPageFilePath, "C:\\TestSTOR\\T_SPAGEFILE.PAG");
28 _LIT(KPageFilePathOnly, "C:\\TestSTOR\\");
30 LOCAL_D CTrapCleanup* TheTrapCleanup;
31 LOCAL_D RTest TheTest(_L("t_storpage"));
33 LOCAL_D CFileStore* TheStore;
35 ///////////////////////////////////////////////////////////////////////////////////////
36 ///////////////////////////////////////////////////////////////////////////////////////
37 //Tests macros and functions.
38 //If (!aValue) then the test will be panicked, the test data files will be deleted.
39 static void Check(TInt aValue, TInt aLine)
43 TheTest.Printf(_L("*** Boolean expression evaluated to false!\r\n"));
44 TheTest(EFalse, aLine);
47 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
48 static void Check(TInt aValue, TInt aExpected, TInt aLine)
50 if(aValue != aExpected)
52 TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
53 TheTest(EFalse, aLine);
56 //Use these to test conditions.
57 #define TEST(arg) ::Check((arg), __LINE__)
58 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
60 ///////////////////////////////////////////////////////////////////////////////////////
63 @SYMTestCaseID SYSLIB-STORE-CT-1178
64 @SYMTestCaseDesc TPagedSet functionality test
66 @SYMTestActions Tests for insert,delete,contains,with and without duplicates operations
67 @SYMTestExpectedResults Test must not fail
70 LOCAL_C void test1L(MPagePool& aPagePool)
72 const TInt KEntryCount=200;
74 TPagedSet<TInt32> set;
75 set.Connect(&aPagePool);
76 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1178 Insertion & Deletion "));
80 TEST2(set.Count(), 1);
81 TRAPD(r,set.InsertL(it));
82 TEST2(r, KErrAlreadyExists);
83 TEST2(set.Count(), 1);
84 TEST(set.ContainsL(it));
86 TEST2(set.Count(), 0);
87 TRAP(r,set.DeleteL(it));
88 TEST2(r, KErrNotFound);
89 TEST2(set.Count(), 0);
90 TEST(!set.ContainsL(it));
92 TheTest.Next(_L("No duplicates"));
94 for (ii=0;ii<KEntryCount;++ii)
99 for (ii=0;ii<KEntryCount;++ii)
102 TEST(set.ContainsL(it));
104 TEST2(set.Count(), KEntryCount);
106 TheTest.Next(_L("Empty the set"));
108 TEST2(set.Count(), 0);
109 for (ii=0;ii<KEntryCount;++ii)
112 TEST(!set.ContainsL(it));
120 inline TTest() {Mem::FillZ(this,sizeof(*this));}
122 TUint32 iPadding[14];
126 @SYMTestCaseID SYSLIB-STORE-CT-1179
127 @SYMTestCaseDesc Tests for large set of TUint32
128 @SYMTestPriority High
129 @SYMTestActions Tests for inserting,contains,iteration,deletion operations
130 @SYMTestExpectedResults Test must not fail
133 LOCAL_C void test2L(MPagePool& aPagePool)
135 const TInt KEntryCount=500;
137 TPagedSet<TTest> set;
138 set.Connect(&aPagePool);
141 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1179 Add items "));
144 for (ii=KEntryCount;ii>0;--ii)
146 jj=(jj+17)%KEntryCount;
150 TEST2(set.Count(), KEntryCount);
152 TheTest.Next(_L("Check contents"));
153 for (ii=0;ii<KEntryCount;++ii)
156 TEST(set.ContainsL(item));
159 TheTest.Next(_L("Iterate over items"));
160 TUint8 *checkMap=(TUint8*)User::AllocLC(KEntryCount);
161 Mem::FillZ(checkMap,KEntryCount);
162 TPagedSetIter<TTest> iter(set);
164 do ++checkMap[iter.AtL().iVal]; while (iter.NextL());
165 for (ii=0;ii<KEntryCount;++ii)
166 TEST2(checkMap[ii], 1);
167 CleanupStack::PopAndDestroy();
169 TheTest.Next(_L("Delete items"));
171 for (ii=KEntryCount;ii>KEntryCount/2;--ii)
173 jj=(jj+17)%KEntryCount;
177 TEST2(set.Count(), KEntryCount/2);
179 TheTest.Next(_L("Check contents"));
182 jj=(jj+17)%KEntryCount;
184 TEST(set.ContainsL(item));
187 for (ii=KEntryCount;ii>KEntryCount/2;--ii)
189 jj=(jj+17)%KEntryCount;
191 TEST(!set.ContainsL(item));
194 TheTest.Next(_L("Delete items"));
197 jj=(jj+17)%KEntryCount;
201 TEST2(set.Count(), 1);
203 TheTest.Next(_L("Check contents"));
204 jj=(jj+17)%KEntryCount;
205 TPagedSetBiIter<TTest> biter(set);
206 TEST(biter.FirstL());
207 TEST2(biter.AtL().iVal, jj);
208 TEST(!biter.NextL());
210 TEST2(biter.AtL().iVal ,jj);
211 TEST(!biter.PreviousL());
212 TPagedSetRIter<TTest> riter(set);
213 TEST(riter.ResetL());
214 TEST2(riter.AtL().iVal, jj);
215 TEST(!riter.NextL());
219 TEST(!iter.ResetL());
220 TEST2(set.Count(), 0);
226 @SYMTestCaseID SYSLIB-STORE-CT-1180
227 @SYMTestCaseDesc Streaming tests
228 @SYMTestPriority High
229 @SYMTestActions Tests for read and write operations on the streams
230 @SYMTestExpectedResults Test must not fail
233 LOCAL_C void test3L(RStorePagePool& aPool)
235 const TInt KEntryCount=1000;
236 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1180 Build set and stream out "));
237 aPool.Create(*TheStore);
238 TBool rc = aPool.HasAvailable();
240 rc = aPool.IsEmpty();
242 TStorePagePoolToken token2(TStorePagePoolToken::EEmpty);
243 token2 = aPool.Token();
244 rc = token2.IsEmpty();
246 rc = token2.HasAvailable();
249 TPagedSet<TInt32> set1;
250 set1.Connect(&aPool);
253 for (ii=0;ii<KEntryCount;ii++)
260 RStoreWriteStream out;
261 TStreamId id=out.CreateLC(*TheStore);
265 CleanupStack::PopAndDestroy(); // out
268 TheTest.Next(_L("Stream in and test set"));
270 in.OpenLC(*TheStore,id);
271 TStorePagePoolToken ptoken;
273 aPool.Open(*TheStore,ptoken);
274 TEST(!aPool.IsDirty());
275 TPagedSetToken token;
277 TPagedSet<TInt32> set2(token);
278 set2.Connect(&aPool);
279 TEST(set2.IsIntact());
280 CleanupStack::PopAndDestroy(); // in
282 TEST2(set2.Count(), KEntryCount);
283 for (ii=0;ii<KEntryCount;ii++)
288 TEST2(set2.Count(), 0);
297 @SYMTestCaseID PDS-STORE-CT-4009
298 @SYMTestCaseDesc RFilePagePool tests
299 @SYMTestPriority High
300 @SYMTestActions Tests for creating and opening RFilePagePool
301 @SYMTestExpectedResults RFilePagePool needs to be correctly created, replaced and opened.
304 LOCAL_C void test4L()
306 RFilePagePool testPage;
307 TFileName tempPageFileName;
311 err = fs.MkDirAll(KPageFilePathOnly);
312 TEST(err==KErrNone||err==KErrAlreadyExists);
313 err = fs.Delete(KPageFilePath);
314 TEST(err==KErrNone||err==KErrNotFound);
315 CPageCache* pcache = CPageCache::NewLC(2);
317 TheTest.Printf(_L("Creating file for the page pool"));
318 err = testPage.Create(fs, KPageFilePath, EFileWrite);
319 TEST2(err, KErrNone);
320 testPage.Set(*pcache);
321 TheTest.Printf(_L("-> File created -> Closing "));
323 TheTest.Printf(_L("-> Closed "));
324 //opening file, file should be present after successful creation
325 TheTest.Printf(_L("Opening file for the page pool"));
326 err = testPage.Open(fs,KPageFilePath, EFileWrite);
327 TEST2(err, KErrNone);
328 testPage.Set(*pcache);
329 TheTest.Printf(_L("-> File opened -> Closing "));
331 TheTest.Printf(_L("-> Closed "));
332 //try to replace already existing file
333 //file should exist after successful creation
334 TheTest.Printf(_L("Replacing file for the page pool"));
335 err = testPage.Replace(fs, KPageFilePath, EFileWrite);
336 TEST2(err, KErrNone);
337 testPage.Set(*pcache);
338 TheTest.Printf(_L("-> File replaced -> Closing "));
340 TheTest.Printf(_L("-> Closed "));
341 //try to create temp file with unique name
342 TheTest.Printf(_L("Creating temp unique file "));
343 err = testPage.Temp(fs, KPageFilePathOnly, tempPageFileName, EFileWrite);
344 TEST2(err, KErrNone);
345 testPage.Set(*pcache);
346 TheTest.Printf(_L("-> File created -> Closing "));
348 TheTest.Printf(_L("-> Closed "));
349 //if file was propertly created we should be able to open it
350 TheTest.Printf(_L("Opening temp unique file "));
351 err = testPage.Open(fs, tempPageFileName, EFileWrite);
352 TEST2(err, KErrNone);
353 TheTest.Printf(_L("-> File opened -> Releasing "));
355 TheTest.Printf(_L("-> Released "));
357 //open and flush temp file
358 RFilePagePool testPage2(*pcache);
359 err = testPage2.Open(fs, tempPageFileName, EFileWrite);
360 TEST2(err, KErrNone);
361 err = testPage2.Flush();
362 TEST2(err, KErrNone);
363 TRAP(err, testPage2.FlushL());
364 TEST2(err, KErrNone);
366 RFile& file = const_cast<RFile&>(testPage2.File());
367 TFileName testIsSameFile;
368 file.FullName(testIsSameFile);
369 TEST2( testIsSameFile.Compare(tempPageFileName), 0);
373 //attach and detach file
374 file.Open(fs, testIsSameFile, EFileWrite|EFileShareReadersOrWriters);
375 testPage2.Attach(file);
380 CleanupStack::PopAndDestroy(pcache);
385 * Struct needed in test5()
390 TUint8 iData[KPoolPageSize];
393 * Class specially created to test protected API from RFilePagePool
395 class RFilePagePoolTestClass: public RFilePagePool
398 void CallProtectedWriteL(SCachePage& page)
400 TPageChange change=page.iPage[0].iChange;
401 WriteL(page.iPage[0].iRef,&page.iPage[1],change);
403 void CallProtectedReadL(SCachePage& page)
405 ReadL(page.iPage[0].iRef,&page.iPage[1]);
407 TPageRef CallProtectedExtendL(SCachePage& page)
409 ExtendL(&page.iPage[1],EPageReclaimable);
410 return page.iPage[0].iRef;
415 @SYMTestCaseID PDS-STORE-CT-4010
416 @SYMTestCaseDesc RFilePagePool protected API tests
417 @SYMTestPriority High
418 @SYMTestActions Tests for read and write and extend operations
419 @SYMTestExpectedResults Cache pages should be properly written and properly read from RFilePagePoolTestClass
422 LOCAL_C void test5L()
425 page.iPage[0].iRef = 1;
426 page.iPage[0].iChange=EPageNoChange;
428 RFilePagePoolTestClass fpp;
431 fs.MkDirAll(KPageFilePathOnly);
432 fs.Delete(KPageFilePath);
433 CPageCache* pcache = CPageCache::NewLC(2);
435 TheTest.Printf(_L("Creating file "));
436 TInt err = fpp.Create(fs, KPageFilePath, EFileWrite);
437 TEST2(err, KErrNone);
439 TheTest.Printf(_L("-> File created -> Testing protected API "));
440 TRAP(err, fpp.CallProtectedWriteL(page));
441 TEST2(err, KErrNone);
442 TheTest.Printf(_L("-> CallProtectedWriteL() done "));
443 TRAP(err, fpp.CallProtectedReadL(page));
444 TEST2(err, KErrNone);
445 TheTest.Printf(_L("-> CallProtectedReadL() done "));
446 TRAP(err, fpp.CallProtectedExtendL(page));
447 TEST2(err, KErrNone);
448 TheTest.Printf(_L("-> CallProtectedExtendL() done -> Closing"));
450 TheTest.Printf(_L("-> Closed "));
451 CleanupStack::PopAndDestroy(pcache);
455 const TInt KCachePages=16;
457 LOCAL_C void testallL(RStorePagePool& aPool)
459 TheTest.Start(_L("Connecting page pool"));
460 aPool.Set(*CPageCache::NewLC(KCachePages));
461 aPool.Create(*TheStore);
462 TheTest.Next(_L("Basic operations"));
464 TheTest.Next(_L("Large set TUint32"));
469 TheTest.Next(_L("Tokens and streaming"));
471 CleanupStack::PopAndDestroy(); //cache
472 TheTest.Next(_L("PDS-STORE-CT-4009: RFilePagePool tests"));
474 TheTest.Next(_L("PDS-STORE-CT-4010: RFilePagePool protected API tests"));
480 @SYMTestCaseID PDS-STORE-CT-4021
481 @SYMTestCaseDesc RStorePagePool protected API tests
482 @SYMTestPriority High
483 @SYMTestActions Tests for different constructors
484 @SYMTestExpectedResults Objects must be created successfully
487 LOCAL_C void testconstructionL(CPBEncryptSet* aKey)
489 TheTest.Next(_L("PDS-STORE-CT-4021: RStorePagePool protected API tests"));
490 CPageCache* pcache = CPageCache::NewLC(KCachePages);
491 TStorePagePoolToken token;
492 RStorePagePool poolcached(*pcache);
493 poolcached.Create(*TheStore);
495 poolcached.Discard();
496 poolcached.ReclaimAllL();
498 RStorePagePool poolstream(*TheStore);
499 poolstream.Set(*pcache);
501 poolstream.Discard();
502 poolstream.ReclaimAllL();
504 RStorePagePool poolstreamtoken(*TheStore, token);
505 poolstreamtoken.Set(*pcache);
506 test1L(poolstreamtoken);
507 poolstreamtoken.Close();
508 RSecureStorePagePool securepoolcached( *pcache, *aKey );
509 securepoolcached.Create(*TheStore);
510 test1L(securepoolcached);
511 securepoolcached.Discard();
512 securepoolcached.ReclaimAllL();
513 securepoolcached.Close();
516 CleanupStack::PopAndDestroy();
520 LOCAL_C void doMainL()
522 TheTest.Start(_L("Store PagePool"));
523 TParsePtrC parse(KFileLocationSpec);
525 TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
526 TheStore->SetTypeL(TheStore->Layout());
527 RStorePagePool pool1;
529 TheTest.Next(_L("Secure PagePool"));
531 CPBEncryptSet* key = CPBEncryptSet::NewLC(_L("the password"));
532 RSecureStorePagePool pool2(*key);
536 testconstructionL(key);
538 CleanupStack::PopAndDestroy(key);
540 CleanupStack::PopAndDestroy(); // store
544 // Prepare the test directory.
546 LOCAL_C void setupTestDirectory()
548 TInt r=TheFs.Connect();
551 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
553 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
555 r=TheFs.MkDir(parse.DriveAndPath());
556 TEST(r==KErrNone||r==KErrAlreadyExists);
557 r=TheFs.SetSessionPath(parse.DriveAndPath());
562 // Initialise the cleanup stack.
564 LOCAL_C void setupCleanup()
566 TheTrapCleanup=CTrapCleanup::New();
567 TEST(TheTrapCleanup!=NULL);
570 for (TInt i=KTestCleanupStack;i>0;i--)\
571 CleanupStack::PushL((TAny*)1);\
573 CleanupStack::Pop(KTestCleanupStack);\
580 LOCAL_C void DeleteTestFiles()
584 TInt err = fs.Connect();
588 fs.GetDir(KPageFilePathOnly, KEntryAttNormal , ESortNone, dir);
589 for(TInt i=0; i< dir->Count();i++)
592 TFileName tf (KPageFilePathOnly);
593 tf.Append(rdir[i].iName);
594 err = fs.Delete( tf );
597 RDebug::Print(_L("Error %d deleting file \"%S\".\n"), err, &(rdir[i].iName));
600 RDebug::Print(_L("File \"%S\" removed.\n"), &(rdir[i].iName));
603 err = fs.RmDir(KPageFilePathOnly);
606 RDebug::Print(_L("Error %d deleting folder \"%S\".\n"), err, &KPageFilePathOnly);
612 RDebug::Print(_L("Error %d connecting file session.\n"), err);
616 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
619 TInt err = fsSession.Connect();
623 if(fsSession.Entry(aFullName, entry) == KErrNone)
625 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
626 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
629 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
631 err = fsSession.Delete(aFullName);
634 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
641 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
645 GLDEF_C TInt E32Main()
648 setupTestDirectory();
655 //deletion of data files must be before call to .End() - DEF047652
656 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
658 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
659 ::DeleteDataFile(parse.FullName());
666 delete TheTrapCleanup;