os/textandloc/textrendering/texthandling/ttext/T_CONVS.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 <txtetext.h>
    20 #include <txtglobl.h>
    21 #include <txtfmlyr.h>
    22 #include <s32mem.h>
    23 #include <s32file.h>
    24 #include <fldbase.h>
    25 #include <fldbltin.h>
    26 #include <flddef.h>
    27 #include "T_CONVS.h"
    28 
    29 #define test(cond)											\
    30 	{														\
    31 	TBool __bb = (cond);									\
    32 	TEST(__bb);												\
    33 	if (!__bb)												\
    34 		{													\
    35 		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    36 		User::Leave(1);										\
    37 		}													\
    38 	}
    39 
    40 const TInt KTestCleanupStack=0x20;
    41 const TInt KTestExpandSize=0x20;
    42 
    43 LOCAL_D CTrapCleanup* TheTrapCleanup;
    44 LOCAL_D	TPtrC bigBuf(_L("This is a very big buffer indeed, containing text and special characters,\
    45  big enough to fill a segment of an editable text component that employs segmented storage"));
    46 
    47 ////////////////////////////////////////////////////////////////////////////////////////////
    48 class TTestFieldFactoryCONVS : public MTextFieldFactory
    49 	{
    50 public:
    51 	// from MTextFieldFactory
    52 	virtual CTextField* NewFieldL(TUid aFieldType); 
    53 	// Creates a field of the type specified
    54 	// Returns NULL if it does not recognise/support the field type
    55 	};
    56 
    57 CTextField* TTestFieldFactoryCONVS::NewFieldL(TUid aFieldType)
    58 // Creates a field (in aHeader) of the type specified in aHeader
    59 // 
    60 	{
    61 	CTextField* field=NULL;
    62 	if (aFieldType==KDateTimeFieldUid)
    63 		field = (CTextField*)new(ELeave) CDateTimeField();
    64 	return field;
    65 	}
    66 /////////////////////////////////////////////////////////////////////////////////////////////
    67 
    68 template <class T>
    69 void CT_CONVS::testCopy(T &aCopy,const T &anOriginal)
    70 //
    71 // Copy anOriginal to aCopy using memory-based streams.
    72 //
    73 	{
    74 	CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
    75 	if (buf==NULL)
    76 		User::Panic(_L("Allocating buffer"), 1234);
    77 	
    78 //	Write anOriginal out to the buffer.
    79 	RBufWriteStream out(*buf);
    80 	TRAPD(r,out<<anOriginal);
    81 	test(r==KErrNone);
    82 	TRAP(r,out.CommitL());
    83 	if (r!=KErrNone)
    84 	    User::Panic(_L("Committing write stream"), 1234);
    85 
    86 //	Read anOriginal in from the buffer.
    87 	RBufReadStream in(*buf);
    88 	TRAP(r,in>>aCopy);
    89 	test(r==KErrNone);
    90 
    91 //	See if it's consumed the lot.
    92 	TRAP(r,in.ReadUint8L());
    93 	test(r==KErrEof);
    94 //
    95 	delete buf;
    96 	}
    97 
    98 _LIT(KOutputFile, "c:\\etext\\t_convs.tst");
    99 template <class T>
   100 void CT_CONVS::testStoreRestoreL(T& aCopy,const T& aOriginal)
   101 // Test document persistance.
   102 //
   103     {
   104 	// set up the store
   105 	RFs	theFs;
   106 	theFs.Connect();
   107 	//
   108 	theFs.Delete(KOutputFile);
   109 	theFs.MkDirAll(KOutputFile);
   110 	CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
   111 	CleanupStack::PushL(theStore);
   112 	theStore->SetTypeL(KDirectFileStoreLayoutUid);
   113 	//
   114 	// store the original
   115 	TStreamId id(0);
   116 	TRAPD(ret,id=aOriginal.StoreL(*theStore));
   117 		test(ret==KErrNone);
   118 	//
   119 	// restore into the copy
   120 	TRAP(ret,aCopy.RestoreL(*theStore,id));
   121 		test(ret==KErrNone);
   122 	//
   123 	// tidy up
   124 	CleanupStack::PopAndDestroy();  // theStore
   125 	theFs.Close();
   126     }
   127 
   128 
   129 template <class T>
   130 void CT_CONVS::testCopyChain(T &aCopy,const T &anOriginal,TInt aExcludeCount,const CFormatLayer* aBase)
   131 //
   132 // Copy anOriginal to aCopy using memory-based streams.
   133 //
   134 	{
   135 	CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
   136 	if (buf==NULL)
   137 	    User::Panic(_L("Allocating buffer"), 1234);
   138 	
   139 //	Write anOriginal out to the buffer.
   140 	RBufWriteStream out(*buf);
   141 	TRAPD(r,anOriginal.ExternalizeChainL(out,aExcludeCount));
   142 	test(r==KErrNone);
   143 	TRAP(r,out.CommitL());
   144 	if (r!=KErrNone)
   145 	    User::Panic(_L("Committing write stream"), 1234);
   146 
   147 //	Read anOriginal in from the buffer.
   148 	RBufReadStream in(*buf);
   149 	TRAP(r,aCopy.InternalizeChainL(in,aBase));
   150 	test(r==KErrNone);
   151 
   152 //	See if it's consumed the lot.
   153 	TRAP(r,in.ReadUint8L());
   154 	test(r!=KErrNone);
   155 //
   156 	delete buf;
   157 	}
   158 
   159 
   160 TInt CT_CONVS::IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal)
   161 //
   162 // Returns true if aCopy contents matches aOriginal contents.
   163 // Takes account of multiple segments of a segmented text component.
   164 //
   165 	{
   166 	TInt lengthOfOriginal=aOriginal->DocumentLength();
   167 	TInt lengthOfCopy=aCopy->DocumentLength();
   168 	test(lengthOfOriginal==lengthOfCopy);
   169 //
   170 	TPtrC copy,orig;
   171 //
   172 	TInt lengthRead=0;
   173 	while(lengthRead<=lengthOfOriginal)
   174 		{
   175 		copy.Set((aCopy->Read(lengthRead)));
   176 		orig.Set((aOriginal->Read(lengthRead)));
   177 		for (TInt offset=0; offset<orig.Length(); offset++)
   178 			test(copy[offset]==orig[offset]);
   179 		lengthRead+=orig.Length();
   180 		}
   181 	test(lengthRead==lengthOfOriginal+1);
   182 	test(aCopy->FieldCount()==aOriginal->FieldCount());
   183 	return 1;
   184 	}
   185 
   186 
   187 void CT_CONVS::testPlainTextL(CEditableText::TDocumentStorage aStorage)
   188 //
   189 // Test streaming CPlainText.
   190 //
   191 	{// Create the plain text components.
   192 	INFO_PRINTF1(_L("Streaming CPlainText"));
   193 	CPlainText* copy=CPlainText::NewL(aStorage);
   194 	CPlainText* testDoc=CPlainText::NewL(aStorage);
   195 	//
   196 	// Set the original - empty
   197 	INFO_PRINTF1(_L("empty."));
   198 	testStoreRestoreL(*copy,*testDoc);
   199 	test(IsEqual(copy,testDoc));
   200 	//	
   201 	INFO_PRINTF1(_L("paragraph delimiter"));
   202 	TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
   203 	test(r==KErrNone);
   204 	testStoreRestoreL(*copy,*testDoc);	
   205 	test(IsEqual(copy,testDoc));
   206 	//
   207 	// Next test with tons of text guaranteed to force segment break when using segmented storage.	
   208 	INFO_PRINTF1(_L("big text component"));
   209 	testDoc->InsertL(0,bigBuf);
   210 	testStoreRestoreL(*copy,*testDoc);
   211 	test(IsEqual(copy,testDoc));
   212 	//
   213 	// Now test with field components.
   214 	INFO_PRINTF1(_L("big text doc with field components."));
   215 	TTestFieldFactoryCONVS factory;
   216 	testDoc->SetFieldFactory(&factory);
   217 	copy->SetFieldFactory(&factory);
   218 	CTextField* field=NULL;
   219 	TRAPD(ret,
   220 	field=factory.NewFieldL(KDateTimeFieldUid));
   221 	test(ret==KErrNone);
   222 	TRAP(ret,
   223 	testDoc->InsertFieldL(0,field,KDateTimeFieldUid));
   224 	test(ret==KErrNone);
   225 	testStoreRestoreL(*copy,*testDoc);
   226 	test(IsEqual(copy,testDoc));
   227 	//
   228 	//
   229 	delete copy;
   230 	delete testDoc;
   231 	}
   232 
   233 
   234 void CT_CONVS::testGlobalTextL(CEditableText::TDocumentStorage aStorage)
   235 //
   236 // Test streaming CGlobalText.
   237 //
   238 	{// Create the plain text components.
   239 	INFO_PRINTF1(_L("Streaming CGlobalText"));
   240 	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   241 	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   242 	// Set something interesting in the layers:
   243 	CParaFormat* paraFormat1=CParaFormat::NewL(); TParaFormatMask paraMask1;
   244 	TCharFormat charFormat1; TCharFormatMask charMask1;
   245 	paraFormat1->iHorizontalAlignment=CParaFormat::ECenterAlign; paraMask1.SetAttrib(EAttAlignment);
   246 	paraFormat1->iLeftMarginInTwips=4000; paraMask1.SetAttrib(EAttLeftMargin);
   247 	paraLayer->SetL(paraFormat1,paraMask1);
   248 	charFormat1.iFontSpec.iFontStyle.SetPosture(EPostureItalic); charMask1.SetAttrib(EAttFontPosture);
   249 	charFormat1.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); charMask1.SetAttrib(EAttFontStrokeWeight);
   250 	charLayer->SetL(charFormat1,charMask1);
   251 	//	
   252 	CGlobalText* copy=CGlobalText::NewL(paraLayer,charLayer,aStorage);
   253 	CGlobalText* testDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
   254 
   255 //	Set the original - empty
   256 	INFO_PRINTF1(_L("empty."));
   257 	testStoreRestoreL(*copy,*testDoc);
   258 	test(IsEqual(copy,testDoc));
   259 //	
   260 	INFO_PRINTF1(_L("paragraph delimiter"));
   261 	TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
   262 	test(r==KErrNone);
   263 	testStoreRestoreL(*copy,*testDoc);
   264 	test(IsEqual(copy,testDoc));
   265 
   266 //	Next test with tons of text guaranteed to force segment break when using segmented storage.	
   267 	INFO_PRINTF1(_L("big text component"));
   268 	testDoc->InsertL(0,bigBuf);
   269 	testStoreRestoreL(*copy,*testDoc);
   270 	test(IsEqual(copy,testDoc));
   271 		
   272 	delete copy;
   273 	delete testDoc;
   274 	delete paraLayer;
   275 	delete charLayer;
   276 	delete paraFormat1;
   277 	}
   278 
   279 
   280 TInt CT_CONVS::LayerIsEqual(const CParaFormatLayer* aRestored,const CParaFormatLayer* aOriginal)
   281 //
   282 // Returns true if aRestored contents matches aOriginal contents.
   283 //
   284 	{
   285 	CParaFormat* restored=NULL;  TParaFormatMask rm;
   286 	CParaFormat* original=NULL;  TParaFormatMask om;
   287 	TRAPD(r,restored=CParaFormat::NewL());     test(r==KErrNone);
   288 	TRAP(r,original=CParaFormat::NewL());     test(r==KErrNone);
   289 
   290 	aOriginal->SenseL(original,om);
   291 	aRestored->SenseL(restored,rm);
   292 
   293 	test(original->IsEqual(*restored));
   294 
   295 	delete restored;
   296 	delete original;
   297 	return 1;
   298 	}
   299 
   300 
   301 TInt CT_CONVS::LayerIsEqual(const CCharFormatLayer* aRestored,const CCharFormatLayer* aOriginal)
   302 //
   303 // Returns true if aRestored contents matches aOriginal contents.
   304 //
   305 	{
   306 	TCharFormat restored;  TCharFormatMask rm;
   307 	TCharFormat original;  TCharFormatMask om;
   308 
   309 	aOriginal->Sense(original,om);
   310 	aRestored->Sense(restored,rm);
   311 
   312 	test(original.IsEqual(restored));
   313 	
   314 	return 1;
   315 	}
   316 
   317 
   318 void CT_CONVS::testFmtLayerStoreL()
   319 //
   320 // Test the format layer StoreL().
   321 //
   322 	{
   323 	INFO_PRINTF1(_L("CParaFormatLayer"));
   324 //	Create test layers.
   325 	CParaFormatLayer* pfl1=NULL;
   326 	CParaFormatLayer* restored=NULL;
   327 	CParaFormat* pf1=NULL;
   328 	TRAPD(r,restored=CParaFormatLayer::NewL());     test(r==KErrNone);
   329 	// Force *restored* to allocate storage for iteself by storing a null layer.
   330 	TParaFormatMask rm;     rm.ClearAll(); CParaFormat* rpf=NULL;
   331 	restored->SetL(rpf,rm);
   332 	TRAP(r,pfl1=CParaFormatLayer::NewL());     test(r==KErrNone);
   333 	TRAP(r,pf1=CParaFormat::NewL());     test(r==KErrNone);
   334 	TParaFormatMask pm1;
   335 	pm1.SetAll();  // Sets all but the compound attributes.
   336 //	TEST ONE DEFAULT CASES
   337 	INFO_PRINTF1(_L("Default paragraph format values."));
   338 	TRAP(r,pfl1->SetL(pf1,pm1));     test(r==KErrNone);
   339 	testCopy(*restored,*pfl1);
   340 	test(LayerIsEqual(restored,pfl1));
   341 	test(restored->SenseBase()==pfl1->SenseBase());  // Both should default to based on NULL
   342 //	TEST TWO 
   343 	INFO_PRINTF1(_L("Setting all attributes"));
   344 	pf1->iLeftMarginInTwips=5000; pm1.ClearAll(); pm1.SetAttrib(EAttLeftMargin);
   345 	pf1->iRightMarginInTwips=5001; pm1.SetAttrib(EAttRightMargin);
   346 	pf1->iIndentInTwips=5002;pm1.SetAttrib(EAttIndent);
   347 	pf1->iHorizontalAlignment=CParaFormat::ERightAlign; pm1.SetAttrib(EAttAlignment);
   348 	pf1->iVerticalAlignment=CParaFormat::ECenterAlign; pm1.SetAttrib(EAttVerticalAlignment);
   349 	pf1->iLineSpacingInTwips=5003; pm1.SetAttrib(EAttLineSpacing);
   350 	pf1->iLineSpacingControl=CParaFormat::ELineSpacingAtLeastInTwips; pm1.SetAttrib(EAttLineSpacingControl);
   351 	pf1->iSpaceBeforeInTwips=5004; pm1.SetAttrib(EAttSpaceBefore);
   352 	pf1->iSpaceAfterInTwips=5005; pm1.SetAttrib(EAttSpaceAfter);
   353 	pf1->iKeepTogether=ETrue; pm1.SetAttrib(EAttKeepTogether);
   354 	pf1->iKeepWithNext=ETrue; pm1.SetAttrib(EAttKeepWithNext);
   355 	pf1->iStartNewPage=ETrue; pm1.SetAttrib(EAttStartNewPage);
   356 	pf1->iWidowOrphan=ETrue; pm1.SetAttrib(EAttWidowOrphan);
   357 	pf1->iWrap=EFalse; pm1.SetAttrib(EAttWrap);
   358 	pf1->iBorderMarginInTwips=5006; pm1.SetAttrib(EAttBorderMargin);
   359 	pf1->iDefaultTabWidthInTwips=5007; pm1.SetAttrib(EAttDefaultTabWidth);
   360 	// TopBorder
   361 	TParaBorder top;
   362 	top.iLineStyle=TParaBorder::ESolid;
   363 	top.iThickness=4;
   364 	top.iAutoColor=ETrue;
   365 	pf1->SetParaBorderL(CParaFormat::EParaBorderTop,top);
   366 	pm1.SetAttrib(EAttTopBorder);
   367 	// BottomBorder
   368 	TParaBorder bottom;	
   369 	bottom.iLineStyle=TParaBorder::ESolid;
   370 	bottom.iThickness=4;
   371 	bottom.iAutoColor=ETrue;
   372 	pf1->SetParaBorderL(CParaFormat::EParaBorderBottom,bottom);
   373 	pm1.SetAttrib(EAttBottomBorder);
   374 	// LeftBorder
   375 	TParaBorder left;
   376 	left.iLineStyle=TParaBorder::ESolid;
   377 	left.iThickness=4;
   378 	left.iAutoColor=ETrue;
   379 	pf1->SetParaBorderL(CParaFormat::EParaBorderLeft,left);
   380 	pm1.SetAttrib(EAttLeftBorder);
   381 	// RightBorder
   382 	TParaBorder right;
   383 	right.iLineStyle=TParaBorder::ESolid;
   384 	right.iThickness=4;
   385 	top.iAutoColor=ETrue;
   386 	pf1->SetParaBorderL(CParaFormat::EParaBorderRight,right);
   387 	pm1.SetAttrib(EAttRightBorder);
   388 	// Bullet
   389 	pf1->iBullet=new(ELeave)TBullet;
   390 	TUint charCode=5008;
   391 	pf1->iBullet->iCharacterCode=(TUint8)charCode;
   392 	pf1->iBullet->iHeightInTwips=5009;
   393 	pf1->iBullet->iTypeface.iName=_L("Duncan");
   394 	pf1->iBullet->iTypeface.SetIsProportional(EFalse);
   395 	pf1->iBullet->iTypeface.SetIsSerif(EFalse);
   396 	pm1.SetAttrib(EAttBullet);
   397 	// 2 Tab Stops.
   398 	TTabStop tab1,tab2;
   399 	tab1.iTwipsPosition=5010; tab1.iType=TTabStop::ERightTab;
   400 	tab2.iTwipsPosition=5011; tab2.iType=TTabStop::ECenteredTab;
   401 	pf1->StoreTabL(tab1);
   402 	pf1->StoreTabL(tab2);
   403 	pm1.SetAttrib(EAttTabStop);
   404 //
   405 	TRAP(r,pfl1->SetL(pf1,pm1));
   406 	testCopy(*restored,*pfl1);
   407 	test(LayerIsEqual(restored,pfl1));
   408 	test(restored->SenseBase()==pfl1->SenseBase());  // Both should default to based on NULL
   409 //
   410 	delete pf1;
   411 	delete pfl1;
   412 	delete restored;
   413 //
   414 //	Now the CCharFormatLayer Store/Restore
   415 //
   416 	INFO_PRINTF1(_L("CCharFormatLayer"));
   417 // 	
   418 	INFO_PRINTF1(_L("Setting all attributes"));
   419 //	Create test layers.
   420 	CCharFormatLayer* cfl1=NULL;
   421 	CCharFormatLayer* cRestored=NULL;
   422 	TCharFormat cf1; TCharFormatMask cm1;
   423 //
   424 	TRAP(r,cRestored=CCharFormatLayer::NewL());     test(r==KErrNone);
   425 	// Force *restored* to allocate storage for iteself by storing a null layer.
   426 	TCharFormatMask rcm;     rcm.ClearAll(); TCharFormat rcf;
   427 	cRestored->SetL(rcf,rcm);
   428 //
   429 	TRAP(r,cfl1=CCharFormatLayer::NewL());     test(r==KErrNone);
   430 //	
   431 	TRgb color(20,20,20);
   432 	cf1.iFontPresentation.iTextColor=color;	cm1.SetAttrib(EAttColor);
   433 	cf1.iFontSpec.iTypeface.iName=_L("DUNCANXZE");
   434 	cf1.iFontSpec.iTypeface.SetIsProportional(ETrue);	cm1.SetAttrib(EAttFontTypeface);
   435 	cf1.iFontSpec.iTypeface.SetIsSerif(EFalse);
   436     cf1.iFontSpec.iFontStyle.SetBitmapType(EMonochromeGlyphBitmap);
   437 
   438 	cf1.iFontSpec.iHeight=6000;	cm1.SetAttrib(EAttFontHeight);
   439 	cf1.iFontSpec.iFontStyle.SetPosture(EPostureItalic);	cm1.SetAttrib(EAttFontPosture);
   440 	cf1.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);	cm1.SetAttrib(EAttFontStrokeWeight);
   441 	cf1.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSuperscript);	cm1.SetAttrib(EAttFontPrintPos);
   442 	cf1.iFontPresentation.iUnderline=EUnderlineOn;	cm1.SetAttrib(EAttFontUnderline);
   443 	cf1.iFontPresentation.iStrikethrough=EStrikethroughOn;	cm1.SetAttrib(EAttFontStrikethrough);
   444 	cf1.iFontPresentation.iHighlightColor=color;  cm1.SetAttrib(EAttFontHighlightColor);
   445 	cf1.iFontPresentation.iHighlightStyle=TFontPresentation::EFontHighlightNormal;  cm1.SetAttrib(EAttFontHighlightStyle);
   446 //
   447 	TRAP(r,cfl1->SetL(cf1,cm1));
   448 	test(r==KErrNone);
   449 	testCopy(*cRestored,*cfl1);
   450 	test(LayerIsEqual(cRestored,cfl1));
   451 
   452 	TCharFormat rfmt;  
   453     TCharFormatMask rmask;
   454 	cRestored->Sense(rfmt, rmask);
   455     test(rfmt.iFontSpec.iFontStyle.BitmapType() == EMonochromeGlyphBitmap);
   456 
   457 //
   458 	delete cfl1;
   459 	delete cRestored;
   460 	}
   461 
   462 
   463 TInt CT_CONVS::ChainIsEqual(const CParaFormatLayer* aCopy,const CParaFormatLayer* aOriginal)
   464 //
   465 // Tests that the restored chain is identical to the original chain.
   466 //
   467 	{
   468 	TInt origChainCount=aOriginal->ChainCount();
   469 	/*TInt copyChainCount=*/aCopy->ChainCount();
   470 //	Check the chain heads are equal.
   471 	test(LayerIsEqual(aCopy,aOriginal));
   472 	TInt descendantCount=origChainCount-1;
   473 	
   474 	const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
   475 	const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
   476 	for (TInt loop=0;loop<descendantCount;loop++)
   477 		{
   478 		test(LayerIsEqual((CParaFormatLayer*)nextCopyLayer,(CParaFormatLayer*)nextOrigLayer));
   479 
   480 		nextCopyLayer=nextCopyLayer->SenseBase();
   481 		nextOrigLayer=nextOrigLayer->SenseBase();
   482 		}
   483 	return 1;
   484 	}
   485 
   486 
   487 TInt CT_CONVS::ChainIsEqual(const CCharFormatLayer* aCopy,const CCharFormatLayer* aOriginal)
   488 //
   489 // Tests that the restored chain is identical to the original chain.
   490 //
   491 	{
   492 	TInt origChainCount=aOriginal->ChainCount();
   493 	/*TInt copyChainCount=*/aCopy->ChainCount();
   494 //	Check the chain heads are equal.
   495 	test(LayerIsEqual(aCopy,aOriginal));
   496 	TInt descendantCount=origChainCount-1;
   497 	
   498 	const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
   499 	const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
   500 	for (TInt loop=0;loop<descendantCount;loop++)
   501 		{
   502 		test(LayerIsEqual((CCharFormatLayer*)nextCopyLayer,(CCharFormatLayer*)nextOrigLayer));
   503 
   504 		nextCopyLayer=nextCopyLayer->SenseBase();
   505 		nextOrigLayer=nextOrigLayer->SenseBase();
   506 		}
   507 	return 1;
   508 	}
   509 
   510 
   511 void CT_CONVS::DoParaChainL()
   512 //
   513 // Tests the streaming of a chain of format layers
   514 //
   515 	{
   516 	INFO_PRINTF1(_L("Re/StoreChainL()"));
   517 	INFO_PRINTF1(_L("CParaFormatLayer"));
   518 //	Create the chain of para format layers.
   519 	CParaFormatLayer* l1=CParaFormatLayer::NewL();
   520 	CParaFormatLayer* l2=CParaFormatLayer::NewL();
   521 	CParaFormatLayer* l3=CParaFormatLayer::NewL();
   522 	CParaFormatLayer* l4=CParaFormatLayer::NewL();
   523 //	Chain together.
   524 	l1->SetBase(l2);
   525 	l2->SetBase(l3);
   526 	l3->SetBase(l4);
   527 //	Create head of restored format stream, and force it to get storage.	
   528 	CParaFormatLayer* restoredChainHead=CParaFormatLayer::NewL();
   529 	CParaFormat* restoredParaFormat=CParaFormat::NewL();
   530 	TParaFormatMask restoredParaMask;
   531 	restoredParaMask.ClearAll();
   532 	restoredChainHead->SetL(restoredParaFormat,restoredParaMask);
   533 //	General paraformat and its mask.
   534 	CParaFormat* paraFormat=CParaFormat::NewL();
   535 	TParaFormatMask paraMask;
   536 	paraMask.ClearAll();
   537 //	Set layer one stuff
   538 	TTabStop tab1,tab2;
   539 	tab1.iTwipsPosition=5000;	tab2.iTwipsPosition=5001;
   540 	tab1.iType=TTabStop::ERightTab;	tab2.iType=TTabStop::ECenteredTab;
   541 	paraFormat->StoreTabL(tab1);
   542 	paraFormat->StoreTabL(tab2);
   543 	paraMask.SetAttrib(EAttTabStop);
   544 	l1->SetL(paraFormat,paraMask);
   545 	paraMask.ClearAll();
   546 //	Set layer two stuff
   547 	TParaBorder top1;
   548 	top1.iLineStyle=TParaBorder::ESolid;
   549 	top1.iThickness=3;
   550 	top1.iAutoColor=ETrue;
   551 	paraFormat->SetParaBorderL(CParaFormat::EParaBorderTop,top1);
   552 	paraMask.SetAttrib(EAttTopBorder);
   553 	l2->SetL(paraFormat,paraMask);
   554 	paraMask.ClearAll();
   555 //	Set the layer 3 stuff.
   556 	paraFormat->iBullet=new(ELeave)TBullet;
   557 	paraFormat->iBullet->iTypeface.iName=_L("SKELTON");
   558 	paraFormat->iBullet->iTypeface.SetIsProportional(EFalse);
   559 	paraFormat->iBullet->iTypeface.SetIsSerif(EFalse);
   560 	paraFormat->iBullet->iHeightInTwips=3003;
   561 	paraFormat->iBullet->iCharacterCode=32;
   562 	paraMask.SetAttrib(EAttBullet);
   563 	l3->SetL(paraFormat,paraMask);
   564 	paraMask.ClearAll();
   565 // Set the layer 4 stuff.
   566 	paraFormat->iHorizontalAlignment=CParaFormat::EJustifiedAlign;	paraMask.SetAttrib(EAttAlignment);
   567 	paraFormat->iSpaceAfterInTwips=6000;			paraMask.SetAttrib(EAttSpaceAfter);
   568 	paraFormat->iKeepTogether=ETrue;			paraMask.SetAttrib(EAttKeepTogether);
   569 	l4->SetL(paraFormat,paraMask);
   570 // NOW DO IT
   571 	testCopyChain(*restoredChainHead,*l1,0,(const CFormatLayer*)NULL);
   572 	TInt restoredChainCount=restoredChainHead->ChainCount();
   573 	test(ChainIsEqual(restoredChainHead,l1));
   574 //	DESTROY STUFF
   575 	CParaFormatLayer* current=restoredChainHead;
   576 	CParaFormatLayer* next=(CParaFormatLayer*)restoredChainHead->SenseBase();
   577 	delete current;
   578 	for (TInt loop=0;loop<restoredChainCount-1;loop++)	
   579 		{
   580 		current=next;
   581 		next=(CParaFormatLayer*)current->SenseBase();
   582 		delete current;
   583 		}
   584 	delete l1;
   585 	delete l2;
   586 	delete l3;
   587 	delete l4;
   588 	delete paraFormat;
   589 	delete restoredParaFormat;
   590 	}
   591 
   592 
   593 void CT_CONVS::DoCharChainL()
   594 //
   595 //
   596 //
   597 	{
   598 	INFO_PRINTF1(_L("CCharFormatLayer"));
   599 //	Create the chain of character format layers.
   600 	CCharFormatLayer* cl1=CCharFormatLayer::NewL();
   601 	CCharFormatLayer* cl2=CCharFormatLayer::NewL();
   602 	CCharFormatLayer* cl3=CCharFormatLayer::NewL();
   603 	CCharFormatLayer* cl4=CCharFormatLayer::NewL();
   604 //	Chain together.
   605 	cl1->SetBase(cl2);
   606 	cl2->SetBase(cl3);
   607 	cl3->SetBase(cl4);
   608 //	Create head of restored format stream, and force it to get storage.	
   609 	CCharFormatLayer* rChar=CCharFormatLayer::NewL();
   610 	TCharFormat restoredCharFormat;
   611 	TCharFormatMask restoredCharMask;
   612 	restoredCharMask.ClearAll();
   613 	rChar->SetL(restoredCharFormat,restoredCharMask);
   614 //	General charformat and its mask.
   615 	TCharFormat charFormat;	TCharFormatMask charMask;
   616 	charMask.ClearAll();
   617 //	Set layer one stuff
   618 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);	charMask.SetAttrib(EAttFontStrokeWeight);
   619 	charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic);	charMask.SetAttrib(EAttFontPosture);
   620 	charFormat.iFontPresentation.iUnderline=EUnderlineOn;	charMask.SetAttrib(EAttFontUnderline);
   621 	cl1->SetL(charFormat,charMask);
   622 	charMask.ClearAll();
   623 //	Set layer two stuff
   624 	charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript);	charMask.SetAttrib(EAttFontPrintPos);
   625 	cl2->SetL(charFormat,charMask);
   626 	charMask.ClearAll();
   627 //	Set the layer 3 stuff.
   628 	charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;	charMask.SetAttrib(EAttFontStrikethrough);
   629 	cl3->SetL(charFormat,charMask);
   630 	charMask.ClearAll();
   631 //	Set the layer 4 stuff.
   632 	charFormat.iFontSpec.iTypeface.iName=_L("Arial");
   633 	charFormat.iFontSpec.iHeight=200;
   634 	charMask.SetAttrib(EAttFontHeight);
   635 	charMask.SetAttrib(EAttFontTypeface);
   636 	cl4->SetL(charFormat,charMask);
   637 //	NOW DO IT
   638 	INFO_PRINTF1(_L("Chain 4 layers deep, terminating on a based on NULL"));
   639 	testCopyChain(*rChar,*cl1,0,(const CFormatLayer*)NULL);
   640 	TInt restoredChainCount=rChar->ChainCount();
   641 	test(ChainIsEqual(rChar,cl1));
   642 //	DESTROY STUFF
   643 	CCharFormatLayer* chCurrent=rChar;
   644 	CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
   645 	delete chCurrent;
   646 	for (TInt loop=0;loop<restoredChainCount-1;loop++)	
   647 		{
   648 		chCurrent=chNext;
   649 		chNext=(CCharFormatLayer*)chCurrent->SenseBase();
   650 		delete chCurrent;
   651 		}
   652 	delete cl1;
   653 	delete cl2;
   654 	delete cl3;
   655 	delete cl4;
   656 	}
   657 		
   658 
   659 void CT_CONVS::DoCharChainVariant1()
   660 //
   661 // Case 2: Where the chain does not terminate at a NULL link.
   662 //
   663 	{
   664 //	Create the chain of character format layers.
   665 	CCharFormatLayer* cl1=CCharFormatLayer::NewL();
   666 	CCharFormatLayer* cl2=CCharFormatLayer::NewL();
   667 	CCharFormatLayer* cl3=CCharFormatLayer::NewL();
   668 	CCharFormatLayer* cl4=CCharFormatLayer::NewL();
   669 //	Chain together.
   670 	cl1->SetBase(cl2);
   671 	cl2->SetBase(cl3);
   672 	cl3->SetBase(cl4);
   673 //	Create head of restored format stream, and force it to get storage.	
   674 	CCharFormatLayer* rChar=CCharFormatLayer::NewL();
   675 	TCharFormat restoredCharFormat;
   676 	TCharFormatMask restoredCharMask;
   677 	restoredCharMask.ClearAll();
   678 	rChar->SetL(restoredCharFormat,restoredCharMask);
   679 //	General charformat and its mask.
   680 	TCharFormat charFormat;	TCharFormatMask charMask;
   681 	charMask.ClearAll();
   682 //	Set layer one stuff
   683 	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);	charMask.SetAttrib(EAttFontStrokeWeight);
   684 	charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic);	charMask.SetAttrib(EAttFontPosture);
   685 	charFormat.iFontPresentation.iUnderline=EUnderlineOn;	charMask.SetAttrib(EAttFontUnderline);
   686 	cl1->SetL(charFormat,charMask);
   687 	charMask.ClearAll();
   688 //	Set layer two stuff
   689 	charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript);	charMask.SetAttrib(EAttFontPrintPos);
   690 	cl2->SetL(charFormat,charMask);
   691 	charMask.ClearAll();
   692 //	Set the layer 3 stuff.
   693 	charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;	charMask.SetAttrib(EAttFontStrikethrough);
   694 	cl3->SetL(charFormat,charMask);
   695 	charMask.ClearAll();
   696 //	Set the layer 4 stuff.
   697 	charFormat.iFontSpec.iTypeface.iName=_L("Arial");
   698 	charFormat.iFontSpec.iHeight=200;
   699 	charMask.SetAttrib(EAttFontHeight);
   700 	charMask.SetAttrib(EAttFontTypeface);
   701 	cl4->SetL(charFormat,charMask);
   702 //	NOW DO IT
   703 	INFO_PRINTF1(_L("Chain 3 layers deep, terminating on a non-NULL based-on"));
   704 	testCopyChain(*rChar,*cl1,1,(const CFormatLayer*)cl4);
   705 	TInt restoredChainCount=rChar->ChainCount();
   706 	test(ChainIsEqual(rChar,cl1));
   707 //	DESTROY STUFF
   708 	CCharFormatLayer* chCurrent=rChar;
   709 	CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
   710 	delete chCurrent;
   711 	for (TInt loop=0;loop<restoredChainCount-2;loop++)	
   712 		{
   713 		chCurrent=chNext;
   714 		chNext=(CCharFormatLayer*)chCurrent->SenseBase();
   715 		delete chCurrent;
   716 		}
   717 	delete cl1;
   718 	delete cl2;
   719 	delete cl3;
   720 	delete cl4;
   721 	}
   722 
   723 
   724 void CT_CONVS::testFmtLayerStoreChainL()
   725 //
   726 // Controls the testing of the chainig stuff.
   727 //
   728 	{
   729 	DoParaChainL();
   730 	DoCharChainL();
   731 	DoCharChainVariant1();
   732 //	DoCharChainVariant2();  TO BE IMPLEMENTED
   733 //	doCharChainVariant3();	TO BE IMPLEMENTED
   734 	}
   735 
   736 
   737 void CT_CONVS::testFmtLayerL()
   738 //
   739 // Tests the streaming of format layers.
   740 //
   741 	{
   742 	testFmtLayerStoreL();
   743 	testFmtLayerStoreChainL();
   744 	}
   745 
   746 
   747 void CT_CONVS::setupCleanup()
   748 //
   749 // Initialise the cleanup stack.
   750 //
   751     {
   752 
   753 	TheTrapCleanup=CTrapCleanup::New();
   754 	TRAPD(r,\
   755 		{\
   756 		for (TInt i=KTestCleanupStack;i>0;i--)\
   757 			CleanupStack::PushL((TAny*)1);\
   758 		test(r==KErrNone);\
   759 		CleanupStack::Pop(KTestCleanupStack);\
   760 		});
   761 	}
   762 
   763 
   764 void CT_CONVS::DeleteDataFile(const TDesC& aFullName)
   765 	{
   766 	RFs fsSession;
   767 	TInt err = fsSession.Connect();
   768 	if(err == KErrNone)
   769 		{
   770 		TEntry entry;
   771 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   772 			{
   773 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   774 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   775 			if(err != KErrNone) 
   776 				{
   777 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   778 				}
   779 			err = fsSession.Delete(aFullName);
   780 			if(err != KErrNone) 
   781 				{
   782 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   783 				}
   784 			}
   785 		fsSession.Close();
   786 		}
   787 	else
   788 		{
   789 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   790 		}
   791 	}
   792 
   793 CT_CONVS::CT_CONVS()
   794     {
   795     SetTestStepName(KTestStep_T_CONVS);
   796     }
   797 
   798 TVerdict CT_CONVS::doTestStepL()
   799     {
   800     SetTestStepResult(EFail);
   801 
   802     INFO_PRINTF1(_L("T_CONVS - EditableText Persistence"));
   803     setupCleanup();
   804     __UHEAP_MARK;
   805 
   806     INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVS-0001 EText components using Flat Storage "));
   807     TRAPD(error1, testPlainTextL(CEditableText::EFlatStorage));
   808     TRAPD(error2, testGlobalTextL(CEditableText::EFlatStorage));
   809     
   810     INFO_PRINTF1(_L("EText components using Segmented storage"));
   811     TRAPD(error3, testPlainTextL(CEditableText::ESegmentedStorage));
   812     TRAPD(error4, testGlobalTextL(CEditableText::ESegmentedStorage));
   813 
   814     INFO_PRINTF1(_L("Format Layer components"));
   815     TRAPD(error5, testFmtLayerL());
   816 
   817     __UHEAP_MARKEND;
   818     DeleteDataFile(KOutputFile);  //deletion of data files must be before call to End() - DEF047652
   819     delete TheTrapCleanup;
   820 
   821     if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone && error4 == KErrNone && error5 == KErrNone)
   822         {
   823         SetTestStepResult(EPass);
   824         }
   825 
   826     return TestStepResult();
   827     }