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 LOCAL_D CTestStep *pTestStep = NULL;
34 TBool __bb = (cond); \
35 pTestStep->TEST(__bb); \
38 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
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))
49 #define UNUSED_VAR(a) a = a
51 const TInt KTestCleanupStack=0x40;
53 LOCAL_D CTrapCleanup* TheTrapCleanup;
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;
63 _LIT(KOutputFile, "c:\\etext\\t_style.tst");
65 void testStoreRestoreL(T& aCopy,const T& aOriginal)
66 // Test document persistance.
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);
81 TRAPD(ret,id=aOriginal.StoreL(*theStore));
84 // restore into the copy
85 TRAP(ret,aCopy.RestoreL(*theStore,id));
89 CleanupStack::PopAndDestroy(); // theStore
94 LOCAL_C TInt IsEqual(const CRichText* aCopy,const CRichText* aOriginal)
96 // Returns true if aCopy contents matches aOriginal contents.
97 // Takes account of multiple segments of a segmented text component.
100 TInt lengthOfOriginal=aOriginal->DocumentLength();
101 TInt lengthOfCopy=aCopy->DocumentLength();
102 test(lengthOfOriginal==lengthOfCopy);
107 while(lengthRead<=lengthOfOriginal)
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();
115 test(lengthRead==lengthOfOriginal+1);
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++)
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);
135 LOCAL_C void ConstructEnvWithNullParaFormat()
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);
148 // Create some paragraph styles
149 TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
150 TheStyleOne->iName=_L("Style1");
152 // Style two is based on style one
153 TheStyleTwo=CParagraphStyle::NewL( *TheStyleOne, *(TheStyleOne->CharFormatLayer()));
154 TheStyleTwo->iName=_L("Style2");
156 CParaFormat* styleFormat=CParaFormat::NewLC();
157 TParaFormatMask styleMask;
158 styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
159 styleMask.SetAttrib(EAttAlignment);
160 TheStyleOne->SetL(styleFormat,styleMask);
162 styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
163 // Set paragraph format to NULL
164 TheStyleTwo->SetL( NULL,styleMask);
165 CleanupStack::PopAndDestroy(); // styleFormat
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;
176 RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
177 error=TheStyleList->AppendL(&info2);
178 test(error==KErrNone);
180 error=TheStyleList->AppendL(&info2);
181 test(error==KErrAlreadyExists);
182 test(TheStyleList->Count()==2);
184 style=TheStyleList->At(1).iStyle;
185 test(style->iName==_L("Style2"));
187 // Create the rich text with styles.
188 TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
191 LOCAL_C void ConstructEnvironment()
192 // Create some styles.
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);
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");
212 CParaFormat* styleFormat=CParaFormat::NewLC();
213 TParaFormatMask styleMask;
214 styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
215 styleMask.SetAttrib(EAttAlignment);
216 TheStyleOne->SetL(styleFormat,styleMask);
218 styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
219 TheStyleTwo->SetL(styleFormat,styleMask);
220 CleanupStack::PopAndDestroy(); // styleFormat
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;
231 RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
232 error=TheStyleList->AppendL(&info2);
233 test(error==KErrNone);
235 error=TheStyleList->AppendL(&info2);
236 test(error==KErrAlreadyExists);
237 test(TheStyleList->Count()==2);
239 style=TheStyleList->At(1).iStyle;
240 test(style->iName==_L("Style2"));
242 // Create the rich text with styles.
243 TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
247 LOCAL_C void KillEnvironment()
252 // the style table is owned by the rich text, and is destroyed there.
253 delete TheNormalParaLayer;
254 delete TheNormalCharLayer;
258 LOCAL_C void TestConstruction()
259 // Test the construction/destruction of rich text with styles
264 ConstructEnvironment();
271 LOCAL_C void TestParaWithNullParaFormat()
273 CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
275 INFO_PRINTF1(_L("Apply style to paragraph with NULL para format"));
276 ConstructEnvWithNullParaFormat();
277 TheText->InsertL(0,_L("HEADINGBODYTEXT"));
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);
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();
294 LOCAL_C void TestSharedPara()
298 CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
300 INFO_PRINTF1(_L("Apply style to shared paragraph"));
301 ConstructEnvironment();
302 TheText->InsertL(0,_L("HEADINGBODYTEXT"));
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);
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();
320 LOCAL_C void TestNonSharedPara()
323 CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
325 INFO_PRINTF1(_L("Apply style to non-shared paragraph"));
326 ConstructEnvironment();
328 TheText->InsertL(0,_L("This is paragraph one.This is paragraph number two."));
329 TChar delimiter=CEditableText::EParagraphDelimiter;
330 TheText->InsertL(22,delimiter);
332 TCharFormat charFormat;
333 TCharFormatMask charFormatMask;
334 charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;
335 charFormatMask.SetAttrib(EAttFontStrikethrough);
336 TheText->ApplyCharFormatL(charFormat,charFormatMask,0,4);
338 TheText->ApplyParagraphStyleL(*(TheStyleList->At(1).iStyle),0,TheText->DocumentLength(),applyMode);
340 CParaFormat* paraFormat=CParaFormat::NewLC();
341 TheText->GetParagraphFormatL(paraFormat,0);
342 test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
344 TheText->GetParagraphFormatL(paraFormat,10);
345 test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
347 TheText->GetParagraphFormatL(paraFormat,30);
348 test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
350 CleanupStack::PopAndDestroy(); // para format
352 /*TEtextComponentInfo info=*/TheText->ComponentInfo();
353 CRichText* theCopy=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer);
354 testStoreRestoreL(*theCopy,*TheText);
355 test(IsEqual(theCopy,TheText));
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);
373 LOCAL_C void TestStyles()
381 LOCAL_C void TestStyleWithNullParaFormat()
383 TestParaWithNullParaFormat();
386 LOCAL_C void TestStyleList()
390 // Construction under OOM
391 INFO_PRINTF1(_L("Construction under OOM"));
392 CStyleList* list=NULL;
397 __UHEAP_SETFAIL(RHeap::EDeterministic,nn);
400 list=CStyleList::NewL());
417 answer.Format(_L(" #allocs for full c'tion: %d\n"),nn-1);
418 INFO_PRINTF1(answer);
422 // Populated style list, Append under OOM;
423 INFO_PRINTF1(_L("AppendL() under OOM"));
424 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
425 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
427 list=CStyleList::NewL();
428 CParagraphStyle* style=NULL;
429 for (TInt mm=0;mm<KMaxStyleListGranularity;mm++)
431 style=CParagraphStyle::NewL(*paraLayer,*charLayer);
432 RParagraphStyleInfo info(style,NULL);
433 TInt r=list->AppendL(&info);
436 test(list->Count()==KMaxStyleListGranularity);
438 for (TInt oo=0; ;oo++)
440 style=CParagraphStyle::NewL(*paraLayer,*charLayer);
441 RParagraphStyleInfo info(style);
443 __UHEAP_SETFAIL(RHeap::EDeterministic,oo);
446 r=list->AppendL(&info));
449 test(r!=KErrAlreadyExists);
450 test(list->Count()==KMaxStyleListGranularity);
455 test(list->Count()==KMaxStyleListGranularity+1);
468 // Inserting a duplicate
469 INFO_PRINTF1(_L("AppendL() a duplicate"));
470 list=CStyleList::NewL();
472 for (TInt pp=0;pp<KMaxStyleListGranularity;pp++)
474 style=CParagraphStyle::NewL(*paraLayer,*charLayer);
475 RParagraphStyleInfo info(style,NULL);
476 list->AppendL(&info);
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.
488 // Looking for a style by name that does not exist.
489 INFO_PRINTF1(_L("IndexByName() where style not present"));
490 list=CStyleList::NewL();
493 for (TInt qq=0;qq<KMaxStyleListGranularity;qq++)
495 style=CParagraphStyle::NewL(*paraLayer,*charLayer);
496 style->iName.Append(name);
498 RParagraphStyleInfo info(style,NULL);
499 list->AppendL(&info);
501 test(list->Count()==KMaxStyleListGranularity);
502 TParagraphStyleName search=_L("not present");
503 /*TInt index=*/list->IndexByName(search);
515 LOCAL_C void TestHarness()
516 // Test rich text style usage.
519 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_STYLE-0001 RichText Styles "));
523 TestStyleWithNullParaFormat();
524 INFO_PRINTF1(_L("CStyleList"));
530 LOCAL_C void setupCleanup()
532 // Initialise the cleanup stack.
536 TheTrapCleanup=CTrapCleanup::New();
539 for (TInt i=KTestCleanupStack;i>0;i--)\
540 CleanupStack::PushL((TAny*)1);\
542 CleanupStack::Pop(KTestCleanupStack);\
547 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
550 TInt err = fsSession.Connect();
554 if(fsSession.Entry(aFullName, entry) == KErrNone)
556 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
557 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
560 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
562 err = fsSession.Delete(aFullName);
565 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
572 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
578 SetTestStepName(KTestStep_T_STYLE);
582 TVerdict CT_STYLE::doTestStepL()
584 SetTestStepResult(EFail);
586 INFO_PRINTF1(_L("Testing Paragraph Styles"));
589 TRAPD(r,TestHarness());
592 delete TheTrapCleanup;
596 ::DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
600 SetTestStepResult(EPass);
603 return TestStepResult();