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 <gdi.h>
|
sl@0
|
23 |
#include <s32file.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <txtrich.h>
|
sl@0
|
26 |
#include <txtfmlyr.h>
|
sl@0
|
27 |
#include <txtfrmat.h>
|
sl@0
|
28 |
#include <txtstyle.h>
|
sl@0
|
29 |
#include "T_STYLE.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
LOCAL_D CTestStep *pTestStep = NULL;
|
sl@0
|
32 |
#define test(cond) \
|
sl@0
|
33 |
{ \
|
sl@0
|
34 |
TBool __bb = (cond); \
|
sl@0
|
35 |
pTestStep->TEST(__bb); \
|
sl@0
|
36 |
if (!__bb) \
|
sl@0
|
37 |
{ \
|
sl@0
|
38 |
pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
39 |
User::Leave(1); \
|
sl@0
|
40 |
} \
|
sl@0
|
41 |
}
|
sl@0
|
42 |
#undef INFO_PRINTF1
|
sl@0
|
43 |
#undef INFO_PRINTF2
|
sl@0
|
44 |
// copy from tefexportconst.h
|
sl@0
|
45 |
#define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
|
sl@0
|
46 |
#define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
50 |
|
sl@0
|
51 |
const TInt KTestCleanupStack=0x40;
|
sl@0
|
52 |
|
sl@0
|
53 |
LOCAL_D CTrapCleanup* TheTrapCleanup;
|
sl@0
|
54 |
|
sl@0
|
55 |
LOCAL_D CRichText* TheText;
|
sl@0
|
56 |
LOCAL_D CStyleList* TheStyleList;
|
sl@0
|
57 |
LOCAL_D CParaFormatLayer* TheNormalParaLayer;
|
sl@0
|
58 |
LOCAL_D CCharFormatLayer* TheNormalCharLayer;
|
sl@0
|
59 |
LOCAL_D CParagraphStyle* TheStyleOne;
|
sl@0
|
60 |
LOCAL_D CParagraphStyle* TheStyleTwo;
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
_LIT(KOutputFile, "c:\\etext\\t_style.tst");
|
sl@0
|
64 |
template <class T>
|
sl@0
|
65 |
void testStoreRestoreL(T& aCopy,const T& aOriginal)
|
sl@0
|
66 |
// Test document persistance.
|
sl@0
|
67 |
//
|
sl@0
|
68 |
{
|
sl@0
|
69 |
// set up the store
|
sl@0
|
70 |
RFs theFs;
|
sl@0
|
71 |
theFs.Connect();
|
sl@0
|
72 |
//
|
sl@0
|
73 |
theFs.Delete(KOutputFile);
|
sl@0
|
74 |
theFs.MkDirAll(KOutputFile);
|
sl@0
|
75 |
CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
|
sl@0
|
76 |
CleanupStack::PushL(theStore);
|
sl@0
|
77 |
theStore->SetTypeL(KDirectFileStoreLayoutUid);
|
sl@0
|
78 |
//
|
sl@0
|
79 |
// store the original
|
sl@0
|
80 |
TStreamId id(0);
|
sl@0
|
81 |
TRAPD(ret,id=aOriginal.StoreL(*theStore));
|
sl@0
|
82 |
test(ret==KErrNone);
|
sl@0
|
83 |
//
|
sl@0
|
84 |
// restore into the copy
|
sl@0
|
85 |
TRAP(ret,aCopy.RestoreL(*theStore,id));
|
sl@0
|
86 |
test(ret==KErrNone);
|
sl@0
|
87 |
//
|
sl@0
|
88 |
// tidy up
|
sl@0
|
89 |
CleanupStack::PopAndDestroy(); // theStore
|
sl@0
|
90 |
theFs.Close();
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
LOCAL_C TInt IsEqual(const CRichText* aCopy,const CRichText* aOriginal)
|
sl@0
|
95 |
//
|
sl@0
|
96 |
// Returns true if aCopy contents matches aOriginal contents.
|
sl@0
|
97 |
// Takes account of multiple segments of a segmented text component.
|
sl@0
|
98 |
//
|
sl@0
|
99 |
{
|
sl@0
|
100 |
TInt lengthOfOriginal=aOriginal->DocumentLength();
|
sl@0
|
101 |
TInt lengthOfCopy=aCopy->DocumentLength();
|
sl@0
|
102 |
test(lengthOfOriginal==lengthOfCopy);
|
sl@0
|
103 |
//
|
sl@0
|
104 |
TPtrC copy,orig;
|
sl@0
|
105 |
//
|
sl@0
|
106 |
TInt lengthRead=0;
|
sl@0
|
107 |
while(lengthRead<=lengthOfOriginal)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
copy.Set((aCopy->Read(lengthRead)));
|
sl@0
|
110 |
orig.Set((aOriginal->Read(lengthRead)));
|
sl@0
|
111 |
for (TInt offset=0; offset<orig.Length(); offset++)
|
sl@0
|
112 |
test(copy[offset]==orig[offset]);
|
sl@0
|
113 |
lengthRead+=orig.Length();
|
sl@0
|
114 |
}
|
sl@0
|
115 |
test(lengthRead==lengthOfOriginal+1);
|
sl@0
|
116 |
//
|
sl@0
|
117 |
CStyleList* origStyle=aOriginal->StyleList();
|
sl@0
|
118 |
CStyleList* copyStyle=aCopy->StyleList();
|
sl@0
|
119 |
TInt origStyleCount=origStyle->Count();
|
sl@0
|
120 |
TInt copyStyleCount=copyStyle->Count();
|
sl@0
|
121 |
test(origStyleCount==copyStyleCount);
|
sl@0
|
122 |
for (TInt ii=0;ii<origStyleCount;ii++)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
RParagraphStyleInfo oInfo=origStyle->At(ii);
|
sl@0
|
125 |
RParagraphStyleInfo cInfo=copyStyle->At(ii);
|
sl@0
|
126 |
test(oInfo.iStyle->iName==cInfo.iStyle->iName);
|
sl@0
|
127 |
if (oInfo.iStyleForNextPara==NULL)
|
sl@0
|
128 |
test(cInfo.iStyleForNextPara==NULL);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
return 1;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
LOCAL_C void ConstructEnvWithNullParaFormat()
|
sl@0
|
136 |
{
|
sl@0
|
137 |
// Create global layers
|
sl@0
|
138 |
CParaFormat* normalPara=CParaFormat::NewLC();
|
sl@0
|
139 |
TParaFormatMask paraFormatMask;
|
sl@0
|
140 |
normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
|
sl@0
|
141 |
paraFormatMask.SetAttrib(EAttAlignment);
|
sl@0
|
142 |
TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
|
sl@0
|
143 |
CleanupStack::PopAndDestroy(); // normalPara
|
sl@0
|
144 |
TCharFormat charFormat;
|
sl@0
|
145 |
TCharFormatMask charFormatMask;
|
sl@0
|
146 |
TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
|
sl@0
|
147 |
//
|
sl@0
|
148 |
// Create some paragraph styles
|
sl@0
|
149 |
TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
|
sl@0
|
150 |
TheStyleOne->iName=_L("Style1");
|
sl@0
|
151 |
|
sl@0
|
152 |
// Style two is based on style one
|
sl@0
|
153 |
TheStyleTwo=CParagraphStyle::NewL( *TheStyleOne, *(TheStyleOne->CharFormatLayer()));
|
sl@0
|
154 |
TheStyleTwo->iName=_L("Style2");
|
sl@0
|
155 |
//
|
sl@0
|
156 |
CParaFormat* styleFormat=CParaFormat::NewLC();
|
sl@0
|
157 |
TParaFormatMask styleMask;
|
sl@0
|
158 |
styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
|
sl@0
|
159 |
styleMask.SetAttrib(EAttAlignment);
|
sl@0
|
160 |
TheStyleOne->SetL(styleFormat,styleMask);
|
sl@0
|
161 |
//
|
sl@0
|
162 |
styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
|
sl@0
|
163 |
// Set paragraph format to NULL
|
sl@0
|
164 |
TheStyleTwo->SetL( NULL,styleMask);
|
sl@0
|
165 |
CleanupStack::PopAndDestroy(); // styleFormat
|
sl@0
|
166 |
//
|
sl@0
|
167 |
// Create style table and insert styles.
|
sl@0
|
168 |
TheStyleList=CStyleList::NewL();
|
sl@0
|
169 |
RParagraphStyleInfo info(TheStyleOne);
|
sl@0
|
170 |
TInt error=TheStyleList->AppendL(&info);
|
sl@0
|
171 |
test(error==KErrNone);
|
sl@0
|
172 |
RParagraphStyleInfo info1=TheStyleList->At(0);
|
sl@0
|
173 |
CParagraphStyle* style=info1.iStyle;
|
sl@0
|
174 |
style=NULL;
|
sl@0
|
175 |
|
sl@0
|
176 |
RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
|
sl@0
|
177 |
error=TheStyleList->AppendL(&info2);
|
sl@0
|
178 |
test(error==KErrNone);
|
sl@0
|
179 |
|
sl@0
|
180 |
error=TheStyleList->AppendL(&info2);
|
sl@0
|
181 |
test(error==KErrAlreadyExists);
|
sl@0
|
182 |
test(TheStyleList->Count()==2);
|
sl@0
|
183 |
|
sl@0
|
184 |
style=TheStyleList->At(1).iStyle;
|
sl@0
|
185 |
test(style->iName==_L("Style2"));
|
sl@0
|
186 |
//
|
sl@0
|
187 |
// Create the rich text with styles.
|
sl@0
|
188 |
TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
LOCAL_C void ConstructEnvironment()
|
sl@0
|
192 |
// Create some styles.
|
sl@0
|
193 |
//
|
sl@0
|
194 |
{
|
sl@0
|
195 |
// Create global layers
|
sl@0
|
196 |
CParaFormat* normalPara=CParaFormat::NewLC();
|
sl@0
|
197 |
TParaFormatMask paraFormatMask;
|
sl@0
|
198 |
normalPara->iHorizontalAlignment=CParaFormat::ELeftAlign;
|
sl@0
|
199 |
paraFormatMask.SetAttrib(EAttAlignment);
|
sl@0
|
200 |
TheNormalParaLayer=CParaFormatLayer::NewL(normalPara,paraFormatMask);
|
sl@0
|
201 |
CleanupStack::PopAndDestroy(); // normalPara
|
sl@0
|
202 |
TCharFormat charFormat;
|
sl@0
|
203 |
TCharFormatMask charFormatMask;
|
sl@0
|
204 |
TheNormalCharLayer=CCharFormatLayer::NewL(charFormat,charFormatMask);
|
sl@0
|
205 |
//
|
sl@0
|
206 |
// Create some paragraph styles
|
sl@0
|
207 |
TheStyleOne=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
|
sl@0
|
208 |
TheStyleOne->iName=_L("Style1");
|
sl@0
|
209 |
TheStyleTwo=CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
|
sl@0
|
210 |
TheStyleTwo->iName=_L("Style2");
|
sl@0
|
211 |
//
|
sl@0
|
212 |
CParaFormat* styleFormat=CParaFormat::NewLC();
|
sl@0
|
213 |
TParaFormatMask styleMask;
|
sl@0
|
214 |
styleFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
|
sl@0
|
215 |
styleMask.SetAttrib(EAttAlignment);
|
sl@0
|
216 |
TheStyleOne->SetL(styleFormat,styleMask);
|
sl@0
|
217 |
//
|
sl@0
|
218 |
styleFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
|
sl@0
|
219 |
TheStyleTwo->SetL(styleFormat,styleMask);
|
sl@0
|
220 |
CleanupStack::PopAndDestroy(); // styleFormat
|
sl@0
|
221 |
//
|
sl@0
|
222 |
// Create style table and insert styles.
|
sl@0
|
223 |
TheStyleList=CStyleList::NewL();
|
sl@0
|
224 |
RParagraphStyleInfo info(TheStyleOne);
|
sl@0
|
225 |
TInt error=TheStyleList->AppendL(&info);
|
sl@0
|
226 |
test(error==KErrNone);
|
sl@0
|
227 |
RParagraphStyleInfo info1=TheStyleList->At(0);
|
sl@0
|
228 |
CParagraphStyle* style=info1.iStyle;
|
sl@0
|
229 |
style=NULL;
|
sl@0
|
230 |
|
sl@0
|
231 |
RParagraphStyleInfo info2(TheStyleTwo,TheStyleOne);
|
sl@0
|
232 |
error=TheStyleList->AppendL(&info2);
|
sl@0
|
233 |
test(error==KErrNone);
|
sl@0
|
234 |
|
sl@0
|
235 |
error=TheStyleList->AppendL(&info2);
|
sl@0
|
236 |
test(error==KErrAlreadyExists);
|
sl@0
|
237 |
test(TheStyleList->Count()==2);
|
sl@0
|
238 |
|
sl@0
|
239 |
style=TheStyleList->At(1).iStyle;
|
sl@0
|
240 |
test(style->iName==_L("Style2"));
|
sl@0
|
241 |
//
|
sl@0
|
242 |
// Create the rich text with styles.
|
sl@0
|
243 |
TheText=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer,*TheStyleList);
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
|
sl@0
|
247 |
LOCAL_C void KillEnvironment()
|
sl@0
|
248 |
// Kill everything
|
sl@0
|
249 |
//
|
sl@0
|
250 |
{
|
sl@0
|
251 |
delete TheText;
|
sl@0
|
252 |
// the style table is owned by the rich text, and is destroyed there.
|
sl@0
|
253 |
delete TheNormalParaLayer;
|
sl@0
|
254 |
delete TheNormalCharLayer;
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
|
sl@0
|
258 |
LOCAL_C void TestConstruction()
|
sl@0
|
259 |
// Test the construction/destruction of rich text with styles
|
sl@0
|
260 |
//
|
sl@0
|
261 |
{
|
sl@0
|
262 |
__UHEAP_MARK;
|
sl@0
|
263 |
|
sl@0
|
264 |
ConstructEnvironment();
|
sl@0
|
265 |
KillEnvironment();
|
sl@0
|
266 |
|
sl@0
|
267 |
__UHEAP_MARKEND;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
|
sl@0
|
270 |
|
sl@0
|
271 |
LOCAL_C void TestParaWithNullParaFormat()
|
sl@0
|
272 |
{
|
sl@0
|
273 |
CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
|
sl@0
|
274 |
|
sl@0
|
275 |
INFO_PRINTF1(_L("Apply style to paragraph with NULL para format"));
|
sl@0
|
276 |
ConstructEnvWithNullParaFormat();
|
sl@0
|
277 |
TheText->InsertL(0,_L("HEADINGBODYTEXT"));
|
sl@0
|
278 |
//
|
sl@0
|
279 |
TheText->ApplyParagraphStyleL(*TheStyleList->At(1).iStyle,0,1,applyMode);
|
sl@0
|
280 |
CParaFormat* paraFormat=CParaFormat::NewLC();
|
sl@0
|
281 |
TheText->GetParagraphFormatL(paraFormat,0);
|
sl@0
|
282 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
283 |
//
|
sl@0
|
284 |
TChar delimiter=CEditableText::EParagraphDelimiter;
|
sl@0
|
285 |
TheText->InsertL(7,delimiter);
|
sl@0
|
286 |
TheText->GetParagraphFormatL(paraFormat,6);
|
sl@0
|
287 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
288 |
TheText->GetParagraphFormatL(paraFormat,8);
|
sl@0
|
289 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
290 |
CleanupStack::PopAndDestroy();
|
sl@0
|
291 |
KillEnvironment();
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
LOCAL_C void TestSharedPara()
|
sl@0
|
295 |
// Test
|
sl@0
|
296 |
//
|
sl@0
|
297 |
{
|
sl@0
|
298 |
CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
|
sl@0
|
299 |
|
sl@0
|
300 |
INFO_PRINTF1(_L("Apply style to shared paragraph"));
|
sl@0
|
301 |
ConstructEnvironment();
|
sl@0
|
302 |
TheText->InsertL(0,_L("HEADINGBODYTEXT"));
|
sl@0
|
303 |
//
|
sl@0
|
304 |
TheText->ApplyParagraphStyleL(*TheStyleList->At(0).iStyle,0,1,applyMode);
|
sl@0
|
305 |
CParaFormat* paraFormat=CParaFormat::NewLC();
|
sl@0
|
306 |
TheText->GetParagraphFormatL(paraFormat,0);
|
sl@0
|
307 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
308 |
//
|
sl@0
|
309 |
TChar delimiter=CEditableText::EParagraphDelimiter;
|
sl@0
|
310 |
TheText->InsertL(7,delimiter);
|
sl@0
|
311 |
TheText->GetParagraphFormatL(paraFormat,6);
|
sl@0
|
312 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
313 |
TheText->GetParagraphFormatL(paraFormat,8);
|
sl@0
|
314 |
test(paraFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
|
sl@0
|
315 |
CleanupStack::PopAndDestroy();
|
sl@0
|
316 |
KillEnvironment();
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
|
sl@0
|
320 |
LOCAL_C void TestNonSharedPara()
|
sl@0
|
321 |
//
|
sl@0
|
322 |
{
|
sl@0
|
323 |
CParagraphStyle::TApplyParaStyleMode applyMode=CParagraphStyle::ERetainNoSpecificFormats;
|
sl@0
|
324 |
|
sl@0
|
325 |
INFO_PRINTF1(_L("Apply style to non-shared paragraph"));
|
sl@0
|
326 |
ConstructEnvironment();
|
sl@0
|
327 |
//
|
sl@0
|
328 |
TheText->InsertL(0,_L("This is paragraph one.This is paragraph number two."));
|
sl@0
|
329 |
TChar delimiter=CEditableText::EParagraphDelimiter;
|
sl@0
|
330 |
TheText->InsertL(22,delimiter);
|
sl@0
|
331 |
//
|
sl@0
|
332 |
TCharFormat charFormat;
|
sl@0
|
333 |
TCharFormatMask charFormatMask;
|
sl@0
|
334 |
charFormat.iFontPresentation.iStrikethrough=EStrikethroughOn;
|
sl@0
|
335 |
charFormatMask.SetAttrib(EAttFontStrikethrough);
|
sl@0
|
336 |
TheText->ApplyCharFormatL(charFormat,charFormatMask,0,4);
|
sl@0
|
337 |
//
|
sl@0
|
338 |
TheText->ApplyParagraphStyleL(*(TheStyleList->At(1).iStyle),0,TheText->DocumentLength(),applyMode);
|
sl@0
|
339 |
//
|
sl@0
|
340 |
CParaFormat* paraFormat=CParaFormat::NewLC();
|
sl@0
|
341 |
TheText->GetParagraphFormatL(paraFormat,0);
|
sl@0
|
342 |
test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
|
sl@0
|
343 |
//
|
sl@0
|
344 |
TheText->GetParagraphFormatL(paraFormat,10);
|
sl@0
|
345 |
test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
|
sl@0
|
346 |
//
|
sl@0
|
347 |
TheText->GetParagraphFormatL(paraFormat,30);
|
sl@0
|
348 |
test(paraFormat->iHorizontalAlignment=CParaFormat::ERightAlign);
|
sl@0
|
349 |
//
|
sl@0
|
350 |
CleanupStack::PopAndDestroy(); // para format
|
sl@0
|
351 |
//
|
sl@0
|
352 |
/*TEtextComponentInfo info=*/TheText->ComponentInfo();
|
sl@0
|
353 |
CRichText* theCopy=CRichText::NewL(TheNormalParaLayer,TheNormalCharLayer);
|
sl@0
|
354 |
testStoreRestoreL(*theCopy,*TheText);
|
sl@0
|
355 |
test(IsEqual(theCopy,TheText));
|
sl@0
|
356 |
//
|
sl@0
|
357 |
theCopy->ApplyParagraphStyleL(*(TheStyleList->At(0).iStyle),25,1,applyMode);
|
sl@0
|
358 |
CParagraphStyle* tempStyle = CParagraphStyle::NewL(*TheNormalParaLayer,*TheNormalCharLayer);
|
sl@0
|
359 |
theCopy->InsertL(28,delimiter);
|
sl@0
|
360 |
theCopy->InsertL(31,delimiter);
|
sl@0
|
361 |
charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
|
sl@0
|
362 |
charFormatMask.ClearAll();
|
sl@0
|
363 |
charFormatMask.SetAttrib(EAttFontStrokeWeight);
|
sl@0
|
364 |
theCopy->ApplyCharFormatL(charFormat, charFormatMask, 33, 1);
|
sl@0
|
365 |
theCopy->NotifyStyleChangedL(tempStyle, TheStyleList->At(0).iStyle);
|
sl@0
|
366 |
//
|
sl@0
|
367 |
delete theCopy;
|
sl@0
|
368 |
delete tempStyle;
|
sl@0
|
369 |
KillEnvironment();
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
|
sl@0
|
373 |
LOCAL_C void TestStyles()
|
sl@0
|
374 |
// Perform tests
|
sl@0
|
375 |
//
|
sl@0
|
376 |
{
|
sl@0
|
377 |
TestSharedPara();
|
sl@0
|
378 |
TestNonSharedPara();
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
LOCAL_C void TestStyleWithNullParaFormat()
|
sl@0
|
382 |
{
|
sl@0
|
383 |
TestParaWithNullParaFormat();
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
LOCAL_C void TestStyleList()
|
sl@0
|
387 |
{
|
sl@0
|
388 |
__UHEAP_MARK;
|
sl@0
|
389 |
// Test 1
|
sl@0
|
390 |
// Construction under OOM
|
sl@0
|
391 |
INFO_PRINTF1(_L("Construction under OOM"));
|
sl@0
|
392 |
CStyleList* list=NULL;
|
sl@0
|
393 |
TInt nn;
|
sl@0
|
394 |
for (nn=0; ;nn++)
|
sl@0
|
395 |
{
|
sl@0
|
396 |
__UHEAP_RESET;
|
sl@0
|
397 |
__UHEAP_SETFAIL(RHeap::EDeterministic,nn);
|
sl@0
|
398 |
__UHEAP_MARK;
|
sl@0
|
399 |
TRAPD(ret,
|
sl@0
|
400 |
list=CStyleList::NewL());
|
sl@0
|
401 |
if (ret!=KErrNone)
|
sl@0
|
402 |
{
|
sl@0
|
403 |
__UHEAP_MARKEND;
|
sl@0
|
404 |
test(list==NULL);
|
sl@0
|
405 |
}
|
sl@0
|
406 |
else
|
sl@0
|
407 |
{
|
sl@0
|
408 |
test(list!=NULL);
|
sl@0
|
409 |
delete list;
|
sl@0
|
410 |
list=NULL;
|
sl@0
|
411 |
__UHEAP_MARKEND;
|
sl@0
|
412 |
break;
|
sl@0
|
413 |
}
|
sl@0
|
414 |
}
|
sl@0
|
415 |
__UHEAP_RESET;
|
sl@0
|
416 |
TBuf<36> answer;
|
sl@0
|
417 |
answer.Format(_L(" #allocs for full c'tion: %d\n"),nn-1);
|
sl@0
|
418 |
INFO_PRINTF1(answer);
|
sl@0
|
419 |
|
sl@0
|
420 |
|
sl@0
|
421 |
// Test 2
|
sl@0
|
422 |
// Populated style list, Append under OOM;
|
sl@0
|
423 |
INFO_PRINTF1(_L("AppendL() under OOM"));
|
sl@0
|
424 |
CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
|
sl@0
|
425 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
|
sl@0
|
426 |
__UHEAP_MARK;
|
sl@0
|
427 |
list=CStyleList::NewL();
|
sl@0
|
428 |
CParagraphStyle* style=NULL;
|
sl@0
|
429 |
for (TInt mm=0;mm<KMaxStyleListGranularity;mm++)
|
sl@0
|
430 |
{
|
sl@0
|
431 |
style=CParagraphStyle::NewL(*paraLayer,*charLayer);
|
sl@0
|
432 |
RParagraphStyleInfo info(style,NULL);
|
sl@0
|
433 |
TInt r=list->AppendL(&info);
|
sl@0
|
434 |
test(r==KErrNone);
|
sl@0
|
435 |
}
|
sl@0
|
436 |
test(list->Count()==KMaxStyleListGranularity);
|
sl@0
|
437 |
|
sl@0
|
438 |
for (TInt oo=0; ;oo++)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
style=CParagraphStyle::NewL(*paraLayer,*charLayer);
|
sl@0
|
441 |
RParagraphStyleInfo info(style);
|
sl@0
|
442 |
__UHEAP_RESET;
|
sl@0
|
443 |
__UHEAP_SETFAIL(RHeap::EDeterministic,oo);
|
sl@0
|
444 |
TInt r=KErrNone;
|
sl@0
|
445 |
TRAPD(ret,
|
sl@0
|
446 |
r=list->AppendL(&info));
|
sl@0
|
447 |
if (ret!=KErrNone)
|
sl@0
|
448 |
{
|
sl@0
|
449 |
test(r!=KErrAlreadyExists);
|
sl@0
|
450 |
test(list->Count()==KMaxStyleListGranularity);
|
sl@0
|
451 |
}
|
sl@0
|
452 |
else
|
sl@0
|
453 |
{
|
sl@0
|
454 |
test(r==KErrNone);
|
sl@0
|
455 |
test(list->Count()==KMaxStyleListGranularity+1);
|
sl@0
|
456 |
break;
|
sl@0
|
457 |
}
|
sl@0
|
458 |
__UHEAP_RESET;
|
sl@0
|
459 |
}
|
sl@0
|
460 |
delete list;
|
sl@0
|
461 |
list=NULL;
|
sl@0
|
462 |
style=NULL;
|
sl@0
|
463 |
__UHEAP_MARKEND;
|
sl@0
|
464 |
__UHEAP_RESET;
|
sl@0
|
465 |
|
sl@0
|
466 |
|
sl@0
|
467 |
// Test 3
|
sl@0
|
468 |
// Inserting a duplicate
|
sl@0
|
469 |
INFO_PRINTF1(_L("AppendL() a duplicate"));
|
sl@0
|
470 |
list=CStyleList::NewL();
|
sl@0
|
471 |
style=NULL;
|
sl@0
|
472 |
for (TInt pp=0;pp<KMaxStyleListGranularity;pp++)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
style=CParagraphStyle::NewL(*paraLayer,*charLayer);
|
sl@0
|
475 |
RParagraphStyleInfo info(style,NULL);
|
sl@0
|
476 |
list->AppendL(&info);
|
sl@0
|
477 |
}
|
sl@0
|
478 |
test(list->Count()==KMaxStyleListGranularity);
|
sl@0
|
479 |
RParagraphStyleInfo info=list->At(0);
|
sl@0
|
480 |
TInt r=list->AppendL(&info);
|
sl@0
|
481 |
test(r==KErrAlreadyExists);
|
sl@0
|
482 |
test(list->Count()==KMaxStyleListGranularity);
|
sl@0
|
483 |
test(info.iStyle->CharFormatLayer()!=NULL); // the duplicate style has not been deleted.
|
sl@0
|
484 |
delete list;
|
sl@0
|
485 |
|
sl@0
|
486 |
|
sl@0
|
487 |
// Test 4
|
sl@0
|
488 |
// Looking for a style by name that does not exist.
|
sl@0
|
489 |
INFO_PRINTF1(_L("IndexByName() where style not present"));
|
sl@0
|
490 |
list=CStyleList::NewL();
|
sl@0
|
491 |
style=NULL;
|
sl@0
|
492 |
TUint name='A';
|
sl@0
|
493 |
for (TInt qq=0;qq<KMaxStyleListGranularity;qq++)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
style=CParagraphStyle::NewL(*paraLayer,*charLayer);
|
sl@0
|
496 |
style->iName.Append(name);
|
sl@0
|
497 |
name++;
|
sl@0
|
498 |
RParagraphStyleInfo info(style,NULL);
|
sl@0
|
499 |
list->AppendL(&info);
|
sl@0
|
500 |
}
|
sl@0
|
501 |
test(list->Count()==KMaxStyleListGranularity);
|
sl@0
|
502 |
TParagraphStyleName search=_L("not present");
|
sl@0
|
503 |
/*TInt index=*/list->IndexByName(search);
|
sl@0
|
504 |
|
sl@0
|
505 |
delete list;
|
sl@0
|
506 |
|
sl@0
|
507 |
delete paraLayer;
|
sl@0
|
508 |
delete charLayer;
|
sl@0
|
509 |
|
sl@0
|
510 |
__UHEAP_MARKEND;
|
sl@0
|
511 |
|
sl@0
|
512 |
}
|
sl@0
|
513 |
|
sl@0
|
514 |
|
sl@0
|
515 |
LOCAL_C void TestHarness()
|
sl@0
|
516 |
// Test rich text style usage.
|
sl@0
|
517 |
//
|
sl@0
|
518 |
{
|
sl@0
|
519 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_STYLE-0001 RichText Styles "));
|
sl@0
|
520 |
// Do the tests.
|
sl@0
|
521 |
TestConstruction();
|
sl@0
|
522 |
TestStyles();
|
sl@0
|
523 |
TestStyleWithNullParaFormat();
|
sl@0
|
524 |
INFO_PRINTF1(_L("CStyleList"));
|
sl@0
|
525 |
TestStyleList();
|
sl@0
|
526 |
//
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
|
sl@0
|
530 |
LOCAL_C void setupCleanup()
|
sl@0
|
531 |
//
|
sl@0
|
532 |
// Initialise the cleanup stack.
|
sl@0
|
533 |
//
|
sl@0
|
534 |
{
|
sl@0
|
535 |
|
sl@0
|
536 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
537 |
TRAPD(r,\
|
sl@0
|
538 |
{\
|
sl@0
|
539 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
540 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
541 |
test(r==KErrNone);\
|
sl@0
|
542 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
543 |
});
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
|
sl@0
|
547 |
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
RFs fsSession;
|
sl@0
|
550 |
TInt err = fsSession.Connect();
|
sl@0
|
551 |
if(err == KErrNone)
|
sl@0
|
552 |
{
|
sl@0
|
553 |
TEntry entry;
|
sl@0
|
554 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
555 |
{
|
sl@0
|
556 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
557 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
558 |
if(err != KErrNone)
|
sl@0
|
559 |
{
|
sl@0
|
560 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
561 |
}
|
sl@0
|
562 |
err = fsSession.Delete(aFullName);
|
sl@0
|
563 |
if(err != KErrNone)
|
sl@0
|
564 |
{
|
sl@0
|
565 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
566 |
}
|
sl@0
|
567 |
}
|
sl@0
|
568 |
fsSession.Close();
|
sl@0
|
569 |
}
|
sl@0
|
570 |
else
|
sl@0
|
571 |
{
|
sl@0
|
572 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
573 |
}
|
sl@0
|
574 |
}
|
sl@0
|
575 |
|
sl@0
|
576 |
CT_STYLE::CT_STYLE()
|
sl@0
|
577 |
{
|
sl@0
|
578 |
SetTestStepName(KTestStep_T_STYLE);
|
sl@0
|
579 |
pTestStep = this;
|
sl@0
|
580 |
}
|
sl@0
|
581 |
|
sl@0
|
582 |
TVerdict CT_STYLE::doTestStepL()
|
sl@0
|
583 |
{
|
sl@0
|
584 |
SetTestStepResult(EFail);
|
sl@0
|
585 |
|
sl@0
|
586 |
INFO_PRINTF1(_L("Testing Paragraph Styles"));
|
sl@0
|
587 |
__UHEAP_MARK;
|
sl@0
|
588 |
setupCleanup();
|
sl@0
|
589 |
TRAPD(r,TestHarness());
|
sl@0
|
590 |
test(r == KErrNone);
|
sl@0
|
591 |
|
sl@0
|
592 |
delete TheTrapCleanup;
|
sl@0
|
593 |
|
sl@0
|
594 |
__UHEAP_MARKEND;
|
sl@0
|
595 |
|
sl@0
|
596 |
::DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
|
sl@0
|
597 |
|
sl@0
|
598 |
if (r == KErrNone)
|
sl@0
|
599 |
{
|
sl@0
|
600 |
SetTestStepResult(EPass);
|
sl@0
|
601 |
}
|
sl@0
|
602 |
|
sl@0
|
603 |
return TestStepResult();
|
sl@0
|
604 |
}
|