sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <txtfrmat.h>
|
sl@0
|
23 |
#include <txtfmlyr.h>
|
sl@0
|
24 |
#include <txtrich.h>
|
sl@0
|
25 |
#include <gdi.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include "../incp/T_PMLPAR.H"
|
sl@0
|
28 |
#include "T_INDTER.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
LOCAL_D CTestStep *pTestStep = NULL;
|
sl@0
|
31 |
#define test(cond) \
|
sl@0
|
32 |
{ \
|
sl@0
|
33 |
TBool __bb = (cond); \
|
sl@0
|
34 |
pTestStep->TEST(__bb); \
|
sl@0
|
35 |
if (!__bb) \
|
sl@0
|
36 |
{ \
|
sl@0
|
37 |
pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
38 |
User::Leave(1); \
|
sl@0
|
39 |
} \
|
sl@0
|
40 |
}
|
sl@0
|
41 |
#undef INFO_PRINTF1
|
sl@0
|
42 |
#undef INFO_PRINTF2
|
sl@0
|
43 |
// copy from tefexportconst.h
|
sl@0
|
44 |
#define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
|
sl@0
|
45 |
#define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
|
sl@0
|
46 |
|
sl@0
|
47 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
48 |
|
sl@0
|
49 |
const TInt KTestCleanupStack=0x40;
|
sl@0
|
50 |
|
sl@0
|
51 |
LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
|
sl@0
|
52 |
LOCAL_D CRichText* TheText=NULL;
|
sl@0
|
53 |
LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
|
sl@0
|
54 |
LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
|
sl@0
|
55 |
LOCAL_D CParser* TheParser;
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
LOCAL_C void SetRichTextL(TFileName& aFileName)
|
sl@0
|
59 |
//
|
sl@0
|
60 |
{
|
sl@0
|
61 |
delete TheText;
|
sl@0
|
62 |
delete TheGlobalParaLayer;
|
sl@0
|
63 |
delete TheGlobalCharLayer;
|
sl@0
|
64 |
TheParser=CParser::NewL();
|
sl@0
|
65 |
CleanupStack::PushL(TheParser);
|
sl@0
|
66 |
TheText=TheParser->ParseL(aFileName);
|
sl@0
|
67 |
CleanupStack::PopAndDestroy();
|
sl@0
|
68 |
TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer();
|
sl@0
|
69 |
TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer();
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
LOCAL_C void CreateRichTextL()
|
sl@0
|
74 |
//
|
sl@0
|
75 |
{
|
sl@0
|
76 |
TParaFormatMask paraMask;
|
sl@0
|
77 |
TheGlobalParaLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
|
sl@0
|
78 |
CleanupStack::PushL(TheGlobalParaLayer);
|
sl@0
|
79 |
TCharFormat charFormat;
|
sl@0
|
80 |
TCharFormatMask charMask;
|
sl@0
|
81 |
TheGlobalCharLayer=CCharFormatLayer::NewL(charFormat,charMask);
|
sl@0
|
82 |
CleanupStack::PushL(TheGlobalCharLayer);
|
sl@0
|
83 |
TheText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
|
sl@0
|
84 |
CleanupStack::Pop(2);
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
LOCAL_C void DestroyRichText()
|
sl@0
|
89 |
//
|
sl@0
|
90 |
{
|
sl@0
|
91 |
delete TheText;
|
sl@0
|
92 |
delete TheGlobalParaLayer;
|
sl@0
|
93 |
delete TheGlobalCharLayer;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
LOCAL_C void ResetTextL()
|
sl@0
|
98 |
// Initialise the rich text.
|
sl@0
|
99 |
//
|
sl@0
|
100 |
{
|
sl@0
|
101 |
TheText->Reset();
|
sl@0
|
102 |
TBuf<512> buf(_L("This is paragraph one"));
|
sl@0
|
103 |
buf.Append(CEditableText::EParagraphDelimiter);
|
sl@0
|
104 |
buf.Append(_L("This is paragraph two"));
|
sl@0
|
105 |
buf.Append(CEditableText::EParagraphDelimiter);
|
sl@0
|
106 |
buf.Append(_L("This is paragraph 333"));
|
sl@0
|
107 |
// Editable text already has the terminating paragraph delimter.
|
sl@0
|
108 |
TheText->InsertL(0,buf);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
|
sl@0
|
112 |
LOCAL_C TParaBorder BorderValues(TParaBorder::TLineStyle aLineStyle,TInt aThickness)
|
sl@0
|
113 |
//
|
sl@0
|
114 |
{
|
sl@0
|
115 |
TParaBorder border;
|
sl@0
|
116 |
border.iLineStyle=aLineStyle;
|
sl@0
|
117 |
border.iThickness=aThickness;
|
sl@0
|
118 |
return border;
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
LOCAL_C void PerformTestParaBordersL(CParaFormat& aApplyFormat,TParaFormatMask& aApplyMask,
|
sl@0
|
123 |
TTextFormatAttribute anAttribute,CParaFormat::TParaBorderSide aSide,
|
sl@0
|
124 |
TParaBorder& aBorder,
|
sl@0
|
125 |
CParaFormat& aSensedFormat,TParaFormatMask& aSensedMask)
|
sl@0
|
126 |
//
|
sl@0
|
127 |
{
|
sl@0
|
128 |
aApplyMask.SetAttrib(anAttribute);
|
sl@0
|
129 |
aApplyFormat.SetParaBorderL(aSide,aBorder);
|
sl@0
|
130 |
TheText->ApplyParaFormatL(&aApplyFormat,aApplyMask,0,1);
|
sl@0
|
131 |
TheText->GetParaFormatL(&aSensedFormat,aSensedMask,0,TheText->DocumentLength());
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
LOCAL_C void TestParaBordersL()
|
sl@0
|
136 |
// Tests the indeterminate state of paragraph borders.
|
sl@0
|
137 |
//
|
sl@0
|
138 |
{
|
sl@0
|
139 |
ResetTextL();
|
sl@0
|
140 |
CParaFormat* sensedFormat=CParaFormat::NewLC();
|
sl@0
|
141 |
TParaFormatMask undeterminedMask;
|
sl@0
|
142 |
TheText->GetParaFormatL(sensedFormat,undeterminedMask,0,TheText->DocumentLength());
|
sl@0
|
143 |
test(undeterminedMask.IsNull());
|
sl@0
|
144 |
//
|
sl@0
|
145 |
CParaFormat* applyFormat=CParaFormat::NewLC();
|
sl@0
|
146 |
TParaFormatMask applyMask;
|
sl@0
|
147 |
//
|
sl@0
|
148 |
TParaBorder border=BorderValues(TParaBorder::ESolid,1);
|
sl@0
|
149 |
//
|
sl@0
|
150 |
PerformTestParaBordersL(*applyFormat,applyMask,EAttTopBorder,CParaFormat::EParaBorderTop,border,*sensedFormat,undeterminedMask);
|
sl@0
|
151 |
test(undeterminedMask.AttribIsSet(EAttTopBorder));
|
sl@0
|
152 |
test(!(undeterminedMask.AttribIsSet(EAttBottomBorder)));
|
sl@0
|
153 |
test(!(undeterminedMask.AttribIsSet(EAttLeftBorder)));
|
sl@0
|
154 |
test(!(undeterminedMask.AttribIsSet(EAttRightBorder)));
|
sl@0
|
155 |
//
|
sl@0
|
156 |
PerformTestParaBordersL(*applyFormat,applyMask,EAttBottomBorder,CParaFormat::EParaBorderBottom,border,*sensedFormat,undeterminedMask);
|
sl@0
|
157 |
test(undeterminedMask.AttribIsSet(EAttTopBorder));
|
sl@0
|
158 |
test(undeterminedMask.AttribIsSet(EAttBottomBorder));
|
sl@0
|
159 |
test(!(undeterminedMask.AttribIsSet(EAttLeftBorder)));
|
sl@0
|
160 |
test(!(undeterminedMask.AttribIsSet(EAttRightBorder)));
|
sl@0
|
161 |
//
|
sl@0
|
162 |
PerformTestParaBordersL(*applyFormat,applyMask,EAttLeftBorder,CParaFormat::EParaBorderLeft,border,*sensedFormat,undeterminedMask);
|
sl@0
|
163 |
test(undeterminedMask.AttribIsSet(EAttTopBorder));
|
sl@0
|
164 |
test(undeterminedMask.AttribIsSet(EAttBottomBorder));
|
sl@0
|
165 |
test(undeterminedMask.AttribIsSet(EAttLeftBorder));
|
sl@0
|
166 |
test(!(undeterminedMask.AttribIsSet(EAttRightBorder)));
|
sl@0
|
167 |
//
|
sl@0
|
168 |
PerformTestParaBordersL(*applyFormat,applyMask,EAttRightBorder,CParaFormat::EParaBorderRight,border,*sensedFormat,undeterminedMask);
|
sl@0
|
169 |
test(undeterminedMask.AttribIsSet(EAttTopBorder));
|
sl@0
|
170 |
test(undeterminedMask.AttribIsSet(EAttBottomBorder));
|
sl@0
|
171 |
test(undeterminedMask.AttribIsSet(EAttLeftBorder));
|
sl@0
|
172 |
test(undeterminedMask.AttribIsSet(EAttRightBorder));
|
sl@0
|
173 |
//
|
sl@0
|
174 |
CleanupStack::PopAndDestroy(2); // applyFormat & sensedFormat
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
LOCAL_C void TestParaFormatL()
|
sl@0
|
179 |
// Test the indeterminate state of paragraph format attributes.
|
sl@0
|
180 |
//
|
sl@0
|
181 |
{
|
sl@0
|
182 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_INDTER-0001 Paragraph format attributes "));
|
sl@0
|
183 |
TestParaBordersL();
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
|
sl@0
|
187 |
LOCAL_C void TestCharFormatL()
|
sl@0
|
188 |
// Test the indeterminate state of character format attributes.
|
sl@0
|
189 |
//
|
sl@0
|
190 |
{
|
sl@0
|
191 |
INFO_PRINTF1(_L("Character format attributes"));
|
sl@0
|
192 |
//
|
sl@0
|
193 |
ResetTextL();
|
sl@0
|
194 |
TCharFormat applyFormat;
|
sl@0
|
195 |
TCharFormatMask applyMask;
|
sl@0
|
196 |
//
|
sl@0
|
197 |
TCharFormat sensedFormat;
|
sl@0
|
198 |
TCharFormatMask sensedMask;
|
sl@0
|
199 |
// Make para 2 bold
|
sl@0
|
200 |
applyFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
|
sl@0
|
201 |
applyMask.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
202 |
TheText->ApplyCharFormatL(applyFormat,applyMask,22,22);
|
sl@0
|
203 |
// Make para 3 italic
|
sl@0
|
204 |
applyFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic);
|
sl@0
|
205 |
applyMask.ClearAll(); applyMask.SetAttrib(EAttFontPosture);
|
sl@0
|
206 |
TheText->ApplyCharFormatL(applyFormat,applyMask,44,21);
|
sl@0
|
207 |
//
|
sl@0
|
208 |
TheText->GetCharFormat(sensedFormat,sensedMask,0,TheText->DocumentLength());
|
sl@0
|
209 |
test(sensedMask.AttribIsSet(EAttFontStrokeWeight));
|
sl@0
|
210 |
test(sensedMask.AttribIsSet(EAttFontPosture));
|
sl@0
|
211 |
//
|
sl@0
|
212 |
TheText->GetCharFormat(sensedFormat,sensedMask,50,1);
|
sl@0
|
213 |
test(sensedMask.IsNull());
|
sl@0
|
214 |
//
|
sl@0
|
215 |
TheText->GetCharFormat(sensedFormat,sensedMask,44,21);
|
sl@0
|
216 |
test(sensedMask.IsNull());
|
sl@0
|
217 |
//
|
sl@0
|
218 |
TFileName file=_L("z:\\test\\app-framework\\etext\\t_indter.pml");
|
sl@0
|
219 |
SetRichTextL(file);
|
sl@0
|
220 |
|
sl@0
|
221 |
TheText->GetCharFormat(sensedFormat,sensedMask,4,1);
|
sl@0
|
222 |
//
|
sl@0
|
223 |
TheText->GetCharFormat(sensedFormat,sensedMask,0,TheText->DocumentLength());
|
sl@0
|
224 |
test(sensedMask.AttribIsSet(EAttFontStrokeWeight));
|
sl@0
|
225 |
test(sensedMask.AttribIsSet(EAttFontPosture));
|
sl@0
|
226 |
test(sensedMask.AttribIsSet(EAttFontUnderline));
|
sl@0
|
227 |
test(sensedMask.AttribIsSet(EAttFontStrikethrough));
|
sl@0
|
228 |
test(sensedMask.AttribIsSet(EAttFontPrintPos));
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
|
sl@0
|
232 |
LOCAL_C void DoTestL()
|
sl@0
|
233 |
// Main routine
|
sl@0
|
234 |
//
|
sl@0
|
235 |
{
|
sl@0
|
236 |
CreateRichTextL();
|
sl@0
|
237 |
TestParaFormatL();
|
sl@0
|
238 |
TestCharFormatL();
|
sl@0
|
239 |
|
sl@0
|
240 |
DestroyRichText();
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
|
sl@0
|
244 |
LOCAL_C void setupCleanup()
|
sl@0
|
245 |
// Initialise the cleanup stack.
|
sl@0
|
246 |
//
|
sl@0
|
247 |
{
|
sl@0
|
248 |
|
sl@0
|
249 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
250 |
TRAPD(r,\
|
sl@0
|
251 |
{\
|
sl@0
|
252 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
253 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
254 |
test(r==KErrNone);\
|
sl@0
|
255 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
256 |
});
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
CT_INDTER::CT_INDTER()
|
sl@0
|
260 |
{
|
sl@0
|
261 |
SetTestStepName(KTestStep_T_INDTER);
|
sl@0
|
262 |
pTestStep = this;
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
TVerdict CT_INDTER::doTestStepL()
|
sl@0
|
266 |
{
|
sl@0
|
267 |
SetTestStepResult(EFail);
|
sl@0
|
268 |
|
sl@0
|
269 |
INFO_PRINTF1(_L("Rich Text Format attribute Indeterminate State tests"));
|
sl@0
|
270 |
__UHEAP_MARK;
|
sl@0
|
271 |
setupCleanup();
|
sl@0
|
272 |
TRAPD(r, DoTestL());
|
sl@0
|
273 |
test(r == KErrNone);
|
sl@0
|
274 |
|
sl@0
|
275 |
delete TheTrapCleanup;
|
sl@0
|
276 |
|
sl@0
|
277 |
__UHEAP_MARKEND;
|
sl@0
|
278 |
|
sl@0
|
279 |
if (r == KErrNone)
|
sl@0
|
280 |
{
|
sl@0
|
281 |
SetTestStepResult(EPass);
|
sl@0
|
282 |
}
|
sl@0
|
283 |
|
sl@0
|
284 |
return TestStepResult();
|
sl@0
|
285 |
}
|