sl@0: /* sl@0: * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #include sl@0: sl@0: #include sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #include "../incp/T_PMLPAR.H" sl@0: #include "TTIMES1.h" sl@0: sl@0: #define test(cond) \ sl@0: { \ sl@0: TBool __bb = (cond); \ sl@0: TEST(__bb); \ sl@0: if (!__bb) \ sl@0: { \ sl@0: ERR_PRINTF1(_L("ERROR: Test Failed")); \ sl@0: User::Leave(1); \ sl@0: } \ sl@0: } sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup; sl@0: LOCAL_D CParaFormatLayer* TheGlobalParaFormatLayer; sl@0: LOCAL_D CCharFormatLayer* TheGlobalCharFormatLayer; sl@0: LOCAL_D CParser* TheParser; sl@0: sl@0: LOCAL_D const TInt KTestCleanupStack=0x200; sl@0: LOCAL_D const TInt KCreateRichTextCount=1000; sl@0: sl@0: LOCAL_D CRichText* TheText[KCreateRichTextCount]; sl@0: sl@0: void CT_TTIMES1::GenerateGlobalLayersL() sl@0: // Provides the base layers for globl text and below sl@0: // sl@0: { sl@0: TParaFormatMask paraMask; sl@0: TheGlobalParaFormatLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask); sl@0: TCharFormat charFormat; sl@0: TCharFormatMask charMask; sl@0: TheGlobalCharFormatLayer=CCharFormatLayer::NewL(charFormat,charMask); sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::KillGlobalLayers() sl@0: // Destroy the base layers for global text and below sl@0: // sl@0: { sl@0: delete TheGlobalParaFormatLayer; sl@0: delete TheGlobalCharFormatLayer; sl@0: TheGlobalParaFormatLayer=NULL; sl@0: TheGlobalCharFormatLayer=NULL; sl@0: } sl@0: sl@0: void CT_TTIMES1::KillText() sl@0: { sl@0: for (TInt ii=0; ii context; sl@0: context.Format(_L(" Create rich text %d times: %d\n"),KCreateRichTextCount,finish.MicroSecondsFrom(start).Int64()); sl@0: INFO_PRINTF1(context); sl@0: // sl@0: // Tidy up sl@0: KillText(); sl@0: KillGlobalLayers(); sl@0: } sl@0: sl@0: sl@0: CRichText* CT_TTIMES1::LoadIntoTextL(TFileName& aFileName) sl@0: // sl@0: { sl@0: TRAPD(ret, sl@0: TheParser=CParser::NewL()); sl@0: CRichText* text=NULL; sl@0: TRAP(ret, sl@0: text=TheParser->ParseL(aFileName)); sl@0: TheGlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer(); sl@0: TheGlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer(); sl@0: delete TheParser; sl@0: TheParser=NULL; sl@0: return text; sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::GetAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount) sl@0: { sl@0: CRichText* target=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer); sl@0: test(target->DocumentLength()==0); sl@0: test(!target->HasMarkupData()); sl@0: sl@0: TNow start; sl@0: TInt ii = 0; sl@0: for (ii=0;iiAppendTakingSolePictureOwnershipL(*aSource); sl@0: } sl@0: TNow finish; sl@0: TInt charSum=aTestLoopCount*(aSource->DocumentLength()+1)-1; sl@0: test(target->DocumentLength()==charSum); sl@0: // sl@0: // Calculate and display result sl@0: test(ii==aTestLoopCount); sl@0: TBuf<60> context; sl@0: context.Format(_L(" Append %d rich text's: %d\n"),aTestLoopCount,finish.MicroSecondsFrom(start).Int64()); sl@0: INFO_PRINTF1(context); sl@0: delete target; sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::GetBenchmarkAppendTestTimeL(const CRichText* aSource,TInt aTestLoopCount) sl@0: { sl@0: CRichText** target=new CRichText*[aTestLoopCount]; sl@0: CBufStore** store=new CBufStore*[aTestLoopCount]; sl@0: TInt ii = 0; sl@0: for (ii=0;iiDocumentLength()==0); sl@0: test(!target[ii]->HasMarkupData()); sl@0: } sl@0: TNow start; sl@0: for (ii=0;iiStoreL(*store[ii]); sl@0: target[ii]->RestoreL(*store[ii],id); sl@0: } sl@0: TNow finish; sl@0: sl@0: for (ii=0;ii context2; sl@0: context2.Format(_L(" Benchmark : %d\n"),finish.MicroSecondsFrom(start).Int64()); sl@0: INFO_PRINTF1(context2); sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::AppendTest1L() sl@0: // sl@0: { sl@0: TInt testLoopCount=900; sl@0: CRichText* source=CRichText::NewL(TheGlobalParaFormatLayer,TheGlobalCharFormatLayer); sl@0: source->InsertL(source->DocumentLength(),_L("A bit of text that pretends to be an entry's title")); sl@0: test(!source->HasMarkupData()); sl@0: GetAppendTestTimeL(source,testLoopCount); sl@0: // sl@0: // Now the benchmark against which we should measure. sl@0: GetBenchmarkAppendTestTimeL(source,testLoopCount); sl@0: // sl@0: // tidy up sl@0: delete source; sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::AppendTest2L() sl@0: // sl@0: { sl@0: KillGlobalLayers(); // they are replaced by the ones read in from the PML file. sl@0: TInt testLoopCount=266; sl@0: TFileName file=_L("z:\\test\\app-framework\\etext\\ttimes1.pml"); sl@0: CRichText* source=LoadIntoTextL(file); sl@0: test(source->HasMarkupData()); sl@0: GetAppendTestTimeL(source,testLoopCount); sl@0: // sl@0: // Now the benchmark against which we should measure. sl@0: GetBenchmarkAppendTestTimeL(source,testLoopCount); sl@0: // sl@0: // tidy up sl@0: delete source; sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::AppendTestsL() sl@0: // sl@0: { sl@0: GenerateGlobalLayersL(); sl@0: // sl@0: INFO_PRINTF1(_L("Plain Text Component Only")); sl@0: TRAPD(ret, sl@0: AppendTest1L()); sl@0: test(ret==KErrNone); sl@0: // sl@0: INFO_PRINTF1(_L("Plain Text with limited Markup - no pictures")); sl@0: TRAP(ret, sl@0: AppendTest2L()); sl@0: test(ret==KErrNone); sl@0: // sl@0: KillGlobalLayers(); sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::DoTestsL() sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TTIMES1-0001 Creation Tests ")); sl@0: CreationTestsL(); sl@0: INFO_PRINTF1(_L("Appending Tests")); sl@0: AppendTestsL(); sl@0: // sl@0: } sl@0: sl@0: sl@0: void CT_TTIMES1::setupCleanup() sl@0: // sl@0: // Initialise the cleanup stack. sl@0: // sl@0: { sl@0: sl@0: TheTrapCleanup=CTrapCleanup::New(); sl@0: TRAPD(r,\ sl@0: {\ sl@0: for (TInt i=KTestCleanupStack;i>0;i--)\ sl@0: CleanupStack::PushL((TAny*)1);\ sl@0: test(r==KErrNone);\ sl@0: CleanupStack::Pop(KTestCleanupStack);\ sl@0: }); sl@0: } sl@0: sl@0: CT_TTIMES1::CT_TTIMES1() sl@0: { sl@0: SetTestStepName(KTestStep_T_TTIMES1); sl@0: } sl@0: sl@0: TVerdict CT_TTIMES1::doTestStepL() sl@0: { sl@0: SetTestStepResult(EFail); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: setupCleanup(); sl@0: sl@0: INFO_PRINTF1(_L("CRichText Document")); sl@0: TRAPD(error1, DoTestsL()); sl@0: sl@0: delete TheTrapCleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: if(error1 == KErrNone) sl@0: { sl@0: SetTestStepResult(EPass); sl@0: } sl@0: sl@0: return TestStepResult(); sl@0: }