os/textandloc/textrendering/texthandling/ttext/T_LAYDOC.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 <txtlaydc.h>
sl@0
    20
#include <txtglobl.h>
sl@0
    21
#include <txtfrmat.h>
sl@0
    22
#include <txtfmlyr.h>
sl@0
    23
#include "T_LAYDOC.h"
sl@0
    24
sl@0
    25
LOCAL_D CTestStep *pTestStep = NULL;
sl@0
    26
#define test(cond)											\
sl@0
    27
	{														\
sl@0
    28
	TBool __bb = (cond);									\
sl@0
    29
	pTestStep->TEST(__bb);									\
sl@0
    30
	if (!__bb)												\
sl@0
    31
		{													\
sl@0
    32
		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
sl@0
    33
		User::Leave(1);										\
sl@0
    34
		}													\
sl@0
    35
	}
sl@0
    36
#undef INFO_PRINTF1
sl@0
    37
#undef INFO_PRINTF2
sl@0
    38
// copy from tefexportconst.h
sl@0
    39
#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
sl@0
    40
#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
sl@0
    41
sl@0
    42
sl@0
    43
#define UNUSED_VAR(a) a = a
sl@0
    44
sl@0
    45
LOCAL_D TPtrC defaultText(_L("This is default text"));
sl@0
    46
LOCAL_D TPtrC comp1(_L("fault text"));
sl@0
    47
LOCAL_D TPtrC comp2(_L("t"));
sl@0
    48
LOCAL_D TPtrC view(_L("x"));
sl@0
    49
sl@0
    50
GLDEF_C void CheckView(TPtrC& aView,TPtrC& aControl)
sl@0
    51
//
sl@0
    52
// Test that aView matches the contol descriptor in
sl@0
    53
// the expected metrics.
sl@0
    54
//
sl@0
    55
	{
sl@0
    56
	test(aView.Length()==(aControl.Length()+1));
sl@0
    57
	TInt index=0;
sl@0
    58
	for (index=0;index<aControl.Length();index++)
sl@0
    59
		{
sl@0
    60
		test(aView[index]==aControl[index]);
sl@0
    61
		}
sl@0
    62
	test(aView[index]==CEditableText::EParagraphDelimiter);
sl@0
    63
	}
sl@0
    64
sl@0
    65
sl@0
    66
GLDEF_C void TestDocumentLength(CEditableText::TDocumentStorage aStorage)
sl@0
    67
//
sl@0
    68
//
sl@0
    69
//
sl@0
    70
	{
sl@0
    71
	__UHEAP_MARK;
sl@0
    72
	// Make the global format layers...
sl@0
    73
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
    74
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
    75
sl@0
    76
// Create Document
sl@0
    77
	CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
sl@0
    78
	TInt length=doc->LdDocumentLength();
sl@0
    79
	test(length==0);
sl@0
    80
// Insert document content
sl@0
    81
	doc->InsertL(0,defaultText);
sl@0
    82
	length=doc->LdDocumentLength();
sl@0
    83
	test(length==20);	
sl@0
    84
sl@0
    85
	delete doc;
sl@0
    86
	delete paraLayer;
sl@0
    87
	delete charLayer;
sl@0
    88
	__UHEAP_MARKEND;
sl@0
    89
	}
sl@0
    90
sl@0
    91
sl@0
    92
GLDEF_C void TestRead(CEditableText::TDocumentStorage aStorage)
sl@0
    93
//
sl@0
    94
// Test this class' GetChars method
sl@0
    95
// functions as predicted.
sl@0
    96
//
sl@0
    97
	{
sl@0
    98
	__UHEAP_MARK;
sl@0
    99
	// Make the global format layers...
sl@0
   100
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   101
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   102
sl@0
   103
// Create Document
sl@0
   104
	CGlobalText* doc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
sl@0
   105
	TRAPD(ret,doc->InsertL(0,defaultText));
sl@0
   106
    UNUSED_VAR(ret);
sl@0
   107
sl@0
   108
// Create LayDoc
sl@0
   109
	TCharFormat format;
sl@0
   110
	TPtrC view;
sl@0
   111
	
sl@0
   112
	INFO_PRINTF1(_L("Sensing at start"));
sl@0
   113
	doc->GetChars(view,format,0);
sl@0
   114
	CheckView(view,defaultText);
sl@0
   115
	
sl@0
   116
	INFO_PRINTF1(_L("Sensing from char.pos.10"));
sl@0
   117
	doc->GetChars(view,format,10);
sl@0
   118
	CheckView(view,comp1);
sl@0
   119
	
sl@0
   120
	INFO_PRINTF1(_L("Sensing from end-1"));
sl@0
   121
	doc->GetChars(view,format,19);
sl@0
   122
	CheckView(view,comp2);
sl@0
   123
	
sl@0
   124
	INFO_PRINTF1(_L("Sensing from end"));
sl@0
   125
	doc->GetChars(view,format,20);
sl@0
   126
	test(*view.Ptr()==CEditableText::EParagraphDelimiter);
sl@0
   127
	
sl@0
   128
	
sl@0
   129
	delete doc;
sl@0
   130
	delete paraLayer;
sl@0
   131
	delete charLayer;
sl@0
   132
	__UHEAP_MARKEND;
sl@0
   133
	}
sl@0
   134
sl@0
   135
sl@0
   136
GLDEF_C void CheckParagraphStart(TInt aCalculated,TInt aExpected)
sl@0
   137
//
sl@0
   138
// Checks the value returned from ParagraphStart(aPos) is what
sl@0
   139
// it is expected to be.
sl@0
   140
//
sl@0
   141
	{
sl@0
   142
	test(aCalculated==aExpected);
sl@0
   143
	}
sl@0
   144
sl@0
   145
sl@0
   146
GLDEF_C void CheckCharsSkipped(TInt aCalculated,TInt aExpected)
sl@0
   147
//
sl@0
   148
// Check the number of characters skipped following a  ParagraphStart()
sl@0
   149
// is as expected.
sl@0
   150
//
sl@0
   151
	{
sl@0
   152
	test(aCalculated==aExpected);
sl@0
   153
	}
sl@0
   154
sl@0
   155
sl@0
   156
GLDEF_C void DoParagraphStart(TInt aStartPos,TInt aLength,MLayDoc* aLayout)
sl@0
   157
//
sl@0
   158
// Parametric testing of the ParagraphStart method of the
sl@0
   159
// document class hierarchy.
sl@0
   160
//
sl@0
   161
	{
sl@0
   162
	User::Heap().Check();
sl@0
   163
	TInt tempPos=0;
sl@0
   164
	TInt charsSkipped=0;
sl@0
   165
	for (TInt charPos=aStartPos;charPos<aStartPos+aLength;charPos++)
sl@0
   166
		{// Check Paragraph
sl@0
   167
		tempPos=charPos;
sl@0
   168
		charsSkipped=aLayout->LdToParagraphStart(charPos);
sl@0
   169
		// charPos is updated to paragraph start character position.
sl@0
   170
		CheckParagraphStart(charPos,aStartPos);
sl@0
   171
		charPos=tempPos;  // Reset charPos following it's update.
sl@0
   172
		CheckCharsSkipped(charsSkipped,charPos-aStartPos);
sl@0
   173
		}
sl@0
   174
	User::Heap().Check();
sl@0
   175
	}
sl@0
   176
sl@0
   177
sl@0
   178
GLDEF_C void TestParagraphStart(CEditableText::TDocumentStorage aStorage)
sl@0
   179
//
sl@0
   180
// Tests the ParagraphStart method.
sl@0
   181
//
sl@0
   182
	{
sl@0
   183
	User::Heap().Check();
sl@0
   184
	__UHEAP_MARK;
sl@0
   185
	// Make the global format layers...
sl@0
   186
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   187
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   188
sl@0
   189
	TBuf<128> content;
sl@0
   190
	content.Append(_L("Paragraph one. Complete with sentence and word breaks."));
sl@0
   191
	content.Append(CEditableText::EParagraphDelimiter);
sl@0
   192
	content.Append(_L("This is paragraph two."));
sl@0
   193
	content.Append(CEditableText::EParagraphDelimiter);
sl@0
   194
	content.Append(_L("This is paragraph 3"));
sl@0
   195
	// Create document.
sl@0
   196
	CGlobalText* document=CGlobalText::NewL(paraLayer,charLayer,aStorage);
sl@0
   197
	TPtrC body(content);
sl@0
   198
	document->InsertL(0,body);
sl@0
   199
	// Now do the tests.
sl@0
   200
	INFO_PRINTF1(_L("Paragraph 1"));
sl@0
   201
	DoParagraphStart(0,55,document);  // Paragraph 1
sl@0
   202
	INFO_PRINTF1(_L("Paragraph 2"));
sl@0
   203
	DoParagraphStart(55,23,document);  // Paragraph 2
sl@0
   204
	INFO_PRINTF1(_L("Paragraph 3"));
sl@0
   205
	DoParagraphStart(78,20,document);  // Paragraph 3
sl@0
   206
sl@0
   207
	delete paraLayer;
sl@0
   208
	delete charLayer;
sl@0
   209
	delete document;
sl@0
   210
	
sl@0
   211
	__UHEAP_MARKEND;
sl@0
   212
	User::Heap().Check();
sl@0
   213
	}
sl@0
   214
sl@0
   215
sl@0
   216
GLDEF_C void TestGetParagraphFormatL(CEditableText::TDocumentStorage aStorage)
sl@0
   217
//
sl@0
   218
//
sl@0
   219
//
sl@0
   220
	{
sl@0
   221
	__UHEAP_MARK;
sl@0
   222
	User::Heap().Check();
sl@0
   223
	// Make the global format layers...
sl@0
   224
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   225
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   226
sl@0
   227
	CGlobalText* globalDoc=CGlobalText::NewL(paraLayer,charLayer,aStorage);
sl@0
   228
sl@0
   229
	CParaFormat* format=CParaFormat::NewL();
sl@0
   230
	CParaFormat* control=CParaFormat::NewL();
sl@0
   231
	TParaFormatMask cMask;
sl@0
   232
	control->iLeftMarginInTwips=1440; cMask.SetAttrib(EAttLeftMargin);
sl@0
   233
	TTabStop tab1;
sl@0
   234
	tab1.iTwipsPosition=1440; tab1.iType=TTabStop::ERightTab;
sl@0
   235
	control->StoreTabL(tab1); cMask.SetAttrib(EAttTabStop);
sl@0
   236
	
sl@0
   237
	TParaBorder border;
sl@0
   238
	border.iLineStyle=TParaBorder::ESolid;
sl@0
   239
	border.iThickness=1;
sl@0
   240
	control->SetParaBorderL(CParaFormat::EParaBorderTop,border); cMask.SetAttrib(EAttTopBorder);
sl@0
   241
	control->iKeepTogether=ETrue; cMask.SetAttrib(EAttKeepTogether);
sl@0
   242
	CParaFormatLayer* layer=CParaFormatLayer::NewL(control,cMask);
sl@0
   243
	globalDoc->SetGlobalParaFormat(layer);
sl@0
   244
sl@0
   245
	globalDoc->GetParagraphFormatL(format,0);
sl@0
   246
	TInt c1=format->TabCount();
sl@0
   247
	TInt c2=control->TabCount();
sl@0
   248
	test(c1==c2);
sl@0
   249
	test(format->IsEqual(*control));
sl@0
   250
sl@0
   251
	__UHEAP_MARK;	
sl@0
   252
	delete layer;
sl@0
   253
	delete control;
sl@0
   254
	delete format;
sl@0
   255
	__UHEAP_MARKEND;
sl@0
   256
	delete globalDoc;	
sl@0
   257
	delete charLayer;
sl@0
   258
	delete paraLayer;
sl@0
   259
	User::Heap().Check();
sl@0
   260
	__UHEAP_MARKEND;
sl@0
   261
	}
sl@0
   262
sl@0
   263
GLDEF_C void TestRegister(CEditableText::TDocumentStorage aStorage)
sl@0
   264
//
sl@0
   265
// Checks all declared base class methods have been provided.
sl@0
   266
//
sl@0
   267
	{
sl@0
   268
	User::Heap().Check();
sl@0
   269
	__UHEAP_MARK;
sl@0
   270
	// Make the global format layers...
sl@0
   271
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   272
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   273
sl@0
   274
// Create a para format layer
sl@0
   275
	CParaFormat* format=CParaFormat::NewL();
sl@0
   276
	TParaFormatMask mask;
sl@0
   277
	mask.SetAttrib(EAttLeftMargin);
sl@0
   278
	mask.SetAttrib(EAttRightMargin);
sl@0
   279
	CParaFormatLayer* layer=CParaFormatLayer::NewL(format,mask);
sl@0
   280
// Create global text document to layout
sl@0
   281
	CGlobalText* doc=NULL;
sl@0
   282
	TRAPD(ret,doc=CGlobalText::NewL(paraLayer,charLayer,aStorage));
sl@0
   283
    UNUSED_VAR(ret);
sl@0
   284
	TInt pos=0;
sl@0
   285
	doc->SetGlobalParaFormat(layer);
sl@0
   286
sl@0
   287
// Check constructor
sl@0
   288
	INFO_PRINTF1(_L("Constructor"));
sl@0
   289
sl@0
   290
// Check DocumentLength
sl@0
   291
	INFO_PRINTF1(_L("DocumentLength()"));
sl@0
   292
	doc->LdDocumentLength();
sl@0
   293
sl@0
   294
// Check ParagraphStart
sl@0
   295
	INFO_PRINTF1(_L("ParagraphStart()"));
sl@0
   296
	doc->LdToParagraphStart(pos);
sl@0
   297
sl@0
   298
// Check GetParagraphFormatL
sl@0
   299
	INFO_PRINTF1(_L("GetParagraphFormatL()"));
sl@0
   300
	doc->GetParagraphFormatL(format,pos);
sl@0
   301
sl@0
   302
// Check GetChars
sl@0
   303
	INFO_PRINTF1(_L("GetChars()"));
sl@0
   304
	TPtrC view;
sl@0
   305
	TCharFormat charFormat;
sl@0
   306
	doc->GetChars(view,charFormat,pos);
sl@0
   307
sl@0
   308
// check EnquirePage
sl@0
   309
	INFO_PRINTF1(_L("EnquirePageBreak()"));
sl@0
   310
	doc->EnquirePageBreak(pos,0);
sl@0
   311
sl@0
   312
	delete paraLayer;
sl@0
   313
	delete charLayer;
sl@0
   314
	delete doc;
sl@0
   315
	delete layer;
sl@0
   316
	delete format;
sl@0
   317
	
sl@0
   318
	__UHEAP_MARKEND;
sl@0
   319
	User::Heap().Check();
sl@0
   320
	}
sl@0
   321
sl@0
   322
GLDEF_C void Test()
sl@0
   323
//
sl@0
   324
// Run the tests
sl@0
   325
//
sl@0
   326
	{
sl@0
   327
	__UHEAP_MARK;
sl@0
   328
	INFO_PRINTF1(_L("Checking all methods present"));
sl@0
   329
	TestRegister(CEditableText::EFlatStorage);
sl@0
   330
sl@0
   331
	INFO_PRINTF1(_L("DocumentLength()"));
sl@0
   332
	TestDocumentLength(CEditableText::EFlatStorage);
sl@0
   333
sl@0
   334
	INFO_PRINTF1(_L("EnquirePage()"));
sl@0
   335
	INFO_PRINTF1(_L("Always returns 0"));
sl@0
   336
	
sl@0
   337
sl@0
   338
	INFO_PRINTF1(_L("ParagraphStart()"));
sl@0
   339
	TestParagraphStart(CEditableText::EFlatStorage);
sl@0
   340
sl@0
   341
	INFO_PRINTF1(_L("GetParagraphFormatL()"));
sl@0
   342
	TestGetParagraphFormatL(CEditableText::EFlatStorage);
sl@0
   343
		
sl@0
   344
	INFO_PRINTF1(_L("GetChars"));
sl@0
   345
	TestRead(CEditableText::EFlatStorage);
sl@0
   346
	
sl@0
   347
	__UHEAP_MARKEND;
sl@0
   348
	}
sl@0
   349
	
sl@0
   350
	 
sl@0
   351
GLDEF_C void TestSeg()
sl@0
   352
//
sl@0
   353
// Run the tests
sl@0
   354
//
sl@0
   355
	{
sl@0
   356
	__UHEAP_MARK;
sl@0
   357
	INFO_PRINTF1(_L("Checking all methods present"));
sl@0
   358
	TestRegister(CEditableText::ESegmentedStorage);
sl@0
   359
sl@0
   360
	INFO_PRINTF1(_L("DocumentLength()"));
sl@0
   361
	TestDocumentLength(CEditableText::ESegmentedStorage);
sl@0
   362
sl@0
   363
	INFO_PRINTF1(_L("EnquirePage()"));
sl@0
   364
	INFO_PRINTF1(_L("Always returns 0"));
sl@0
   365
	
sl@0
   366
sl@0
   367
	INFO_PRINTF1(_L("ParagraphStart()"));
sl@0
   368
	TestParagraphStart(CEditableText::ESegmentedStorage);
sl@0
   369
sl@0
   370
	INFO_PRINTF1(_L("SenseParagraphFormatL()"));
sl@0
   371
	TestGetParagraphFormatL(CEditableText::ESegmentedStorage);
sl@0
   372
		
sl@0
   373
	INFO_PRINTF1(_L("GetChars"));
sl@0
   374
	//TestRead();
sl@0
   375
	//
sl@0
   376
	INFO_PRINTF1(_L("Test not yet implemented"));
sl@0
   377
	
sl@0
   378
	__UHEAP_MARKEND;
sl@0
   379
	}
sl@0
   380
sl@0
   381
CT_LAYDOC::CT_LAYDOC()
sl@0
   382
    {
sl@0
   383
    SetTestStepName(KTestStep_T_LAYDOC);
sl@0
   384
    pTestStep = this;
sl@0
   385
    }
sl@0
   386
sl@0
   387
TVerdict CT_LAYDOC::doTestStepL()
sl@0
   388
    {
sl@0
   389
    SetTestStepResult(EFail);
sl@0
   390
sl@0
   391
    CTrapCleanup* cleanup=CTrapCleanup::New();
sl@0
   392
sl@0
   393
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_LAYDOC-0001 MLayDoc - Using Flat document "));
sl@0
   394
    
sl@0
   395
    __UHEAP_MARK;
sl@0
   396
    TRAPD(ret1,Test());
sl@0
   397
    __UHEAP_MARKEND;
sl@0
   398
    
sl@0
   399
    INFO_PRINTF1(_L("MLaydoc - Using Segmented document"));
sl@0
   400
    __UHEAP_MARK;
sl@0
   401
    TRAPD(ret2,TestSeg());
sl@0
   402
    __UHEAP_MARKEND;
sl@0
   403
sl@0
   404
    delete cleanup;
sl@0
   405
sl@0
   406
    if (ret1 == KErrNone && ret2 == KErrNone)
sl@0
   407
        {
sl@0
   408
        SetTestStepResult(EPass);
sl@0
   409
        }
sl@0
   410
sl@0
   411
    return TestStepResult();
sl@0
   412
    }