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.
26 #include "../incp/T_PMLPAR.H"
31 TBool __bb = (cond); \
35 ERR_PRINTF1(_L("ERROR: Test Failed")); \
40 #define UNUSED_VAR(a) a = a
42 LOCAL_D CTrapCleanup* TheTrapCleanup;
43 LOCAL_D CParaFormatLayer* TheGlobalParaFormatLayer;
44 LOCAL_D CCharFormatLayer* TheGlobalCharFormatLayer;
45 LOCAL_D CParser* TheParser;
47 LOCAL_D const TInt KTestCleanupStack=0x200;
48 LOCAL_D const TInt KCreateRichTextCount=1000;
50 LOCAL_D CRichText* TheText[KCreateRichTextCount];
52 void CT_TTIMES1::GenerateGlobalLayersL()
53 // Provides the base layers for globl text and below
56 TParaFormatMask paraMask;
57 TheGlobalParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
58 TCharFormat charFormat;
59 TCharFormatMask charMask;
60 TheGlobalCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask);
64 void CT_TTIMES1::KillGlobalLayers()
65 // Destroy the base layers for global text and below
68 delete TheGlobalParaFormatLayer;
69 delete TheGlobalCharFormatLayer;
70 TheGlobalParaFormatLayer=NULL;
71 TheGlobalCharFormatLayer=NULL;
74 void CT_TTIMES1::KillText()
76 for (TInt ii=0; ii<KCreateRichTextCount;ii++)
84 struct TNow : public TTime
86 TNow() { HomeTime(); }
89 void CT_TTIMES1::CreationTestsL()
92 GenerateGlobalLayersL();
96 for (ii=0; ii<KCreateRichTextCount;ii++)
98 TheText[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
102 test(ii==KCreateRichTextCount);
104 // Display the metric
106 context.Format(_L(" Create rich text %d times: %d\n"),KCreateRichTextCount,finish.MicroSecondsFrom(start).Int64());
107 INFO_PRINTF1(context);
115 CRichText* CT_TTIMES1::LoadIntoTextL(TFileName& aFileName)
119 TheParser=CParser::NewL());
120 CRichText* text=NULL;
122 text=TheParser->ParseL(aFileName));
123 TheGlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
124 TheGlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
131 void CT_TTIMES1::GetAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
133 CRichText* target=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
134 test(target->DocumentLength()==0);
135 test(!target->HasMarkupData());
139 for (ii=0;ii<aTestLoopCount;ii++)
141 target->AppendTakingSolePictureOwnershipL(*aSource);
144 TInt charSum=aTestLoopCount*(aSource->DocumentLength()+1)-1;
145 test(target->DocumentLength()==charSum);
147 // Calculate and display result
148 test(ii==aTestLoopCount);
150 context.Format(_L(" Append %d rich text's: %d\n"),aTestLoopCount,finish.MicroSecondsFrom(start).Int64());
151 INFO_PRINTF1(context);
156 void CT_TTIMES1::GetBenchmarkAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
158 CRichText** target=new CRichText*[aTestLoopCount];
159 CBufStore** store=new CBufStore*[aTestLoopCount];
161 for (ii=0;ii<aTestLoopCount;ii++)
163 target[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
164 store[ii]=CBufStore::NewL(128);
165 test(target[ii]->DocumentLength()==0);
166 test(!target[ii]->HasMarkupData());
169 for (ii=0;ii<aTestLoopCount;ii++)
171 TStreamId id=aSource->StoreL(*store[ii]);
172 target[ii]->RestoreL(*store[ii],id);
176 for (ii=0;ii<aTestLoopCount;ii++)
184 // Calculate and display result
185 test(ii==aTestLoopCount);
187 context2.Format(_L(" Benchmark : %d\n"),finish.MicroSecondsFrom(start).Int64());
188 INFO_PRINTF1(context2);
192 void CT_TTIMES1::AppendTest1L()
195 TInt testLoopCount=900;
196 CRichText* source=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
197 source->InsertL(source->DocumentLength(),_L("A bit of text that pretends to be an entry's title"));
198 test(!source->HasMarkupData());
199 GetAppendTestTimeL(source,testLoopCount);
201 // Now the benchmark against which we should measure.
202 GetBenchmarkAppendTestTimeL(source,testLoopCount);
209 void CT_TTIMES1::AppendTest2L()
212 KillGlobalLayers(); // they are replaced by the ones read in from the PML file.
213 TInt testLoopCount=266;
214 TFileName file=_L("z:\\test\\app-framework\\etext\\ttimes1.pml");
215 CRichText* source=LoadIntoTextL(file);
216 test(source->HasMarkupData());
217 GetAppendTestTimeL(source,testLoopCount);
219 // Now the benchmark against which we should measure.
220 GetBenchmarkAppendTestTimeL(source,testLoopCount);
227 void CT_TTIMES1::AppendTestsL()
230 GenerateGlobalLayersL();
232 INFO_PRINTF1(_L("Plain Text Component Only"));
237 INFO_PRINTF1(_L("Plain Text with limited Markup - no pictures"));
246 void CT_TTIMES1::DoTestsL()
249 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TTIMES1-0001 Creation Tests "));
251 INFO_PRINTF1(_L("Appending Tests"));
257 void CT_TTIMES1::setupCleanup()
259 // Initialise the cleanup stack.
263 TheTrapCleanup=CTrapCleanup::New();
266 for (TInt i=KTestCleanupStack;i>0;i--)\
267 CleanupStack::PushL((TAny*)1);\
269 CleanupStack::Pop(KTestCleanupStack);\
273 CT_TTIMES1::CT_TTIMES1()
275 SetTestStepName(KTestStep_T_TTIMES1);
278 TVerdict CT_TTIMES1::doTestStepL()
280 SetTestStepResult(EFail);
286 INFO_PRINTF1(_L("CRichText Document"));
287 TRAPD(error1, DoTestsL());
289 delete TheTrapCleanup;
293 if(error1 == KErrNone)
295 SetTestStepResult(EPass);
298 return TestStepResult();