os/persistentdata/persistentstorage/store/TPAGE/t_storpage.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 <s32cont.h>
    17 #include <s32file.h>
    18 #include <s32crypt.h>
    19 #include <e32test.h>
    20 #include <pbe.h>
    21 #include "UP_STD.H"
    22 
    23 const TInt KTestCleanupStack=0x20;
    24 
    25 // This is a path specification and should not be used as is
    26 _LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_SPAGE.DAT");
    27 _LIT(KPageFilePath, "C:\\TestSTOR\\T_SPAGEFILE.PAG");
    28 _LIT(KPageFilePathOnly, "C:\\TestSTOR\\");
    29 
    30 LOCAL_D CTrapCleanup* TheTrapCleanup;
    31 LOCAL_D RTest TheTest(_L("t_storpage"));
    32 LOCAL_D RFs TheFs;
    33 LOCAL_D CFileStore* TheStore;
    34 
    35 ///////////////////////////////////////////////////////////////////////////////////////
    36 ///////////////////////////////////////////////////////////////////////////////////////
    37 //Tests macros and functions.
    38 //If (!aValue) then the test will be panicked, the test data files will be deleted.
    39 static void Check(TInt aValue, TInt aLine)
    40 	{
    41 	if(!aValue)
    42 		{
    43 		TheTest.Printf(_L("*** Boolean expression evaluated to false!\r\n"));
    44 		TheTest(EFalse, aLine);
    45 		}
    46 	}
    47 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
    48 static void Check(TInt aValue, TInt aExpected, TInt aLine)
    49 	{
    50 	if(aValue != aExpected)
    51 		{
    52 		TheTest.Printf(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    53 		TheTest(EFalse, aLine);
    54 		}
    55 	}
    56 //Use these to test conditions.
    57 #define TEST(arg) ::Check((arg), __LINE__)
    58 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    59 
    60 ///////////////////////////////////////////////////////////////////////////////////////
    61 
    62 /**
    63 @SYMTestCaseID          SYSLIB-STORE-CT-1178
    64 @SYMTestCaseDesc	    TPagedSet functionality test
    65 @SYMTestPriority 	    High
    66 @SYMTestActions  	    Tests for insert,delete,contains,with and without duplicates operations
    67 @SYMTestExpectedResults Test must not fail
    68 @SYMREQ                 REQ0000
    69 */
    70 LOCAL_C void test1L(MPagePool& aPagePool)
    71 	{
    72 	const TInt KEntryCount=200;
    73 
    74 	TPagedSet<TInt32> set;
    75 	set.Connect(&aPagePool);
    76 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1178 Insertion & Deletion "));
    77 
    78 	TInt32 it=0;
    79 	set.InsertL(it);
    80 	TEST2(set.Count(), 1);
    81 	TRAPD(r,set.InsertL(it));
    82 	TEST2(r, KErrAlreadyExists);
    83 	TEST2(set.Count(), 1);
    84 	TEST(set.ContainsL(it));
    85 	set.DeleteL(it);
    86 	TEST2(set.Count(), 0);
    87 	TRAP(r,set.DeleteL(it));
    88 	TEST2(r, KErrNotFound);
    89 	TEST2(set.Count(), 0);
    90 	TEST(!set.ContainsL(it));
    91 
    92 	TheTest.Next(_L("No duplicates"));
    93 	TInt ii;
    94 	for (ii=0;ii<KEntryCount;++ii)
    95 		{
    96 		it=ii;
    97 		set.InsertL(it);
    98 		}
    99 	for (ii=0;ii<KEntryCount;++ii)
   100 		{
   101 		it=ii;
   102 		TEST(set.ContainsL(it));
   103 		}
   104 	TEST2(set.Count(), KEntryCount);
   105 
   106 	TheTest.Next(_L("Empty the set"));
   107 	set.ClearL();
   108 	TEST2(set.Count(), 0);
   109 	for (ii=0;ii<KEntryCount;++ii)
   110 		{
   111 		it=ii;
   112 		TEST(!set.ContainsL(it));
   113 		}
   114 
   115 	TheTest.End();
   116 	}
   117 
   118 struct TTest
   119 	{
   120 	inline TTest() {Mem::FillZ(this,sizeof(*this));}
   121 	TUint32 iVal;
   122 	TUint32 iPadding[14];
   123 	};
   124 
   125 /**
   126 @SYMTestCaseID          SYSLIB-STORE-CT-1179
   127 @SYMTestCaseDesc	    Tests for large set of TUint32
   128 @SYMTestPriority 	    High
   129 @SYMTestActions  	    Tests for inserting,contains,iteration,deletion operations
   130 @SYMTestExpectedResults Test must not fail
   131 @SYMREQ                 REQ0000
   132 */
   133 LOCAL_C void test2L(MPagePool& aPagePool)
   134 	{
   135 	const TInt KEntryCount=500;
   136 
   137 	TPagedSet<TTest> set;
   138 	set.Connect(&aPagePool);
   139 	TTest item;
   140 
   141 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1179 Add items "));
   142 	TUint32 jj=0;
   143 	TInt32 ii;
   144 	for (ii=KEntryCount;ii>0;--ii)
   145 		{
   146 		jj=(jj+17)%KEntryCount;
   147 		item.iVal=jj;
   148 		set.InsertL(item);
   149 		}
   150 	TEST2(set.Count(), KEntryCount);
   151 
   152 	TheTest.Next(_L("Check contents"));
   153 	for (ii=0;ii<KEntryCount;++ii)
   154 		{
   155 		item.iVal=ii;
   156 		TEST(set.ContainsL(item));
   157 		}
   158 
   159 	TheTest.Next(_L("Iterate over items"));
   160 	TUint8 *checkMap=(TUint8*)User::AllocLC(KEntryCount);
   161 	Mem::FillZ(checkMap,KEntryCount);
   162 	TPagedSetIter<TTest> iter(set);
   163 	if (iter.ResetL())
   164 		do	++checkMap[iter.AtL().iVal]; while (iter.NextL());
   165 	for (ii=0;ii<KEntryCount;++ii)
   166 		TEST2(checkMap[ii], 1);
   167 	CleanupStack::PopAndDestroy();
   168 
   169 	TheTest.Next(_L("Delete items"));
   170 	jj=0;
   171 	for (ii=KEntryCount;ii>KEntryCount/2;--ii)
   172 		{
   173 		jj=(jj+17)%KEntryCount;
   174 		item.iVal=jj;
   175 		set.DeleteL(item);
   176 		}
   177 	TEST2(set.Count(), KEntryCount/2);
   178 
   179 	TheTest.Next(_L("Check contents"));
   180 	for (;ii>0;--ii)
   181 		{
   182 		jj=(jj+17)%KEntryCount;
   183 		item.iVal=jj;
   184 		TEST(set.ContainsL(item));
   185 		}
   186 	jj=0;
   187 	for (ii=KEntryCount;ii>KEntryCount/2;--ii)
   188 		{
   189 		jj=(jj+17)%KEntryCount;
   190 		item.iVal=jj;
   191 		TEST(!set.ContainsL(item));
   192 		}
   193 
   194 	TheTest.Next(_L("Delete items"));
   195 	for (;ii>1;--ii)
   196 		{
   197 		jj=(jj+17)%KEntryCount;
   198 		item.iVal=jj;
   199 		set.DeleteL(item);
   200 		}
   201 	TEST2(set.Count(), 1);
   202 
   203 	TheTest.Next(_L("Check contents"));
   204 	jj=(jj+17)%KEntryCount;
   205 	TPagedSetBiIter<TTest> biter(set);
   206 	TEST(biter.FirstL());
   207 	TEST2(biter.AtL().iVal, jj);
   208 	TEST(!biter.NextL());
   209 	TEST(biter.LastL());
   210 	TEST2(biter.AtL().iVal ,jj);
   211 	TEST(!biter.PreviousL());
   212 	TPagedSetRIter<TTest> riter(set);
   213 	TEST(riter.ResetL());
   214 	TEST2(riter.AtL().iVal, jj);
   215 	TEST(!riter.NextL());
   216 
   217 	item.iVal=jj;
   218 	set.DeleteL(item);
   219 	TEST(!iter.ResetL());
   220 	TEST2(set.Count(), 0);
   221 
   222 	TheTest.End();
   223 	}
   224 
   225 /**
   226 @SYMTestCaseID          SYSLIB-STORE-CT-1180
   227 @SYMTestCaseDesc	    Streaming tests
   228 @SYMTestPriority 	    High
   229 @SYMTestActions  	    Tests for read and write operations on the streams
   230 @SYMTestExpectedResults Test must not fail
   231 @SYMREQ                 REQ0000
   232 */
   233 LOCAL_C void test3L(RStorePagePool& aPool)
   234 	{
   235 	const TInt KEntryCount=1000;
   236 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1180 Build set and stream out "));
   237 	aPool.Create(*TheStore);
   238 	TBool rc = aPool.HasAvailable();
   239 	TEST(!rc);
   240 	rc = aPool.IsEmpty();
   241 	TEST(rc);
   242 	TStorePagePoolToken token2(TStorePagePoolToken::EEmpty);
   243 	token2 = aPool.Token();
   244 	rc = token2.IsEmpty();
   245 	TEST(rc);
   246 	rc = token2.HasAvailable();
   247 	TEST(!rc);
   248 	
   249 	TPagedSet<TInt32> set1;
   250 	set1.Connect(&aPool);
   251 
   252 	TInt ii;
   253 	for (ii=0;ii<KEntryCount;ii++)
   254 		{
   255 		TInt32 it=ii;
   256 		set1.InsertL(it);
   257 		}
   258 	aPool.FlushL();
   259 	
   260 	RStoreWriteStream out;
   261 	TStreamId id=out.CreateLC(*TheStore);
   262 	out<<aPool.Token();
   263 	out<<set1.Token();
   264 	out.CommitL();
   265 	CleanupStack::PopAndDestroy();	// out
   266 	aPool.Close();
   267 //
   268 	TheTest.Next(_L("Stream in and test set"));
   269 	RStoreReadStream in;
   270 	in.OpenLC(*TheStore,id);
   271 	TStorePagePoolToken ptoken;
   272 	in>>ptoken;
   273 	aPool.Open(*TheStore,ptoken);
   274 	TEST(!aPool.IsDirty());
   275 	TPagedSetToken token;
   276 	in>>token;
   277 	TPagedSet<TInt32> set2(token);
   278 	set2.Connect(&aPool);
   279 	TEST(set2.IsIntact());
   280 	CleanupStack::PopAndDestroy();	// in
   281 
   282 	TEST2(set2.Count(), KEntryCount);
   283 	for (ii=0;ii<KEntryCount;ii++)
   284 		{
   285 		TInt32 it=ii;
   286 		set2.DeleteL(it);
   287 		}
   288 	TEST2(set2.Count(), 0);
   289 	aPool.FlushL();
   290 	aPool.Discard();
   291 	aPool.ReclaimAllL();
   292 	aPool.Close();
   293 	TheTest.End();
   294 	}
   295 
   296 /**
   297 @SYMTestCaseID          PDS-STORE-CT-4009
   298 @SYMTestCaseDesc	    RFilePagePool tests
   299 @SYMTestPriority 	    High
   300 @SYMTestActions  	    Tests for creating and opening RFilePagePool
   301 @SYMTestExpectedResults RFilePagePool needs to be correctly created, replaced and opened.
   302 @SYMDEF                 DEF135804
   303 */
   304 LOCAL_C void test4L()
   305 	{
   306 	RFilePagePool testPage;
   307 	TFileName tempPageFileName;
   308 	RFs fs;
   309 	TInt err;
   310 	fs.Connect();
   311 	err = fs.MkDirAll(KPageFilePathOnly);
   312 	TEST(err==KErrNone||err==KErrAlreadyExists);
   313 	err = fs.Delete(KPageFilePath);
   314 	TEST(err==KErrNone||err==KErrNotFound);
   315 	CPageCache* pcache = CPageCache::NewLC(2);
   316 	//creating file
   317 	TheTest.Printf(_L("Creating file for the page pool"));
   318 	err = testPage.Create(fs, KPageFilePath, EFileWrite);
   319 	TEST2(err, KErrNone);
   320 	testPage.Set(*pcache);
   321 	TheTest.Printf(_L("-> File created -> Closing "));
   322 	testPage.Close();
   323 	TheTest.Printf(_L("-> Closed "));
   324 	//opening file, file should be present after successful creation
   325 	TheTest.Printf(_L("Opening file for the page pool"));
   326 	err = testPage.Open(fs,KPageFilePath, EFileWrite);
   327 	TEST2(err, KErrNone);
   328 	testPage.Set(*pcache);
   329 	TheTest.Printf(_L("-> File opened -> Closing "));
   330 	testPage.Close();
   331 	TheTest.Printf(_L("-> Closed "));
   332 	//try to replace already existing file
   333 	//file should exist after successful creation
   334 	TheTest.Printf(_L("Replacing file for the page pool"));
   335 	err = testPage.Replace(fs, KPageFilePath, EFileWrite);
   336 	TEST2(err, KErrNone);
   337 	testPage.Set(*pcache);
   338 	TheTest.Printf(_L("-> File replaced -> Closing "));
   339 	testPage.Close();
   340 	TheTest.Printf(_L("-> Closed "));
   341 	//try to create temp file with unique name
   342 	TheTest.Printf(_L("Creating temp unique file "));
   343 	err = testPage.Temp(fs, KPageFilePathOnly, tempPageFileName, EFileWrite);
   344 	TEST2(err, KErrNone);
   345 	testPage.Set(*pcache);
   346 	TheTest.Printf(_L("-> File created -> Closing "));
   347 	testPage.Close();
   348 	TheTest.Printf(_L("-> Closed "));
   349 	//if file was propertly created we should be able to open it
   350 	TheTest.Printf(_L("Opening temp unique file "));
   351 	err = testPage.Open(fs, tempPageFileName, EFileWrite);
   352 	TEST2(err, KErrNone);
   353 	TheTest.Printf(_L("-> File opened -> Releasing "));
   354 	testPage.Release();
   355 	TheTest.Printf(_L("-> Released "));
   356 	
   357 	//open and flush temp file
   358 	RFilePagePool testPage2(*pcache);
   359 	err = testPage2.Open(fs, tempPageFileName, EFileWrite);
   360 	TEST2(err, KErrNone);
   361 	err = testPage2.Flush();
   362 	TEST2(err, KErrNone);
   363 	TRAP(err, testPage2.FlushL());
   364 	TEST2(err, KErrNone);
   365 	
   366 	RFile& file = const_cast<RFile&>(testPage2.File());
   367 	TFileName testIsSameFile;
   368 	file.FullName(testIsSameFile);
   369 	TEST2( testIsSameFile.Compare(tempPageFileName), 0);
   370 	testPage2.Detach();
   371 	file.Close();
   372 	
   373 	//attach and detach file
   374 	file.Open(fs, testIsSameFile, EFileWrite|EFileShareReadersOrWriters);
   375 	testPage2.Attach(file);
   376 	testPage2.Detach();
   377 	file.Close();
   378 	testPage2.Close();
   379 	
   380 	CleanupStack::PopAndDestroy(pcache);
   381 	fs.Close();
   382 	}
   383 
   384 /**
   385  * Struct needed in test5()
   386  */
   387 struct SCachePage
   388 	{
   389 	TCachePage iPage[1];
   390 	TUint8 iData[KPoolPageSize];
   391 	};
   392 /**
   393  * Class specially created to test protected API from RFilePagePool
   394  */
   395 class RFilePagePoolTestClass: public RFilePagePool
   396 	{
   397 public:
   398 	void CallProtectedWriteL(SCachePage& page)
   399 		{
   400 		TPageChange change=page.iPage[0].iChange;
   401 		WriteL(page.iPage[0].iRef,&page.iPage[1],change);
   402 		}
   403 	void CallProtectedReadL(SCachePage& page)
   404 		{
   405 		ReadL(page.iPage[0].iRef,&page.iPage[1]);
   406 		}
   407 	TPageRef CallProtectedExtendL(SCachePage& page)
   408 		{
   409 		ExtendL(&page.iPage[1],EPageReclaimable);
   410 		return page.iPage[0].iRef;
   411 		}
   412 	};
   413 
   414 /**
   415 @SYMTestCaseID          PDS-STORE-CT-4010
   416 @SYMTestCaseDesc	    RFilePagePool protected API tests
   417 @SYMTestPriority 	    High
   418 @SYMTestActions  	    Tests for read and write and extend operations
   419 @SYMTestExpectedResults Cache pages should be properly written and properly read from RFilePagePoolTestClass
   420 @SYMDEF                 DEF135804
   421 */
   422 LOCAL_C void test5L()
   423 	{
   424 	SCachePage page;
   425 	page.iPage[0].iRef = 1;
   426 	page.iPage[0].iChange=EPageNoChange;
   427 	
   428 	RFilePagePoolTestClass fpp;
   429 	RFs fs;
   430 	fs.Connect();
   431 	fs.MkDirAll(KPageFilePathOnly);
   432 	fs.Delete(KPageFilePath);
   433 	CPageCache* pcache = CPageCache::NewLC(2);
   434 	//creating file
   435 	TheTest.Printf(_L("Creating file "));
   436 	TInt err = fpp.Create(fs, KPageFilePath, EFileWrite);
   437 	TEST2(err, KErrNone);
   438 	fpp.Set(*pcache);
   439 	TheTest.Printf(_L("-> File created -> Testing protected API "));
   440 	TRAP(err, fpp.CallProtectedWriteL(page));
   441 	TEST2(err, KErrNone);
   442 	TheTest.Printf(_L("-> CallProtectedWriteL() done "));
   443 	TRAP(err, fpp.CallProtectedReadL(page));
   444 	TEST2(err, KErrNone);
   445 	TheTest.Printf(_L("-> CallProtectedReadL() done "));
   446 	TRAP(err, fpp.CallProtectedExtendL(page));
   447 	TEST2(err, KErrNone);
   448 	TheTest.Printf(_L("-> CallProtectedExtendL() done -> Closing"));
   449 	fpp.Close();
   450 	TheTest.Printf(_L("-> Closed "));
   451 	CleanupStack::PopAndDestroy(pcache);
   452 	fs.Close();
   453 	}
   454 
   455 const TInt KCachePages=16;
   456 
   457 LOCAL_C void testallL(RStorePagePool& aPool)
   458 	{
   459 	TheTest.Start(_L("Connecting page pool"));
   460 	aPool.Set(*CPageCache::NewLC(KCachePages));
   461 	aPool.Create(*TheStore);
   462 	TheTest.Next(_L("Basic operations"));
   463 	test1L(aPool);
   464 	TheTest.Next(_L("Large set TUint32"));
   465 	test2L(aPool);
   466 	aPool.Discard();
   467 	aPool.ReclaimAllL();
   468 	aPool.Close();
   469 	TheTest.Next(_L("Tokens and streaming"));
   470 	test3L(aPool);
   471 	CleanupStack::PopAndDestroy();	//cache
   472 	TheTest.Next(_L("PDS-STORE-CT-4009: RFilePagePool tests"));
   473 	test4L();
   474 	TheTest.Next(_L("PDS-STORE-CT-4010: RFilePagePool protected API tests"));
   475 	test5L();
   476 	TheTest.End();
   477 	}
   478 
   479 /**
   480 @SYMTestCaseID          PDS-STORE-CT-4021
   481 @SYMTestCaseDesc	    RStorePagePool protected API tests
   482 @SYMTestPriority 	    High
   483 @SYMTestActions  	    Tests for different constructors
   484 @SYMTestExpectedResults Objects must be created successfully
   485 @SYMDEF                 DEF135804
   486 */
   487 LOCAL_C void testconstructionL(CPBEncryptSet* aKey)
   488 	{
   489 	TheTest.Next(_L("PDS-STORE-CT-4021: RStorePagePool protected API tests"));
   490 	CPageCache* pcache = CPageCache::NewLC(KCachePages);
   491 	TStorePagePoolToken token;
   492 	RStorePagePool poolcached(*pcache);
   493 	poolcached.Create(*TheStore);
   494 	test1L(poolcached);
   495 	poolcached.Discard();
   496 	poolcached.ReclaimAllL();
   497 	poolcached.Close();	
   498 	RStorePagePool poolstream(*TheStore);
   499 	poolstream.Set(*pcache);
   500 	test1L(poolstream);
   501 	poolstream.Discard();
   502 	poolstream.ReclaimAllL();
   503 	poolstream.Close();
   504 	RStorePagePool poolstreamtoken(*TheStore, token);
   505 	poolstreamtoken.Set(*pcache);
   506 	test1L(poolstreamtoken);	
   507 	poolstreamtoken.Close();
   508 	RSecureStorePagePool securepoolcached( *pcache, *aKey );
   509 	securepoolcached.Create(*TheStore);
   510 	test1L(securepoolcached);
   511 	securepoolcached.Discard();
   512 	securepoolcached.ReclaimAllL();
   513 	securepoolcached.Close();
   514 	
   515 	
   516 	CleanupStack::PopAndDestroy();
   517 	
   518 	}
   519 
   520 LOCAL_C void doMainL()
   521 	{
   522 	TheTest.Start(_L("Store PagePool"));
   523 	TParsePtrC parse(KFileLocationSpec);
   524 	
   525 	TheStore=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
   526 	TheStore->SetTypeL(TheStore->Layout());
   527 	RStorePagePool pool1;
   528 	testallL(pool1);
   529 	TheTest.Next(_L("Secure PagePool"));
   530 
   531 	CPBEncryptSet* key = CPBEncryptSet::NewLC(_L("the password"));
   532 	RSecureStorePagePool pool2(*key);
   533 	testallL(pool2);
   534 
   535 
   536 	testconstructionL(key);
   537 	
   538 	CleanupStack::PopAndDestroy(key);
   539 	TheStore->CommitL();
   540 	CleanupStack::PopAndDestroy();	// store
   541 	}
   542 
   543 //
   544 // Prepare the test directory.
   545 //
   546 LOCAL_C void setupTestDirectory()
   547     {
   548 	TInt r=TheFs.Connect();
   549 	TEST2(r, KErrNone);
   550 //
   551 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   552 	TParse parse;
   553 	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   554 	
   555 	r=TheFs.MkDir(parse.DriveAndPath());
   556 	TEST(r==KErrNone||r==KErrAlreadyExists);
   557 	r=TheFs.SetSessionPath(parse.DriveAndPath());
   558 	TEST2(r, KErrNone);
   559 	}
   560 
   561 //
   562 // Initialise the cleanup stack.
   563 //
   564 LOCAL_C void setupCleanup()
   565     {
   566 	TheTrapCleanup=CTrapCleanup::New();
   567 	TEST(TheTrapCleanup!=NULL);
   568 	TRAPD(r,\
   569 		{\
   570 		for (TInt i=KTestCleanupStack;i>0;i--)\
   571 			CleanupStack::PushL((TAny*)1);\
   572 		TEST2(r, KErrNone);\
   573 		CleanupStack::Pop(KTestCleanupStack);\
   574 		});
   575 	TEST2(r, KErrNone);
   576 	}
   577 
   578 
   579 
   580 LOCAL_C void DeleteTestFiles()
   581 	{
   582 
   583 	RFs fs;
   584 	TInt err = fs.Connect();
   585 	if(err == KErrNone)
   586 		{
   587 		CDir* dir;
   588 		fs.GetDir(KPageFilePathOnly, KEntryAttNormal , ESortNone, dir);
   589 		for(TInt i=0; i< dir->Count();i++)
   590 			{
   591 			CDir& rdir = *dir;
   592 			TFileName tf (KPageFilePathOnly);
   593 			tf.Append(rdir[i].iName);
   594 			err = fs.Delete( tf );
   595 			if (err != KErrNone)
   596 				{
   597 				RDebug::Print(_L("Error %d deleting file \"%S\".\n"), err, &(rdir[i].iName));
   598 				}
   599 			else
   600 				RDebug::Print(_L("File \"%S\" removed.\n"), &(rdir[i].iName));
   601 			}
   602 		delete dir;
   603 		err = fs.RmDir(KPageFilePathOnly);
   604 		if (err != KErrNone)
   605 			{
   606 			RDebug::Print(_L("Error %d deleting folder \"%S\".\n"), err, &KPageFilePathOnly);
   607 			}
   608 		fs.Close();
   609 		}
   610 	else
   611 		{
   612 		RDebug::Print(_L("Error %d connecting file session.\n"), err);
   613 		}
   614 	}
   615 
   616 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   617 	{
   618 	RFs fsSession;
   619 	TInt err = fsSession.Connect();
   620 	if(err == KErrNone)
   621 		{
   622 		TEntry entry;
   623 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   624 			{
   625 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   626 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   627 			if(err != KErrNone)
   628 				{
   629 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   630 				}
   631 			err = fsSession.Delete(aFullName);
   632 			if(err != KErrNone)
   633 				{
   634 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   635 				}
   636 			}
   637 		fsSession.Close();
   638 		}
   639 	else
   640 		{
   641 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   642 		}
   643 	}
   644 
   645 GLDEF_C TInt E32Main()
   646 	{
   647 	TheTest.Title();
   648 	setupTestDirectory();
   649 	setupCleanup();
   650 	__UHEAP_MARK;
   651 //
   652 	TRAPD(r,doMainL());
   653 	TEST2(r, KErrNone);
   654 
   655 	//deletion of data files must be before call to .End() - DEF047652
   656 	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
   657 		TParse parse;
   658 		parse.Set(drive.Name(), &KFileLocationSpec, NULL);
   659 		::DeleteDataFile(parse.FullName());
   660 		::DeleteTestFiles();
   661 		
   662 	TheTest.End();
   663 //
   664 	__UHEAP_MARKEND;
   665 
   666 	delete TheTrapCleanup;
   667 	TheFs.Close();
   668 	TheTest.Close();
   669 	return 0;
   670 	}
   671