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: #include sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include "../incp/T_PMLPAR.H" sl@0: #include "T_INDTER.h" sl@0: sl@0: LOCAL_D CTestStep *pTestStep = NULL; sl@0: #define test(cond) \ sl@0: { \ sl@0: TBool __bb = (cond); \ sl@0: pTestStep->TEST(__bb); \ sl@0: if (!__bb) \ sl@0: { \ sl@0: pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \ sl@0: User::Leave(1); \ sl@0: } \ sl@0: } sl@0: #undef INFO_PRINTF1 sl@0: #undef INFO_PRINTF2 sl@0: // copy from tefexportconst.h sl@0: #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1)) sl@0: #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2)) sl@0: sl@0: #define UNUSED_VAR(a) a = a sl@0: sl@0: const TInt KTestCleanupStack=0x40; sl@0: sl@0: LOCAL_D CTrapCleanup* TheTrapCleanup=NULL; sl@0: LOCAL_D CRichText* TheText=NULL; sl@0: LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL; sl@0: LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL; sl@0: LOCAL_D CParser* TheParser; sl@0: sl@0: sl@0: LOCAL_C void SetRichTextL(TFileName& aFileName) sl@0: // sl@0: { sl@0: delete TheText; sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: TheParser=CParser::NewL(); sl@0: CleanupStack::PushL(TheParser); sl@0: TheText=TheParser->ParseL(aFileName); sl@0: CleanupStack::PopAndDestroy(); sl@0: TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer(); sl@0: TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer(); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void CreateRichTextL() sl@0: // sl@0: { sl@0: TParaFormatMask paraMask; sl@0: TheGlobalParaLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask); sl@0: CleanupStack::PushL(TheGlobalParaLayer); sl@0: TCharFormat charFormat; sl@0: TCharFormatMask charMask; sl@0: TheGlobalCharLayer=CCharFormatLayer::NewL(charFormat,charMask); sl@0: CleanupStack::PushL(TheGlobalCharLayer); sl@0: TheText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer); sl@0: CleanupStack::Pop(2); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void DestroyRichText() sl@0: // sl@0: { sl@0: delete TheText; sl@0: delete TheGlobalParaLayer; sl@0: delete TheGlobalCharLayer; sl@0: } sl@0: sl@0: sl@0: LOCAL_C void ResetTextL() sl@0: // Initialise the rich text. sl@0: // sl@0: { sl@0: TheText->Reset(); sl@0: TBuf<512> buf(_L("This is paragraph one")); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: buf.Append(_L("This is paragraph two")); sl@0: buf.Append(CEditableText::EParagraphDelimiter); sl@0: buf.Append(_L("This is paragraph 333")); sl@0: // Editable text already has the terminating paragraph delimter. sl@0: TheText->InsertL(0,buf); sl@0: } sl@0: sl@0: sl@0: LOCAL_C TParaBorder BorderValues(TParaBorder::TLineStyle aLineStyle,TInt aThickness) sl@0: // sl@0: { sl@0: TParaBorder border; sl@0: border.iLineStyle=aLineStyle; sl@0: border.iThickness=aThickness; sl@0: return border; sl@0: } sl@0: sl@0: sl@0: LOCAL_C void PerformTestParaBordersL(CParaFormat& aApplyFormat,TParaFormatMask& aApplyMask, sl@0: TTextFormatAttribute anAttribute,CParaFormat::TParaBorderSide aSide, sl@0: TParaBorder& aBorder, sl@0: CParaFormat& aSensedFormat,TParaFormatMask& aSensedMask) sl@0: // sl@0: { sl@0: aApplyMask.SetAttrib(anAttribute); sl@0: aApplyFormat.SetParaBorderL(aSide,aBorder); sl@0: TheText->ApplyParaFormatL(&aApplyFormat,aApplyMask,0,1); sl@0: TheText->GetParaFormatL(&aSensedFormat,aSensedMask,0,TheText->DocumentLength()); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void TestParaBordersL() sl@0: // Tests the indeterminate state of paragraph borders. sl@0: // sl@0: { sl@0: ResetTextL(); sl@0: CParaFormat* sensedFormat=CParaFormat::NewLC(); sl@0: TParaFormatMask undeterminedMask; sl@0: TheText->GetParaFormatL(sensedFormat,undeterminedMask,0,TheText->DocumentLength()); sl@0: test(undeterminedMask.IsNull()); sl@0: // sl@0: CParaFormat* applyFormat=CParaFormat::NewLC(); sl@0: TParaFormatMask applyMask; sl@0: // sl@0: TParaBorder border=BorderValues(TParaBorder::ESolid,1); sl@0: // sl@0: PerformTestParaBordersL(*applyFormat,applyMask,EAttTopBorder,CParaFormat::EParaBorderTop,border,*sensedFormat,undeterminedMask); sl@0: test(undeterminedMask.AttribIsSet(EAttTopBorder)); sl@0: test(!(undeterminedMask.AttribIsSet(EAttBottomBorder))); sl@0: test(!(undeterminedMask.AttribIsSet(EAttLeftBorder))); sl@0: test(!(undeterminedMask.AttribIsSet(EAttRightBorder))); sl@0: // sl@0: PerformTestParaBordersL(*applyFormat,applyMask,EAttBottomBorder,CParaFormat::EParaBorderBottom,border,*sensedFormat,undeterminedMask); sl@0: test(undeterminedMask.AttribIsSet(EAttTopBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttBottomBorder)); sl@0: test(!(undeterminedMask.AttribIsSet(EAttLeftBorder))); sl@0: test(!(undeterminedMask.AttribIsSet(EAttRightBorder))); sl@0: // sl@0: PerformTestParaBordersL(*applyFormat,applyMask,EAttLeftBorder,CParaFormat::EParaBorderLeft,border,*sensedFormat,undeterminedMask); sl@0: test(undeterminedMask.AttribIsSet(EAttTopBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttBottomBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttLeftBorder)); sl@0: test(!(undeterminedMask.AttribIsSet(EAttRightBorder))); sl@0: // sl@0: PerformTestParaBordersL(*applyFormat,applyMask,EAttRightBorder,CParaFormat::EParaBorderRight,border,*sensedFormat,undeterminedMask); sl@0: test(undeterminedMask.AttribIsSet(EAttTopBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttBottomBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttLeftBorder)); sl@0: test(undeterminedMask.AttribIsSet(EAttRightBorder)); sl@0: // sl@0: CleanupStack::PopAndDestroy(2); // applyFormat & sensedFormat sl@0: } sl@0: sl@0: sl@0: LOCAL_C void TestParaFormatL() sl@0: // Test the indeterminate state of paragraph format attributes. sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_INDTER-0001 Paragraph format attributes ")); sl@0: TestParaBordersL(); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void TestCharFormatL() sl@0: // Test the indeterminate state of character format attributes. sl@0: // sl@0: { sl@0: INFO_PRINTF1(_L("Character format attributes")); sl@0: // sl@0: ResetTextL(); sl@0: TCharFormat applyFormat; sl@0: TCharFormatMask applyMask; sl@0: // sl@0: TCharFormat sensedFormat; sl@0: TCharFormatMask sensedMask; sl@0: // Make para 2 bold sl@0: applyFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); sl@0: applyMask.SetAttrib(EAttFontStrokeWeight); sl@0: TheText->ApplyCharFormatL(applyFormat,applyMask,22,22); sl@0: // Make para 3 italic sl@0: applyFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic); sl@0: applyMask.ClearAll(); applyMask.SetAttrib(EAttFontPosture); sl@0: TheText->ApplyCharFormatL(applyFormat,applyMask,44,21); sl@0: // sl@0: TheText->GetCharFormat(sensedFormat,sensedMask,0,TheText->DocumentLength()); sl@0: test(sensedMask.AttribIsSet(EAttFontStrokeWeight)); sl@0: test(sensedMask.AttribIsSet(EAttFontPosture)); sl@0: // sl@0: TheText->GetCharFormat(sensedFormat,sensedMask,50,1); sl@0: test(sensedMask.IsNull()); sl@0: // sl@0: TheText->GetCharFormat(sensedFormat,sensedMask,44,21); sl@0: test(sensedMask.IsNull()); sl@0: // sl@0: TFileName file=_L("z:\\test\\app-framework\\etext\\t_indter.pml"); sl@0: SetRichTextL(file); sl@0: sl@0: TheText->GetCharFormat(sensedFormat,sensedMask,4,1); sl@0: // sl@0: TheText->GetCharFormat(sensedFormat,sensedMask,0,TheText->DocumentLength()); sl@0: test(sensedMask.AttribIsSet(EAttFontStrokeWeight)); sl@0: test(sensedMask.AttribIsSet(EAttFontPosture)); sl@0: test(sensedMask.AttribIsSet(EAttFontUnderline)); sl@0: test(sensedMask.AttribIsSet(EAttFontStrikethrough)); sl@0: test(sensedMask.AttribIsSet(EAttFontPrintPos)); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void DoTestL() sl@0: // Main routine sl@0: // sl@0: { sl@0: CreateRichTextL(); sl@0: TestParaFormatL(); sl@0: TestCharFormatL(); sl@0: sl@0: DestroyRichText(); sl@0: } sl@0: sl@0: sl@0: LOCAL_C void setupCleanup() 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_INDTER::CT_INDTER() sl@0: { sl@0: SetTestStepName(KTestStep_T_INDTER); sl@0: pTestStep = this; sl@0: } sl@0: sl@0: TVerdict CT_INDTER::doTestStepL() sl@0: { sl@0: SetTestStepResult(EFail); sl@0: sl@0: INFO_PRINTF1(_L("Rich Text Format attribute Indeterminate State tests")); sl@0: __UHEAP_MARK; sl@0: setupCleanup(); sl@0: TRAPD(r, DoTestL()); sl@0: test(r == KErrNone); sl@0: sl@0: delete TheTrapCleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: if (r == KErrNone) sl@0: { sl@0: SetTestStepResult(EPass); sl@0: } sl@0: sl@0: return TestStepResult(); sl@0: }