os/textandloc/textrendering/texthandling/ttext/T_STYLE.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 #include <e32std.h>
    20 #include <e32base.h>
    21 
    22 #include <gdi.h>
    23 #include <s32file.h>
    24 
    25 #include <txtrich.h>
    26 #include <txtfmlyr.h>
    27 #include <txtfrmat.h>
    28 #include <txtstyle.h>
    29 #include "T_STYLE.h"
    30 
    31 LOCAL_D CTestStep *pTestStep = NULL;
    32 #define test(cond)											\
    33 	{														\
    34 	TBool __bb = (cond);									\
    35 	pTestStep->TEST(__bb);									\
    36 	if (!__bb)												\
    37 		{													\
    38 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    39 		User::Leave(1);										\
    40 		}													\
    41 	}
    42 #undef INFO_PRINTF1
    43 #undef INFO_PRINTF2
    44 // copy from tefexportconst.h
    45 #define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    46 #define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    47 
    48 
    49 #define UNUSED_VAR(a) a = a
    50 
    51 const TInt KTestCleanupStack=0x40;
    52 
    53 LOCAL_D CTrapCleanup* TheTrapCleanup;
    54 
    55 LOCAL_D CRichText* TheText;
    56 LOCAL_D CStyleList* TheStyleList;
    57 LOCAL_D CParaFormatLayer* TheNormalParaLayer;
    58 LOCAL_D CCharFormatLayer* TheNormalCharLayer;
    59 LOCAL_D CParagraphStyle* TheStyleOne;
    60 LOCAL_D CParagraphStyle* TheStyleTwo;
    61 
    62 
    63 _LIT(KOutputFile, "c:\\etext\\t_style.tst");
    64 template <class T>
    65 void testStoreRestoreL(T& aCopy,const T& aOriginal)
    66 // Test document persistance.
    67 //
    68     {
    69 	// set up the store
    70 	RFs	theFs;
    71 	theFs.Connect();
    72 	//
    73 	theFs.Delete(KOutputFile);
    74 	theFs.MkDirAll(KOutputFile);
    75 	CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
    76 	CleanupStack::PushL(theStore);
    77 	theStore->SetTypeL(KDirectFileStoreLayoutUid);
    78 	//
    79 	// store the original
    80 	TStreamId id(0);
    81 	TRAPD(ret,id=aOriginal.StoreL(*theStore));
    82 		test(ret==KErrNone);
    83 	//
    84 	// restore into the copy
    85 	TRAP(ret,aCopy.RestoreL(*theStore,id));
    86 		test(ret==KErrNone);
    87 	//
    88 	// tidy up
    89 	CleanupStack::PopAndDestroy();  // theStore
    90 	theFs.Close();
    91     }
    92 
    93 
    94 LOCAL_C TInt IsEqual(const CRichText* aCopy,const CRichText* aOriginal)
    95 //
    96 // Returns true if aCopy contents matches aOriginal contents.
    97 // Takes account of multiple segments of a segmented text component.
    98 //
    99 	{
   100 	TInt lengthOfOriginal=aOriginal->DocumentLength();
   101 	TInt lengthOfCopy=aCopy->DocumentLength();
   102 	test(lengthOfOriginal==lengthOfCopy);
   103 //
   104 	TPtrC copy,orig;
   105 //
   106 	TInt lengthRead=0;
   107 	while(lengthRead<=lengthOfOriginal)
   108 		{
   109 		copy.Set((aCopy->Read(lengthRead)));
   110 		orig.Set((aOriginal->Read(lengthRead)));
   111 		for (TInt offset=0; offset<orig.Length(); offset++)
   112 			test(copy[offset]==orig[offset]);
   113 		lengthRead+=orig.Length();
   114 		}
   115 	test(lengthRead==lengthOfOriginal+1);
   116 //
   117 	CStyleList* origStyle=aOriginal->StyleList();
   118 	CStyleList* copyStyle=aCopy->StyleList();
   119 	TInt origStyleCount=origStyle->Count();
   120 	TInt copyStyleCount=copyStyle->Count();
   121 	test(origStyleCount==copyStyleCount);
   122 	for (TInt ii=0;ii<origStyleCount;ii++)
   123 		{
   124 		RParagraphStyleInfo oInfo=origStyle->At(ii);
   125 		RParagraphStyleInfo cInfo=copyStyle->At(ii);
   126 		test(oInfo.iStyle->iName==cInfo.iStyle->iName);
   127 		if (oInfo.iStyleForNextPara==NULL)
   128 			test(cInfo.iStyleForNextPara==NULL);
   129 		}
   130 
   131 	return 1;
   132 	}
   133 
   134 
   135 LOCAL_C void ConstructEnvWithNullParaFormat()
   136 	{
   137 	// Create global layers
   138 	CParaFormat* normalPara=CParaFormat::NewLC();
   139 	TParaFormatMask paraFormatMask;
   140 	normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
   141 	paraFormatMask.SetAttrib(EAttAlignment);
   142 	TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
   143 	CleanupStack::PopAndDestroy();  // normalPara
   144 	TCharFormat charFormat;
   145 	TCharFormatMask charFormatMask;
   146 	TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
   147 	//
   148 	// Create some paragraph styles
   149 	TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   150 	TheStyleOne->iName=_L("Style1");
   151 	
   152 	//	Style two is based on style one
   153 	TheStyleTwo=CParagraphStyle::NewL( *TheStyleOne, *(TheStyleOne->CharFormatLayer()));
   154 	TheStyleTwo->iName=_L("Style2");
   155 	//
   156 	CParaFormat* styleFormat=CParaFormat::NewLC();
   157 	TParaFormatMask styleMask;
   158 	styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
   159 	styleMask.SetAttrib(EAttAlignment);
   160 	TheStyleOne->SetL(styleFormat,styleMask);
   161 	//
   162 	styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
   163 	//	Set paragraph format to NULL
   164 	TheStyleTwo->SetL( NULL,styleMask);	
   165 	CleanupStack::PopAndDestroy();  // styleFormat
   166 	//
   167 	// Create style table and insert styles.
   168 	TheStyleList=CStyleList::NewL();	
   169 	RParagraphStyleInfo info(TheStyleOne);
   170 	TInt error=TheStyleList->AppendL(&info);
   171 	test(error==KErrNone);
   172 	RParagraphStyleInfo info1=TheStyleList->At(0);
   173 	CParagraphStyle* style=info1.iStyle;
   174 	style=NULL;
   175 
   176 	RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
   177 	error=TheStyleList->AppendL(&info2);
   178 	test(error==KErrNone);
   179 	
   180 	error=TheStyleList->AppendL(&info2);
   181 	test(error==KErrAlreadyExists);
   182 	test(TheStyleList->Count()==2);
   183 	
   184 	style=TheStyleList->At(1).iStyle;
   185 	test(style->iName==_L("Style2"));
   186 	//
   187 	// Create the rich text with styles.
   188 	TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
   189 }
   190 
   191 LOCAL_C void ConstructEnvironment()
   192 // Create some styles.
   193 //
   194 	{
   195 	// Create global layers
   196 	CParaFormat* normalPara=CParaFormat::NewLC();
   197 	TParaFormatMask paraFormatMask;
   198 	normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
   199 	paraFormatMask.SetAttrib(EAttAlignment);
   200 	TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
   201 	CleanupStack::PopAndDestroy();  // normalPara
   202 	TCharFormat charFormat;
   203 	TCharFormatMask charFormatMask;
   204 	TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
   205 	//
   206 	// Create some paragraph styles
   207 	TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   208 	TheStyleOne->iName=_L("Style1");
   209 	TheStyleTwo=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   210 	TheStyleTwo->iName=_L("Style2");
   211 	//
   212 	CParaFormat* styleFormat=CParaFormat::NewLC();
   213 	TParaFormatMask styleMask;
   214 	styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
   215 	styleMask.SetAttrib(EAttAlignment);
   216 	TheStyleOne->SetL(styleFormat,styleMask);
   217 	//
   218 	styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
   219 	TheStyleTwo->SetL(styleFormat,styleMask);
   220 	CleanupStack::PopAndDestroy();  // styleFormat
   221 	//
   222 	// Create style table and insert styles.
   223 	TheStyleList=CStyleList::NewL();	
   224 	RParagraphStyleInfo info(TheStyleOne);
   225 	TInt error=TheStyleList->AppendL(&info);
   226 	test(error==KErrNone);
   227 	RParagraphStyleInfo info1=TheStyleList->At(0);
   228 	CParagraphStyle* style=info1.iStyle;
   229 	style=NULL;
   230 
   231 	RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
   232 	error=TheStyleList->AppendL(&info2);
   233 	test(error==KErrNone);
   234 	
   235 	error=TheStyleList->AppendL(&info2);
   236 	test(error==KErrAlreadyExists);
   237 	test(TheStyleList->Count()==2);
   238 	
   239 	style=TheStyleList->At(1).iStyle;
   240 	test(style->iName==_L("Style2"));
   241 	//
   242 	// Create the rich text with styles.
   243 	TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
   244 	}
   245 
   246 
   247 LOCAL_C void KillEnvironment()
   248 // Kill everything
   249 //
   250 	{
   251 	delete TheText;
   252 	// the style table is owned by the rich text, and is destroyed there.
   253 	delete TheNormalParaLayer;
   254 	delete TheNormalCharLayer;
   255 	}
   256 
   257 
   258 LOCAL_C void TestConstruction()
   259 // Test the construction/destruction of rich text with styles
   260 //
   261 	{
   262 	__UHEAP_MARK;
   263 
   264 	ConstructEnvironment();
   265 	KillEnvironment();
   266 
   267 	__UHEAP_MARKEND;
   268 	}
   269 
   270 
   271 LOCAL_C void TestParaWithNullParaFormat()
   272 	{
   273 	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   274 
   275 	INFO_PRINTF1(_L("Apply style to paragraph with NULL para format"));
   276 	ConstructEnvWithNullParaFormat();
   277 	TheText->InsertL(0,_L("HEADINGBODYTEXT"));
   278 	//
   279 	TheText->ApplyParagraphStyleL(*TheStyleList->At(1).iStyle,0,1,applyMode);
   280 	CParaFormat* paraFormat=CParaFormat::NewLC();
   281 	TheText->GetParagraphFormatL(paraFormat,0);
   282 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   283 	//
   284 	TChar delimiter=CEditableText::EParagraphDelimiter;
   285 	TheText->InsertL(7,delimiter);
   286 	TheText->GetParagraphFormatL(paraFormat,6);
   287 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   288 	TheText->GetParagraphFormatL(paraFormat,8);
   289 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   290 	CleanupStack::PopAndDestroy();
   291 	KillEnvironment();	
   292 	}
   293 
   294 LOCAL_C void TestSharedPara()
   295 // Test
   296 //
   297 	{
   298 	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   299 
   300 	INFO_PRINTF1(_L("Apply style to shared paragraph"));
   301 	ConstructEnvironment();
   302 	TheText->InsertL(0,_L("HEADINGBODYTEXT"));
   303 	//
   304 	TheText->ApplyParagraphStyleL(*TheStyleList->At(0).iStyle,0,1,applyMode);
   305 	CParaFormat* paraFormat=CParaFormat::NewLC();
   306 	TheText->GetParagraphFormatL(paraFormat,0);
   307 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   308 	//
   309 	TChar delimiter=CEditableText::EParagraphDelimiter;
   310 	TheText->InsertL(7,delimiter);
   311 	TheText->GetParagraphFormatL(paraFormat,6);
   312 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   313 	TheText->GetParagraphFormatL(paraFormat,8);
   314 	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   315 	CleanupStack::PopAndDestroy();
   316 	KillEnvironment();
   317 	}
   318 
   319 
   320 LOCAL_C void TestNonSharedPara()
   321 //
   322 	{
   323 	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   324 
   325 	INFO_PRINTF1(_L("Apply style to non-shared paragraph"));
   326 	ConstructEnvironment();
   327 	//
   328 	TheText->InsertL(0,_L("This is paragraph one.This is paragraph number two."));
   329 	TChar delimiter=CEditableText::EParagraphDelimiter;
   330 	TheText->InsertL(22,delimiter);
   331 	//
   332 	TCharFormat charFormat;
   333 	TCharFormatMask charFormatMask;
   334 	charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;
   335 	charFormatMask.SetAttrib(EAttFontStrikethrough);
   336 	TheText->ApplyCharFormatL(charFormat,charFormatMask,0,4);
   337 	//
   338 	TheText->ApplyParagraphStyleL(*(TheStyleList->At(1).iStyle),0,TheText->DocumentLength(),applyMode);
   339 	//
   340 	CParaFormat* paraFormat=CParaFormat::NewLC();
   341 	TheText->GetParagraphFormatL(paraFormat,0);
   342 	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   343 	//
   344 	TheText->GetParagraphFormatL(paraFormat,10);
   345 	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   346 	//
   347 	TheText->GetParagraphFormatL(paraFormat,30);
   348 	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   349 	//
   350 	CleanupStack::PopAndDestroy();  // para format
   351 	//
   352 	/*TEtextComponentInfo info=*/TheText->ComponentInfo();
   353 	CRichText* theCopy=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer);
   354 	testStoreRestoreL(*theCopy,*TheText);
   355 	test(IsEqual(theCopy,TheText));
   356 	//
   357 	theCopy->ApplyParagraphStyleL(*(TheStyleList->At(0).iStyle),25,1,applyMode);
   358 	CParagraphStyle* tempStyle = CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   359 	theCopy->InsertL(28,delimiter);
   360 	theCopy->InsertL(31,delimiter);
   361 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   362 	charFormatMask.ClearAll();
   363 	charFormatMask.SetAttrib(EAttFontStrokeWeight);
   364 	theCopy->ApplyCharFormatL(charFormat, charFormatMask, 33, 1);
   365 	theCopy->NotifyStyleChangedL(tempStyle, TheStyleList->At(0).iStyle);
   366 	//
   367 	delete theCopy;
   368 	delete tempStyle;
   369 	KillEnvironment();
   370 	}
   371 
   372 
   373 LOCAL_C void TestStyles()
   374 // Perform tests
   375 //
   376 	{
   377 	TestSharedPara();
   378 	TestNonSharedPara();
   379 	}
   380 
   381 LOCAL_C void TestStyleWithNullParaFormat()
   382 	{
   383 	TestParaWithNullParaFormat();
   384 	}
   385 
   386 LOCAL_C void TestStyleList()
   387 	{
   388 	__UHEAP_MARK;
   389 	// Test 1
   390 	// Construction under OOM
   391 	INFO_PRINTF1(_L("Construction under OOM"));
   392 	CStyleList* list=NULL;
   393 	TInt nn;
   394 	for (nn=0; ;nn++)
   395 		{
   396 		__UHEAP_RESET;
   397 		__UHEAP_SETFAIL(RHeap::EDeterministic,nn);
   398 		__UHEAP_MARK;
   399 		TRAPD(ret,
   400 			list=CStyleList::NewL());
   401 		if (ret!=KErrNone)
   402 			{
   403 			__UHEAP_MARKEND;
   404 			test(list==NULL);
   405 			}
   406 		else
   407 			{
   408 			test(list!=NULL);
   409 			delete list;
   410 			list=NULL;
   411 			__UHEAP_MARKEND;
   412 			break;
   413 			}
   414 		}
   415 	__UHEAP_RESET;
   416 	TBuf<36> answer;
   417 	answer.Format(_L("        #allocs for full c'tion: %d\n"),nn-1);
   418 	INFO_PRINTF1(answer);
   419 
   420 
   421 	// Test 2
   422 	// Populated style list, Append under OOM;
   423 	INFO_PRINTF1(_L("AppendL() under OOM"));
   424 	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   425 	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   426 	__UHEAP_MARK;
   427 	list=CStyleList::NewL();
   428 	CParagraphStyle* style=NULL;
   429 	for (TInt mm=0;mm<KMaxStyleListGranularity;mm++)
   430 		{
   431 		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   432 		RParagraphStyleInfo info(style,NULL);
   433 		TInt r=list->AppendL(&info);
   434 		test(r==KErrNone);
   435 		}
   436 	test(list->Count()==KMaxStyleListGranularity);
   437 	
   438 	for (TInt oo=0; ;oo++)
   439 		{
   440 		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   441 		RParagraphStyleInfo info(style);
   442 		__UHEAP_RESET;
   443 		__UHEAP_SETFAIL(RHeap::EDeterministic,oo);
   444 		TInt r=KErrNone;
   445 		TRAPD(ret,
   446 				r=list->AppendL(&info));
   447 		if (ret!=KErrNone)
   448 			{
   449 			test(r!=KErrAlreadyExists);
   450 			test(list->Count()==KMaxStyleListGranularity);
   451 			}
   452 		else
   453 			{
   454 			test(r==KErrNone);
   455 			test(list->Count()==KMaxStyleListGranularity+1);
   456 			break;
   457 			}
   458 		__UHEAP_RESET;
   459 		}
   460 	delete list;
   461 	list=NULL;
   462 	style=NULL;
   463 	__UHEAP_MARKEND;
   464 	__UHEAP_RESET;
   465 
   466 
   467 	// Test 3
   468 	// Inserting a duplicate
   469 	INFO_PRINTF1(_L("AppendL() a duplicate"));
   470 	list=CStyleList::NewL();
   471 	style=NULL;
   472 	for (TInt pp=0;pp<KMaxStyleListGranularity;pp++)
   473 		{
   474 		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   475 		RParagraphStyleInfo info(style,NULL);
   476 		list->AppendL(&info);
   477 		}
   478 	test(list->Count()==KMaxStyleListGranularity);
   479 	RParagraphStyleInfo info=list->At(0);
   480 	TInt r=list->AppendL(&info);
   481 	test(r==KErrAlreadyExists);
   482 	test(list->Count()==KMaxStyleListGranularity);
   483 	test(info.iStyle->CharFormatLayer()!=NULL);  // the duplicate style has not been deleted.
   484 	delete list;
   485 
   486 
   487 	// Test 4
   488 	// Looking for a style by name that does not exist.
   489 	INFO_PRINTF1(_L("IndexByName() where style not present"));
   490 	list=CStyleList::NewL();
   491 	style=NULL;
   492 	TUint name='A';
   493 	for (TInt qq=0;qq<KMaxStyleListGranularity;qq++)
   494 		{
   495 		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   496 		style->iName.Append(name);
   497 		name++;
   498 		RParagraphStyleInfo info(style,NULL);
   499 		list->AppendL(&info);
   500 		}
   501 	test(list->Count()==KMaxStyleListGranularity);
   502 	TParagraphStyleName search=_L("not present");
   503 	/*TInt index=*/list->IndexByName(search);
   504 
   505 	delete list;
   506 
   507 	delete paraLayer;
   508 	delete charLayer;
   509 
   510 	__UHEAP_MARKEND;
   511 	
   512 	}
   513 
   514 
   515 LOCAL_C void TestHarness()
   516 // Test rich text style usage.
   517 //
   518     {
   519 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_STYLE-0001 RichText Styles "));
   520 	// Do the tests.
   521 	TestConstruction();
   522 	TestStyles();
   523 	TestStyleWithNullParaFormat();
   524 	INFO_PRINTF1(_L("CStyleList"));
   525 	TestStyleList();
   526 	//
   527     }
   528 
   529 
   530 LOCAL_C void setupCleanup()
   531 //
   532 // Initialise the cleanup stack.
   533 //
   534     {
   535 
   536 	TheTrapCleanup=CTrapCleanup::New();
   537 	TRAPD(r,\
   538 		{\
   539 		for (TInt i=KTestCleanupStack;i>0;i--)\
   540 			CleanupStack::PushL((TAny*)1);\
   541 		test(r==KErrNone);\
   542 		CleanupStack::Pop(KTestCleanupStack);\
   543 		});
   544 	}
   545 
   546 
   547 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   548 	{
   549 	RFs fsSession;
   550 	TInt err = fsSession.Connect();
   551 	if(err == KErrNone)
   552 		{
   553 		TEntry entry;
   554 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   555 			{
   556 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   557 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   558 			if(err != KErrNone) 
   559 				{
   560 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   561 				}
   562 			err = fsSession.Delete(aFullName);
   563 			if(err != KErrNone) 
   564 				{
   565 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   566 				}
   567 			}
   568 		fsSession.Close();
   569 		}
   570 	else
   571 		{
   572 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   573 		}
   574 	}
   575 
   576 CT_STYLE::CT_STYLE()
   577     {
   578     SetTestStepName(KTestStep_T_STYLE);
   579     pTestStep = this;
   580     }
   581 
   582 TVerdict CT_STYLE::doTestStepL()
   583     {
   584     SetTestStepResult(EFail);
   585 
   586     INFO_PRINTF1(_L("Testing Paragraph Styles"));
   587     __UHEAP_MARK;
   588     setupCleanup();
   589     TRAPD(r,TestHarness());
   590     test(r == KErrNone);
   591 
   592     delete TheTrapCleanup;
   593     
   594     __UHEAP_MARKEND;
   595     
   596     ::DeleteDataFile(KOutputFile);      //deletion of data files must be before call to End() - DEF047652
   597 
   598     if (r == KErrNone)
   599         {
   600         SetTestStepResult(EPass);
   601         }
   602 
   603     return TestStepResult();
   604     }