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 LOCAL_D RTest test(_L("t_storfserr"));
23 LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
26 const TInt KTestCleanupStack=0x20;
27 const TPtrC KTestDir=_L("\\STOR-TST\\T_FSERR\\");
28 const TPtrC FileNameA=_L("A.DAT");
29 const TPtrC FileNameB=_L("B.DAT");
31 const TPtrC des2(_S("22"),2);
32 const TPtrC des3(_S("333"),3);
33 const TPtrC des4(_S("4444"),4);
34 const TPtrC des5(_S("55555"),5);
35 LOCAL_D CFileStore* store = NULL;
36 RStoreWriteStream out;
39 LOCAL_C void setupCleanup()
40 {// Initialise the cleanup stack
41 TheTrapCleanup=CTrapCleanup::New();
42 test(TheTrapCleanup!=NULL);
45 for (TInt i=KTestCleanupStack;i>0;i--)\
46 CleanupStack::PushL((TAny*)0);\
47 CleanupStack::Pop(KTestCleanupStack);\
52 LOCAL_C void setupTestDirectory()
53 {// Prepare the test directory.
54 TInt r=TheFs.MkDirAll(KTestDir);
55 test(r==KErrNone||r==KErrAlreadyExists);
56 r=TheFs.SetSessionPath(KTestDir);
60 LOCAL_D void AlterStoreL(TInt aFail)
62 RStoreWriteStream out2;
63 RStoreWriteStream out3;
64 RStoreWriteStream out4;
66 TheFs.SetErrorCondition(KErrNotReady,aFail);
67 TStreamId id0 = out.CreateLC(*store);
68 out << _L("012345678901234567890123456789012345678901234567890123456789");
70 CleanupStack::PopAndDestroy();
72 TStreamId id2 = out.CreateLC(*store);
74 CleanupStack::PopAndDestroy();
76 TStreamId id3 = out.CreateLC(*store);
78 CleanupStack::PopAndDestroy();
80 TStreamId id4 = out.CreateLC(*store);
83 CleanupStack::PopAndDestroy();
85 out.ReplaceLC(*store,store->Root());
92 CleanupStack::PopAndDestroy();
94 in.OpenLC(*store,store->Root());// use the root for in and out streams
95 out.ReplaceLC(*store,store->Root());
98 CleanupStack::PopAndDestroy(2);
100 out.ReplaceLC(*store,store->Root());// swap the order
101 in.OpenLC(*store,store->Root());
103 out << KNullStreamId;
105 CleanupStack::PopAndDestroy(2);
109 in.OpenLC(*store,store->Root());
113 in >> idZ;// id4 "mum"
114 CleanupStack::PopAndDestroy();
115 out.OpenLC(*store,idZ);
116 in.OpenLC(*store,idZ);
117 out2.OpenLC(*store,idZ);
118 out3.OpenLC(*store,idZ);
119 out4.OpenLC(*store,idZ);
122 CleanupStack::PopAndDestroy(5);
136 ESimple = 0,//File, "write byte" is an atomic operation
137 EBlockAtomic = 1,//File, "block write" is an atomic operation
138 ETransactional = 2,//Transactional file system.
142 const TInt KFailPoints[ELastQoSType][2] =
144 // non-transactional file system
148 // atomic "block write"
152 // transactional file system
158 //The function returns true, if the file system guarantees atomic "block write" operations on aDriveNo.
159 TBool IsBlockAtomic(TInt aDriveNo)
161 __ASSERT_DEBUG(aDriveNo >= EDriveA && aDriveNo <= EDriveZ, User::Invariant());
163 TVolumeIOParamInfo volInfo;
164 TInt err = TheFs.VolumeIOParam(aDriveNo, volInfo);
165 //If VolumeIOParam() succeeds, the media block size is >= 512 bytes and the media block size is power of two - report
166 //that the media supports atomic "block write" operations.
167 const TInt KDefaultMediaBlockSize = 512;
168 return err == KErrNone && volInfo.iBlockSize >= KDefaultMediaBlockSize && (volInfo.iBlockSize & (volInfo.iBlockSize - 1)) == 0;
171 TFileQoS MediaType(const TDesC& aFilename)
174 TheFs.Parse(aFilename, p);
176 TheFs.Drive(dinfo, TDriveUnit(p.Drive()));
177 TBool transactional = dinfo.iDriveAtt & KDriveAttTransaction;
180 return ETransactional;
182 if(IsBlockAtomic(TDriveUnit(p.Drive())))
189 @SYMTestCaseID SYSLIB-STORE-CT-1160
190 @SYMTestCaseDesc File server test
191 @SYMTestPriority High
192 @SYMTestActions Tests for failure on call to file server
193 @SYMTestExpectedResults Test must not fail
196 LOCAL_D void FailOnEveryFileServerCallL()
198 TheFs.Delete(FileNameA);
200 const TFileQoS KMediaType = MediaType(FileNameA);
201 _LIT(KSimpleText, "Simple");
202 _LIT(KAtomicText, "Atomic block \"write\"");
203 _LIT(KTransactionalText, "Transactional");
204 const TPtrC mediaType[ELastQoSType] = {KSimpleText(), KAtomicText(), KTransactionalText()};
205 test.Printf(_L("Media type: %S\r\n"), &mediaType[KMediaType]);
207 const TInt KStoreCommitted = KFailPoints[KMediaType][0];
208 const TInt KLastFail = KFailPoints[KMediaType][1];
210 const TInt KError = KErrNotReady;
211 const TInt KRootIdSizeBeforeStoreCommit = 0;
212 const TInt KRootIdSizeAfterStoreCommit = 6*sizeof(TStreamId);
214 for (TInt fail=1;fail<=KLastFail+5;++fail)
216 store=CPermanentFileStore::ReplaceLC(TheFs,FileNameA,EFileWrite|EFileRead);
217 store->SetTypeL(KPermanentFileStoreLayoutUid);
218 TStreamId rootId = store->ExtendL();
219 store->SetRootL(rootId);
221 TRAPD(r,AlterStoreL(fail));
222 TheFs.SetErrorCondition(KErrNone);
227 TRAP(r,store->RevertL());
230 CleanupStack::PopAndDestroy();
231 store=CPermanentFileStore::OpenLC(TheFs,FileNameA,EFileWrite|EFileRead);
235 CleanupStack::PopAndDestroy();
238 store=CPermanentFileStore::OpenLC(TheFs,FileNameA,EFileRead);
240 in.OpenLC(*store,store->Root());
241 TInt size=in.Source()->SizeL();
242 if (fail<KStoreCommitted)
243 test(size==KRootIdSizeBeforeStoreCommit);
244 else //fail>=KStoreCommitted
245 test(size==KRootIdSizeAfterStoreCommit);
246 CleanupStack::PopAndDestroy(2);
248 store=CPermanentFileStore::OpenLC(TheFs,FileNameA,EFileRead|EFileWrite);
251 in.OpenLC(*store,store->Root());
252 size=in.Source()->SizeL();
253 if (fail<KStoreCommitted)
254 test(size==KRootIdSizeBeforeStoreCommit);
255 else //fail>=KStoreCommitted
256 test(size==KRootIdSizeAfterStoreCommit);
257 CleanupStack::PopAndDestroy(2);
261 LOCAL_D void InitialseStoreWithDataL()
263 TheFs.Delete(FileNameB);
264 store=CPermanentFileStore::CreateLC(TheFs,FileNameB,EFileWrite|EFileRead);
265 store->SetTypeL(KPermanentFileStoreLayoutUid);
266 TStreamId rootId = store->ExtendL();
267 store->SetRootL(rootId);
269 CleanupStack::PopAndDestroy();
271 store=CPermanentFileStore::OpenLC(TheFs,FileNameB,EFileWrite|EFileRead);
272 TStreamId id2 = out.CreateLC(*store);
275 CleanupStack::PopAndDestroy();
277 TStreamId id3 = out.CreateLC(*store);
280 CleanupStack::PopAndDestroy();
282 out.ReplaceLC(*store,store->Root());
286 CleanupStack::PopAndDestroy();// out
289 CleanupStack::PopAndDestroy();// store
292 LOCAL_D void AlterStoreDuringFileServerErrorL(TInt aError)
294 store=CPermanentFileStore::OpenLC(TheFs,FileNameB,EFileWrite|EFileRead);
295 in.OpenLC(*store,store->Root());
300 CleanupStack::PopAndDestroy();// in
302 out.ReplaceLC(*store,id2);
305 CleanupStack::PopAndDestroy();// out
306 TheFs.SetErrorCondition(aError);
307 out.ReplaceLC(*store,id3);
310 CleanupStack::PopAndDestroy();// out
313 CleanupStack::PopAndDestroy();// store
316 LOCAL_D void TestStreamDataL(TInt aError)
318 store=CPermanentFileStore::OpenLC(TheFs,FileNameB,EFileWrite|EFileRead);
319 in.OpenLC(*store,store->Root());
324 CleanupStack::PopAndDestroy();// in
328 in.OpenLC(*store,id2);
330 if (aError==KErrNone)
331 test(buf==_L("4444"));// store committed
333 test(buf==_L("22"));// store reverted
335 CleanupStack::PopAndDestroy();// in
337 in.OpenLC(*store,id3);
339 if (aError==KErrNone)
340 test(buf==_L("55555"));// store committed
342 test(buf==_L("333"));// store reverted
344 CleanupStack::PopAndDestroy();// in
346 CleanupStack::PopAndDestroy();// store
349 LOCAL_D void ResetStreamDataL()
351 store=CPermanentFileStore::OpenLC(TheFs,FileNameB,EFileWrite|EFileRead);
352 in.OpenLC(*store,store->Root());
357 CleanupStack::PopAndDestroy();// in
359 out.ReplaceLC(*store,id2);
362 CleanupStack::PopAndDestroy();// out
364 out.ReplaceLC(*store,id3);
367 CleanupStack::PopAndDestroy();// out
370 CleanupStack::PopAndDestroy();// store
373 @SYMTestCaseID SYSLIB-STORE-CT-1161
374 @SYMTestCaseDesc Tests for all errors on file server
375 @SYMTestPriority High
376 @SYMTestActions Tests for stream data to a store
377 @SYMTestExpectedResults Test must not fail
380 LOCAL_D void TestAllFsErrorL()
382 InitialseStoreWithDataL();
383 for (TInt error=0; error >= KErrDied; --error)
385 TRAPD(r,AlterStoreDuringFileServerErrorL(error));
386 TheFs.SetErrorCondition(KErrNone);
389 store = CPermanentFileStore::OpenLC(TheFs,FileNameB,EFileWrite|EFileRead);
391 CleanupStack::PopAndDestroy();// store
393 TestStreamDataL(error);
400 setupTestDirectory();
403 test.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1160 Random failure on every file server call "));
404 TRAPD(r,FailOnEveryFileServerCallL());
406 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1161 Alter STORE during file server error "));
407 TRAP(r,TestAllFsErrorL());
411 TheFs.Delete(FileNameA);
412 TheFs.Delete(FileNameB);
419 GLDEF_C TInt E32Main()
420 {// Test permanent file store.
423 TInt r=TheFs.Connect();
427 delete TheTrapCleanup;
430 test.Start(_L("The tests are not valid in release mode"));