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.
25 LOCAL_D CTestStep *pTestStep = NULL;
28 TBool __bb = (cond); \
29 pTestStep->TEST(__bb); \
32 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
38 // copy from tefexportconst.h
39 #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
40 #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
43 /* this fixes a MSVC link warning */
45 #pragma comment (linker, "/opt:noref")
48 #define UNUSED_VAR(a) a = a
51 const TInt KGlobalTextATest1=100000;
52 const TInt KGlobalTextATest2=100000;
53 const TInt KGlobalTextATest3=1000;
54 const TInt KRichTextTest1=10000;
55 const TInt KRichTextTest2=10000;
56 const TInt KRichTextTest3=1000;
57 const TInt KGlobalTextBTest1=10000;
58 const TInt KGlobalTextBTest2=10000;
59 const TInt KGlobalTextBTest3=1000;
60 const TInt KCharFormatLayerTest=100000;
62 const TInt KGlobalTextATest1=100000;
63 const TInt KGlobalTextATest2=100000;
64 const TInt KGlobalTextATest3=1000;
65 const TInt KRichTextTest1=5000;
66 const TInt KRichTextTest2=5000;
67 const TInt KRichTextTest3=100;
68 const TInt KGlobalTextBTest1=5000;
69 const TInt KGlobalTextBTest2=5000;
70 const TInt KGlobalTextBTest3=100;
71 const TInt KCharFormatLayerTest=100000;
75 LOCAL_D CTrapCleanup* TheTrapCleanup;
76 LOCAL_D CGlobalText* TheText;
77 LOCAL_D CParaFormatLayer* TheParaFormatLayer;
78 LOCAL_D CCharFormatLayer* TheCharFormatLayer;
79 LOCAL_D const TInt KTestCleanupStack=0x200;
81 LOCAL_C void GenerateGlobalLayersL()
82 // Provides the base layers for globl text and below
85 TParaFormatMask paraMask;
86 TheParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
87 TCharFormat charFormat;
88 TCharFormatMask charMask;
89 TheCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask);
92 LOCAL_C void GenerateGlobalTextL()
93 // Provide an instantiated global text object
96 GenerateGlobalLayersL();
97 TheText=CGlobalText::NewL(TheParaFormatLayer,TheCharFormatLayer);
100 LOCAL_C void GenerateBasicRichTextL()
101 // Provide a default instantiated rich text object
103 {TheText=CRichText::NewL(TheParaFormatLayer,TheCharFormatLayer);}
105 LOCAL_C void KillGlobalLayers()
106 // Destroy the base layers for global text and below
109 delete TheParaFormatLayer;
110 delete TheCharFormatLayer;
111 TheParaFormatLayer=NULL;
112 TheCharFormatLayer=NULL;
115 LOCAL_C void KillText()
122 LOCAL_C void LoadLongDocument()
127 file=(_L("z:\\test\\app-framework\\etext\\climb.txt"));
131 count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph));
133 test(count>0); // check for equality later
137 LOCAL_C void CallGetChars(TInt aStartPos,TInt aCharacterCount,TInt aLineLength)
141 TCharFormat charFormat;
142 TInt consumed=aStartPos;
143 while (consumed<=aStartPos+aCharacterCount)
145 TheText->GetChars(view,charFormat,consumed);
146 consumed+=Min(view.Length(),aLineLength);
150 LOCAL_C void GetTimesForGetChars(TInt aLoopCount,TInt aStartPos,TInt aCharacterCount,TInt aLineLength)
155 for (TInt loop=0;loop<aLoopCount;loop++)
157 CallGetChars(aStartPos,aCharacterCount,aLineLength);
162 LOCAL_C void DoLongDocumentTestL(TInt aTest1Count,TInt aTest2Count,TInt aTest3Count)
167 TCharFormat charFormat;
168 TCharFormatMask mask;
169 mask.SetAttrib(EAttFontStrokeWeight);
170 TheText->ApplyCharFormatL(charFormat,mask,100,2);
171 TInt documentLength=TheText->DocumentLength();
172 TInt paraCount=TheText->ParagraphCount();
173 TInt wordCount=TheText->WordCount();
175 stats.Format(_L("Document Stats:\nChars: %d\nWords: %d\nParas: %d\n"),documentLength,wordCount,paraCount);
177 RDebug::Print(_L("%S"),&stats);
180 testTitle.Format(_L("Pos: 0-100 %d times"),aTest1Count);
181 INFO_PRINTF1(testTitle);
182 GetTimesForGetChars(aTest1Count,0,100,50);
184 testTitle.Format(_L("Pos: 18200-18300 %d times"),aTest2Count);
185 INFO_PRINTF1(testTitle);
186 GetTimesForGetChars(aTest2Count,18200,100,50);
188 testTitle.Format(_L("Pos: all %d times"),aTest3Count);
189 INFO_PRINTF1(testTitle);
190 GetTimesForGetChars(aTest3Count,0,documentLength,50);
196 LOCAL_C void DoGetCharFormatLayerReadTimesL(TInt aLoopCount)
200 // Now take some times.
201 TCharFormat charFormat;
202 TCharFormatMask charMask;
203 for (TInt loop=0;loop<aLoopCount;loop++)
205 charMask.ClearAll(); // this is used for readings.
207 TheCharFormatLayer->Sense(charFormat,charMask);
210 // Display the metric
212 context.Format(_L("10 att X %d loops=%d atts\n"),aLoopCount,10*aLoopCount);
213 INFO_PRINTF1(context);
214 RDebug::Print(_L("%S"),&context);
218 LOCAL_C void DoEmptyCharFormatLayerReadL(TInt aLoopCount)
220 {DoGetCharFormatLayerReadTimesL(aLoopCount);}
223 LOCAL_C void DoCharFormatLayerReadL(TInt aLoopCount)
224 // tests times of reading attributes from a CCharFormatLayer
227 // Fill the character format layer
228 TCharFormat charFormat(_L("Times New Roman"),180);
229 TCharFormatMask charMask;
231 TheCharFormatLayer->SetL(charFormat,charMask);
234 DoGetCharFormatLayerReadTimesL(aLoopCount);
238 LOCAL_C void FormatLayerTestL()
239 // Time tests on format layer access.
242 INFO_PRINTF1(_L("CCharFormatLayer - Attribute reads"));
243 GenerateGlobalLayersL();
246 testTitle.Format(_L("Reading empty char format layer %d times"),KCharFormatLayerTest);
247 INFO_PRINTF1(testTitle);
248 DoEmptyCharFormatLayerReadL(KCharFormatLayerTest);
250 testTitle.Format(_L("Read 10 attributes from layer %d times"),KCharFormatLayerTest);
251 INFO_PRINTF1(testTitle);
252 TRAPD(ret, DoCharFormatLayerReadL(KCharFormatLayerTest));
260 LOCAL_C void LongDocumentTestL()
264 INFO_PRINTF1(_L("Global text - Empty layers"));
265 GenerateGlobalTextL();
266 DoLongDocumentTestL(KGlobalTextATest1,KGlobalTextATest2,KGlobalTextATest3);
269 INFO_PRINTF1(_L("Rich text - Empty layers"));
270 GenerateBasicRichTextL();
271 DoLongDocumentTestL(KRichTextTest1,KRichTextTest2,KRichTextTest3);
275 INFO_PRINTF1(_L("Global text - 2 character attributes stored"));
276 GenerateGlobalTextL();
277 TBuf<5> name=_L("SWiss");
278 TCharFormat charFormat(name,178);
279 TCharFormatMask charMask;
280 charMask.SetAttrib(EAttFontTypeface);
281 charMask.SetAttrib(EAttFontHeight);
283 TheCharFormatLayer->SetL(charFormat,charMask));
285 DoLongDocumentTestL(KGlobalTextBTest1,KGlobalTextBTest2,KGlobalTextBTest3);
288 INFO_PRINTF1(_L("Rich text - 2 charcter attributes stored"));
289 GenerateBasicRichTextL();
290 DoLongDocumentTestL(KRichTextTest1,KRichTextTest2,KRichTextTest3);
298 LOCAL_C void DoTestsL()
301 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TIMES-0001 Long document tests "));
304 INFO_PRINTF1(_L("Format layer tests"));
310 LOCAL_C void setupCleanup()
312 // Initialise the cleanup stack.
316 TheTrapCleanup=CTrapCleanup::New();
319 for (TInt i=KTestCleanupStack;i>0;i--)\
320 CleanupStack::PushL((TAny*)1);\
322 CleanupStack::Pop(KTestCleanupStack);\
328 SetTestStepName(KTestStep_T_TIMES);
332 TVerdict CT_TIMES::doTestStepL()
334 SetTestStepResult(EFail);
337 INFO_PRINTF1(_L("CRichText Document"));
340 TRAPD(ret,DoTestsL());
343 delete TheTrapCleanup;
347 SetTestStepResult(EPass);
350 return TestStepResult();