os/textandloc/textrendering/texthandling/ttext/T_STYLE.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_STYLE.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,604 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include <e32std.h>
    1.23 +#include <e32base.h>
    1.24 +
    1.25 +#include <gdi.h>
    1.26 +#include <s32file.h>
    1.27 +
    1.28 +#include <txtrich.h>
    1.29 +#include <txtfmlyr.h>
    1.30 +#include <txtfrmat.h>
    1.31 +#include <txtstyle.h>
    1.32 +#include "T_STYLE.h"
    1.33 +
    1.34 +LOCAL_D CTestStep *pTestStep = NULL;
    1.35 +#define test(cond)											\
    1.36 +	{														\
    1.37 +	TBool __bb = (cond);									\
    1.38 +	pTestStep->TEST(__bb);									\
    1.39 +	if (!__bb)												\
    1.40 +		{													\
    1.41 +		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    1.42 +		User::Leave(1);										\
    1.43 +		}													\
    1.44 +	}
    1.45 +#undef INFO_PRINTF1
    1.46 +#undef INFO_PRINTF2
    1.47 +// copy from tefexportconst.h
    1.48 +#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    1.49 +#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    1.50 +
    1.51 +
    1.52 +#define UNUSED_VAR(a) a = a
    1.53 +
    1.54 +const TInt KTestCleanupStack=0x40;
    1.55 +
    1.56 +LOCAL_D CTrapCleanup* TheTrapCleanup;
    1.57 +
    1.58 +LOCAL_D CRichText* TheText;
    1.59 +LOCAL_D CStyleList* TheStyleList;
    1.60 +LOCAL_D CParaFormatLayer* TheNormalParaLayer;
    1.61 +LOCAL_D CCharFormatLayer* TheNormalCharLayer;
    1.62 +LOCAL_D CParagraphStyle* TheStyleOne;
    1.63 +LOCAL_D CParagraphStyle* TheStyleTwo;
    1.64 +
    1.65 +
    1.66 +_LIT(KOutputFile, "c:\\etext\\t_style.tst");
    1.67 +template <class T>
    1.68 +void testStoreRestoreL(T& aCopy,const T& aOriginal)
    1.69 +// Test document persistance.
    1.70 +//
    1.71 +    {
    1.72 +	// set up the store
    1.73 +	RFs	theFs;
    1.74 +	theFs.Connect();
    1.75 +	//
    1.76 +	theFs.Delete(KOutputFile);
    1.77 +	theFs.MkDirAll(KOutputFile);
    1.78 +	CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
    1.79 +	CleanupStack::PushL(theStore);
    1.80 +	theStore->SetTypeL(KDirectFileStoreLayoutUid);
    1.81 +	//
    1.82 +	// store the original
    1.83 +	TStreamId id(0);
    1.84 +	TRAPD(ret,id=aOriginal.StoreL(*theStore));
    1.85 +		test(ret==KErrNone);
    1.86 +	//
    1.87 +	// restore into the copy
    1.88 +	TRAP(ret,aCopy.RestoreL(*theStore,id));
    1.89 +		test(ret==KErrNone);
    1.90 +	//
    1.91 +	// tidy up
    1.92 +	CleanupStack::PopAndDestroy();  // theStore
    1.93 +	theFs.Close();
    1.94 +    }
    1.95 +
    1.96 +
    1.97 +LOCAL_C TInt IsEqual(const CRichText* aCopy,const CRichText* aOriginal)
    1.98 +//
    1.99 +// Returns true if aCopy contents matches aOriginal contents.
   1.100 +// Takes account of multiple segments of a segmented text component.
   1.101 +//
   1.102 +	{
   1.103 +	TInt lengthOfOriginal=aOriginal->DocumentLength();
   1.104 +	TInt lengthOfCopy=aCopy->DocumentLength();
   1.105 +	test(lengthOfOriginal==lengthOfCopy);
   1.106 +//
   1.107 +	TPtrC copy,orig;
   1.108 +//
   1.109 +	TInt lengthRead=0;
   1.110 +	while(lengthRead<=lengthOfOriginal)
   1.111 +		{
   1.112 +		copy.Set((aCopy->Read(lengthRead)));
   1.113 +		orig.Set((aOriginal->Read(lengthRead)));
   1.114 +		for (TInt offset=0; offset<orig.Length(); offset++)
   1.115 +			test(copy[offset]==orig[offset]);
   1.116 +		lengthRead+=orig.Length();
   1.117 +		}
   1.118 +	test(lengthRead==lengthOfOriginal+1);
   1.119 +//
   1.120 +	CStyleList* origStyle=aOriginal->StyleList();
   1.121 +	CStyleList* copyStyle=aCopy->StyleList();
   1.122 +	TInt origStyleCount=origStyle->Count();
   1.123 +	TInt copyStyleCount=copyStyle->Count();
   1.124 +	test(origStyleCount==copyStyleCount);
   1.125 +	for (TInt ii=0;ii<origStyleCount;ii++)
   1.126 +		{
   1.127 +		RParagraphStyleInfo oInfo=origStyle->At(ii);
   1.128 +		RParagraphStyleInfo cInfo=copyStyle->At(ii);
   1.129 +		test(oInfo.iStyle->iName==cInfo.iStyle->iName);
   1.130 +		if (oInfo.iStyleForNextPara==NULL)
   1.131 +			test(cInfo.iStyleForNextPara==NULL);
   1.132 +		}
   1.133 +
   1.134 +	return 1;
   1.135 +	}
   1.136 +
   1.137 +
   1.138 +LOCAL_C void ConstructEnvWithNullParaFormat()
   1.139 +	{
   1.140 +	// Create global layers
   1.141 +	CParaFormat* normalPara=CParaFormat::NewLC();
   1.142 +	TParaFormatMask paraFormatMask;
   1.143 +	normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
   1.144 +	paraFormatMask.SetAttrib(EAttAlignment);
   1.145 +	TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
   1.146 +	CleanupStack::PopAndDestroy();  // normalPara
   1.147 +	TCharFormat charFormat;
   1.148 +	TCharFormatMask charFormatMask;
   1.149 +	TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
   1.150 +	//
   1.151 +	// Create some paragraph styles
   1.152 +	TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   1.153 +	TheStyleOne->iName=_L("Style1");
   1.154 +	
   1.155 +	//	Style two is based on style one
   1.156 +	TheStyleTwo=CParagraphStyle::NewL( *TheStyleOne, *(TheStyleOne->CharFormatLayer()));
   1.157 +	TheStyleTwo->iName=_L("Style2");
   1.158 +	//
   1.159 +	CParaFormat* styleFormat=CParaFormat::NewLC();
   1.160 +	TParaFormatMask styleMask;
   1.161 +	styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
   1.162 +	styleMask.SetAttrib(EAttAlignment);
   1.163 +	TheStyleOne->SetL(styleFormat,styleMask);
   1.164 +	//
   1.165 +	styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
   1.166 +	//	Set paragraph format to NULL
   1.167 +	TheStyleTwo->SetL( NULL,styleMask);	
   1.168 +	CleanupStack::PopAndDestroy();  // styleFormat
   1.169 +	//
   1.170 +	// Create style table and insert styles.
   1.171 +	TheStyleList=CStyleList::NewL();	
   1.172 +	RParagraphStyleInfo info(TheStyleOne);
   1.173 +	TInt error=TheStyleList->AppendL(&info);
   1.174 +	test(error==KErrNone);
   1.175 +	RParagraphStyleInfo info1=TheStyleList->At(0);
   1.176 +	CParagraphStyle* style=info1.iStyle;
   1.177 +	style=NULL;
   1.178 +
   1.179 +	RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
   1.180 +	error=TheStyleList->AppendL(&info2);
   1.181 +	test(error==KErrNone);
   1.182 +	
   1.183 +	error=TheStyleList->AppendL(&info2);
   1.184 +	test(error==KErrAlreadyExists);
   1.185 +	test(TheStyleList->Count()==2);
   1.186 +	
   1.187 +	style=TheStyleList->At(1).iStyle;
   1.188 +	test(style->iName==_L("Style2"));
   1.189 +	//
   1.190 +	// Create the rich text with styles.
   1.191 +	TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
   1.192 +}
   1.193 +
   1.194 +LOCAL_C void ConstructEnvironment()
   1.195 +// Create some styles.
   1.196 +//
   1.197 +	{
   1.198 +	// Create global layers
   1.199 +	CParaFormat* normalPara=CParaFormat::NewLC();
   1.200 +	TParaFormatMask paraFormatMask;
   1.201 +	normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
   1.202 +	paraFormatMask.SetAttrib(EAttAlignment);
   1.203 +	TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
   1.204 +	CleanupStack::PopAndDestroy();  // normalPara
   1.205 +	TCharFormat charFormat;
   1.206 +	TCharFormatMask charFormatMask;
   1.207 +	TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
   1.208 +	//
   1.209 +	// Create some paragraph styles
   1.210 +	TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   1.211 +	TheStyleOne->iName=_L("Style1");
   1.212 +	TheStyleTwo=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   1.213 +	TheStyleTwo->iName=_L("Style2");
   1.214 +	//
   1.215 +	CParaFormat* styleFormat=CParaFormat::NewLC();
   1.216 +	TParaFormatMask styleMask;
   1.217 +	styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
   1.218 +	styleMask.SetAttrib(EAttAlignment);
   1.219 +	TheStyleOne->SetL(styleFormat,styleMask);
   1.220 +	//
   1.221 +	styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
   1.222 +	TheStyleTwo->SetL(styleFormat,styleMask);
   1.223 +	CleanupStack::PopAndDestroy();  // styleFormat
   1.224 +	//
   1.225 +	// Create style table and insert styles.
   1.226 +	TheStyleList=CStyleList::NewL();	
   1.227 +	RParagraphStyleInfo info(TheStyleOne);
   1.228 +	TInt error=TheStyleList->AppendL(&info);
   1.229 +	test(error==KErrNone);
   1.230 +	RParagraphStyleInfo info1=TheStyleList->At(0);
   1.231 +	CParagraphStyle* style=info1.iStyle;
   1.232 +	style=NULL;
   1.233 +
   1.234 +	RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
   1.235 +	error=TheStyleList->AppendL(&info2);
   1.236 +	test(error==KErrNone);
   1.237 +	
   1.238 +	error=TheStyleList->AppendL(&info2);
   1.239 +	test(error==KErrAlreadyExists);
   1.240 +	test(TheStyleList->Count()==2);
   1.241 +	
   1.242 +	style=TheStyleList->At(1).iStyle;
   1.243 +	test(style->iName==_L("Style2"));
   1.244 +	//
   1.245 +	// Create the rich text with styles.
   1.246 +	TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
   1.247 +	}
   1.248 +
   1.249 +
   1.250 +LOCAL_C void KillEnvironment()
   1.251 +// Kill everything
   1.252 +//
   1.253 +	{
   1.254 +	delete TheText;
   1.255 +	// the style table is owned by the rich text, and is destroyed there.
   1.256 +	delete TheNormalParaLayer;
   1.257 +	delete TheNormalCharLayer;
   1.258 +	}
   1.259 +
   1.260 +
   1.261 +LOCAL_C void TestConstruction()
   1.262 +// Test the construction/destruction of rich text with styles
   1.263 +//
   1.264 +	{
   1.265 +	__UHEAP_MARK;
   1.266 +
   1.267 +	ConstructEnvironment();
   1.268 +	KillEnvironment();
   1.269 +
   1.270 +	__UHEAP_MARKEND;
   1.271 +	}
   1.272 +
   1.273 +
   1.274 +LOCAL_C void TestParaWithNullParaFormat()
   1.275 +	{
   1.276 +	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   1.277 +
   1.278 +	INFO_PRINTF1(_L("Apply style to paragraph with NULL para format"));
   1.279 +	ConstructEnvWithNullParaFormat();
   1.280 +	TheText->InsertL(0,_L("HEADINGBODYTEXT"));
   1.281 +	//
   1.282 +	TheText->ApplyParagraphStyleL(*TheStyleList->At(1).iStyle,0,1,applyMode);
   1.283 +	CParaFormat* paraFormat=CParaFormat::NewLC();
   1.284 +	TheText->GetParagraphFormatL(paraFormat,0);
   1.285 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.286 +	//
   1.287 +	TChar delimiter=CEditableText::EParagraphDelimiter;
   1.288 +	TheText->InsertL(7,delimiter);
   1.289 +	TheText->GetParagraphFormatL(paraFormat,6);
   1.290 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.291 +	TheText->GetParagraphFormatL(paraFormat,8);
   1.292 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.293 +	CleanupStack::PopAndDestroy();
   1.294 +	KillEnvironment();	
   1.295 +	}
   1.296 +
   1.297 +LOCAL_C void TestSharedPara()
   1.298 +// Test
   1.299 +//
   1.300 +	{
   1.301 +	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   1.302 +
   1.303 +	INFO_PRINTF1(_L("Apply style to shared paragraph"));
   1.304 +	ConstructEnvironment();
   1.305 +	TheText->InsertL(0,_L("HEADINGBODYTEXT"));
   1.306 +	//
   1.307 +	TheText->ApplyParagraphStyleL(*TheStyleList->At(0).iStyle,0,1,applyMode);
   1.308 +	CParaFormat* paraFormat=CParaFormat::NewLC();
   1.309 +	TheText->GetParagraphFormatL(paraFormat,0);
   1.310 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.311 +	//
   1.312 +	TChar delimiter=CEditableText::EParagraphDelimiter;
   1.313 +	TheText->InsertL(7,delimiter);
   1.314 +	TheText->GetParagraphFormatL(paraFormat,6);
   1.315 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.316 +	TheText->GetParagraphFormatL(paraFormat,8);
   1.317 +	test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
   1.318 +	CleanupStack::PopAndDestroy();
   1.319 +	KillEnvironment();
   1.320 +	}
   1.321 +
   1.322 +
   1.323 +LOCAL_C void TestNonSharedPara()
   1.324 +//
   1.325 +	{
   1.326 +	CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
   1.327 +
   1.328 +	INFO_PRINTF1(_L("Apply style to non-shared paragraph"));
   1.329 +	ConstructEnvironment();
   1.330 +	//
   1.331 +	TheText->InsertL(0,_L("This is paragraph one.This is paragraph number two."));
   1.332 +	TChar delimiter=CEditableText::EParagraphDelimiter;
   1.333 +	TheText->InsertL(22,delimiter);
   1.334 +	//
   1.335 +	TCharFormat charFormat;
   1.336 +	TCharFormatMask charFormatMask;
   1.337 +	charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;
   1.338 +	charFormatMask.SetAttrib(EAttFontStrikethrough);
   1.339 +	TheText->ApplyCharFormatL(charFormat,charFormatMask,0,4);
   1.340 +	//
   1.341 +	TheText->ApplyParagraphStyleL(*(TheStyleList->At(1).iStyle),0,TheText->DocumentLength(),applyMode);
   1.342 +	//
   1.343 +	CParaFormat* paraFormat=CParaFormat::NewLC();
   1.344 +	TheText->GetParagraphFormatL(paraFormat,0);
   1.345 +	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   1.346 +	//
   1.347 +	TheText->GetParagraphFormatL(paraFormat,10);
   1.348 +	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   1.349 +	//
   1.350 +	TheText->GetParagraphFormatL(paraFormat,30);
   1.351 +	test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
   1.352 +	//
   1.353 +	CleanupStack::PopAndDestroy();  // para format
   1.354 +	//
   1.355 +	/*TEtextComponentInfo info=*/TheText->ComponentInfo();
   1.356 +	CRichText* theCopy=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer);
   1.357 +	testStoreRestoreL(*theCopy,*TheText);
   1.358 +	test(IsEqual(theCopy,TheText));
   1.359 +	//
   1.360 +	theCopy->ApplyParagraphStyleL(*(TheStyleList->At(0).iStyle),25,1,applyMode);
   1.361 +	CParagraphStyle* tempStyle = CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
   1.362 +	theCopy->InsertL(28,delimiter);
   1.363 +	theCopy->InsertL(31,delimiter);
   1.364 +	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
   1.365 +	charFormatMask.ClearAll();
   1.366 +	charFormatMask.SetAttrib(EAttFontStrokeWeight);
   1.367 +	theCopy->ApplyCharFormatL(charFormat, charFormatMask, 33, 1);
   1.368 +	theCopy->NotifyStyleChangedL(tempStyle, TheStyleList->At(0).iStyle);
   1.369 +	//
   1.370 +	delete theCopy;
   1.371 +	delete tempStyle;
   1.372 +	KillEnvironment();
   1.373 +	}
   1.374 +
   1.375 +
   1.376 +LOCAL_C void TestStyles()
   1.377 +// Perform tests
   1.378 +//
   1.379 +	{
   1.380 +	TestSharedPara();
   1.381 +	TestNonSharedPara();
   1.382 +	}
   1.383 +
   1.384 +LOCAL_C void TestStyleWithNullParaFormat()
   1.385 +	{
   1.386 +	TestParaWithNullParaFormat();
   1.387 +	}
   1.388 +
   1.389 +LOCAL_C void TestStyleList()
   1.390 +	{
   1.391 +	__UHEAP_MARK;
   1.392 +	// Test 1
   1.393 +	// Construction under OOM
   1.394 +	INFO_PRINTF1(_L("Construction under OOM"));
   1.395 +	CStyleList* list=NULL;
   1.396 +	TInt nn;
   1.397 +	for (nn=0; ;nn++)
   1.398 +		{
   1.399 +		__UHEAP_RESET;
   1.400 +		__UHEAP_SETFAIL(RHeap::EDeterministic,nn);
   1.401 +		__UHEAP_MARK;
   1.402 +		TRAPD(ret,
   1.403 +			list=CStyleList::NewL());
   1.404 +		if (ret!=KErrNone)
   1.405 +			{
   1.406 +			__UHEAP_MARKEND;
   1.407 +			test(list==NULL);
   1.408 +			}
   1.409 +		else
   1.410 +			{
   1.411 +			test(list!=NULL);
   1.412 +			delete list;
   1.413 +			list=NULL;
   1.414 +			__UHEAP_MARKEND;
   1.415 +			break;
   1.416 +			}
   1.417 +		}
   1.418 +	__UHEAP_RESET;
   1.419 +	TBuf<36> answer;
   1.420 +	answer.Format(_L("        #allocs for full c'tion: %d\n"),nn-1);
   1.421 +	INFO_PRINTF1(answer);
   1.422 +
   1.423 +
   1.424 +	// Test 2
   1.425 +	// Populated style list, Append under OOM;
   1.426 +	INFO_PRINTF1(_L("AppendL() under OOM"));
   1.427 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   1.428 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   1.429 +	__UHEAP_MARK;
   1.430 +	list=CStyleList::NewL();
   1.431 +	CParagraphStyle* style=NULL;
   1.432 +	for (TInt mm=0;mm<KMaxStyleListGranularity;mm++)
   1.433 +		{
   1.434 +		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   1.435 +		RParagraphStyleInfo info(style,NULL);
   1.436 +		TInt r=list->AppendL(&info);
   1.437 +		test(r==KErrNone);
   1.438 +		}
   1.439 +	test(list->Count()==KMaxStyleListGranularity);
   1.440 +	
   1.441 +	for (TInt oo=0; ;oo++)
   1.442 +		{
   1.443 +		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   1.444 +		RParagraphStyleInfo info(style);
   1.445 +		__UHEAP_RESET;
   1.446 +		__UHEAP_SETFAIL(RHeap::EDeterministic,oo);
   1.447 +		TInt r=KErrNone;
   1.448 +		TRAPD(ret,
   1.449 +				r=list->AppendL(&info));
   1.450 +		if (ret!=KErrNone)
   1.451 +			{
   1.452 +			test(r!=KErrAlreadyExists);
   1.453 +			test(list->Count()==KMaxStyleListGranularity);
   1.454 +			}
   1.455 +		else
   1.456 +			{
   1.457 +			test(r==KErrNone);
   1.458 +			test(list->Count()==KMaxStyleListGranularity+1);
   1.459 +			break;
   1.460 +			}
   1.461 +		__UHEAP_RESET;
   1.462 +		}
   1.463 +	delete list;
   1.464 +	list=NULL;
   1.465 +	style=NULL;
   1.466 +	__UHEAP_MARKEND;
   1.467 +	__UHEAP_RESET;
   1.468 +
   1.469 +
   1.470 +	// Test 3
   1.471 +	// Inserting a duplicate
   1.472 +	INFO_PRINTF1(_L("AppendL() a duplicate"));
   1.473 +	list=CStyleList::NewL();
   1.474 +	style=NULL;
   1.475 +	for (TInt pp=0;pp<KMaxStyleListGranularity;pp++)
   1.476 +		{
   1.477 +		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   1.478 +		RParagraphStyleInfo info(style,NULL);
   1.479 +		list->AppendL(&info);
   1.480 +		}
   1.481 +	test(list->Count()==KMaxStyleListGranularity);
   1.482 +	RParagraphStyleInfo info=list->At(0);
   1.483 +	TInt r=list->AppendL(&info);
   1.484 +	test(r==KErrAlreadyExists);
   1.485 +	test(list->Count()==KMaxStyleListGranularity);
   1.486 +	test(info.iStyle->CharFormatLayer()!=NULL);  // the duplicate style has not been deleted.
   1.487 +	delete list;
   1.488 +
   1.489 +
   1.490 +	// Test 4
   1.491 +	// Looking for a style by name that does not exist.
   1.492 +	INFO_PRINTF1(_L("IndexByName() where style not present"));
   1.493 +	list=CStyleList::NewL();
   1.494 +	style=NULL;
   1.495 +	TUint name='A';
   1.496 +	for (TInt qq=0;qq<KMaxStyleListGranularity;qq++)
   1.497 +		{
   1.498 +		style=CParagraphStyle::NewL(*paraLayer,*charLayer);
   1.499 +		style->iName.Append(name);
   1.500 +		name++;
   1.501 +		RParagraphStyleInfo info(style,NULL);
   1.502 +		list->AppendL(&info);
   1.503 +		}
   1.504 +	test(list->Count()==KMaxStyleListGranularity);
   1.505 +	TParagraphStyleName search=_L("not present");
   1.506 +	/*TInt index=*/list->IndexByName(search);
   1.507 +
   1.508 +	delete list;
   1.509 +
   1.510 +	delete paraLayer;
   1.511 +	delete charLayer;
   1.512 +
   1.513 +	__UHEAP_MARKEND;
   1.514 +	
   1.515 +	}
   1.516 +
   1.517 +
   1.518 +LOCAL_C void TestHarness()
   1.519 +// Test rich text style usage.
   1.520 +//
   1.521 +    {
   1.522 +	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_STYLE-0001 RichText Styles "));
   1.523 +	// Do the tests.
   1.524 +	TestConstruction();
   1.525 +	TestStyles();
   1.526 +	TestStyleWithNullParaFormat();
   1.527 +	INFO_PRINTF1(_L("CStyleList"));
   1.528 +	TestStyleList();
   1.529 +	//
   1.530 +    }
   1.531 +
   1.532 +
   1.533 +LOCAL_C void setupCleanup()
   1.534 +//
   1.535 +// Initialise the cleanup stack.
   1.536 +//
   1.537 +    {
   1.538 +
   1.539 +	TheTrapCleanup=CTrapCleanup::New();
   1.540 +	TRAPD(r,\
   1.541 +		{\
   1.542 +		for (TInt i=KTestCleanupStack;i>0;i--)\
   1.543 +			CleanupStack::PushL((TAny*)1);\
   1.544 +		test(r==KErrNone);\
   1.545 +		CleanupStack::Pop(KTestCleanupStack);\
   1.546 +		});
   1.547 +	}
   1.548 +
   1.549 +
   1.550 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   1.551 +	{
   1.552 +	RFs fsSession;
   1.553 +	TInt err = fsSession.Connect();
   1.554 +	if(err == KErrNone)
   1.555 +		{
   1.556 +		TEntry entry;
   1.557 +		if(fsSession.Entry(aFullName, entry) == KErrNone)
   1.558 +			{
   1.559 +			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   1.560 +			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   1.561 +			if(err != KErrNone) 
   1.562 +				{
   1.563 +				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   1.564 +				}
   1.565 +			err = fsSession.Delete(aFullName);
   1.566 +			if(err != KErrNone) 
   1.567 +				{
   1.568 +				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   1.569 +				}
   1.570 +			}
   1.571 +		fsSession.Close();
   1.572 +		}
   1.573 +	else
   1.574 +		{
   1.575 +		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   1.576 +		}
   1.577 +	}
   1.578 +
   1.579 +CT_STYLE::CT_STYLE()
   1.580 +    {
   1.581 +    SetTestStepName(KTestStep_T_STYLE);
   1.582 +    pTestStep = this;
   1.583 +    }
   1.584 +
   1.585 +TVerdict CT_STYLE::doTestStepL()
   1.586 +    {
   1.587 +    SetTestStepResult(EFail);
   1.588 +
   1.589 +    INFO_PRINTF1(_L("Testing Paragraph Styles"));
   1.590 +    __UHEAP_MARK;
   1.591 +    setupCleanup();
   1.592 +    TRAPD(r,TestHarness());
   1.593 +    test(r == KErrNone);
   1.594 +
   1.595 +    delete TheTrapCleanup;
   1.596 +    
   1.597 +    __UHEAP_MARKEND;
   1.598 +    
   1.599 +    ::DeleteDataFile(KOutputFile);      //deletion of data files must be before call to End() - DEF047652
   1.600 +
   1.601 +    if (r == KErrNone)
   1.602 +        {
   1.603 +        SetTestStepResult(EPass);
   1.604 +        }
   1.605 +
   1.606 +    return TestStepResult();
   1.607 +    }