sl@0: // Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: const TInt KTestCleanupStack=0x20; sl@0: sl@0: // This is a path specification and should not be used as is sl@0: _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FDIR.DAT"); sl@0: const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"); sl@0: const TInt KTestLength=36; sl@0: const TInt KTestTotal=KTestLength*(KTestLength+1); sl@0: const TPtrC8 KTestDes(KTestData,KTestLength); sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup; sl@0: LOCAL_D RTest test(_L("t_storfdir")); sl@0: LOCAL_D RFs TheFs; sl@0: LOCAL_D TFileName TheTempFile; sl@0: LOCAL_D TBuf8 TheBuf; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-1147 sl@0: @SYMTestCaseDesc Writing to a store test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for writing to a store sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void testWriteL(CPersistentStore& aStore) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1147 Writing... ")); sl@0: RStoreWriteStream out; sl@0: TStreamId id=out.CreateLC(aStore); sl@0: for (TInt i=0;i<=KTestLength;++i) sl@0: { sl@0: out.WriteL(KTestDes,i); sl@0: out.WriteL(&KTestData[i],KTestLength-i); sl@0: } sl@0: out.CommitL(); sl@0: out.Close(); sl@0: aStore.SetRootL(out.CreateL(aStore)); sl@0: out<=0;--i) sl@0: { sl@0: aStream.ReadL(TheBuf,i); sl@0: test(TheBuf.Length()==i); sl@0: TheBuf.SetMax(); sl@0: aStream.ReadL(&TheBuf[i],KTestLength-i); sl@0: TheBuf.SetLength(KTestLength); sl@0: test(TheBuf==KTestDes); sl@0: } sl@0: } sl@0: sl@0: // sl@0: // Test reading from a store sl@0: // sl@0: LOCAL_C void testReadL(const CPersistentStore& aStore) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1148 Reading... ")); sl@0: RStoreReadStream in; sl@0: in.OpenLC(aStore,aStore.Root()); sl@0: in>>TheBuf; sl@0: TStreamId id; sl@0: in>>id; sl@0: in.Close(); sl@0: in.OpenL(aStore,id); sl@0: testReadL(in); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: sl@0: // sl@0: // Test copying from one stream to another. sl@0: // sl@0: LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream) sl@0: { sl@0: test.Next(_L("Copying")); sl@0: for (TInt i=KTestLength;i>=0;--i) sl@0: { sl@0: aWriteStream.WriteL(aReadStream,i); sl@0: aReadStream.ReadL(aWriteStream,KTestLength-i); sl@0: } sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-1149 sl@0: @SYMTestCaseDesc Tests writing using a direct file store sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for memory and end of file error while creating the store. sl@0: Tests for writing to replaced,temporary,opened,created file. sl@0: Tests for creating an already existing file. sl@0: Tests for panic while deleting a file. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void testWriteL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1149 Creating and failing to open 'ghost' file ")); sl@0: sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KFileLocationSpec, NULL); sl@0: sl@0: TheFs.Delete(parse.NameAndExt()); sl@0: CFileStore* store=CDirectFileStore::CreateLC(TheFs,parse.NameAndExt(),EFileWrite); sl@0: CleanupStack::PopAndDestroy(); sl@0: store=NULL; sl@0: TRAPD(r,store=CDirectFileStore::OpenL(TheFs,parse.NameAndExt(),EFileRead|EFileWrite)); sl@0: test(store==NULL&&r==KErrEof); sl@0: // sl@0: test.Next(_L("Writing to replaced file")); sl@0: store=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite); sl@0: store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KDirectFileStoreLayoutUid)); sl@0: testWriteL(*store); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: test.Next(_L("Writing to replaced file - 2")); sl@0: store=CDirectFileStore::ReplaceL(TheFs,parse.NameAndExt(),EFileWrite); sl@0: CleanupStack::PushL(store); sl@0: store->SetTypeL(TUidType(KDirectFileStoreLayoutUid,KDirectFileStoreLayoutUid)); sl@0: testWriteL(*store); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: test.Next(_L("Writing to temp file")); sl@0: store=CDirectFileStore::TempLC(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite); sl@0: store->SetTypeL(TUidType(store->Layout(),KNullUid,KDirectFileStoreLayoutUid)); sl@0: testWriteL(*store); sl@0: store->CommitL(); sl@0: CleanupStack::PopAndDestroy(); sl@0: (void)TheFs.Delete(TheTempFile); sl@0: // sl@0: test.Next(_L("Writing to temp file - 2")); sl@0: store=CDirectFileStore::TempL(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite); sl@0: CleanupStack::PushL(store); sl@0: store->SetTypeL(TUidType(store->Layout(),KNullUid,KDirectFileStoreLayoutUid)); sl@0: testWriteL(*store); sl@0: store->CommitL(); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: test.Next(_L("Writing to opened file")); sl@0: store=CDirectFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite); sl@0: testWriteL(*store); sl@0: store->CommitL(); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: test.Next(_L("Failing to create existing file")); sl@0: store=NULL; sl@0: TRAP(r,store=CDirectFileStore::CreateL(TheFs,TheTempFile,EFileWrite)); sl@0: test(store==NULL&&r==KErrAlreadyExists); sl@0: if (TheFs.Delete(parse.NameAndExt())!=KErrNone) sl@0: test.Panic(_L("Deleting file")); sl@0: // sl@0: test.Next(_L("Writing to created file")); sl@0: RFile file; sl@0: test(file.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone); sl@0: store=CDirectFileStore::NewLC(file); sl@0: CleanupStack::PopAndDestroy(); sl@0: test(file.Open(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone); sl@0: store=CDirectFileStore::NewL(file); sl@0: CleanupStack::PushL(store); sl@0: store->SetTypeL(KDirectFileStoreLayoutUid); sl@0: testWriteL(*store); sl@0: store->CommitL(); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-1150 sl@0: @SYMTestCaseDesc Tests reading from an opened file sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for reading using a direct file store sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void testReadL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1150 Reading from opened file ")); sl@0: TParsePtrC parse(KFileLocationSpec); sl@0: sl@0: RFile file; sl@0: test(file.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone); sl@0: CFileStore* store=CFileStore::FromL(file); sl@0: CleanupStack::PushL(store); sl@0: testReadL(*store); sl@0: store->CommitL(); sl@0: TRAPD(r, store->RevertL()); sl@0: test(r== KErrNotSupported); sl@0: CleanupStack::PopAndDestroy(); sl@0: // sl@0: test.Next(_L("Reading from temp file")); sl@0: test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone); sl@0: store=CDirectFileStore::FromLC(file); sl@0: testReadL(*store); sl@0: CleanupStack::PopAndDestroy(); sl@0: sl@0: test.Next(_L("Reading from temp file - 2")); sl@0: test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone); sl@0: store=CDirectFileStore::FromL(file); sl@0: CleanupStack::PushL(store); sl@0: testReadL(*store); sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-1151 sl@0: @SYMTestCaseDesc Copying to a single file store test. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Test for copying using different buffer sizes sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void testCopyL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1151 Copying using small transfers ")); sl@0: TParsePtrC parse(KFileLocationSpec); sl@0: sl@0: CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite); sl@0: RStoreReadStream in; sl@0: in.OpenLC(*store,store->Root()); sl@0: in>>TheBuf; sl@0: TStreamId copyId; sl@0: in>>copyId; sl@0: in.Close(); sl@0: in.OpenL(*store,copyId); sl@0: RStoreWriteStream out; sl@0: TStreamId id=out.CreateLC(*store); sl@0: testCopyL(out,in); sl@0: out.CommitL(); sl@0: out.Close(); sl@0: in.Close(); sl@0: in.OpenL(*store,id); sl@0: testReadL(in); sl@0: in.Close(); sl@0: // sl@0: test.Next(_L("Copying using a single big transfer")); sl@0: in.OpenL(*store,copyId); sl@0: id=out.CreateL(*store); sl@0: in.ReadL(out,KTestTotal); sl@0: out.CommitL(); sl@0: out.Close(); sl@0: in.Close(); sl@0: in.OpenL(*store,id); sl@0: testReadL(in); sl@0: in.Close(); sl@0: in.OpenL(*store,copyId); sl@0: id=out.CreateL(*store); sl@0: out.WriteL(in,KTestTotal); sl@0: out.CommitL(); sl@0: out.Close(); sl@0: in.Close(); sl@0: in.OpenL(*store,id); sl@0: testReadL(in); sl@0: // sl@0: CleanupStack::PopAndDestroy(3); sl@0: } sl@0: sl@0: // sl@0: // Prepare the test directory. sl@0: // sl@0: LOCAL_C void setupTestDirectory() sl@0: { sl@0: TInt r=TheFs.Connect(); sl@0: test(r==KErrNone); sl@0: // sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KFileLocationSpec, NULL); sl@0: sl@0: r=TheFs.MkDir(parse.DriveAndPath()); sl@0: test(r==KErrNone||r==KErrAlreadyExists); sl@0: r=TheFs.SetSessionPath(parse.DriveAndPath()); sl@0: test(r==KErrNone); sl@0: } sl@0: sl@0: // sl@0: // Initialise the cleanup stack. sl@0: // sl@0: LOCAL_C void setupCleanup() sl@0: { sl@0: TheTrapCleanup=CTrapCleanup::New(); sl@0: test(TheTrapCleanup!=NULL); sl@0: TRAPD(r,\ sl@0: {\ sl@0: for (TInt i=KTestCleanupStack;i>0;i--)\ sl@0: CleanupStack::PushL((TAny*)0);\ sl@0: CleanupStack::Pop(KTestCleanupStack);\ sl@0: }); sl@0: test(r==KErrNone); sl@0: } sl@0: sl@0: LOCAL_C void DeleteDataFile(const TDesC& aFullName) sl@0: { sl@0: RFs fsSession; sl@0: TInt err = fsSession.Connect(); sl@0: if(err == KErrNone) sl@0: { sl@0: TEntry entry; sl@0: if(fsSession.Entry(aFullName, entry) == KErrNone) sl@0: { sl@0: RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName); sl@0: err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName); sl@0: } sl@0: err = fsSession.Delete(aFullName); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: fsSession.Close(); sl@0: } sl@0: else sl@0: { sl@0: RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: // sl@0: // Test direct file store. sl@0: // sl@0: { sl@0: test.Title(); sl@0: setupTestDirectory(); sl@0: setupCleanup(); sl@0: __UHEAP_MARK; sl@0: // sl@0: test.Start(_L("Test direct file store")); sl@0: TRAPD(r,testWriteL()); sl@0: test(r==KErrNone); sl@0: TRAP(r,testReadL()); sl@0: test(r==KErrNone); sl@0: TRAP(r,testCopyL()); sl@0: test(r==KErrNone); sl@0: sl@0: //deletion of data files must be before call to .End() - DEF047652 sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KFileLocationSpec, NULL); sl@0: ::DeleteDataFile(parse.FullName()); sl@0: sl@0: test.End(); sl@0: // sl@0: __UHEAP_MARKEND; sl@0: sl@0: delete TheTrapCleanup; sl@0: if (TheFs.Delete(TheTempFile)!=KErrNone) sl@0: test.Panic(_L("Deleting temp file")); sl@0: TheFs.Close(); sl@0: test.Close(); sl@0: return 0; sl@0: } sl@0: