os/persistentdata/persistentstorage/store/TSTOR/t_storverify.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32mem.h>
    17 #include <s32file.h>
    18 #include <e32test.h>
    19 
    20 const TInt KTestCleanupStack=0x20;
    21 
    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
    25 
    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");
    29 
    30 LOCAL_D RTest Test(_L("t_storverify"));
    31 LOCAL_D CTrapCleanup* TheTrapCleanup;
    32 LOCAL_D RFs TheFs;
    33 LOCAL_D CFileStore* TheStore;
    34 LOCAL_D RStoreWriteStream TheSink;
    35 
    36 LOCAL_C void DeleteDataFile(const TDesC& aFullName);
    37 
    38 /**
    39 @SYMTestCaseID          SYSLIB-STORE-CT-3350
    40 @SYMTestCaseDesc	    Direct file store verification test
    41 @SYMTestPriority 	    High
    42 @SYMTestActions  	    Open a corrupted direct store file
    43 @SYMTestExpectedResults the function called leaves with KErrNotSupported
    44 @SYMDEF                 DEF100757
    45 */
    46 LOCAL_C void DirectFileL()
    47 	{
    48 	Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3350 Creating Direct File Store "));
    49 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
    50 	TParse parse;
    51 	parse.Set(drive.Name(), &KTestDirectFileName, NULL);
    52 	
    53 	// create a direct file store
    54 	TheStore=CDirectFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite);
    55 	TheStore->SetTypeL(TheStore->Layout());
    56 	TInt8 val=100;
    57 	TStreamId id=TheSink.CreateL(*TheStore);
    58 	TheSink<<val;
    59 	TheSink.Close();
    60 	TheStore->SetRootL(id);
    61 	TheStore->CommitL();
    62 	CleanupStack::PopAndDestroy(TheStore);
    63 
    64 	// corrupt the store file
    65 	RFile file;
    66 
    67 	User::LeaveIfError(file.Open(TheFs,parse.FullName(),EFileWrite));
    68 	CleanupClosePushL(file);
    69 	User::LeaveIfError(file.Write(KTestJunkData,sizeof(TCheckedUid)));
    70 	CleanupStack::PopAndDestroy(&file);
    71 
    72 	// the CDirectFileStore::OpenLC should leave if passed the corrupted store file name
    73 	TheStore = NULL;
    74 	TRAPD(r, \
    75 			{\
    76 			TheStore=CDirectFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\
    77 			CleanupStack::PopAndDestroy(TheStore); \
    78 			}\
    79 		);
    80 	Test(r==KErrNotSupported);
    81 	}
    82 
    83 /**
    84 @SYMTestCaseID          SYSLIB-STORE-CT-3351
    85 @SYMTestCaseDesc	    Permanent file store verification test
    86 @SYMTestPriority 	    High
    87 @SYMTestActions  	    Open a corrupted permanent store file
    88 @SYMTestExpectedResults the function called leaves with KErrNotSupported
    89 @SYMDEF                 DEF100757
    90 */
    91 LOCAL_C void PermFileL()
    92 	{
    93 	Test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-3351 Creating Permanent File Store "));
    94 
    95 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
    96 	TParse parse;
    97 	parse.Set(drive.Name(), &KTestPermanentFileName, NULL);
    98 	
    99 	// create a permanent file store
   100 	TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.FullName(),EFileWrite);
   101 	TheStore->SetTypeL(TheStore->Layout());
   102 	TInt8 val=100;
   103 	TStreamId id=TheSink.CreateL(*TheStore);
   104 	TheSink<<val;
   105 	TheSink.Close();
   106 	TheStore->SetRootL(id);
   107 	TheStore->CommitL();
   108 	CleanupStack::PopAndDestroy(TheStore);
   109 
   110 	// corrupt the new data file
   111 	RFile 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);
   116 
   117 	// the CPermanentFileStore::OpenLC should leave if passed the corrupted store file name
   118 	TheStore = NULL;
   119 	TRAPD(r, \
   120 			{\
   121 			TheStore=CPermanentFileStore::OpenLC(TheFs,parse.FullName(),EFileRead);\
   122 			CleanupStack::PopAndDestroy(TheStore); \
   123 			}\
   124 		);
   125 	Test(r==KErrNotSupported);
   126 	}
   127 
   128 LOCAL_C void doMainL()
   129 	{
   130 	DirectFileL();
   131 	PermFileL();
   132 	}
   133 
   134 //
   135 // Prepare the test directory.
   136 //
   137 LOCAL_C void setupTestDirectory()
   138     {
   139 	TInt r=TheFs.Connect();
   140 	Test(r==KErrNone);
   141 	TPtrC testDir=_L("\\STOR-TST\\");
   142 	r=TheFs.MkDir(testDir);
   143 	Test(r==KErrNone||r==KErrAlreadyExists);
   144 	r=TheFs.SetSessionPath(testDir);
   145 	Test(r==KErrNone);
   146 	}
   147 
   148 //
   149 // Initialise the cleanup stack.
   150 //
   151 LOCAL_C void setupCleanup()
   152     {
   153 	TheTrapCleanup=CTrapCleanup::New();
   154 	Test(TheTrapCleanup!=NULL);
   155 	TRAPD(r,\
   156 		{\
   157 		for (TInt i=KTestCleanupStack;i>0;i--)\
   158 			CleanupStack::PushL((TAny*)1);\
   159 		Test(r==KErrNone);\
   160 		CleanupStack::Pop(KTestCleanupStack);\
   161 		});
   162 	Test(r==KErrNone);
   163 	}
   164 
   165 //
   166 // Delete a specified file
   167 //
   168 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   169 	{
   170 	RFs fsSession;
   171 	TInt err = fsSession.Connect();
   172 	if(err == KErrNone)
   173 		{
   174 		TEntry entry;
   175 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   176 			{
   177 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   178 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   179 			if(err != KErrNone)
   180 				{
   181 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   182 				}
   183 			err = fsSession.Delete(aFullName);
   184 			if(err != KErrNone)
   185 				{
   186 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   187 				}
   188 			}
   189 		fsSession.Close();
   190 		}
   191 	else
   192 		{
   193 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   194 		}
   195 	}
   196 
   197 //
   198 // Test the store verification.
   199 //
   200 GLDEF_C TInt E32Main()
   201     {
   202 	Test.Title();
   203 	setupTestDirectory();
   204 	setupCleanup();
   205 	__UHEAP_MARK;
   206 	Test.Start(_L("Store Verification Test"));
   207 
   208 	TRAPD(r,doMainL());
   209 
   210 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   211 	TParse parse;
   212 	parse.Set(drive.Name(), &KTestDirectFileName, NULL);
   213 	::DeleteDataFile(parse.FullName());
   214 	
   215 	parse.Set(drive.Name(), &KTestPermanentFileName, NULL);
   216 	::DeleteDataFile(parse.FullName());
   217 
   218 	Test(r==KErrNone);
   219 
   220 	Test.End();
   221 
   222 	__UHEAP_MARKEND;
   223 
   224 	delete TheTrapCleanup;
   225 	TheFs.Close();
   226 	Test.Close();
   227 	return 0;
   228     }
   229