os/persistentdata/persistentstorage/store/TFILE/t_storfperm.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <s32file.h>
    17 #include <e32test.h>
    18 
    19 const TInt KTestCleanupStack=0x20;
    20 
    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);
    27 
    28 LOCAL_D CTrapCleanup* TheTrapCleanup;
    29 LOCAL_D RTest test(_L("t_storfperm"));
    30 LOCAL_D RFs TheFs;
    31 LOCAL_D TFileName TheTempFile;
    32 LOCAL_D TBuf8<KTestLength+1> TheBuf;
    33 /**
    34 @SYMTestCaseID          SYSLIB-STORE-CT-1152
    35 @SYMTestCaseDesc	    Tests empty streams
    36 @SYMTestPriority 	    High
    37 @SYMTestActions  	    Tests for empty stream buffers.Check for end of file error,overflow error flags
    38 @SYMTestExpectedResults Test must not fail
    39 @SYMREQ                 REQ0000
    40 */
    41 LOCAL_C void testEmptyL(CStreamStore& aStore)
    42 	{
    43 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1152 Stream created using 'extend' "));
    44 	TStreamId empty=aStore.ExtendL();
    45 	RStoreReadStream in;
    46 	in.OpenL(aStore,empty);
    47 	TUint8 b;
    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));
    53 	test(r==KErrEof);
    54 	TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
    55 	test(r==KErrEof);
    56 	in.Close();
    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));
    63 	test(r==KErrEof);
    64 	TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
    65 	test(r==KErrEof);
    66 	TRAP(r,out.WriteUint8L(0));
    67 	test(r==KErrOverflow);
    68 	out.Close();
    69 //
    70 	test.Next(_L("Replacing empty with empty"));
    71 	out.ReplaceL(aStore,empty);
    72 	out.CommitL();
    73 	out.Release();
    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));
    80 	test(r==KErrEof);
    81 	TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
    82 	test(r==KErrEof);
    83 	in.Close();
    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));
    89 	test(r==KErrEof);
    90 	TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
    91 	test(r==KErrEof);
    92 	TRAP(r,out.WriteUint8L(0));
    93 	test(r==KErrOverflow);
    94 	out.Close();
    95 	}
    96 
    97 //
    98 // Test writing to a store
    99 //
   100 LOCAL_C void testWriteL(CPersistentStore& aStore)
   101 	{
   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)
   107 		{
   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; //*
   113 		}
   114 //*	test(out.Sink()->SizeL()==end.Offset());
   115 //*	out.WriteL(KTestDes,12);
   116 //*	end+=12;
   117 	test(out.Sink()->SizeL()==end.Offset()); //*
   118 	out.CommitL();
   119 	test(out.Sink()->SizeL()==end.Offset()); //*
   120 	out.Close();
   121 	aStore.SetRootL(out.CreateL(aStore));
   122 	out<<KTestDes;
   123 	out<<id;
   124 	out.CommitL();
   125 	CleanupStack::PopAndDestroy();
   126 	}
   127 
   128 //
   129 // Test reading from a store
   130 //
   131 LOCAL_C void testReadL(RReadStream& aStream)
   132 	{
   133 	for (TInt i=KTestLength;i>=0;--i)
   134 		{
   135 		aStream.ReadL(TheBuf,i);
   136 		test(TheBuf.Length()==i);
   137 		TheBuf.SetMax();
   138 		aStream.ReadL(&TheBuf[i],KTestLength-i);
   139 		TheBuf.SetLength(KTestLength);
   140 		test(TheBuf==KTestDes);
   141 		}
   142 	}
   143 
   144 //
   145 // Test reading from a store
   146 //
   147 LOCAL_C void testReadL(const CPersistentStore& aStore)
   148 	{
   149 	test.Next(_L("Reading..."));
   150 	RStoreReadStream in;
   151 	in.OpenLC(aStore,aStore.Root());
   152 	in>>TheBuf;
   153 	TStreamId id;
   154 	in>>id;
   155 	in.Close();
   156 	in.OpenL(aStore,id);
   157 	testReadL(in);
   158 	CleanupStack::PopAndDestroy();
   159 	}
   160 
   161 //
   162 // Test copying from one stream to another.
   163 //
   164 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
   165 	{
   166 	test.Next(_L("Copying"));
   167 	for (TInt i=KTestLength;i>=0;--i)
   168 		{
   169 		aWriteStream.WriteL(aReadStream,i);
   170 		aReadStream.ReadL(aWriteStream,KTestLength-i);
   171 		}
   172 	}
   173 /**
   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
   182 @SYMREQ                 REQ0000
   183 */
   184 LOCAL_C void testWriteL()
   185 	{
   186 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1153 Creating and failing to open 'ghost' file "));
   187 	
   188 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   189 	TParse parse;
   190 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   191 	
   192 	TheFs.Delete(parse.NameAndExt());
   193 	CFileStore* store=CPermanentFileStore::CreateLC(TheFs,parse.NameAndExt(),EFileWrite);
   194 	CleanupStack::PopAndDestroy();
   195 	store=NULL;
   196 	TRAPD(r,store=CPermanentFileStore::OpenL(TheFs,parse.NameAndExt(),EFileRead|EFileWrite));
   197 	test(store==NULL&&r==KErrEof);
   198 //
   199 	test.Next(_L("Empty tests on replaced file"));
   200 	store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
   201 	store->SetTypeL(TUidType(KPermanentFileStoreLayoutUid,KPermanentFileStoreLayoutUid));
   202 	testEmptyL(*store);
   203 	CleanupStack::PopAndDestroy();
   204 //
   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));
   208 	testWriteL(*store);
   209 	store->CommitL();
   210 	CleanupStack::PopAndDestroy();
   211 	(void)TheFs.Delete(TheTempFile);
   212 //
   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));
   217 	testWriteL(*store);
   218 	store->CommitL();
   219 	CleanupStack::PopAndDestroy();
   220 //
   221 	test.Next(_L("Writing to opened file"));
   222 	store=CPermanentFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
   223 	testWriteL(*store);
   224 	store->CommitL();
   225 	CleanupStack::PopAndDestroy();
   226 //
   227 	test.Next(_L("Failing to create existing file"));
   228 	store=NULL;
   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"));
   233 //
   234 	test.Next(_L("Writing to created file"));
   235 	RFile file;
   236 	test(file.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
   237 	store=CPermanentFileStore::NewLC(file);
   238 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   239 	testWriteL(*store);
   240 	store->CommitL();
   241 	CleanupStack::PopAndDestroy();
   242 	}
   243 /**
   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
   249 @SYMREQ                 REQ0000
   250 */
   251 LOCAL_C void testReadL()
   252 	{
   253 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1154 Reading from opened file "));
   254 
   255 	TParsePtrC parse(KFileLocationSpec);
   256 	
   257 	RFile file;
   258 	test(file.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
   259 	CFileStore* store=CFileStore::FromLC(file);
   260 	testReadL(*store);
   261 	store->CommitL();
   262 	CleanupStack::PopAndDestroy();
   263 //
   264 	test.Next(_L("Reading from temp file"));
   265 	test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
   266 	store=CPermanentFileStore::FromLC(file);
   267 	testReadL(*store);
   268 	CleanupStack::PopAndDestroy();
   269 	}
   270 
   271 LOCAL_C void testRootL(CPersistentStore& aStore)
   272 	{
   273 	aStore.SetRootL(aStore.ExtendL());
   274 	aStore.CommitL();
   275 	}
   276 
   277 LOCAL_C void testDummyL(CFileStore& aStore)
   278 	{
   279 	aStore.SetTypeL(aStore.Layout());
   280 	aStore.CommitL();
   281 	}
   282 /**
   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
   288 @SYMREQ                 REQ0000
   289 */
   290 LOCAL_C void testRecoveryL()
   291 	{
   292 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1155 Recovering from write failures "));
   293 	TParsePtrC parse(KFileLocationSpec);
   294 	
   295 	CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
   296 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   297 	testWriteL(*store);
   298 	store->CommitL();
   299 //
   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);
   305 	store->Revert();
   306 	testReadL(*store);
   307 // fail during commit
   308 	TRAP(r,testRootL(*store));
   309 	test(r==KErrAccessDenied);
   310 	store->Revert();
   311 	testReadL(*store);
   312 // fail during dummy update
   313 	TRAP(r,testDummyL(*store));
   314 	test(r==KErrAccessDenied);
   315 	store->Revert();
   316 	testReadL(*store);
   317 	CleanupStack::PopAndDestroy();
   318 	}
   319 /**
   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
   325 @SYMREQ                 REQ0000
   326 */
   327 LOCAL_C void testCopyL()
   328 	{
   329 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1156 Copying using small transfers "));
   330 	TParsePtrC parse(KFileLocationSpec);
   331 	
   332 	CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
   333 	RStoreReadStream in;
   334 	in.OpenLC(*store,store->Root());
   335 	in>>TheBuf;
   336 	TStreamId copyId;
   337 	in>>copyId;
   338 	in.Close();
   339 	in.OpenL(*store,copyId);
   340 	RStoreWriteStream out;
   341 	TStreamId id=out.CreateLC(*store);
   342 	testCopyL(out,in);
   343 	out.CommitL();
   344 	out.Close();
   345 	in.Close();
   346 	in.OpenL(*store,id);
   347 	testReadL(in);
   348 	in.Close();
   349 //
   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);
   354 	out.CommitL();
   355 	out.Close();
   356 	in.Close();
   357 	in.OpenL(*store,id);
   358 	testReadL(in);
   359 	in.Close();
   360 	in.OpenL(*store,copyId);
   361 	id=out.CreateL(*store);
   362 	out.WriteL(in,KTestTotal);
   363 	out.CommitL();
   364 	out.Close();
   365 	in.Close();
   366 	in.OpenL(*store,id);
   367 	testReadL(in);
   368 //
   369 	CleanupStack::PopAndDestroy(3);
   370 	}
   371 
   372 //
   373 // Test empty streams.
   374 //
   375 LOCAL_C void testEmptyL()
   376 	{
   377 	test.Next(_L("Empty tests on existing file"));
   378 	TParsePtrC parse(KFileLocationSpec);
   379 	CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
   380 	testEmptyL(*store);
   381 //
   382 	CleanupStack::PopAndDestroy();
   383 	}
   384 /**
   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
   390 @SYMREQ                 REQ0000
   391 */
   392 LOCAL_C void testDetachL()
   393 	{
   394 	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1157 Writing a file store "));
   395 	TParsePtrC parse(KFileLocationSpec);
   396 	
   397 	CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
   398 	store->SetTypeL(KPermanentFileStoreLayoutUid);
   399 	testWriteL(*store);
   400 	store->CommitL();
   401 //
   402 	test.Next(_L("Detach the file and discard the store"));
   403 	RFile file=store->File();
   404 	store->Detach();
   405 	store->Reattach(file);
   406 	RFile& file2 = store->File();
   407 	test(file2.SubSessionHandle() != KNullHandle);
   408 	store->Detach();
   409 	CleanupStack::PopAndDestroy();
   410 //
   411 	test.Next(_L("Re-construct the store and check the contents"));
   412 	store=CFileStore::FromLC(file);
   413 	testReadL(*store);
   414 	store->Reset();
   415 	CleanupStack::PopAndDestroy();
   416 	}
   417 /**
   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
   425 @SYMREQ                 REQ0000
   426 */
   427 LOCAL_C void testDef039456L()
   428 {
   429 	_LIT(KMsvDrivelessTestPath, ":\\t_storperm.dat");
   430 	TFileName msvTestPath;
   431 	msvTestPath.Append(RFs::GetSystemDriveChar());
   432 	msvTestPath.Append(KMsvDrivelessTestPath);
   433 	
   434 	_LIT(KStringOne, "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111");
   435 	_LIT(KStringTwo, "2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222");
   436 
   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);
   441 
   442 	// create four streams,
   443 	RStoreWriteStream wstream;
   444 	TStreamId stream_one=wstream.CreateLC(*testStore);
   445 	wstream << KStringOne;
   446 	wstream.CommitL();
   447 	CleanupStack::PopAndDestroy(&wstream);
   448 	testStore->CommitL();
   449 	TStreamId stream_two=wstream.CreateLC(*testStore);
   450 	wstream << KStringTwo;
   451 	wstream.CommitL();
   452 	CleanupStack::PopAndDestroy(&wstream);
   453 	testStore->CommitL();
   454 	TStreamId stream_three=wstream.CreateLC(*testStore);
   455 	wstream << KStringOne;
   456 	wstream.CommitL();
   457 	CleanupStack::PopAndDestroy(&wstream);
   458 	testStore->CommitL();
   459 	TStreamId stream_four=wstream.CreateLC(*testStore);
   460 	wstream << KStringOne;
   461 	wstream.CommitL();
   462 	CleanupStack::PopAndDestroy(&wstream);
   463 	testStore->CommitL();
   464 
   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();
   472 
   473 	// close the store
   474 	CleanupStack::PopAndDestroy(testStore);
   475 
   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;
   479 
   480 	// check stream_one ok
   481 	TRAPD(error_stream_one,rstream1.OpenL(*testStore,stream_one));
   482 	test(error_stream_one==KErrNone);
   483 	rstream1.Close();
   484 
   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);
   488 
   489 	CleanupStack::PopAndDestroy(testStore);
   490 	
   491 	(void)TheFs.Delete(msvTestPath);
   492 	}
   493 
   494 /**
   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
   501                         passed in)
   502 @SYMTestExpectedResults Test must not fail
   503 @SYMDEF                 ou1cimx1#422232
   504 */
   505 LOCAL_C void testOpenL()
   506     {    
   507     _LIT(KFileName,"C:\\t_storfperm.dat");
   508     
   509     test.Next(_L("@SYMTestCaseID:PDS-STORE-UT-4059: CPermanentFileStore::ReplaceL() test"));
   510     CPermanentFileStore* testStore = CPermanentFileStore::ReplaceL(TheFs, KFileName, EFileWrite|EFileWriteBuffered);
   511     delete testStore;
   512     
   513     (void)TheFs.Delete(KFileName);
   514     }
   515 
   516 //
   517 // Prepare the test directory.
   518 //
   519 LOCAL_C void setupTestDirectory()
   520     {
   521 	TInt r=TheFs.Connect();
   522 	test(r==KErrNone);
   523 //
   524 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   525 	TParse parse;
   526 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   527 	
   528 	r=TheFs.MkDir(parse.DriveAndPath());
   529 	test(r==KErrNone||r==KErrAlreadyExists);
   530 	r=TheFs.SetSessionPath(parse.DriveAndPath());
   531 	test(r==KErrNone);
   532 	}
   533 
   534 //
   535 // Initialise the cleanup stack.
   536 //
   537 LOCAL_C void setupCleanup()
   538     {
   539 	TheTrapCleanup=CTrapCleanup::New();
   540 	test(TheTrapCleanup!=NULL);
   541 	TRAPD(r,\
   542 		{\
   543 		for (TInt i=KTestCleanupStack;i>0;i--)\
   544 			CleanupStack::PushL((TAny*)0);\
   545 		CleanupStack::Pop(KTestCleanupStack);\
   546 		});
   547 	test(r==KErrNone);
   548 	}
   549 
   550 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   551 	{
   552 	RFs fsSession;
   553 	TInt err = fsSession.Connect();
   554 	if(err == KErrNone)
   555 		{
   556 		TEntry entry;
   557 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   558 			{
   559 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   560 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   561 			if(err != KErrNone)
   562 				{
   563 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   564 				}
   565 			err = fsSession.Delete(aFullName);
   566 			if(err != KErrNone)
   567 				{
   568 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   569 				}
   570 			}
   571 		fsSession.Close();
   572 		}
   573 	else
   574 		{
   575 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   576 		}
   577 	}
   578 
   579 //
   580 // Test permanent file store.
   581 //
   582 GLDEF_C TInt E32Main()
   583     {
   584 	test.Title();
   585 	setupTestDirectory();
   586 	setupCleanup();
   587 	__UHEAP_MARK;
   588 //
   589 	test.Start(_L("Test permanent file store"));
   590 	TRAPD(r,testWriteL());
   591 	test(r==KErrNone);
   592 	TRAP(r,testReadL());
   593 	test(r==KErrNone);
   594 	TRAP(r,testRecoveryL());
   595 	test(r==KErrNone);
   596 	TRAP(r,testCopyL());
   597 	test(r==KErrNone);
   598 	TRAP(r,testEmptyL());
   599 	test(r==KErrNone);
   600 	TRAP(r,testDetachL());
   601 	test(r==KErrNone);
   602 	TRAP(r,testDef039456L());
   603 	test(r==KErrNone);
   604 	TRAP(r,testOpenL());
   605 	test(r==KErrNone);
   606 	
   607 	//deletion of data files must be before call to .End() - DEF047652
   608 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   609 	TParse parse;
   610 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   611 	::DeleteDataFile(parse.FullName());
   612 
   613 	test.End();
   614 //
   615 	__UHEAP_MARKEND;
   616 
   617 	delete TheTrapCleanup;
   618 	if (TheFs.Delete(TheTempFile)!=KErrNone)
   619 		test.Panic(_L("Deleting temp file"));
   620 	TheFs.Close();
   621 	test.Close();
   622 	return 0;
   623     }
   624