Update contrib.
1 // Copyright (c) 2008-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.
20 const TInt KTestCleanupStack=0x20;
22 // This is a path specification and should not be used as is
23 _LIT(KTestDirectFileName, "Z:\\STOR-TST\\T_STRDV.DAT"); //deletion of data files must be before call to .End() - DEF047652
24 _LIT(KTestPermanentFileName, "Z:\\STOR-TST\\T_STRPV.DAT"); //deletion of data files must be before call to .End() - DEF047652
26 // The following data will be written to the beginning of the store file in the length of
27 // sizeof(TCheckedUid) to corrupt it. Its length should be more than that number.
28 _LIT8(KTestJunkData, "Junk data for corrupting the store file");
30 LOCAL_D RTest Test(_L("t_storverify"));
31 LOCAL_D CTrapCleanup* TheTrapCleanup;
33 LOCAL_D CFileStore* TheStore;
34 LOCAL_D RStoreWriteStream TheSink;
36 LOCAL_C void DeleteDataFile(const TDesC& aFullName);
39 @SYMTestCaseID SYSLIB-STORE-CT-3350
40 @SYMTestCaseDesc Direct file store verification test
42 @SYMTestActions Open a corrupted direct store file
43 @SYMTestExpectedResults the function called leaves with KErrNotSupported
46 LOCAL_C void DirectFileL()
48 Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3350 Creating Direct File Store "));
49 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
51 parse.Set(drive.Name(), &KTestDirectFileName, NULL);
53 // create a direct file store
54 TheStore=CDirectFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite);
55 TheStore->SetTypeL(TheStore->Layout());
57 TStreamId id=TheSink.CreateL(*TheStore);
60 TheStore->SetRootL(id);
62 CleanupStack::PopAndDestroy(TheStore);
64 // corrupt the store file
67 User::LeaveIfError(file.Open(TheFs,parse.FullName(),EFileWrite));
68 CleanupClosePushL(file);
69 User::LeaveIfError(file.Write(KTestJunkData,sizeof(TCheckedUid)));
70 CleanupStack::PopAndDestroy(&file);
72 // the CDirectFileStore::OpenLC should leave if passed the corrupted store file name
76 TheStore=CDirectFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\
77 CleanupStack::PopAndDestroy(TheStore); \
80 Test(r==KErrNotSupported);
84 @SYMTestCaseID SYSLIB-STORE-CT-3351
85 @SYMTestCaseDesc Permanent file store verification test
87 @SYMTestActions Open a corrupted permanent store file
88 @SYMTestExpectedResults the function called leaves with KErrNotSupported
91 LOCAL_C void PermFileL()
93 Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3351 Creating Permanent File Store "));
95 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
97 parse.Set(drive.Name(), &KTestPermanentFileName, NULL);
99 // create a permanent file store
100 TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite);
101 TheStore->SetTypeL(TheStore->Layout());
103 TStreamId id=TheSink.CreateL(*TheStore);
106 TheStore->SetRootL(id);
108 CleanupStack::PopAndDestroy(TheStore);
110 // corrupt the new data file
112 User::LeaveIfError(file.Open(TheFs,parse.FullName(),EFileWrite));
113 CleanupClosePushL(file);
114 User::LeaveIfError(file.Write(KTestJunkData,sizeof(TCheckedUid)));
115 CleanupStack::PopAndDestroy(&file);
117 // the CPermanentFileStore::OpenLC should leave if passed the corrupted store file name
121 TheStore=CPermanentFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\
122 CleanupStack::PopAndDestroy(TheStore); \
125 Test(r==KErrNotSupported);
128 LOCAL_C void doMainL()
135 // Prepare the test directory.
137 LOCAL_C void setupTestDirectory()
139 TInt r=TheFs.Connect();
141 TPtrC testDir=_L("\\STOR-TST\\");
142 r=TheFs.MkDir(testDir);
143 Test(r==KErrNone||r==KErrAlreadyExists);
144 r=TheFs.SetSessionPath(testDir);
149 // Initialise the cleanup stack.
151 LOCAL_C void setupCleanup()
153 TheTrapCleanup=CTrapCleanup::New();
154 Test(TheTrapCleanup!=NULL);
157 for (TInt i=KTestCleanupStack;i>0;i--)\
158 CleanupStack::PushL((TAny*)1);\
160 CleanupStack::Pop(KTestCleanupStack);\
166 // Delete a specified file
168 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
171 TInt err = fsSession.Connect();
175 if(fsSession.Entry(aFullName, entry) == KErrNone)
177 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
178 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
181 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
183 err = fsSession.Delete(aFullName);
186 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
193 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
198 // Test the store verification.
200 GLDEF_C TInt E32Main()
203 setupTestDirectory();
206 Test.Start(_L("Store Verification Test"));
210 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
212 parse.Set(drive.Name(), &KTestDirectFileName, NULL);
213 ::DeleteDataFile(parse.FullName());
215 parse.Set(drive.Name(), &KTestPermanentFileName, NULL);
216 ::DeleteDataFile(parse.FullName());
224 delete TheTrapCleanup;