Update contrib.
2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
31 TBool __bb = (cond); \
35 ERR_PRINTF1(_L("ERROR: Test Failed")); \
40 const TInt KTestCleanupStack=0x20;
41 const TInt KTestExpandSize=0x20;
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"));
47 ////////////////////////////////////////////////////////////////////////////////////////////
48 class TTestFieldFactoryCONVS : public MTextFieldFactory
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
57 CTextField* TTestFieldFactoryCONVS::NewFieldL(TUid aFieldType)
58 // Creates a field (in aHeader) of the type specified in aHeader
61 CTextField* field=NULL;
62 if (aFieldType==KDateTimeFieldUid)
63 field = (CTextField*)new(ELeave) CDateTimeField();
66 /////////////////////////////////////////////////////////////////////////////////////////////
69 void CT_CONVS::testCopy(T &aCopy,const T &anOriginal)
71 // Copy anOriginal to aCopy using memory-based streams.
74 CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
76 User::Panic(_L("Allocating buffer"), 1234);
78 // Write anOriginal out to the buffer.
79 RBufWriteStream out(*buf);
80 TRAPD(r,out<<anOriginal);
82 TRAP(r,out.CommitL());
84 User::Panic(_L("Committing write stream"), 1234);
86 // Read anOriginal in from the buffer.
87 RBufReadStream in(*buf);
91 // See if it's consumed the lot.
92 TRAP(r,in.ReadUint8L());
98 _LIT(KOutputFile, "c:\\etext\\t_convs.tst");
100 void CT_CONVS::testStoreRestoreL(T& aCopy,const T& aOriginal)
101 // Test document persistance.
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);
114 // store the original
116 TRAPD(ret,id=aOriginal.StoreL(*theStore));
119 // restore into the copy
120 TRAP(ret,aCopy.RestoreL(*theStore,id));
124 CleanupStack::PopAndDestroy(); // theStore
130 void CT_CONVS::testCopyChain(T &aCopy,const T &anOriginal,TInt aExcludeCount,const CFormatLayer* aBase)
132 // Copy anOriginal to aCopy using memory-based streams.
135 CBufSeg *buf=CBufSeg::NewL(KTestExpandSize);
137 User::Panic(_L("Allocating buffer"), 1234);
139 // Write anOriginal out to the buffer.
140 RBufWriteStream out(*buf);
141 TRAPD(r,anOriginal.ExternalizeChainL(out,aExcludeCount));
143 TRAP(r,out.CommitL());
145 User::Panic(_L("Committing write stream"), 1234);
147 // Read anOriginal in from the buffer.
148 RBufReadStream in(*buf);
149 TRAP(r,aCopy.InternalizeChainL(in,aBase));
152 // See if it's consumed the lot.
153 TRAP(r,in.ReadUint8L());
160 TInt CT_CONVS::IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal)
162 // Returns true if aCopy contents matches aOriginal contents.
163 // Takes account of multiple segments of a segmented text component.
166 TInt lengthOfOriginal=aOriginal->DocumentLength();
167 TInt lengthOfCopy=aCopy->DocumentLength();
168 test(lengthOfOriginal==lengthOfCopy);
173 while(lengthRead<=lengthOfOriginal)
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();
181 test(lengthRead==lengthOfOriginal+1);
182 test(aCopy->FieldCount()==aOriginal->FieldCount());
187 void CT_CONVS::testPlainTextL(CEditableText::TDocumentStorage aStorage)
189 // Test streaming CPlainText.
191 {// Create the plain text components.
192 INFO_PRINTF1(_L("Streaming CPlainText"));
193 CPlainText* copy=CPlainText::NewL(aStorage);
194 CPlainText* testDoc=CPlainText::NewL(aStorage);
196 // Set the original - empty
197 INFO_PRINTF1(_L("empty."));
198 testStoreRestoreL(*copy,*testDoc);
199 test(IsEqual(copy,testDoc));
201 INFO_PRINTF1(_L("paragraph delimiter"));
202 TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
204 testStoreRestoreL(*copy,*testDoc);
205 test(IsEqual(copy,testDoc));
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));
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;
220 field=factory.NewFieldL(KDateTimeFieldUid));
223 testDoc->InsertFieldL(0,field,KDateTimeFieldUid));
225 testStoreRestoreL(*copy,*testDoc);
226 test(IsEqual(copy,testDoc));
234 void CT_CONVS::testGlobalTextL(CEditableText::TDocumentStorage aStorage)
236 // Test streaming CGlobalText.
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);
252 CGlobalText* copy=CGlobalText::NewL(paraLayer,charLayer,aStorage);
253 CGlobalText* testDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
255 // Set the original - empty
256 INFO_PRINTF1(_L("empty."));
257 testStoreRestoreL(*copy,*testDoc);
258 test(IsEqual(copy,testDoc));
260 INFO_PRINTF1(_L("paragraph delimiter"));
261 TRAPD(r,testDoc->InsertL(0,CEditableText::EParagraphDelimiter));
263 testStoreRestoreL(*copy,*testDoc);
264 test(IsEqual(copy,testDoc));
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));
280 TInt CT_CONVS::LayerIsEqual(const CParaFormatLayer* aRestored,const CParaFormatLayer* aOriginal)
282 // Returns true if aRestored contents matches aOriginal contents.
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);
290 aOriginal->SenseL(original,om);
291 aRestored->SenseL(restored,rm);
293 test(original->IsEqual(*restored));
301 TInt CT_CONVS::LayerIsEqual(const CCharFormatLayer* aRestored,const CCharFormatLayer* aOriginal)
303 // Returns true if aRestored contents matches aOriginal contents.
306 TCharFormat restored; TCharFormatMask rm;
307 TCharFormat original; TCharFormatMask om;
309 aOriginal->Sense(original,om);
310 aRestored->Sense(restored,rm);
312 test(original.IsEqual(restored));
318 void CT_CONVS::testFmtLayerStoreL()
320 // Test the format layer StoreL().
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);
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
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);
362 top.iLineStyle=TParaBorder::ESolid;
364 top.iAutoColor=ETrue;
365 pf1->SetParaBorderL(CParaFormat::EParaBorderTop,top);
366 pm1.SetAttrib(EAttTopBorder);
369 bottom.iLineStyle=TParaBorder::ESolid;
371 bottom.iAutoColor=ETrue;
372 pf1->SetParaBorderL(CParaFormat::EParaBorderBottom,bottom);
373 pm1.SetAttrib(EAttBottomBorder);
376 left.iLineStyle=TParaBorder::ESolid;
378 left.iAutoColor=ETrue;
379 pf1->SetParaBorderL(CParaFormat::EParaBorderLeft,left);
380 pm1.SetAttrib(EAttLeftBorder);
383 right.iLineStyle=TParaBorder::ESolid;
385 top.iAutoColor=ETrue;
386 pf1->SetParaBorderL(CParaFormat::EParaBorderRight,right);
387 pm1.SetAttrib(EAttRightBorder);
389 pf1->iBullet=new(ELeave)TBullet;
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);
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);
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
414 // Now the CCharFormatLayer Store/Restore
416 INFO_PRINTF1(_L("CCharFormatLayer"));
418 INFO_PRINTF1(_L("Setting all attributes"));
419 // Create test layers.
420 CCharFormatLayer* cfl1=NULL;
421 CCharFormatLayer* cRestored=NULL;
422 TCharFormat cf1; TCharFormatMask cm1;
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);
429 TRAP(r,cfl1=CCharFormatLayer::NewL()); test(r==KErrNone);
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);
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);
447 TRAP(r,cfl1->SetL(cf1,cm1));
449 testCopy(*cRestored,*cfl1);
450 test(LayerIsEqual(cRestored,cfl1));
453 TCharFormatMask rmask;
454 cRestored->Sense(rfmt, rmask);
455 test(rfmt.iFontSpec.iFontStyle.BitmapType() == EMonochromeGlyphBitmap);
463 TInt CT_CONVS::ChainIsEqual(const CParaFormatLayer* aCopy,const CParaFormatLayer* aOriginal)
465 // Tests that the restored chain is identical to the original chain.
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;
474 const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
475 const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
476 for (TInt loop=0;loop<descendantCount;loop++)
478 test(LayerIsEqual((CParaFormatLayer*)nextCopyLayer,(CParaFormatLayer*)nextOrigLayer));
480 nextCopyLayer=nextCopyLayer->SenseBase();
481 nextOrigLayer=nextOrigLayer->SenseBase();
487 TInt CT_CONVS::ChainIsEqual(const CCharFormatLayer* aCopy,const CCharFormatLayer* aOriginal)
489 // Tests that the restored chain is identical to the original chain.
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;
498 const CFormatLayer* nextCopyLayer=aCopy->SenseBase();
499 const CFormatLayer* nextOrigLayer=aOriginal->SenseBase();
500 for (TInt loop=0;loop<descendantCount;loop++)
502 test(LayerIsEqual((CCharFormatLayer*)nextCopyLayer,(CCharFormatLayer*)nextOrigLayer));
504 nextCopyLayer=nextCopyLayer->SenseBase();
505 nextOrigLayer=nextOrigLayer->SenseBase();
511 void CT_CONVS::DoParaChainL()
513 // Tests the streaming of a chain of format layers
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();
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;
537 // Set layer one stuff
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);
546 // Set layer two stuff
548 top1.iLineStyle=TParaBorder::ESolid;
550 top1.iAutoColor=ETrue;
551 paraFormat->SetParaBorderL(CParaFormat::EParaBorderTop,top1);
552 paraMask.SetAttrib(EAttTopBorder);
553 l2->SetL(paraFormat,paraMask);
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);
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);
571 testCopyChain(*restoredChainHead,*l1,0,(const CFormatLayer*)NULL);
572 TInt restoredChainCount=restoredChainHead->ChainCount();
573 test(ChainIsEqual(restoredChainHead,l1));
575 CParaFormatLayer* current=restoredChainHead;
576 CParaFormatLayer* next=(CParaFormatLayer*)restoredChainHead->SenseBase();
578 for (TInt loop=0;loop<restoredChainCount-1;loop++)
581 next=(CParaFormatLayer*)current->SenseBase();
589 delete restoredParaFormat;
593 void CT_CONVS::DoCharChainL()
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();
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;
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);
623 // Set layer two stuff
624 charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); charMask.SetAttrib(EAttFontPrintPos);
625 cl2->SetL(charFormat,charMask);
627 // Set the layer 3 stuff.
628 charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn; charMask.SetAttrib(EAttFontStrikethrough);
629 cl3->SetL(charFormat,charMask);
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);
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));
643 CCharFormatLayer* chCurrent=rChar;
644 CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
646 for (TInt loop=0;loop<restoredChainCount-1;loop++)
649 chNext=(CCharFormatLayer*)chCurrent->SenseBase();
659 void CT_CONVS::DoCharChainVariant1()
661 // Case 2: Where the chain does not terminate at a NULL link.
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();
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;
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);
688 // Set layer two stuff
689 charFormat.iFontSpec.iFontStyle.SetPrintPosition(EPrintPosSubscript); charMask.SetAttrib(EAttFontPrintPos);
690 cl2->SetL(charFormat,charMask);
692 // Set the layer 3 stuff.
693 charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn; charMask.SetAttrib(EAttFontStrikethrough);
694 cl3->SetL(charFormat,charMask);
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);
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));
708 CCharFormatLayer* chCurrent=rChar;
709 CCharFormatLayer* chNext=(CCharFormatLayer*)rChar->SenseBase();
711 for (TInt loop=0;loop<restoredChainCount-2;loop++)
714 chNext=(CCharFormatLayer*)chCurrent->SenseBase();
724 void CT_CONVS::testFmtLayerStoreChainL()
726 // Controls the testing of the chainig stuff.
731 DoCharChainVariant1();
732 // DoCharChainVariant2(); TO BE IMPLEMENTED
733 // doCharChainVariant3(); TO BE IMPLEMENTED
737 void CT_CONVS::testFmtLayerL()
739 // Tests the streaming of format layers.
742 testFmtLayerStoreL();
743 testFmtLayerStoreChainL();
747 void CT_CONVS::setupCleanup()
749 // Initialise the cleanup stack.
753 TheTrapCleanup=CTrapCleanup::New();
756 for (TInt i=KTestCleanupStack;i>0;i--)\
757 CleanupStack::PushL((TAny*)1);\
759 CleanupStack::Pop(KTestCleanupStack);\
764 void CT_CONVS::DeleteDataFile(const TDesC& aFullName)
767 TInt err = fsSession.Connect();
771 if(fsSession.Entry(aFullName, entry) == KErrNone)
773 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
774 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
777 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
779 err = fsSession.Delete(aFullName);
782 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
789 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
795 SetTestStepName(KTestStep_T_CONVS);
798 TVerdict CT_CONVS::doTestStepL()
800 SetTestStepResult(EFail);
802 INFO_PRINTF1(_L("T_CONVS - EditableText Persistence"));
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));
810 INFO_PRINTF1(_L("EText components using Segmented storage"));
811 TRAPD(error3, testPlainTextL(CEditableText::ESegmentedStorage));
812 TRAPD(error4, testGlobalTextL(CEditableText::ESegmentedStorage));
814 INFO_PRINTF1(_L("Format Layer components"));
815 TRAPD(error5, testFmtLayerL());
818 DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
819 delete TheTrapCleanup;
821 if(error1 == KErrNone && error2 == KErrNone && error3 == KErrNone && error4 == KErrNone && error5 == KErrNone)
823 SetTestStepResult(EPass);
826 return TestStepResult();