sl@0: // Copyright (c) 2008-2009 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: #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(KTestDirectFileName, "Z:\\STOR-TST\\T_STRDV.DAT"); //deletion of data files must be before call to .End() - DEF047652 sl@0: _LIT(KTestPermanentFileName, "Z:\\STOR-TST\\T_STRPV.DAT"); //deletion of data files must be before call to .End() - DEF047652 sl@0: sl@0: // The following data will be written to the beginning of the store file in the length of sl@0: // sizeof(TCheckedUid) to corrupt it. Its length should be more than that number. sl@0: _LIT8(KTestJunkData, "Junk data for corrupting the store file"); sl@0: sl@0: LOCAL_D RTest Test(_L("t_storverify")); sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup; sl@0: LOCAL_D RFs TheFs; sl@0: LOCAL_D CFileStore* TheStore; sl@0: LOCAL_D RStoreWriteStream TheSink; sl@0: sl@0: LOCAL_C void DeleteDataFile(const TDesC& aFullName); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-3350 sl@0: @SYMTestCaseDesc Direct file store verification test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Open a corrupted direct store file sl@0: @SYMTestExpectedResults the function called leaves with KErrNotSupported sl@0: @SYMDEF DEF100757 sl@0: */ sl@0: LOCAL_C void DirectFileL() sl@0: { sl@0: Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3350 Creating Direct File Store ")); sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KTestDirectFileName, NULL); sl@0: sl@0: // create a direct file store sl@0: TheStore=CDirectFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite); sl@0: TheStore->SetTypeL(TheStore->Layout()); sl@0: TInt8 val=100; sl@0: TStreamId id=TheSink.CreateL(*TheStore); sl@0: TheSink<SetRootL(id); sl@0: TheStore->CommitL(); sl@0: CleanupStack::PopAndDestroy(TheStore); sl@0: sl@0: // corrupt the store file sl@0: RFile file; sl@0: sl@0: User::LeaveIfError(file.Open(TheFs,parse.FullName(),EFileWrite)); sl@0: CleanupClosePushL(file); sl@0: User::LeaveIfError(file.Write(KTestJunkData,sizeof(TCheckedUid))); sl@0: CleanupStack::PopAndDestroy(&file); sl@0: sl@0: // the CDirectFileStore::OpenLC should leave if passed the corrupted store file name sl@0: TheStore = NULL; sl@0: TRAPD(r, \ sl@0: {\ sl@0: TheStore=CDirectFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\ sl@0: CleanupStack::PopAndDestroy(TheStore); \ sl@0: }\ sl@0: ); sl@0: Test(r==KErrNotSupported); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-STORE-CT-3351 sl@0: @SYMTestCaseDesc Permanent file store verification test sl@0: @SYMTestPriority High sl@0: @SYMTestActions Open a corrupted permanent store file sl@0: @SYMTestExpectedResults the function called leaves with KErrNotSupported sl@0: @SYMDEF DEF100757 sl@0: */ sl@0: LOCAL_C void PermFileL() sl@0: { sl@0: Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3351 Creating Permanent File Store ")); sl@0: sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KTestPermanentFileName, NULL); sl@0: sl@0: // create a permanent file store sl@0: TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite); sl@0: TheStore->SetTypeL(TheStore->Layout()); sl@0: TInt8 val=100; sl@0: TStreamId id=TheSink.CreateL(*TheStore); sl@0: TheSink<SetRootL(id); sl@0: TheStore->CommitL(); sl@0: CleanupStack::PopAndDestroy(TheStore); sl@0: sl@0: // corrupt the new data file sl@0: RFile file; sl@0: User::LeaveIfError(file.Open(TheFs,parse.FullName(),EFileWrite)); sl@0: CleanupClosePushL(file); sl@0: User::LeaveIfError(file.Write(KTestJunkData,sizeof(TCheckedUid))); sl@0: CleanupStack::PopAndDestroy(&file); sl@0: sl@0: // the CPermanentFileStore::OpenLC should leave if passed the corrupted store file name sl@0: TheStore = NULL; sl@0: TRAPD(r, \ sl@0: {\ sl@0: TheStore=CPermanentFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\ sl@0: CleanupStack::PopAndDestroy(TheStore); \ sl@0: }\ sl@0: ); sl@0: Test(r==KErrNotSupported); sl@0: } sl@0: sl@0: LOCAL_C void doMainL() sl@0: { sl@0: DirectFileL(); sl@0: PermFileL(); 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: TPtrC testDir=_L("\\STOR-TST\\"); sl@0: r=TheFs.MkDir(testDir); sl@0: Test(r==KErrNone||r==KErrAlreadyExists); sl@0: r=TheFs.SetSessionPath(testDir); 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*)1);\ sl@0: Test(r==KErrNone);\ sl@0: CleanupStack::Pop(KTestCleanupStack);\ sl@0: }); sl@0: Test(r==KErrNone); sl@0: } sl@0: sl@0: // sl@0: // Delete a specified file 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: // sl@0: // Test the store verification. sl@0: // sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: Test.Title(); sl@0: setupTestDirectory(); sl@0: setupCleanup(); sl@0: __UHEAP_MARK; sl@0: Test.Start(_L("Store Verification Test")); sl@0: sl@0: TRAPD(r,doMainL()); sl@0: sl@0: TDriveUnit drive(static_cast(RFs::GetSystemDrive())); sl@0: TParse parse; sl@0: parse.Set(drive.Name(), &KTestDirectFileName, NULL); sl@0: ::DeleteDataFile(parse.FullName()); sl@0: sl@0: parse.Set(drive.Name(), &KTestPermanentFileName, NULL); sl@0: ::DeleteDataFile(parse.FullName()); sl@0: sl@0: Test(r==KErrNone); sl@0: sl@0: Test.End(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: delete TheTrapCleanup; sl@0: TheFs.Close(); sl@0: Test.Close(); sl@0: return 0; sl@0: } sl@0: