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.
19 const TInt KTestCleanupStack=0x40;
21 _LIT(KTitle,"t_stordictfs");
22 LOCAL_D RTest test(KTitle);
23 LOCAL_D CTrapCleanup* TheTrapCleanup;
26 // These are path specifications and should not be used as is
27 _LIT(KDicFilePath,"Z:\\stor-tst\\dicfile.ini");
28 const TUid dicFileUid={19445};
29 _LIT(KSystemIniFile,"Z:\\System\\System.ini");
30 _LIT(KBackupSystemIniFile,"Z:\\System\\System.backup");
31 _LIT(KTestIniFile,"Z:\\stor-tst\\Test.ini");
32 _LIT(KThreadTestPath, "Z:\\stor-tst\\Thread Test %d.ini");
34 const TInt KNumThreads=20;
35 const TInt KThreadStack=0x2000;
36 const TInt KThreadHeap=0x1000;
37 const TInt KThreadHeapMax=0x100000;
39 // some uid's to use for testing
40 const TUid testUid1={1};
41 const TUid testUid2={57};
42 const TUid testUid3={99999};
43 const TUid testUid4={98765};
44 const TUid KTestUid={0xf0000000};
46 // some data values for testing
48 const TInt value2=147;
49 const TInt value3=6547;
52 @SYMTestCaseID SYSLIB-STORE-CT-1183
53 @SYMTestCaseDesc Tests for CDictionaryFileStore::IsPresentL(),CDictionaryFileStore::Remove() functions
55 @SYMTestActions Tests for writing an entry and commit it.
56 Tests for reading the entry back.
57 Tests for rewriting and reading back using LC functions.
58 Tests for adding one more entry and check for the content.
59 @SYMTestExpectedResults Test must not fail
62 LOCAL_C void Test1L(CDictionaryFileStore* aDict)
64 // write an entry and commit it
65 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1183 "));
66 RDictionaryWriteStream writeStream;
67 TRAPD(ret, writeStream.AssignL(*aDict,testUid1));
69 TRAP(ret, writeStream.WriteInt32L(value1));
71 TRAP(ret, writeStream.CommitL());
74 // read that entry back
75 RDictionaryReadStream readStream;
76 TRAP(ret, readStream.OpenL(*aDict,testUid1));
79 TRAP(ret, val = readStream.ReadInt32L());
84 test.Next(_L("Test the stream LC methods"));
85 // read that entry back using the LC method
86 readStream.OpenLC(*aDict,testUid1);
87 TRAP(ret, val = readStream.ReadInt32L());
91 CleanupStack::PopAndDestroy(); // readStream
93 // rewrite that entry using the LC method
94 writeStream.AssignLC(*aDict,testUid1);
97 MStreamBuf* sbuf = writeStream.Sink();
98 HBufC8* buffer = HBufC8::NewLC(400);
99 TUint8* buffptr = const_cast<TUint8*>(buffer->Ptr());
100 sbuf->ReadL(buffptr, 100);
101 TPtr8 buffDes(buffer->Des());
102 TRequestStatus rstatus;
103 sbuf->ReadL(buffDes, 100, rstatus);
104 User::WaitForRequest(rstatus);
105 CleanupStack::PopAndDestroy(); //buffer
107 TRAP(ret, writeStream.WriteInt32L(value1));
109 TRAP(ret, writeStream.CommitL());
111 //writeStream.Close();
112 CleanupStack::PopAndDestroy(); // writestream
114 test.Next(_L("Test reverting the store"));
116 TRAP(ret, aDict->CommitL());
118 // replace the 1st entry, commit it, then revert the store
119 TRAP(ret, writeStream.AssignL(*aDict,testUid1));
121 TRAP(ret, writeStream.WriteInt32L(value2));
123 TRAP(ret, writeStream.CommitL());
126 TRAP(ret, aDict->RevertL());
128 // check the value of the entry
129 TRAP(ret, readStream.OpenL(*aDict,testUid1));
131 TRAP(ret, val = readStream.ReadInt32L());
136 test.Next(_L("Test reverting the store using alternative Revert method"));
137 // replace the 1st entry, commit it, then revert the store
138 TRAP(ret, writeStream.AssignL(*aDict,testUid1));
140 TRAP(ret, writeStream.WriteInt32L(value2));
142 TRAP(ret, writeStream.CommitL());
146 // check the value of the entry
147 TRAP(ret, readStream.OpenL(*aDict,testUid1));
149 TRAP(ret, val = readStream.ReadInt32L());
155 test.Next(_L("Test IsPresentL() and Remove()"));
157 TRAP(ret, writeStream.AssignL(*aDict,testUid2));
159 TRAP(ret, writeStream.WriteInt32L(value2));
161 test(!aDict->IsPresentL(testUid2));
162 TRAP(ret, writeStream.CommitL());
166 test(aDict->IsPresentL(testUid1));
167 test(aDict->IsPresentL(testUid2));
168 test(!aDict->IsPresentL(testUid3));
170 TRAP(ret, aDict->RemoveL(testUid1));
171 test(!aDict->IsPresentL(testUid1));
174 test.Next(_L("Close the store and re-open it"));
175 // commit the store and close it
176 TRAP(ret, aDict->CommitL());
183 @SYMTestCaseID SYSLIB-STORE-CT-1184
184 @SYMTestCaseDesc Tests for CDictionaryFileStore::IsPresentL() function
185 @SYMTestPriority High
186 @SYMTestActions Tests for the specified UID's has an associated stream within the dictionary store.
187 Tests for KErrNone error flag while opening a dictionary file for read,test the value read from the file.
188 @SYMTestExpectedResults Test must not fail
191 LOCAL_C void Test2L(CDictionaryFileStore* aDict)
193 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1184 "));
194 test(!aDict->IsPresentL(testUid1));
195 test(aDict->IsPresentL(testUid2));
196 test(!aDict->IsPresentL(testUid3));
197 RDictionaryReadStream readStream;
198 TRAPD(ret, readStream.OpenL(*aDict,testUid2));
201 TRAP(ret, val = readStream.ReadInt32L());
207 test.Next(_L("Close the store without commiting"));
208 // add a stream, close the store (no commit)
209 RDictionaryWriteStream writeStream;
210 TRAP(ret, writeStream.AssignL(*aDict,testUid3));
212 TRAP(ret, writeStream.WriteInt32L(value3));
214 TRAP(ret, writeStream.CommitL());
221 @SYMTestCaseID SYSLIB-STORE-CT-1185
222 @SYMTestCaseDesc Reading from a dictionary file test
223 @SYMTestPriority High
224 @SYMTestActions Tests for the specified UID's has an associated stream within the dictionary store.
225 Tests for KErrNone error flag,while opening a dictionary file for read operation
226 @SYMTestExpectedResults Test must not fail
229 LOCAL_C void Test3L(CDictionaryFileStore* aDict)
231 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1185 "));
232 test(!aDict->IsPresentL(testUid1));
233 test(aDict->IsPresentL(testUid2));
234 test(!aDict->IsPresentL(testUid3));
235 RDictionaryReadStream readStream;
236 TRAPD(ret, readStream.OpenL(*aDict,testUid2));
240 TRAP(ret, val = readStream.ReadInt32L());
248 @SYMTestCaseID PDS-STORE-CT-4022
249 @SYMTestCaseDesc Validate IsNUll() API
250 @SYMTestPriority High
251 @SYMTestActions Test that the specified DictionaryStore is not present
252 @SYMTestExpectedResults Test must not fail
255 LOCAL_C void Test4L(CDictionaryFileStore* aDict)
257 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4022 "));
258 test(aDict->IsNullL());
262 @SYMTestCaseID PDS-STORE-CT-4023
263 @SYMTestCaseDesc Validate IsNUll() API
264 @SYMTestPriority High
265 @SYMTestActions Test that the specified DictionaryStore is present
266 @SYMTestExpectedResults Test must not fail
269 LOCAL_C void Test5L(CDictionaryFileStore* aDict)
271 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4023 "));
272 test(!aDict->IsNullL());
277 @SYMTestCaseID PDS-STORE-CT-4024
278 @SYMTestCaseDesc Validate Remove() API
279 @SYMTestPriority High
280 @SYMTestActions Test that the specified UID is present
281 Remove Stream and test that UID is not present
282 @SYMTestExpectedResults Test must not fail
285 LOCAL_C void Test6L(CDictionaryFileStore* aDict)
287 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4024 "));
288 test(aDict->IsPresentL(testUid2));
289 aDict->Remove(testUid2);
290 test(!aDict->IsPresentL(testUid2));
296 Test the System ini file
298 @SYMTestCaseID SYSLIB-STORE-CT-1186
299 @SYMTestCaseDesc Tests for CDictionaryFileStore::SystemL() function
300 @SYMTestPriority High
301 @SYMTestActions Tests for creation of system file.Tests for basic operations on the file
302 @SYMTestExpectedResults Test must not fail
305 LOCAL_C void systemTestL()
307 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
308 TParse systemIniFile;
309 TParse backupSystemIniFile;
310 systemIniFile.Set(drive.Name(), &KSystemIniFile, NULL);
311 backupSystemIniFile.Set(drive.Name(), &KBackupSystemIniFile, NULL);
313 TheFs.Rename(systemIniFile.FullName(),backupSystemIniFile.FullName());
315 parse.Set(systemIniFile.FullName(),NULL,NULL);
316 TheFs.RmDir(parse.DriveAndPath());
318 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1186 Create system file "));
319 CDictionaryFileStore* dicFile=NULL;
320 TRAPD(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
323 TInt err = TheFs.Entry(systemIniFile.FullName(),entry);
324 test (err==KErrNone);
326 test.Next(_L("Opening system file"));
327 TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
330 TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
334 TRAP(ret, dicFile = CDictionaryFileStore::SystemL(TheFs));
338 TheFs.Delete(systemIniFile.FullName());
339 TheFs.Rename(backupSystemIniFile.FullName(),systemIniFile.FullName());
343 @SYMTestCaseID SYSLIB-STORE-CT-1187
344 @SYMTestCaseDesc Tests for creating a new file and adding an entry into it
345 @SYMTestPriority High
346 @SYMTestActions Execute tests for create,open and check the contents and reopening
347 Check for ErrNone flag during the open operation.
348 @SYMTestExpectedResults Test must not fail
351 LOCAL_C void generalTestsL()
354 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
356 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
358 TInt ret = TheFs.MkDirAll(dicFilePath.FullName());
359 test((ret==KErrNone)||(ret==KErrAlreadyExists));
360 TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
363 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1187 Create a new file and put an entry in it "));
364 // create a new dictionary file
365 CDictionaryFileStore* dicFile=NULL;
366 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
368 //Check that file is NULL
371 // open it and check the contents
372 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
375 // open it again and check the contents
376 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
379 //open it again and check that contents is not NUll
380 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
387 @SYMTestCaseID SYSLIB-STORE-CT-1188
388 @SYMTestCaseDesc Creation of empty files test
389 @SYMTestPriority High
390 @SYMTestActions Tests by opening empty dictionary file and interrogate it.
391 Tests for opening a stream that does not exist.Tests for reading from the empty file
392 @SYMTestExpectedResults Test must not fail
395 LOCAL_C void emptyFileTestsL()
398 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
400 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
402 TInt ret = TheFs.MkDirAll(dicFilePath.DriveAndPath());
403 test((ret==KErrNone)||(ret==KErrAlreadyExists));
404 TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
407 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1188 Create a new file, close it while still empty, then open it again "));
408 // create a new dictionary file and close it immediately
409 CDictionaryFileStore* dicFile=NULL;
410 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
412 TRAP(ret, dicFile->CommitL());
417 // open the empty dic file and interogate it
418 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
420 test(!dicFile->IsPresentL(testUid1));
421 test(!dicFile->IsPresentL(testUid2));
422 test(!dicFile->IsPresentL(testUid3));
425 test.Next(_L("Open a stream that doesn't exist"));
426 // open a stream that does not exist - should get an empty one
427 RDictionaryReadStream readStream;
428 TRAP(ret, readStream.OpenL(*dicFile,testUid1));
430 // try to read from it to check that it's empty
432 test(readStream.Source()->ReadL(&b,1)==0);
442 @SYMTestCaseID SYSLIB-STORE-CT-1189
443 @SYMTestCaseDesc Repeatedly opening a dictionary file test
444 @SYMTestPriority High
445 @SYMTestActions Attempt for creating a new dictionary file,write an entry an commit it.
446 Attempt for repeatedly opening the dictionary file,interogate it,and delete it without commiting
447 Attempt for repeatedly opening the dictionary file and interogate it,commit the file after each read
448 Attempt for repeatedly opening the dictionary file and re-write a stream, commiting the file after each write
449 @SYMTestExpectedResults Test must not fail
452 LOCAL_C void repeatedUseTestsL()
455 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1189 "));
457 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
459 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
461 TInt ret = TheFs.MkDirAll(dicFilePath.DriveAndPath());
462 test((ret==KErrNone)||(ret==KErrAlreadyExists));
463 TheFs.Delete(dicFilePath.FullName()); // delete the file if it already exists
465 // create a new dictionary file
466 CDictionaryFileStore* dicFile=NULL;
467 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
469 // write an entry and commit it
470 RDictionaryWriteStream writeStream;
471 TRAP(ret, writeStream.AssignL(*dicFile,testUid1));
473 TRAP(ret, writeStream.WriteInt32L(value1));
475 TRAP(ret, writeStream.CommitL());
479 TRAP(ret, dicFile->CommitL());
485 test.Next(_L("Repeatedly open a file and interogate it without commiting"));
486 // repeatedly open the dic file, interogate it, and delete it without commiting
488 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
490 TInt sizeBefore=fileEntry.iSize;
493 for (i=0 ; i<10 ; i++)
495 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
497 RDictionaryReadStream readStream;
498 TRAP(ret, readStream.OpenL(*dicFile,testUid1));
505 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
507 TInt sizeAfter=fileEntry.iSize;
508 test(sizeAfter==sizeBefore);
511 test.Next(_L("Repeatedly open a file, commiting after each read"));
512 // repeatedly open the dic file and interogate it, commiting the file after each read
513 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
515 sizeBefore=fileEntry.iSize;
517 for (i=0 ; i<10 ; i++)
519 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
521 RDictionaryReadStream readStream;
522 TRAP(ret, readStream.OpenL(*dicFile,testUid1));
525 TRAP(ret, dicFile->CommitL());
531 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
533 sizeAfter=fileEntry.iSize;
534 test(sizeAfter==sizeBefore);
537 test.Next(_L("Repeatedly open a file and re-write a stream"));
538 // repeatedly open the dic file and re-write a stream, commiting the file after each write
539 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
541 sizeBefore=fileEntry.iSize;
543 for (i=0 ; i<10 ; i++)
545 TRAP(ret, dicFile = CDictionaryFileStore::OpenL(TheFs,dicFilePath.FullName(),dicFileUid));
547 // write an entry and commit it
548 RDictionaryWriteStream writeStream;
549 TRAP(ret, writeStream.AssignL(*dicFile,testUid1));
551 TRAP(ret, writeStream.WriteInt32L(i));
553 TRAP(ret, writeStream.CommitL());
557 TRAP(ret, dicFile->CommitL());
563 ret = TheFs.Entry(dicFilePath.FullName(),fileEntry);
565 sizeAfter=fileEntry.iSize;
566 test.Printf(_L(" Size before: %d\n Size after: %d\n"),sizeBefore,sizeAfter);
572 LOCAL_C void AddEntryL()
574 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
576 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
578 CDictionaryStore* dictionary=CDictionaryFileStore::OpenLC(TheFs,dicFilePath.FullName(),dicFileUid);
579 RDictionaryWriteStream s;
580 s.AssignLC(*dictionary,testUid4);
581 s.WriteInt32L(value1);
583 CleanupStack::PopAndDestroy(); // s
584 TInt err = dictionary->Commit(); // changed from CommitL to ensure api coverage
585 User::LeaveIfError(err);
586 CleanupStack::PopAndDestroy(); // dictionary
589 LOCAL_C TBool CheckEntryL()
591 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
593 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
595 CDictionaryStore* dictionary=CDictionaryFileStore::OpenLC(TheFs,dicFilePath.FullName(),dicFileUid);
596 TBool isPresent=dictionary->IsPresentL(testUid4);
599 RDictionaryReadStream s;
600 s.OpenLC(*dictionary,testUid4);
601 test (s.ReadInt32L()==value1);
602 CleanupStack::PopAndDestroy(); // s
604 CleanupStack::PopAndDestroy(); // dictionary
609 Test CDictionaryFileStore construction, forcing a leave error at each
610 possible stage of the process.
612 @SYMTestCaseID SYSLIB-STORE-CT-1190
613 @SYMTestCaseDesc Tests for CDictionaryFileStore construction under low memory conditions.
614 @SYMTestPriority High
615 @SYMTestActions Attempt for construction under low memory conditions.
616 @SYMTestExpectedResults Test must not fail
619 LOCAL_C void TestOOML()
621 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1190 Construction under low memory conditions "));
623 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
625 dicFilePath.Set(drive.Name(), &KDicFilePath, NULL);
627 TheFs.Delete(dicFilePath.FullName()); // delete the file
630 for (failRate=1;;failRate++)
632 __UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
634 TRAPD(ret, AddEntryL());
638 test (ret==KErrNoMemory);
640 test (!CheckEntryL());
643 test (CheckEntryL());
644 test.Printf(_L(" #allocs for update: %d\n"),failRate-1);
650 // Thread contention tests
656 void LoadL(CDictionaryStore& aStore);
657 void SaveL(CDictionaryStore& aStore) const;
658 TStreamId StoreL(CStreamStore& aStore) const;
659 void RestoreL(CStreamStore& aStore,TStreamId anId);
660 void InternalizeL(RReadStream& aStream);
661 void ExternalizeL(RWriteStream& aStream) const;
664 void TIniData::LoadL(CDictionaryStore& aStore)
666 if (aStore.IsPresentL(KTestUid))
668 RDictionaryReadStream stream;
669 stream.OpenL(aStore,KTestUid);
670 CEmbeddedStore* store=CEmbeddedStore::FromLC(stream);
671 RestoreL(*store,store->Root());
672 CleanupStack::PopAndDestroy();
676 void TIniData::SaveL(CDictionaryStore& aStore) const
678 RDictionaryWriteStream stream;
679 stream.AssignL(aStore,KTestUid);
680 CEmbeddedStore* store=CEmbeddedStore::NewLC(stream);
681 store->SetRootL(StoreL(*store));
683 CleanupStack::PopAndDestroy();
686 void TIniData::RestoreL(CStreamStore& aStore,TStreamId anId)
688 RStoreReadStream stream;
689 stream.OpenLC(aStore,anId);
691 stream >> id1 >> id2;
692 CleanupStack::PopAndDestroy();
693 stream.OpenLC(aStore,id1);
695 CleanupStack::PopAndDestroy();
698 for (TInt ii=0;ii<200;++ii)
701 stream.OpenLC(aStore,id2);
703 CleanupStack::PopAndDestroy();
706 TStreamId TIniData::StoreL(CStreamStore& aStore) const
708 RStoreWriteStream stream;
709 TStreamId id2=stream.CreateLC(aStore);
712 CleanupStack::PopAndDestroy();
713 TStreamId id1=stream.CreateLC(aStore);
716 CleanupStack::PopAndDestroy();
717 TStreamId id3=stream.CreateLC(aStore);
718 stream << id1 << id2;
720 CleanupStack::PopAndDestroy();
724 void TIniData::InternalizeL(RReadStream& aStream)
726 for (TInt ii=0;ii<150;++ii)
727 aStream.ReadUint32L();
730 void TIniData::ExternalizeL(RWriteStream& aStream) const
732 for (TInt ii=0;ii<150;++ii)
733 aStream.WriteUint32L(0);
738 void ThreadTestL(TInt aThread)
741 User::LeaveIfError(fs.Connect());
742 CleanupClosePushL(fs);
744 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
746 testIniFile.Set(drive.Name(), &KTestIniFile, NULL);
749 CDictionaryStore* dict=CDictionaryFileStore::OpenLC(fs,testIniFile.FullName(),KTestUid);
751 CleanupStack::PopAndDestroy(); // dict
753 TParse threadTestPath;
754 threadTestPath.Set(drive.Name(), &KThreadTestPath, NULL);
757 name.Format(threadTestPath.FullName(),aThread);
758 dict=CDictionaryFileStore::OpenLC(fs,name,KTestUid);
761 CleanupStack::PopAndDestroy();
763 for (TInt ii=0;ii<1000;++ii)
765 dict=CDictionaryFileStore::OpenLC(fs,name,KTestUid);
767 CleanupStack::PopAndDestroy(); // dict
769 CleanupStack::PopAndDestroy(); // fs
772 TInt ThreadTest(TAny* aPtr)
774 CTrapCleanup* cleanup=CTrapCleanup::New();
777 TRAPD(error,ThreadTestL(TInt(aPtr)));
783 @SYMTestCaseID SYSLIB-STORE-CT-1191
784 @SYMTestCaseDesc Lock out of dictionary files test
785 @SYMTestPriority High
786 @SYMTestActions Attempt for opening of same dictionary file.Tests for file in use error
787 @SYMTestExpectedResults Test must not fail
790 void ContentionTestL()
792 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1191 Contention tests "));
794 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
796 testIniFile.Set(drive.Name(), &KTestIniFile, NULL);
798 CDictionaryStore* dict=CDictionaryFileStore::OpenLC(TheFs,testIniFile.FullName(),KTestUid);
801 CleanupStack::PopAndDestroy(); // dict
803 test.Next(_L("Lock-out test"));
804 CDictionaryFileStore::OpenLC(TheFs,testIniFile.FullName(),KTestUid);
805 TUint tick=User::TickCount();
806 TRAPD(r,CDictionaryFileStore::OpenL(TheFs,testIniFile.FullName(),KTestUid));
807 tick=User::TickCount()-tick;
809 test.Printf(_L("Lock-out discovered: %d ticks\r\n"),tick);
810 CleanupStack::PopAndDestroy();
812 test.Next(_L("Creating threads"));
813 RThread threads[KNumThreads];
814 TRequestStatus status[KNumThreads];
816 for (ii=0;ii<KNumThreads;++ii)
819 name.Format(_L("Test_%d"),ii);
820 test (threads[ii].Create(name,ThreadTest,KThreadStack,KThreadHeap,KThreadHeapMax,(TAny*)ii,EOwnerThread)==KErrNone);
821 threads[ii].SetPriority(EPriorityLess);
822 threads[ii].Logon(status[ii]);
823 test (status[ii]==KRequestPending);
826 for (ii=0;ii<KNumThreads;++ii)
827 threads[ii].Resume();
829 test.Next(_L("Waiting for completion"));
830 for (ii=0;ii<KNumThreads;++ii)
831 User::WaitForAnyRequest();
833 for (ii=0;ii<KNumThreads;++ii)
835 test (status[ii]!=KRequestPending);
836 if (status[ii].Int()==KErrNone)
839 test.Printf(_L("Thread success: %d of %d\r\n"),success,KNumThreads);
845 // Initialise the cleanup stack.
847 LOCAL_C void setupCleanup()
849 TheTrapCleanup=CTrapCleanup::New();
852 for (TInt i=KTestCleanupStack;i>0;i--)\
853 CleanupStack::PushL((TAny*)1);\
855 CleanupStack::Pop(KTestCleanupStack);\
859 GLDEF_C TInt E32Main()
864 test.Start(_L("Testing CDictionaryFileStore et al..."));
865 test (TheFs.Connect()==KErrNone);
867 // run the testcode (inside an alloc heaven harness)
870 TRAPD(r,systemTestL());
873 TRAP(r,generalTestsL());
876 TRAP(r,emptyFileTestsL());
879 TRAP(r,repeatedUseTestsL());
885 TRAP(r,ContentionTestL());
894 delete TheTrapCleanup;