Update contrib.
2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 LOCAL_D CTestStep *pTestStep = NULL;
28 TBool __bb = (cond); \
29 pTestStep->TEST(__bb); \
32 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
38 // copy from tefexportconst.h
39 #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
40 #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
43 #define UNUSED_VAR(a) a = a
45 LOCAL_D TPtrC defaultText(_L("This is default text"));
46 LOCAL_D TPtrC comp1(_L("fault text"));
47 LOCAL_D TPtrC comp2(_L("t"));
48 LOCAL_D TPtrC view(_L("x"));
50 GLDEF_C void CheckView(TPtrC& aView,TPtrC& aControl)
52 // Test that aView matches the contol descriptor in
53 // the expected metrics.
56 test(aView.Length()==(aControl.Length()+1));
58 for (index=0;index<aControl.Length();index++)
60 test(aView[index]==aControl[index]);
62 test(aView[index]==CEditableText::EParagraphDelimiter);
66 GLDEF_C void TestDocumentLength(CEditableText::TDocumentStorage aStorage)
72 // Make the global format layers...
73 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
74 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
77 CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
78 TInt length=doc->LdDocumentLength();
80 // Insert document content
81 doc->InsertL(0,defaultText);
82 length=doc->LdDocumentLength();
92 GLDEF_C void TestRead(CEditableText::TDocumentStorage aStorage)
94 // Test this class' GetChars method
95 // functions as predicted.
99 // Make the global format layers...
100 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
101 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
104 CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
105 TRAPD(ret,doc->InsertL(0,defaultText));
112 INFO_PRINTF1(_L("Sensing at start"));
113 doc->GetChars(view,format,0);
114 CheckView(view,defaultText);
116 INFO_PRINTF1(_L("Sensing from char.pos.10"));
117 doc->GetChars(view,format,10);
118 CheckView(view,comp1);
120 INFO_PRINTF1(_L("Sensing from end-1"));
121 doc->GetChars(view,format,19);
122 CheckView(view,comp2);
124 INFO_PRINTF1(_L("Sensing from end"));
125 doc->GetChars(view,format,20);
126 test(*view.Ptr()==CEditableText::EParagraphDelimiter);
136 GLDEF_C void CheckParagraphStart(TInt aCalculated,TInt aExpected)
138 // Checks the value returned from ParagraphStart(aPos) is what
139 // it is expected to be.
142 test(aCalculated==aExpected);
146 GLDEF_C void CheckCharsSkipped(TInt aCalculated,TInt aExpected)
148 // Check the number of characters skipped following a ParagraphStart()
152 test(aCalculated==aExpected);
156 GLDEF_C void DoParagraphStart(TInt aStartPos,TInt aLength,MLayDoc* aLayout)
158 // Parametric testing of the ParagraphStart method of the
159 // document class hierarchy.
162 User::Heap().Check();
165 for (TInt charPos=aStartPos;charPos<aStartPos+aLength;charPos++)
168 charsSkipped=aLayout->LdToParagraphStart(charPos);
169 // charPos is updated to paragraph start character position.
170 CheckParagraphStart(charPos,aStartPos);
171 charPos=tempPos; // Reset charPos following it's update.
172 CheckCharsSkipped(charsSkipped,charPos-aStartPos);
174 User::Heap().Check();
178 GLDEF_C void TestParagraphStart(CEditableText::TDocumentStorage aStorage)
180 // Tests the ParagraphStart method.
183 User::Heap().Check();
185 // Make the global format layers...
186 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
187 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
190 content.Append(_L("Paragraph one. Complete with sentence and word breaks."));
191 content.Append(CEditableText::EParagraphDelimiter);
192 content.Append(_L("This is paragraph two."));
193 content.Append(CEditableText::EParagraphDelimiter);
194 content.Append(_L("This is paragraph 3"));
196 CGlobalText* document=CGlobalText::NewL(paraLayer,charLayer,aStorage);
198 document->InsertL(0,body);
200 INFO_PRINTF1(_L("Paragraph 1"));
201 DoParagraphStart(0,55,document); // Paragraph 1
202 INFO_PRINTF1(_L("Paragraph 2"));
203 DoParagraphStart(55,23,document); // Paragraph 2
204 INFO_PRINTF1(_L("Paragraph 3"));
205 DoParagraphStart(78,20,document); // Paragraph 3
212 User::Heap().Check();
216 GLDEF_C void TestGetParagraphFormatL(CEditableText::TDocumentStorage aStorage)
222 User::Heap().Check();
223 // Make the global format layers...
224 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
225 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
227 CGlobalText* globalDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
229 CParaFormat* format=CParaFormat::NewL();
230 CParaFormat* control=CParaFormat::NewL();
231 TParaFormatMask cMask;
232 control->iLeftMarginInTwips=1440; cMask.SetAttrib(EAttLeftMargin);
234 tab1.iTwipsPosition=1440; tab1.iType=TTabStop::ERightTab;
235 control->StoreTabL(tab1); cMask.SetAttrib(EAttTabStop);
238 border.iLineStyle=TParaBorder::ESolid;
240 control->SetParaBorderL(CParaFormat::EParaBorderTop,border); cMask.SetAttrib(EAttTopBorder);
241 control->iKeepTogether=ETrue; cMask.SetAttrib(EAttKeepTogether);
242 CParaFormatLayer* layer=CParaFormatLayer::NewL(control,cMask);
243 globalDoc->SetGlobalParaFormat(layer);
245 globalDoc->GetParagraphFormatL(format,0);
246 TInt c1=format->TabCount();
247 TInt c2=control->TabCount();
249 test(format->IsEqual(*control));
259 User::Heap().Check();
263 GLDEF_C void TestRegister(CEditableText::TDocumentStorage aStorage)
265 // Checks all declared base class methods have been provided.
268 User::Heap().Check();
270 // Make the global format layers...
271 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
272 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
274 // Create a para format layer
275 CParaFormat* format=CParaFormat::NewL();
276 TParaFormatMask mask;
277 mask.SetAttrib(EAttLeftMargin);
278 mask.SetAttrib(EAttRightMargin);
279 CParaFormatLayer* layer=CParaFormatLayer::NewL(format,mask);
280 // Create global text document to layout
281 CGlobalText* doc=NULL;
282 TRAPD(ret,doc=CGlobalText::NewL(paraLayer,charLayer,aStorage));
285 doc->SetGlobalParaFormat(layer);
288 INFO_PRINTF1(_L("Constructor"));
290 // Check DocumentLength
291 INFO_PRINTF1(_L("DocumentLength()"));
292 doc->LdDocumentLength();
294 // Check ParagraphStart
295 INFO_PRINTF1(_L("ParagraphStart()"));
296 doc->LdToParagraphStart(pos);
298 // Check GetParagraphFormatL
299 INFO_PRINTF1(_L("GetParagraphFormatL()"));
300 doc->GetParagraphFormatL(format,pos);
303 INFO_PRINTF1(_L("GetChars()"));
305 TCharFormat charFormat;
306 doc->GetChars(view,charFormat,pos);
309 INFO_PRINTF1(_L("EnquirePageBreak()"));
310 doc->EnquirePageBreak(pos,0);
319 User::Heap().Check();
328 INFO_PRINTF1(_L("Checking all methods present"));
329 TestRegister(CEditableText::EFlatStorage);
331 INFO_PRINTF1(_L("DocumentLength()"));
332 TestDocumentLength(CEditableText::EFlatStorage);
334 INFO_PRINTF1(_L("EnquirePage()"));
335 INFO_PRINTF1(_L("Always returns 0"));
338 INFO_PRINTF1(_L("ParagraphStart()"));
339 TestParagraphStart(CEditableText::EFlatStorage);
341 INFO_PRINTF1(_L("GetParagraphFormatL()"));
342 TestGetParagraphFormatL(CEditableText::EFlatStorage);
344 INFO_PRINTF1(_L("GetChars"));
345 TestRead(CEditableText::EFlatStorage);
351 GLDEF_C void TestSeg()
357 INFO_PRINTF1(_L("Checking all methods present"));
358 TestRegister(CEditableText::ESegmentedStorage);
360 INFO_PRINTF1(_L("DocumentLength()"));
361 TestDocumentLength(CEditableText::ESegmentedStorage);
363 INFO_PRINTF1(_L("EnquirePage()"));
364 INFO_PRINTF1(_L("Always returns 0"));
367 INFO_PRINTF1(_L("ParagraphStart()"));
368 TestParagraphStart(CEditableText::ESegmentedStorage);
370 INFO_PRINTF1(_L("SenseParagraphFormatL()"));
371 TestGetParagraphFormatL(CEditableText::ESegmentedStorage);
373 INFO_PRINTF1(_L("GetChars"));
376 INFO_PRINTF1(_L("Test not yet implemented"));
381 CT_LAYDOC::CT_LAYDOC()
383 SetTestStepName(KTestStep_T_LAYDOC);
387 TVerdict CT_LAYDOC::doTestStepL()
389 SetTestStepResult(EFail);
391 CTrapCleanup* cleanup=CTrapCleanup::New();
393 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_LAYDOC-0001 MLayDoc - Using Flat document "));
399 INFO_PRINTF1(_L("MLaydoc - Using Segmented document"));
401 TRAPD(ret2,TestSeg());
406 if (ret1 == KErrNone && ret2 == KErrNone)
408 SetTestStepResult(EPass);
411 return TestStepResult();