os/textandloc/textrendering/texthandling/ttext/T_LAYDOC.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_LAYDOC.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,412 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include <txtlaydc.h>
    1.23 +#include <txtglobl.h>
    1.24 +#include <txtfrmat.h>
    1.25 +#include <txtfmlyr.h>
    1.26 +#include "T_LAYDOC.h"
    1.27 +
    1.28 +LOCAL_D CTestStep *pTestStep = NULL;
    1.29 +#define test(cond)											\
    1.30 +	{														\
    1.31 +	TBool __bb = (cond);									\
    1.32 +	pTestStep->TEST(__bb);									\
    1.33 +	if (!__bb)												\
    1.34 +		{													\
    1.35 +		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    1.36 +		User::Leave(1);										\
    1.37 +		}													\
    1.38 +	}
    1.39 +#undef INFO_PRINTF1
    1.40 +#undef INFO_PRINTF2
    1.41 +// copy from tefexportconst.h
    1.42 +#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    1.43 +#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    1.44 +
    1.45 +
    1.46 +#define UNUSED_VAR(a) a = a
    1.47 +
    1.48 +LOCAL_D TPtrC defaultText(_L("This is default text"));
    1.49 +LOCAL_D TPtrC comp1(_L("fault text"));
    1.50 +LOCAL_D TPtrC comp2(_L("t"));
    1.51 +LOCAL_D TPtrC view(_L("x"));
    1.52 +
    1.53 +GLDEF_C void CheckView(TPtrC& aView,TPtrC& aControl)
    1.54 +//
    1.55 +// Test that aView matches the contol descriptor in
    1.56 +// the expected metrics.
    1.57 +//
    1.58 +	{
    1.59 +	test(aView.Length()==(aControl.Length()+1));
    1.60 +	TInt index=0;
    1.61 +	for (index=0;index<aControl.Length();index++)
    1.62 +		{
    1.63 +		test(aView[index]==aControl[index]);
    1.64 +		}
    1.65 +	test(aView[index]==CEditableText::EParagraphDelimiter);
    1.66 +	}
    1.67 +
    1.68 +
    1.69 +GLDEF_C void TestDocumentLength(CEditableText::TDocumentStorage aStorage)
    1.70 +//
    1.71 +//
    1.72 +//
    1.73 +	{
    1.74 +	__UHEAP_MARK;
    1.75 +	// Make the global format layers...
    1.76 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
    1.77 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
    1.78 +
    1.79 +// Create Document
    1.80 +	CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
    1.81 +	TInt length=doc->LdDocumentLength();
    1.82 +	test(length==0);
    1.83 +// Insert document content
    1.84 +	doc->InsertL(0,defaultText);
    1.85 +	length=doc->LdDocumentLength();
    1.86 +	test(length==20);	
    1.87 +
    1.88 +	delete doc;
    1.89 +	delete paraLayer;
    1.90 +	delete charLayer;
    1.91 +	__UHEAP_MARKEND;
    1.92 +	}
    1.93 +
    1.94 +
    1.95 +GLDEF_C void TestRead(CEditableText::TDocumentStorage aStorage)
    1.96 +//
    1.97 +// Test this class' GetChars method
    1.98 +// functions as predicted.
    1.99 +//
   1.100 +	{
   1.101 +	__UHEAP_MARK;
   1.102 +	// Make the global format layers...
   1.103 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   1.104 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   1.105 +
   1.106 +// Create Document
   1.107 +	CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
   1.108 +	TRAPD(ret,doc->InsertL(0,defaultText));
   1.109 +    UNUSED_VAR(ret);
   1.110 +
   1.111 +// Create LayDoc
   1.112 +	TCharFormat format;
   1.113 +	TPtrC view;
   1.114 +	
   1.115 +	INFO_PRINTF1(_L("Sensing at start"));
   1.116 +	doc->GetChars(view,format,0);
   1.117 +	CheckView(view,defaultText);
   1.118 +	
   1.119 +	INFO_PRINTF1(_L("Sensing from char.pos.10"));
   1.120 +	doc->GetChars(view,format,10);
   1.121 +	CheckView(view,comp1);
   1.122 +	
   1.123 +	INFO_PRINTF1(_L("Sensing from end-1"));
   1.124 +	doc->GetChars(view,format,19);
   1.125 +	CheckView(view,comp2);
   1.126 +	
   1.127 +	INFO_PRINTF1(_L("Sensing from end"));
   1.128 +	doc->GetChars(view,format,20);
   1.129 +	test(*view.Ptr()==CEditableText::EParagraphDelimiter);
   1.130 +	
   1.131 +	
   1.132 +	delete doc;
   1.133 +	delete paraLayer;
   1.134 +	delete charLayer;
   1.135 +	__UHEAP_MARKEND;
   1.136 +	}
   1.137 +
   1.138 +
   1.139 +GLDEF_C void CheckParagraphStart(TInt aCalculated,TInt aExpected)
   1.140 +//
   1.141 +// Checks the value returned from ParagraphStart(aPos) is what
   1.142 +// it is expected to be.
   1.143 +//
   1.144 +	{
   1.145 +	test(aCalculated==aExpected);
   1.146 +	}
   1.147 +
   1.148 +
   1.149 +GLDEF_C void CheckCharsSkipped(TInt aCalculated,TInt aExpected)
   1.150 +//
   1.151 +// Check the number of characters skipped following a  ParagraphStart()
   1.152 +// is as expected.
   1.153 +//
   1.154 +	{
   1.155 +	test(aCalculated==aExpected);
   1.156 +	}
   1.157 +
   1.158 +
   1.159 +GLDEF_C void DoParagraphStart(TInt aStartPos,TInt aLength,MLayDoc* aLayout)
   1.160 +//
   1.161 +// Parametric testing of the ParagraphStart method of the
   1.162 +// document class hierarchy.
   1.163 +//
   1.164 +	{
   1.165 +	User::Heap().Check();
   1.166 +	TInt tempPos=0;
   1.167 +	TInt charsSkipped=0;
   1.168 +	for (TInt charPos=aStartPos;charPos<aStartPos+aLength;charPos++)
   1.169 +		{// Check Paragraph
   1.170 +		tempPos=charPos;
   1.171 +		charsSkipped=aLayout->LdToParagraphStart(charPos);
   1.172 +		// charPos is updated to paragraph start character position.
   1.173 +		CheckParagraphStart(charPos,aStartPos);
   1.174 +		charPos=tempPos;  // Reset charPos following it's update.
   1.175 +		CheckCharsSkipped(charsSkipped,charPos-aStartPos);
   1.176 +		}
   1.177 +	User::Heap().Check();
   1.178 +	}
   1.179 +
   1.180 +
   1.181 +GLDEF_C void TestParagraphStart(CEditableText::TDocumentStorage aStorage)
   1.182 +//
   1.183 +// Tests the ParagraphStart method.
   1.184 +//
   1.185 +	{
   1.186 +	User::Heap().Check();
   1.187 +	__UHEAP_MARK;
   1.188 +	// Make the global format layers...
   1.189 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   1.190 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   1.191 +
   1.192 +	TBuf<128> content;
   1.193 +	content.Append(_L("Paragraph one. Complete with sentence and word breaks."));
   1.194 +	content.Append(CEditableText::EParagraphDelimiter);
   1.195 +	content.Append(_L("This is paragraph two."));
   1.196 +	content.Append(CEditableText::EParagraphDelimiter);
   1.197 +	content.Append(_L("This is paragraph 3"));
   1.198 +	// Create document.
   1.199 +	CGlobalText* document=CGlobalText::NewL(paraLayer,charLayer,aStorage);
   1.200 +	TPtrC body(content);
   1.201 +	document->InsertL(0,body);
   1.202 +	// Now do the tests.
   1.203 +	INFO_PRINTF1(_L("Paragraph 1"));
   1.204 +	DoParagraphStart(0,55,document);  // Paragraph 1
   1.205 +	INFO_PRINTF1(_L("Paragraph 2"));
   1.206 +	DoParagraphStart(55,23,document);  // Paragraph 2
   1.207 +	INFO_PRINTF1(_L("Paragraph 3"));
   1.208 +	DoParagraphStart(78,20,document);  // Paragraph 3
   1.209 +
   1.210 +	delete paraLayer;
   1.211 +	delete charLayer;
   1.212 +	delete document;
   1.213 +	
   1.214 +	__UHEAP_MARKEND;
   1.215 +	User::Heap().Check();
   1.216 +	}
   1.217 +
   1.218 +
   1.219 +GLDEF_C void TestGetParagraphFormatL(CEditableText::TDocumentStorage aStorage)
   1.220 +//
   1.221 +//
   1.222 +//
   1.223 +	{
   1.224 +	__UHEAP_MARK;
   1.225 +	User::Heap().Check();
   1.226 +	// Make the global format layers...
   1.227 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   1.228 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   1.229 +
   1.230 +	CGlobalText* globalDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
   1.231 +
   1.232 +	CParaFormat* format=CParaFormat::NewL();
   1.233 +	CParaFormat* control=CParaFormat::NewL();
   1.234 +	TParaFormatMask cMask;
   1.235 +	control->iLeftMarginInTwips=1440; cMask.SetAttrib(EAttLeftMargin);
   1.236 +	TTabStop tab1;
   1.237 +	tab1.iTwipsPosition=1440; tab1.iType=TTabStop::ERightTab;
   1.238 +	control->StoreTabL(tab1); cMask.SetAttrib(EAttTabStop);
   1.239 +	
   1.240 +	TParaBorder border;
   1.241 +	border.iLineStyle=TParaBorder::ESolid;
   1.242 +	border.iThickness=1;
   1.243 +	control->SetParaBorderL(CParaFormat::EParaBorderTop,border); cMask.SetAttrib(EAttTopBorder);
   1.244 +	control->iKeepTogether=ETrue; cMask.SetAttrib(EAttKeepTogether);
   1.245 +	CParaFormatLayer* layer=CParaFormatLayer::NewL(control,cMask);
   1.246 +	globalDoc->SetGlobalParaFormat(layer);
   1.247 +
   1.248 +	globalDoc->GetParagraphFormatL(format,0);
   1.249 +	TInt c1=format->TabCount();
   1.250 +	TInt c2=control->TabCount();
   1.251 +	test(c1==c2);
   1.252 +	test(format->IsEqual(*control));
   1.253 +
   1.254 +	__UHEAP_MARK;	
   1.255 +	delete layer;
   1.256 +	delete control;
   1.257 +	delete format;
   1.258 +	__UHEAP_MARKEND;
   1.259 +	delete globalDoc;	
   1.260 +	delete charLayer;
   1.261 +	delete paraLayer;
   1.262 +	User::Heap().Check();
   1.263 +	__UHEAP_MARKEND;
   1.264 +	}
   1.265 +
   1.266 +GLDEF_C void TestRegister(CEditableText::TDocumentStorage aStorage)
   1.267 +//
   1.268 +// Checks all declared base class methods have been provided.
   1.269 +//
   1.270 +	{
   1.271 +	User::Heap().Check();
   1.272 +	__UHEAP_MARK;
   1.273 +	// Make the global format layers...
   1.274 +	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
   1.275 +	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
   1.276 +
   1.277 +// Create a para format layer
   1.278 +	CParaFormat* format=CParaFormat::NewL();
   1.279 +	TParaFormatMask mask;
   1.280 +	mask.SetAttrib(EAttLeftMargin);
   1.281 +	mask.SetAttrib(EAttRightMargin);
   1.282 +	CParaFormatLayer* layer=CParaFormatLayer::NewL(format,mask);
   1.283 +// Create global text document to layout
   1.284 +	CGlobalText* doc=NULL;
   1.285 +	TRAPD(ret,doc=CGlobalText::NewL(paraLayer,charLayer,aStorage));
   1.286 +    UNUSED_VAR(ret);
   1.287 +	TInt pos=0;
   1.288 +	doc->SetGlobalParaFormat(layer);
   1.289 +
   1.290 +// Check constructor
   1.291 +	INFO_PRINTF1(_L("Constructor"));
   1.292 +
   1.293 +// Check DocumentLength
   1.294 +	INFO_PRINTF1(_L("DocumentLength()"));
   1.295 +	doc->LdDocumentLength();
   1.296 +
   1.297 +// Check ParagraphStart
   1.298 +	INFO_PRINTF1(_L("ParagraphStart()"));
   1.299 +	doc->LdToParagraphStart(pos);
   1.300 +
   1.301 +// Check GetParagraphFormatL
   1.302 +	INFO_PRINTF1(_L("GetParagraphFormatL()"));
   1.303 +	doc->GetParagraphFormatL(format,pos);
   1.304 +
   1.305 +// Check GetChars
   1.306 +	INFO_PRINTF1(_L("GetChars()"));
   1.307 +	TPtrC view;
   1.308 +	TCharFormat charFormat;
   1.309 +	doc->GetChars(view,charFormat,pos);
   1.310 +
   1.311 +// check EnquirePage
   1.312 +	INFO_PRINTF1(_L("EnquirePageBreak()"));
   1.313 +	doc->EnquirePageBreak(pos,0);
   1.314 +
   1.315 +	delete paraLayer;
   1.316 +	delete charLayer;
   1.317 +	delete doc;
   1.318 +	delete layer;
   1.319 +	delete format;
   1.320 +	
   1.321 +	__UHEAP_MARKEND;
   1.322 +	User::Heap().Check();
   1.323 +	}
   1.324 +
   1.325 +GLDEF_C void Test()
   1.326 +//
   1.327 +// Run the tests
   1.328 +//
   1.329 +	{
   1.330 +	__UHEAP_MARK;
   1.331 +	INFO_PRINTF1(_L("Checking all methods present"));
   1.332 +	TestRegister(CEditableText::EFlatStorage);
   1.333 +
   1.334 +	INFO_PRINTF1(_L("DocumentLength()"));
   1.335 +	TestDocumentLength(CEditableText::EFlatStorage);
   1.336 +
   1.337 +	INFO_PRINTF1(_L("EnquirePage()"));
   1.338 +	INFO_PRINTF1(_L("Always returns 0"));
   1.339 +	
   1.340 +
   1.341 +	INFO_PRINTF1(_L("ParagraphStart()"));
   1.342 +	TestParagraphStart(CEditableText::EFlatStorage);
   1.343 +
   1.344 +	INFO_PRINTF1(_L("GetParagraphFormatL()"));
   1.345 +	TestGetParagraphFormatL(CEditableText::EFlatStorage);
   1.346 +		
   1.347 +	INFO_PRINTF1(_L("GetChars"));
   1.348 +	TestRead(CEditableText::EFlatStorage);
   1.349 +	
   1.350 +	__UHEAP_MARKEND;
   1.351 +	}
   1.352 +	
   1.353 +	 
   1.354 +GLDEF_C void TestSeg()
   1.355 +//
   1.356 +// Run the tests
   1.357 +//
   1.358 +	{
   1.359 +	__UHEAP_MARK;
   1.360 +	INFO_PRINTF1(_L("Checking all methods present"));
   1.361 +	TestRegister(CEditableText::ESegmentedStorage);
   1.362 +
   1.363 +	INFO_PRINTF1(_L("DocumentLength()"));
   1.364 +	TestDocumentLength(CEditableText::ESegmentedStorage);
   1.365 +
   1.366 +	INFO_PRINTF1(_L("EnquirePage()"));
   1.367 +	INFO_PRINTF1(_L("Always returns 0"));
   1.368 +	
   1.369 +
   1.370 +	INFO_PRINTF1(_L("ParagraphStart()"));
   1.371 +	TestParagraphStart(CEditableText::ESegmentedStorage);
   1.372 +
   1.373 +	INFO_PRINTF1(_L("SenseParagraphFormatL()"));
   1.374 +	TestGetParagraphFormatL(CEditableText::ESegmentedStorage);
   1.375 +		
   1.376 +	INFO_PRINTF1(_L("GetChars"));
   1.377 +	//TestRead();
   1.378 +	//
   1.379 +	INFO_PRINTF1(_L("Test not yet implemented"));
   1.380 +	
   1.381 +	__UHEAP_MARKEND;
   1.382 +	}
   1.383 +
   1.384 +CT_LAYDOC::CT_LAYDOC()
   1.385 +    {
   1.386 +    SetTestStepName(KTestStep_T_LAYDOC);
   1.387 +    pTestStep = this;
   1.388 +    }
   1.389 +
   1.390 +TVerdict CT_LAYDOC::doTestStepL()
   1.391 +    {
   1.392 +    SetTestStepResult(EFail);
   1.393 +
   1.394 +    CTrapCleanup* cleanup=CTrapCleanup::New();
   1.395 +
   1.396 +    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_LAYDOC-0001 MLayDoc - Using Flat document "));
   1.397 +    
   1.398 +    __UHEAP_MARK;
   1.399 +    TRAPD(ret1,Test());
   1.400 +    __UHEAP_MARKEND;
   1.401 +    
   1.402 +    INFO_PRINTF1(_L("MLaydoc - Using Segmented document"));
   1.403 +    __UHEAP_MARK;
   1.404 +    TRAPD(ret2,TestSeg());
   1.405 +    __UHEAP_MARKEND;
   1.406 +
   1.407 +    delete cleanup;
   1.408 +
   1.409 +    if (ret1 == KErrNone && ret2 == KErrNone)
   1.410 +        {
   1.411 +        SetTestStepResult(EPass);
   1.412 +        }
   1.413 +
   1.414 +    return TestStepResult();
   1.415 +    }