os/textandloc/textrendering/texthandling/ttext/TTIMES1.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/TTIMES1.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,299 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include <e32svr.h>
    1.23 +
    1.24 +#include <s32mem.h>
    1.25 +
    1.26 +#include <txtrich.h>
    1.27 +#include <txtglobl.h>
    1.28 +
    1.29 +#include "../incp/T_PMLPAR.H"
    1.30 +#include "TTIMES1.h"
    1.31 +
    1.32 +#define test(cond)											\
    1.33 +	{														\
    1.34 +	TBool __bb = (cond);									\
    1.35 +	TEST(__bb);												\
    1.36 +	if (!__bb)												\
    1.37 +		{													\
    1.38 +		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
    1.39 +		User::Leave(1);										\
    1.40 +		}													\
    1.41 +	}
    1.42 +
    1.43 +#define UNUSED_VAR(a) a = a
    1.44 +
    1.45 +LOCAL_D CTrapCleanup* TheTrapCleanup;
    1.46 +LOCAL_D CParaFormatLayer* TheGlobalParaFormatLayer;
    1.47 +LOCAL_D CCharFormatLayer* TheGlobalCharFormatLayer;
    1.48 +LOCAL_D CParser* TheParser;
    1.49 +
    1.50 +LOCAL_D const TInt KTestCleanupStack=0x200;
    1.51 +LOCAL_D const TInt KCreateRichTextCount=1000;
    1.52 +
    1.53 +LOCAL_D CRichText* TheText[KCreateRichTextCount];
    1.54 +
    1.55 +void CT_TTIMES1::GenerateGlobalLayersL()
    1.56 +// Provides the base layers for globl text and below
    1.57 +//
    1.58 +	{
    1.59 +	TParaFormatMask paraMask;
    1.60 +	TheGlobalParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
    1.61 +	TCharFormat charFormat;
    1.62 +	TCharFormatMask charMask;
    1.63 +	TheGlobalCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask);
    1.64 +	}
    1.65 +
    1.66 +
    1.67 +void CT_TTIMES1::KillGlobalLayers()
    1.68 +// Destroy the base layers for global text and below
    1.69 +//
    1.70 +	{
    1.71 +	delete TheGlobalParaFormatLayer;
    1.72 +	delete TheGlobalCharFormatLayer;
    1.73 +	TheGlobalParaFormatLayer=NULL;
    1.74 +	TheGlobalCharFormatLayer=NULL;
    1.75 +	}
    1.76 +
    1.77 +void CT_TTIMES1::KillText()
    1.78 +	{
    1.79 +	for (TInt ii=0; ii<KCreateRichTextCount;ii++)
    1.80 +		{
    1.81 +		delete TheText[ii];
    1.82 +		TheText[ii]=NULL;
    1.83 +		}
    1.84 +	}
    1.85 +
    1.86 +
    1.87 +struct TNow : public TTime 
    1.88 +	{
    1.89 +	TNow() { HomeTime(); }
    1.90 +	};
    1.91 +
    1.92 +void CT_TTIMES1::CreationTestsL()
    1.93 +//
    1.94 +	{
    1.95 +	GenerateGlobalLayersL();
    1.96 +
    1.97 +	TNow start;
    1.98 +	TInt ii = 0;
    1.99 +	for (ii=0; ii<KCreateRichTextCount;ii++)
   1.100 +		{
   1.101 +		TheText[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);			
   1.102 +		}
   1.103 +	TNow finish;
   1.104 +	KillText();
   1.105 +	test(ii==KCreateRichTextCount);
   1.106 +	//
   1.107 +	// Display the metric
   1.108 +	TBuf<60> context;
   1.109 +	context.Format(_L("        Create rich text %d times: %d\n"),KCreateRichTextCount,finish.MicroSecondsFrom(start).Int64());
   1.110 +	INFO_PRINTF1(context);
   1.111 +	//
   1.112 +	// Tidy up
   1.113 +	KillText();
   1.114 +	KillGlobalLayers();
   1.115 +	}
   1.116 +
   1.117 +
   1.118 +CRichText* CT_TTIMES1::LoadIntoTextL(TFileName& aFileName)
   1.119 +//
   1.120 +	{
   1.121 +	TRAPD(ret,
   1.122 +	TheParser=CParser::NewL());
   1.123 +	CRichText* text=NULL;
   1.124 +	TRAP(ret,
   1.125 +	text=TheParser->ParseL(aFileName));
   1.126 +	TheGlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
   1.127 +	TheGlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
   1.128 +	delete TheParser;
   1.129 +	TheParser=NULL;
   1.130 +	return text;
   1.131 +	}
   1.132 +
   1.133 +
   1.134 +void CT_TTIMES1::GetAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
   1.135 +	{
   1.136 +	CRichText* target=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   1.137 +	test(target->DocumentLength()==0);
   1.138 +	test(!target->HasMarkupData());
   1.139 +
   1.140 +	TNow start;
   1.141 +	TInt ii = 0;
   1.142 +	for (ii=0;ii<aTestLoopCount;ii++)
   1.143 +		{
   1.144 +		target->AppendTakingSolePictureOwnershipL(*aSource);
   1.145 +		}
   1.146 +	TNow finish;
   1.147 +	TInt charSum=aTestLoopCount*(aSource->DocumentLength()+1)-1;
   1.148 +	test(target->DocumentLength()==charSum);
   1.149 +	//
   1.150 +	// Calculate and display result
   1.151 +	test(ii==aTestLoopCount);
   1.152 +	TBuf<60> context;
   1.153 +	context.Format(_L("        Append %d rich text's: %d\n"),aTestLoopCount,finish.MicroSecondsFrom(start).Int64());
   1.154 +	INFO_PRINTF1(context);
   1.155 +	delete target;
   1.156 +	}
   1.157 +
   1.158 +
   1.159 +void CT_TTIMES1::GetBenchmarkAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount)
   1.160 +	{
   1.161 +	CRichText** target=new CRichText*[aTestLoopCount];
   1.162 +	CBufStore** store=new CBufStore*[aTestLoopCount];	
   1.163 +	TInt ii = 0;
   1.164 +	for (ii=0;ii<aTestLoopCount;ii++)
   1.165 +		{
   1.166 +		target[ii]=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   1.167 +		store[ii]=CBufStore::NewL(128);	
   1.168 +		test(target[ii]->DocumentLength()==0);
   1.169 +		test(!target[ii]->HasMarkupData());
   1.170 +		}
   1.171 +	TNow start;
   1.172 +	for (ii=0;ii<aTestLoopCount;ii++)
   1.173 +		{
   1.174 +		TStreamId id=aSource->StoreL(*store[ii]);
   1.175 +		target[ii]->RestoreL(*store[ii],id);
   1.176 +		}
   1.177 +	TNow finish;
   1.178 +
   1.179 +	for (ii=0;ii<aTestLoopCount;ii++)
   1.180 +		{
   1.181 +		delete target[ii];
   1.182 +		delete store[ii];
   1.183 +		}
   1.184 +	delete []target;
   1.185 +	delete []store;
   1.186 +	//
   1.187 +	// Calculate and display result
   1.188 +	test(ii==aTestLoopCount);
   1.189 +	TBuf<70> context2;
   1.190 +	context2.Format(_L("        Benchmark              : %d\n"),finish.MicroSecondsFrom(start).Int64());
   1.191 +	INFO_PRINTF1(context2);
   1.192 +	}
   1.193 +
   1.194 +
   1.195 +void CT_TTIMES1::AppendTest1L()
   1.196 +//
   1.197 +	{
   1.198 +	TInt testLoopCount=900;
   1.199 +	CRichText* source=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer);
   1.200 +	source->InsertL(source->DocumentLength(),_L("A bit of text that pretends to be an entry's title"));
   1.201 +	test(!source->HasMarkupData());
   1.202 +	GetAppendTestTimeL(source,testLoopCount);
   1.203 +	//
   1.204 +	// Now the benchmark against which we should measure.
   1.205 +	GetBenchmarkAppendTestTimeL(source,testLoopCount);
   1.206 +	//
   1.207 +	// tidy up
   1.208 +	delete source;
   1.209 +	}
   1.210 +
   1.211 +
   1.212 +void CT_TTIMES1::AppendTest2L()
   1.213 +//
   1.214 +	{
   1.215 +	KillGlobalLayers();  // they are replaced by the ones read in from the PML file.
   1.216 +	TInt testLoopCount=266;
   1.217 +	TFileName file=_L("z:\\test\\app-framework\\etext\\ttimes1.pml");
   1.218 +	CRichText* source=LoadIntoTextL(file);
   1.219 +	test(source->HasMarkupData());
   1.220 +	GetAppendTestTimeL(source,testLoopCount);
   1.221 +	//
   1.222 +	// Now the benchmark against which we should measure.
   1.223 +	GetBenchmarkAppendTestTimeL(source,testLoopCount);
   1.224 +	//
   1.225 +	// tidy up
   1.226 +	delete source;
   1.227 +	}
   1.228 +
   1.229 +
   1.230 +void CT_TTIMES1::AppendTestsL()
   1.231 +//
   1.232 +	{
   1.233 +	GenerateGlobalLayersL();
   1.234 +	//
   1.235 +	INFO_PRINTF1(_L("Plain Text Component Only"));
   1.236 +	TRAPD(ret,
   1.237 +	AppendTest1L());
   1.238 +	test(ret==KErrNone);
   1.239 +	//
   1.240 +	INFO_PRINTF1(_L("Plain Text with limited Markup - no pictures"));
   1.241 +	TRAP(ret,
   1.242 +	AppendTest2L());
   1.243 +	test(ret==KErrNone);
   1.244 +	//
   1.245 +	KillGlobalLayers();
   1.246 +	}
   1.247 +	
   1.248 +	
   1.249 +void CT_TTIMES1::DoTestsL()
   1.250 +//
   1.251 +	{
   1.252 +	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TTIMES1-0001 Creation Tests "));
   1.253 +	CreationTestsL();
   1.254 +	INFO_PRINTF1(_L("Appending Tests"));
   1.255 +	AppendTestsL();
   1.256 +	//
   1.257 +	}
   1.258 +
   1.259 +
   1.260 +void CT_TTIMES1::setupCleanup()
   1.261 +//
   1.262 +// Initialise the cleanup stack.
   1.263 +//
   1.264 +    {
   1.265 +
   1.266 +	TheTrapCleanup=CTrapCleanup::New();
   1.267 +	TRAPD(r,\
   1.268 +		{\
   1.269 +		for (TInt i=KTestCleanupStack;i>0;i--)\
   1.270 +			CleanupStack::PushL((TAny*)1);\
   1.271 +		test(r==KErrNone);\
   1.272 +		CleanupStack::Pop(KTestCleanupStack);\
   1.273 +		});
   1.274 +	}
   1.275 +
   1.276 +CT_TTIMES1::CT_TTIMES1()
   1.277 +    {
   1.278 +    SetTestStepName(KTestStep_T_TTIMES1);
   1.279 +    }
   1.280 +
   1.281 +TVerdict CT_TTIMES1::doTestStepL()
   1.282 +    {
   1.283 +    SetTestStepResult(EFail);
   1.284 +
   1.285 +    __UHEAP_MARK;
   1.286 +
   1.287 +    setupCleanup();
   1.288 +    
   1.289 +    INFO_PRINTF1(_L("CRichText Document"));
   1.290 +    TRAPD(error1, DoTestsL());
   1.291 +
   1.292 +    delete TheTrapCleanup;
   1.293 +
   1.294 +    __UHEAP_MARKEND;
   1.295 +
   1.296 +    if(error1 == KErrNone)
   1.297 +        {
   1.298 +        SetTestStepResult(EPass);
   1.299 +        }
   1.300 +
   1.301 +    return TestStepResult();
   1.302 +    }