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.
19 const TInt KTestCleanupStack=0x20;
21 // This is a path specification and should not be used as is
22 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FPERM.DAT");
23 const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
24 const TInt KTestLength=36;
25 const TInt KTestTotal=KTestLength*(KTestLength+1);
26 const TPtrC8 KTestDes(KTestData,KTestLength);
28 LOCAL_D CTrapCleanup* TheTrapCleanup;
29 LOCAL_D RTest test(_L("t_storfperm"));
31 LOCAL_D TFileName TheTempFile;
32 LOCAL_D TBuf8<KTestLength+1> TheBuf;
34 @SYMTestCaseID SYSLIB-STORE-CT-1152
35 @SYMTestCaseDesc Tests empty streams
37 @SYMTestActions Tests for empty stream buffers.Check for end of file error,overflow error flags
38 @SYMTestExpectedResults Test must not fail
41 LOCAL_C void testEmptyL(CStreamStore& aStore)
43 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1152 Stream created using 'extend' "));
44 TStreamId empty=aStore.ExtendL();
46 in.OpenL(aStore,empty);
48 test(in.Source()->ReadL(&b,1)==0);
49 in.Source()->SeekL(0,KStreamBeginning);
50 test(in.Source()->SeekL(MStreamBuf::ERead,EStreamMark)==KStreamBeginning);
51 test(in.Source()->SizeL()==0);
52 TRAPD(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamBeginning,1));
54 TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
57 RStoreWriteStream out;
58 out.OpenL(aStore,empty);
59 out.Sink()->SeekL(0,KStreamBeginning);
60 test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==KStreamBeginning);
61 test(out.Sink()->SizeL()==0);
62 TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamBeginning,1));
64 TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
66 TRAP(r,out.WriteUint8L(0));
67 test(r==KErrOverflow);
70 test.Next(_L("Replacing empty with empty"));
71 out.ReplaceL(aStore,empty);
74 in.OpenL(aStore,empty);
75 test(in.Source()->ReadL(&b,1)==0);
76 in.Source()->SeekL(0,KStreamBeginning);
77 test(in.Source()->SeekL(MStreamBuf::ERead,EStreamMark)==KStreamBeginning);
78 test(in.Source()->SizeL()==0);
79 TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamBeginning,1));
81 TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
84 out.OpenL(aStore,empty);
85 out.Sink()->SeekL(0,KStreamBeginning);
86 test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==KStreamBeginning);
87 test(out.Sink()->SizeL()==0);
88 TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamBeginning,1));
90 TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
92 TRAP(r,out.WriteUint8L(0));
93 test(r==KErrOverflow);
98 // Test writing to a store
100 LOCAL_C void testWriteL(CPersistentStore& aStore)
102 test.Next(_L("Writing..."));
103 RStoreWriteStream out;
104 TStreamId id=out.CreateLC(aStore);
105 TStreamPos end=KStreamBeginning; //*
106 for (TInt i=0;i<=KTestLength;++i)
108 test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==end); //*
109 out.WriteL(KTestDes,i);
110 test(out.Sink()->SeekL(0,EStreamEnd,-i)==end); //*
111 out.WriteL(&KTestData[i],KTestLength-i);
112 end+=KTestLength; //*
114 //* test(out.Sink()->SizeL()==end.Offset());
115 //* out.WriteL(KTestDes,12);
117 test(out.Sink()->SizeL()==end.Offset()); //*
119 test(out.Sink()->SizeL()==end.Offset()); //*
121 aStore.SetRootL(out.CreateL(aStore));
125 CleanupStack::PopAndDestroy();
129 // Test reading from a store
131 LOCAL_C void testReadL(RReadStream& aStream)
133 for (TInt i=KTestLength;i>=0;--i)
135 aStream.ReadL(TheBuf,i);
136 test(TheBuf.Length()==i);
138 aStream.ReadL(&TheBuf[i],KTestLength-i);
139 TheBuf.SetLength(KTestLength);
140 test(TheBuf==KTestDes);
145 // Test reading from a store
147 LOCAL_C void testReadL(const CPersistentStore& aStore)
149 test.Next(_L("Reading..."));
151 in.OpenLC(aStore,aStore.Root());
158 CleanupStack::PopAndDestroy();
162 // Test copying from one stream to another.
164 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
166 test.Next(_L("Copying"));
167 for (TInt i=KTestLength;i>=0;--i)
169 aWriteStream.WriteL(aReadStream,i);
170 aReadStream.ReadL(aWriteStream,KTestLength-i);
174 @SYMTestCaseID SYSLIB-STORE-CT-1153
175 @SYMTestCaseDesc Tests for writing using a permanent file store
176 @SYMTestPriority High
177 @SYMTestActions Tests for memory and end of file error while creating the store.
178 Tests for writing to replaced,temporary,opened,created file.
179 Tests for creating an already existing file.
180 Tests for panic while deleting a file.
181 @SYMTestExpectedResults Test must not fail
184 LOCAL_C void testWriteL()
186 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1153 Creating and failing to open 'ghost' file "));
188 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
190 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
192 TheFs.Delete(parse.NameAndExt());
193 CFileStore* store=CPermanentFileStore::CreateLC(TheFs,parse.NameAndExt(),EFileWrite);
194 CleanupStack::PopAndDestroy();
196 TRAPD(r,store=CPermanentFileStore::OpenL(TheFs,parse.NameAndExt(),EFileRead|EFileWrite));
197 test(store==NULL&&r==KErrEof);
199 test.Next(_L("Empty tests on replaced file"));
200 store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
201 store->SetTypeL(TUidType(KPermanentFileStoreLayoutUid,KPermanentFileStoreLayoutUid));
203 CleanupStack::PopAndDestroy();
205 test.Next(_L("Writing to temp file"));
206 store=CPermanentFileStore::TempLC(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
207 store->SetTypeL(TUidType(store->Layout(),KNullUid,KPermanentFileStoreLayoutUid));
210 CleanupStack::PopAndDestroy();
211 (void)TheFs.Delete(TheTempFile);
213 test.Next(_L("Writing to temp file - 2"));
214 store=CPermanentFileStore::TempL(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
215 CleanupStack::PushL(store);
216 store->SetTypeL(TUidType(store->Layout(),KNullUid,KPermanentFileStoreLayoutUid));
219 CleanupStack::PopAndDestroy();
221 test.Next(_L("Writing to opened file"));
222 store=CPermanentFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
225 CleanupStack::PopAndDestroy();
227 test.Next(_L("Failing to create existing file"));
229 TRAP(r,store=CPermanentFileStore::CreateL(TheFs,TheTempFile,EFileWrite));
230 test(store==NULL&&r==KErrAlreadyExists);
231 if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
232 test.Panic(_L("Deleting file"));
234 test.Next(_L("Writing to created file"));
236 test(file.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
237 store=CPermanentFileStore::NewLC(file);
238 store->SetTypeL(KPermanentFileStoreLayoutUid);
241 CleanupStack::PopAndDestroy();
244 @SYMTestCaseID SYSLIB-STORE-CT-1154
245 @SYMTestCaseDesc Tests for reading using a permanent file store.
246 @SYMTestPriority High
247 @SYMTestActions Read data from a stream
248 @SYMTestExpectedResults Test must not fail
251 LOCAL_C void testReadL()
253 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1154 Reading from opened file "));
255 TParsePtrC parse(KFileLocationSpec);
258 test(file.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
259 CFileStore* store=CFileStore::FromLC(file);
262 CleanupStack::PopAndDestroy();
264 test.Next(_L("Reading from temp file"));
265 test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
266 store=CPermanentFileStore::FromLC(file);
268 CleanupStack::PopAndDestroy();
271 LOCAL_C void testRootL(CPersistentStore& aStore)
273 aStore.SetRootL(aStore.ExtendL());
277 LOCAL_C void testDummyL(CFileStore& aStore)
279 aStore.SetTypeL(aStore.Layout());
283 @SYMTestCaseID SYSLIB-STORE-CT-1155
284 @SYMTestCaseDesc Tests for recovery from write failures
285 @SYMTestPriority High
286 @SYMTestActions Tests for access denied error during writing,commit and update process
287 @SYMTestExpectedResults Test must not fail
290 LOCAL_C void testRecoveryL()
292 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1155 Recovering from write failures "));
293 TParsePtrC parse(KFileLocationSpec);
295 CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
296 store->SetTypeL(KPermanentFileStoreLayoutUid);
300 store->File().Close();
301 test(store->File().Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
302 // fail during writing
303 TRAPD(r,store->SetTypeL(store->Type());testWriteL(*store));
304 test(r==KErrAccessDenied);
307 // fail during commit
308 TRAP(r,testRootL(*store));
309 test(r==KErrAccessDenied);
312 // fail during dummy update
313 TRAP(r,testDummyL(*store));
314 test(r==KErrAccessDenied);
317 CleanupStack::PopAndDestroy();
320 @SYMTestCaseID SYSLIB-STORE-CT-1156
321 @SYMTestCaseDesc Tests copying in a single file store.
322 @SYMTestPriority High
323 @SYMTestActions Tests for copying using different buffer sizes
324 @SYMTestExpectedResults Test must not fail
327 LOCAL_C void testCopyL()
329 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1156 Copying using small transfers "));
330 TParsePtrC parse(KFileLocationSpec);
332 CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
334 in.OpenLC(*store,store->Root());
339 in.OpenL(*store,copyId);
340 RStoreWriteStream out;
341 TStreamId id=out.CreateLC(*store);
350 test.Next(_L("Copying using a single big transfer"));
351 in.OpenL(*store,copyId);
352 id=out.CreateL(*store);
353 in.ReadL(out,KTestTotal);
360 in.OpenL(*store,copyId);
361 id=out.CreateL(*store);
362 out.WriteL(in,KTestTotal);
369 CleanupStack::PopAndDestroy(3);
373 // Test empty streams.
375 LOCAL_C void testEmptyL()
377 test.Next(_L("Empty tests on existing file"));
378 TParsePtrC parse(KFileLocationSpec);
379 CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
382 CleanupStack::PopAndDestroy();
385 @SYMTestCaseID SYSLIB-STORE-CT-1157
386 @SYMTestCaseDesc Tests for detaching file from store
387 @SYMTestPriority High
388 @SYMTestActions Detach the file and discard the store
389 @SYMTestExpectedResults Test must not fail
392 LOCAL_C void testDetachL()
394 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1157 Writing a file store "));
395 TParsePtrC parse(KFileLocationSpec);
397 CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
398 store->SetTypeL(KPermanentFileStoreLayoutUid);
402 test.Next(_L("Detach the file and discard the store"));
403 RFile file=store->File();
405 store->Reattach(file);
406 RFile& file2 = store->File();
407 test(file2.SubSessionHandle() != KNullHandle);
409 CleanupStack::PopAndDestroy();
411 test.Next(_L("Re-construct the store and check the contents"));
412 store=CFileStore::FromLC(file);
415 CleanupStack::PopAndDestroy();
418 @SYMTestCaseID SYSLIB-STORE-CT-1158
419 @SYMTestCaseDesc Tests for defect No 039456
420 Permanent File Store allows code to open and read from deleted streams
421 @SYMTestPriority High
422 @SYMTestActions Create four streams,delete last three and close the store.
423 Open the store and test for reading the first stream.
424 @SYMTestExpectedResults Test must not fail
427 LOCAL_C void testDef039456L()
429 _LIT(KMsvDrivelessTestPath, ":\\t_storperm.dat");
430 TFileName msvTestPath;
431 msvTestPath.Append(RFs::GetSystemDriveChar());
432 msvTestPath.Append(KMsvDrivelessTestPath);
434 _LIT(KStringOne, "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111");
435 _LIT(KStringTwo, "2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222");
437 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1158 "));
438 TheFs.Delete(msvTestPath);
439 CPermanentFileStore* testStore = CPermanentFileStore::CreateLC(TheFs, msvTestPath, EFileWrite|EFileShareAny);
440 testStore->SetTypeL(KPermanentFileStoreLayoutUid);
442 // create four streams,
443 RStoreWriteStream wstream;
444 TStreamId stream_one=wstream.CreateLC(*testStore);
445 wstream << KStringOne;
447 CleanupStack::PopAndDestroy(&wstream);
448 testStore->CommitL();
449 TStreamId stream_two=wstream.CreateLC(*testStore);
450 wstream << KStringTwo;
452 CleanupStack::PopAndDestroy(&wstream);
453 testStore->CommitL();
454 TStreamId stream_three=wstream.CreateLC(*testStore);
455 wstream << KStringOne;
457 CleanupStack::PopAndDestroy(&wstream);
458 testStore->CommitL();
459 TStreamId stream_four=wstream.CreateLC(*testStore);
460 wstream << KStringOne;
462 CleanupStack::PopAndDestroy(&wstream);
463 testStore->CommitL();
465 // delete last three streams added (not in the order added)
466 testStore->DeleteL(stream_four);
467 testStore->CommitL();
468 testStore->DeleteL(stream_three);
469 testStore->CommitL();
470 testStore->DeleteL(stream_two);
471 testStore->CommitL();
474 CleanupStack::PopAndDestroy(testStore);
476 // open store, try and read each of the streams, only stream_one should be present
477 testStore = CPermanentFileStore::OpenLC(TheFs, msvTestPath, EFileWrite|EFileShareAny);
478 RStoreReadStream rstream1, rstream2;
480 // check stream_one ok
481 TRAPD(error_stream_one,rstream1.OpenL(*testStore,stream_one));
482 test(error_stream_one==KErrNone);
485 // shouldn't be able to open this stream as we deleted it....
486 TRAPD(error_stream_two,rstream2.OpenL(*testStore,stream_two));
487 test(error_stream_two==KErrNotFound);
489 CleanupStack::PopAndDestroy(testStore);
491 (void)TheFs.Delete(msvTestPath);
495 @SYMTestCaseID PDS-STORE-UT-4059
496 @SYMTestCaseDesc Tests for defect No ou1cimx1#422232
497 The installed help topics are not organized to Application help topics.
498 @SYMTestPriority High
499 @SYMTestActions Tests that the EFileWriteDirectIO is appended only when necessary, also
500 test that any EFileWriteBuffered is unset (no error occurs when this is
502 @SYMTestExpectedResults Test must not fail
503 @SYMDEF ou1cimx1#422232
505 LOCAL_C void testOpenL()
507 _LIT(KFileName,"C:\\t_storfperm.dat");
509 test.Next(_L("@SYMTestCaseID:PDS-STORE-UT-4059: CPermanentFileStore::ReplaceL() test"));
510 CPermanentFileStore* testStore = CPermanentFileStore::ReplaceL(TheFs, KFileName, EFileWrite|EFileWriteBuffered);
513 (void)TheFs.Delete(KFileName);
517 // Prepare the test directory.
519 LOCAL_C void setupTestDirectory()
521 TInt r=TheFs.Connect();
524 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
526 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
528 r=TheFs.MkDir(parse.DriveAndPath());
529 test(r==KErrNone||r==KErrAlreadyExists);
530 r=TheFs.SetSessionPath(parse.DriveAndPath());
535 // Initialise the cleanup stack.
537 LOCAL_C void setupCleanup()
539 TheTrapCleanup=CTrapCleanup::New();
540 test(TheTrapCleanup!=NULL);
543 for (TInt i=KTestCleanupStack;i>0;i--)\
544 CleanupStack::PushL((TAny*)0);\
545 CleanupStack::Pop(KTestCleanupStack);\
550 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
553 TInt err = fsSession.Connect();
557 if(fsSession.Entry(aFullName, entry) == KErrNone)
559 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
560 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
563 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
565 err = fsSession.Delete(aFullName);
568 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
575 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
580 // Test permanent file store.
582 GLDEF_C TInt E32Main()
585 setupTestDirectory();
589 test.Start(_L("Test permanent file store"));
590 TRAPD(r,testWriteL());
594 TRAP(r,testRecoveryL());
598 TRAP(r,testEmptyL());
600 TRAP(r,testDetachL());
602 TRAP(r,testDef039456L());
607 //deletion of data files must be before call to .End() - DEF047652
608 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
610 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
611 ::DeleteDataFile(parse.FullName());
617 delete TheTrapCleanup;
618 if (TheFs.Delete(TheTempFile)!=KErrNone)
619 test.Panic(_L("Deleting temp file"));