os/textandloc/textrendering/texthandling/ttext/T_RICH1A.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 <txtrich.h>
sl@0
    20
#include <gdi.h>
sl@0
    21
#include <conpics.h>
sl@0
    22
#include <s32stor.h>
sl@0
    23
#include "../incp/T_PMLPAR.H"
sl@0
    24
#include "T_RICH1A.h"
sl@0
    25
sl@0
    26
LOCAL_D CTestStep *pTestStep = NULL;
sl@0
    27
#define test(cond)											\
sl@0
    28
	{														\
sl@0
    29
	TBool __bb = (cond);									\
sl@0
    30
	pTestStep->TEST(__bb);									\
sl@0
    31
	if (!__bb)												\
sl@0
    32
		{													\
sl@0
    33
		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
sl@0
    34
		User::Leave(1);										\
sl@0
    35
		}													\
sl@0
    36
	}
sl@0
    37
#undef INFO_PRINTF1
sl@0
    38
#undef INFO_PRINTF2
sl@0
    39
// copy from tefexportconst.h
sl@0
    40
#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
sl@0
    41
#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
sl@0
    42
sl@0
    43
sl@0
    44
#define UNUSED_VAR(a) a = a
sl@0
    45
sl@0
    46
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    47
LOCAL_D const TInt KTestCleanupStack=0x200;
sl@0
    48
sl@0
    49
class MAtomicTest
sl@0
    50
	{
sl@0
    51
public:
sl@0
    52
	/** Test that the object is correctly set at stage aStage, then advance it
sl@0
    53
	to stage aStage+1 with an atomic (with respect to leaving) operation.
sl@0
    54
sl@0
    55
	The test at each stage should test that the previous stage really happened
sl@0
    56
	and that no part of the new stage has happened.
sl@0
    57
sl@0
    58
	RunAtomicTest will test that each of these operations really is atomic.
sl@0
    59
	@param aStage The stage to test this object is at.
sl@0
    60
	@return
sl@0
    61
		ETrue if this object was successfully advanced to the next stage.
sl@0
    62
		EFalse if there were no more stages to be advanced to.
sl@0
    63
	*/
sl@0
    64
	virtual TBool TestAndRunStageL(TInt aStage) = 0;
sl@0
    65
	/** Tests that the leave reported in aError is suitable as an error code
sl@0
    66
	from aStage. Panics if not.
sl@0
    67
sl@0
    68
	@param aError Code that TestAndRunStageL(aStage) left with.
sl@0
    69
	@param aStage Stage at which the leave occurred. */
sl@0
    70
	virtual void TestErrorCondition(TInt aStage, TInt aError) = 0;
sl@0
    71
	void RunAtomicTest();
sl@0
    72
	};
sl@0
    73
sl@0
    74
/** Runs TestAndRunStage repeatedly with different out-of-memory test
sl@0
    75
conditions.
sl@0
    76
sl@0
    77
It checks that the operations defined at each stage either leave and leave this
sl@0
    78
object in the same condition, or return successfully and leave the object in
sl@0
    79
the next stage. */
sl@0
    80
void MAtomicTest::RunAtomicTest()
sl@0
    81
	{
sl@0
    82
	TInt stage = 0;
sl@0
    83
	TInt failRate = 1;
sl@0
    84
	TBool more = ETrue;
sl@0
    85
	while (more)
sl@0
    86
		{
sl@0
    87
		__UHEAP_SETFAIL(RHeap::EDeterministic, failRate);
sl@0
    88
		TRAPD(err, more = TestAndRunStageL(stage));
sl@0
    89
		if (err == KErrNone)
sl@0
    90
			{
sl@0
    91
			failRate = 1;
sl@0
    92
			++stage;
sl@0
    93
			}
sl@0
    94
		else
sl@0
    95
			{
sl@0
    96
			TestErrorCondition(stage, err);
sl@0
    97
			++failRate;
sl@0
    98
			}
sl@0
    99
		}
sl@0
   100
	__UHEAP_RESET;
sl@0
   101
	}
sl@0
   102
sl@0
   103
template<class S,class T,CEditableText::TDocumentStorage D>
sl@0
   104
class CRichTest : public CRichText, public MAtomicTest
sl@0
   105
	{
sl@0
   106
public:
sl@0
   107
	static CRichTest* NewL(CParaFormatLayer* aPara,CCharFormatLayer* aChar);
sl@0
   108
sl@0
   109
	void DoFlatTests();
sl@0
   110
	void RegisterMethodsL();
sl@0
   111
	void InsertWithDelimsL();
sl@0
   112
	void TestResetL();
sl@0
   113
	void TestDelete1L();
sl@0
   114
	void TestDelete2L();
sl@0
   115
    void TestApplyRemoveCharFormat();
sl@0
   116
	void TestRemSpecParaFmtL();
sl@0
   117
	void DoPML();
sl@0
   118
	void TestForDefectTET5DHEWWL();
sl@0
   119
	void TestForDefectINC010183L();
sl@0
   120
	void TestForDefectINC064162L();
sl@0
   121
	void TestForDefectINC109323L();
sl@0
   122
	// Tests SetInsertCharFormat and friends for atomicity.
sl@0
   123
	TBool TestAndRunStageL(TInt aStage);
sl@0
   124
	void TestErrorCondition(TInt aStage, TInt aError);
sl@0
   125
protected:
sl@0
   126
	CRichTest(CParaFormatLayer* aPara,CCharFormatLayer* aChar);
sl@0
   127
	};
sl@0
   128
sl@0
   129
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   130
CRichTest<S,T,D>* CRichTest<S,T,D>::NewL(CParaFormatLayer* aPara,CCharFormatLayer* aChar)
sl@0
   131
	{
sl@0
   132
	CRichTest<S,T,D>* tmp=new(ELeave)CRichTest<S,T,D>(aPara,aChar);
sl@0
   133
	tmp->ConstructL(D,EDefaultTextGranularity,EMultiPara);
sl@0
   134
	return tmp;
sl@0
   135
	}
sl@0
   136
sl@0
   137
sl@0
   138
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   139
CRichTest<S,T,D>::CRichTest(CParaFormatLayer* aPara,CCharFormatLayer* aChar)
sl@0
   140
	:CRichText(aPara,aChar)
sl@0
   141
	{}
sl@0
   142
sl@0
   143
sl@0
   144
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   145
void CRichTest<S,T,D>::DoFlatTests()
sl@0
   146
	{
sl@0
   147
	INFO_PRINTF1(_L("Registering all methods"));
sl@0
   148
	RegisterMethodsL();
sl@0
   149
	INFO_PRINTF1(_L("Inserting with embedded paragraph delimiters"));
sl@0
   150
	InsertWithDelimsL();
sl@0
   151
	
sl@0
   152
	}
sl@0
   153
sl@0
   154
sl@0
   155
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   156
void CRichTest<S,T,D>::InsertWithDelimsL()
sl@0
   157
	{
sl@0
   158
	INFO_PRINTF1(_L("Inserting into shared para"));
sl@0
   159
sl@0
   160
	Reset();
sl@0
   161
	TBuf<512> testbuf(_L("a"));
sl@0
   162
	for (TInt ii=0;ii<8;ii++)
sl@0
   163
		{
sl@0
   164
		testbuf.Append('a');
sl@0
   165
		testbuf.Append(CEditableText::EParagraphDelimiter);
sl@0
   166
		}
sl@0
   167
	InsertL(0,testbuf);
sl@0
   168
	test(DocumentLength()==17);
sl@0
   169
	test(ParagraphCount()==9);
sl@0
   170
sl@0
   171
	Reset();
sl@0
   172
	TBufC<512> bufC;
sl@0
   173
	InsertL(0,bufC);
sl@0
   174
		
sl@0
   175
	Reset();
sl@0
   176
	TBuf<512> buf(_L("Herewith"));
sl@0
   177
	InsertL(0,buf);
sl@0
   178
sl@0
   179
	InsertL(4,CEditableText::EParagraphDelimiter);
sl@0
   180
	// THE ABOVE IS TEMPORARY ONLY _ REMOVE IT AS SOON AS YOUVE DONE.
sl@0
   181
	
sl@0
   182
	Reset();
sl@0
   183
//	TBuf<512> buf(_L("Herewith"));
sl@0
   184
	buf.Append(EParagraphDelimiter);
sl@0
   185
	InsertL(0,buf);
sl@0
   186
sl@0
   187
	buf.Append(_L("Is para one"));
sl@0
   188
	buf.Append(EParagraphDelimiter);
sl@0
   189
	InsertL(4,buf);
sl@0
   190
sl@0
   191
	buf.Append(_L(" trailing text"));
sl@0
   192
	InsertL(DocumentLength()-1,buf);
sl@0
   193
	//////////////////////////////////
sl@0
   194
	// Pathalogical case (1)
sl@0
   195
	// Inserting text with delimiters between 2 adjacent pictures.
sl@0
   196
	INFO_PRINTF1(_L("Inserting text with delimiters between 2 adjacent pictures."));
sl@0
   197
	//
sl@0
   198
	Reset();
sl@0
   199
	CXzePicture* picA=CXzePicture::NewL('Z');
sl@0
   200
	TPictureHeader hdrA;
sl@0
   201
	hdrA.iPictureType=KUidXzePictureType;
sl@0
   202
	hdrA.iPicture=picA;
sl@0
   203
	//
sl@0
   204
	CXzePicture* picB=CXzePicture::NewL('X');
sl@0
   205
	TPictureHeader hdrB;
sl@0
   206
	hdrB.iPictureType=KUidXzePictureType;
sl@0
   207
	hdrB.iPicture=picB;
sl@0
   208
	//
sl@0
   209
	InsertL(0,hdrA);
sl@0
   210
	InsertL(DocumentLength(),hdrB);
sl@0
   211
	buf.SetLength(0);
sl@0
   212
	buf.Append(_L("some"));
sl@0
   213
	buf.Append(CEditableText::EParagraphDelimiter);
sl@0
   214
	buf.Append(_L("trailing text"));
sl@0
   215
	InsertL(1,buf);
sl@0
   216
	//
sl@0
   217
	Reset();  // Destroys all pictures.
sl@0
   218
	picA=CXzePicture::NewL('Z');
sl@0
   219
	hdrA.iPictureType=KUidXzePictureType;
sl@0
   220
	hdrA.iPicture=picA;
sl@0
   221
	picB=CXzePicture::NewL('X');
sl@0
   222
	hdrB.iPictureType=KUidXzePictureType;
sl@0
   223
	hdrB.iPicture=picB;
sl@0
   224
	InsertL(0,hdrA);
sl@0
   225
	InsertL(DocumentLength(),hdrB);
sl@0
   226
	buf.SetLength(5);  // A single para delimiter, with no trailing text.
sl@0
   227
	InsertL(1,buf);
sl@0
   228
	////////////////////////////////
sl@0
   229
	// Pathalogical case (2)
sl@0
   230
	// Insert text with delimiters after a picture
sl@0
   231
	INFO_PRINTF1(_L("Insert text with delimiters after a picture"));
sl@0
   232
	//
sl@0
   233
	Reset();  // Destroys all pictures.
sl@0
   234
	picA=CXzePicture::NewL('Z');
sl@0
   235
	hdrA.iPictureType=KUidXzePictureType;
sl@0
   236
	hdrA.iPicture=picA;
sl@0
   237
	InsertL(0,hdrA);
sl@0
   238
	buf.SetLength(7);
sl@0
   239
	InsertL(1,buf);
sl@0
   240
sl@0
   241
	////////////////////////////////
sl@0
   242
	// Pathalogical case (3)
sl@0
   243
	// Insert text with delimiters before a picture
sl@0
   244
	INFO_PRINTF1(_L("Insert text with delimiters before a picture"));
sl@0
   245
	//
sl@0
   246
	Reset();  // Destroys all pictures.
sl@0
   247
	picA=CXzePicture::NewL('Z');
sl@0
   248
	hdrA.iPictureType=KUidXzePictureType;
sl@0
   249
	hdrA.iPicture=picA;
sl@0
   250
	InsertL(0,hdrA);
sl@0
   251
	buf.SetLength(7);
sl@0
   252
	InsertL(0,buf);
sl@0
   253
	//	
sl@0
   254
	Reset();
sl@0
   255
	
sl@0
   256
	}
sl@0
   257
sl@0
   258
sl@0
   259
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   260
void CRichTest<S,T,D>::RegisterMethodsL()
sl@0
   261
//
sl@0
   262
// 1st part of testing, involves all methods being called to ensure that all
sl@0
   263
// methods exist and run without panicking.
sl@0
   264
//
sl@0
   265
	{
sl@0
   266
	INFO_PRINTF1(_L("CRichText::NewL()"));
sl@0
   267
sl@0
   268
	// InsertL()
sl@0
   269
	INFO_PRINTF1(_L("InsertL()"));
sl@0
   270
	TPtrC buf(_L("Herewith"));
sl@0
   271
	InsertL(0,buf);
sl@0
   272
sl@0
   273
//	11.3.97 DavidA defect test 
sl@0
   274
	TCharFormat charFormat;
sl@0
   275
	TCharFormatMask charFormatMask;
sl@0
   276
	TInt lastChar=DocumentLength();
sl@0
   277
	ApplyCharFormatL(charFormat,charFormatMask,lastChar,1);
sl@0
   278
//	end of addition.
sl@0
   279
sl@0
   280
sl@0
   281
	TPtrC buf2(_L("Hello"));
sl@0
   282
	InsertL(0,buf2);
sl@0
   283
sl@0
   284
	DeleteL(3,7);
sl@0
   285
sl@0
   286
	// SetInsertCharFormatL()
sl@0
   287
	INFO_PRINTF1(_L("SetInsertCharFormatL()"));
sl@0
   288
	TCharFormat format; TCharFormatMask mask;
sl@0
   289
	format.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
sl@0
   290
	mask.SetAttrib(EAttFontStrokeWeight);
sl@0
   291
	SetInsertCharFormatL(format,mask,3);
sl@0
   292
	// Test for alloc heaven when doing multiple simultaneous SetInsertCharFormat()s.
sl@0
   293
	format.iFontSpec.iFontStyle.SetPosture(EPostureItalic);
sl@0
   294
	mask.SetAttrib(EAttFontPosture);
sl@0
   295
	SetInsertCharFormatL(format,mask,3);
sl@0
   296
	//
sl@0
   297
	TPtrC buf3(_L(" is bold."));
sl@0
   298
	InsertL(3,buf3);
sl@0
   299
	CancelInsertCharFormat();
sl@0
   300
sl@0
   301
	// Inserting new paragraph
sl@0
   302
	INFO_PRINTF1(_L("Inserting paragraph delimiter (Insert(TChar))"));
sl@0
   303
	InsertL(4,CEditableText::EParagraphDelimiter);
sl@0
   304
sl@0
   305
	// Delete()
sl@0
   306
	INFO_PRINTF1(_L("DeleteL()"));
sl@0
   307
	DeleteL(5,1);
sl@0
   308
sl@0
   309
	// Sensing character format over a specified range.
sl@0
   310
	INFO_PRINTF1(_L("GetCharFormat()"));
sl@0
   311
	TCharFormat charFormat1; TCharFormatMask undeterminedMask;
sl@0
   312
	GetCharFormat(charFormat1,undeterminedMask,0,4);
sl@0
   313
sl@0
   314
	// Sensing paragraph format over a specified range.
sl@0
   315
	INFO_PRINTF1(_L("SenseParagraphFormatL()"));
sl@0
   316
	CParaFormat* pParaFormat=NULL;
sl@0
   317
	TRAPD(r,pParaFormat=CParaFormat::NewL());
sl@0
   318
	test(r==KErrNone);
sl@0
   319
	TParaFormatMask undeterminedParaMask;
sl@0
   320
	GetParaFormatL(pParaFormat,undeterminedParaMask,0,DocumentLength());
sl@0
   321
	delete pParaFormat;
sl@0
   322
	
sl@0
   323
	// DelSetInsertCharFormatL()
sl@0
   324
	INFO_PRINTF1(_L("DelSetInsertCharFormatL()"));
sl@0
   325
	TPtrC buf4(_L("This is para 2."));
sl@0
   326
	InsertL(0,buf4);
sl@0
   327
	SetInsertCharFormatL(format,mask,15);
sl@0
   328
	TPtrC buf5(_L("In italic."));
sl@0
   329
	InsertL(15,buf5);
sl@0
   330
	DelSetInsertCharFormatL(4,5);
sl@0
   331
	
sl@0
   332
	// CancelInsertCharFormat()
sl@0
   333
	INFO_PRINTF1(_L("CancelInsertCharFormat()"));
sl@0
   334
	CancelInsertCharFormat();
sl@0
   335
	
sl@0
   336
	// ApplyParaFormatL()
sl@0
   337
	INFO_PRINTF1(_L("ApplyParaFormatL()"));
sl@0
   338
	CParaFormat* paraFormat=CParaFormat::NewL(); TParaFormatMask paraMask;
sl@0
   339
	paraFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
sl@0
   340
	paraMask.SetAttrib(EAttAlignment);
sl@0
   341
	ApplyParaFormatL(paraFormat,paraMask,0,DocumentLength());
sl@0
   342
sl@0
   343
	// ApplyCharFormatL()
sl@0
   344
	INFO_PRINTF1(_L("ApplyCharFormatL()"));
sl@0
   345
	format.iFontSpec.iFontStyle.SetPosture(EPostureItalic); mask.SetAttrib(EAttFontPosture);
sl@0
   346
	format.iFontPresentation.iStrikethrough=EStrikethroughOn; mask.SetAttrib(EAttFontStrikethrough);
sl@0
   347
	ApplyCharFormatL(format,mask,0,DocumentLength());
sl@0
   348
sl@0
   349
	// SenseParaFormatL()
sl@0
   350
	INFO_PRINTF1(_L("SenseParaFormatL()"));
sl@0
   351
	GetParagraphFormatL(paraFormat,DocumentLength()-1);
sl@0
   352
sl@0
   353
	// CountParas()
sl@0
   354
	INFO_PRINTF1(_L("ParagraphCount()"));
sl@0
   355
	ParagraphCount();
sl@0
   356
sl@0
   357
	// ParagraphStart()
sl@0
   358
	INFO_PRINTF1(_L("ParagraphStart()"));
sl@0
   359
	TInt aPos=0;
sl@0
   360
	ToParagraphStart(aPos);
sl@0
   361
sl@0
   362
	// Reset
sl@0
   363
	Reset();
sl@0
   364
sl@0
   365
	delete paraFormat;
sl@0
   366
sl@0
   367
	
sl@0
   368
	}
sl@0
   369
sl@0
   370
/**
sl@0
   371
@SYMTestCaseID 			SYSLIB-ETEXT-UT-3548
sl@0
   372
@SYMTestCaseDesc  		Testing behaviour of function ApplyCharFormatL() when called at end of document
sl@0
   373
						that contains plain text. Applied formatting should work on subsequent text
sl@0
   374
@SYMTestPriority  		High
sl@0
   375
@SYMTestActions 		1. Insert text1
sl@0
   376
						2. Switch on bold formatting
sl@0
   377
						3. Insert text2
sl@0
   378
						4. Test that first char of text1 is not bold and a character of text 2 is bold. 
sl@0
   379
@SYMTestExpectedResults	ApplyCharFormatL() applies formatting from end of doc to subsequent character.
sl@0
   380
@SYMDEF					INC109323
sl@0
   381
*/
sl@0
   382
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   383
void CRichTest<S,T,D>::TestForDefectINC109323L()
sl@0
   384
	{
sl@0
   385
	__UHEAP_MARK;
sl@0
   386
	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-UT-3548 Test ApplyCharFormatL() for bold at end positions of text "));	
sl@0
   387
	_LIT(KText1, "Testing Bold format");
sl@0
   388
	_LIT(KText2, "bold");	
sl@0
   389
sl@0
   390
	CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
   391
	CleanupStack::PushL(paraLayer);
sl@0
   392
	CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
   393
	CleanupStack::PushL(charLayer);
sl@0
   394
	CRichText* doc = CRichText::NewL(paraLayer,charLayer,D);
sl@0
   395
	CleanupStack::PushL(doc);
sl@0
   396
	TCharFormat format1;
sl@0
   397
	TCharFormat fmtCheck1;
sl@0
   398
	format1.iFontPresentation.iUnderline = EUnderlineOff;
sl@0
   399
	// initilizing format attributes
sl@0
   400
	TCharFormatMask mask1;
sl@0
   401
	TCharFormatMask mask2;	
sl@0
   402
	fmtCheck1.iFontPresentation.iUnderline = EUnderlineOff;	
sl@0
   403
	//Test document containing test string and cursor positioned at end of doc.
sl@0
   404
	//Turn on bold formatting and subsequent characters are in bold format.
sl@0
   405
	doc->InsertL(0, KText1);
sl@0
   406
	format1.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
sl@0
   407
	mask1.SetAttrib(EAttFontStrokeWeight);//Set Bold
sl@0
   408
	doc->ApplyCharFormatL(format1, mask1, doc->DocumentLength(),0);//Apply Bold	
sl@0
   409
	doc->InsertL(19, KText2);//These should be in bold
sl@0
   410
	mask1.ClearAttrib(EAttFontStrokeWeight);//Remove bold formatting
sl@0
   411
	doc->GetCharFormat(format1, mask1, 0, 1);//Get format of characters at position 0
sl@0
   412
	doc->GetCharFormat(fmtCheck1, mask2, 22, 1);//Get format of characters at position 22
sl@0
   413
	test(format1.iFontSpec.iFontStyle.StrokeWeight()!=EStrokeWeightBold);
sl@0
   414
	test(fmtCheck1.iFontSpec.iFontStyle.StrokeWeight()==EStrokeWeightBold);	
sl@0
   415
	//tidyup
sl@0
   416
	CleanupStack::PopAndDestroy(doc);
sl@0
   417
	CleanupStack::PopAndDestroy(charLayer);
sl@0
   418
	CleanupStack::PopAndDestroy(paraLayer);	
sl@0
   419
	__UHEAP_MARKEND;
sl@0
   420
	}
sl@0
   421
sl@0
   422
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   423
void CRichTest<S,T,D>::TestRemSpecParaFmtL()
sl@0
   424
//
sl@0
   425
// Test the RemoveSpecificParaFormatL() method of CRichText.
sl@0
   426
//
sl@0
   427
	{
sl@0
   428
	__UHEAP_MARK;
sl@0
   429
	INFO_PRINTF1(_L("RemoveSpecificParaFormatL()"));
sl@0
   430
	CParaFormat* globalParaFormat=CParaFormat::NewLC();
sl@0
   431
	TParaFormatMask globalParaMask;
sl@0
   432
	globalParaFormat->iHorizontalAlignment=CParaFormat::ECenterAlign;
sl@0
   433
	globalParaMask.SetAttrib(EAttAlignment);
sl@0
   434
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL(globalParaFormat,globalParaMask);
sl@0
   435
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   436
	CRichText* doc=NULL;
sl@0
   437
	TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer,D));
sl@0
   438
	if (ret!=KErrNone)
sl@0
   439
		{
sl@0
   440
		test(doc==NULL);
sl@0
   441
		User::Leave(ret);
sl@0
   442
		}
sl@0
   443
	TPtrC buf1(_L("Here is paragraph one text."));
sl@0
   444
	doc->InsertL(0,buf1);
sl@0
   445
	//
sl@0
   446
	// Apply specific paragraph format
sl@0
   447
	CParaFormat* format=CParaFormat::NewLC();
sl@0
   448
	TParaFormatMask mask;
sl@0
   449
	format->iHorizontalAlignment=CParaFormat::ERightAlign;
sl@0
   450
	mask.SetAttrib(EAttAlignment);
sl@0
   451
	doc->ApplyParaFormatL(format,mask,1,1);
sl@0
   452
	CParaFormat* sensedFormat=CParaFormat::NewLC();
sl@0
   453
	doc->GetParagraphFormatL(sensedFormat,0);
sl@0
   454
	test(sensedFormat->iHorizontalAlignment==CParaFormat::ERightAlign);
sl@0
   455
	//
sl@0
   456
	// Remove specific para format and test
sl@0
   457
	doc->RemoveSpecificParaFormatL(0,1);
sl@0
   458
	doc->GetParagraphFormatL(sensedFormat,0);
sl@0
   459
	test(sensedFormat->iHorizontalAlignment==CParaFormat::ECenterAlign);
sl@0
   460
	//
sl@0
   461
	CleanupStack::PopAndDestroy(3); // the 2 para formats.
sl@0
   462
	delete doc;
sl@0
   463
	delete paraLayer;
sl@0
   464
	delete charLayer;
sl@0
   465
sl@0
   466
	__UHEAP_MARKEND;
sl@0
   467
	}
sl@0
   468
sl@0
   469
sl@0
   470
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   471
void CRichTest<S,T,D>::TestDelete1L()
sl@0
   472
//
sl@0
   473
// Test the DeleteL() method of CRichText.
sl@0
   474
//
sl@0
   475
	{
sl@0
   476
	__UHEAP_MARK;
sl@0
   477
	INFO_PRINTF1(_L("DeleteL()"));
sl@0
   478
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   479
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   480
	CRichText* doc=NULL;
sl@0
   481
	TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer,D));
sl@0
   482
	if (ret!=KErrNone)
sl@0
   483
		{
sl@0
   484
		test(doc==NULL);
sl@0
   485
		User::Leave(ret);
sl@0
   486
		}
sl@0
   487
	TPtrC buf1(_L("Here is paragraph one text."));
sl@0
   488
	TPtrC buf2(_L("Here is paragraph one text."));
sl@0
   489
	doc->InsertL(0,buf1);
sl@0
   490
	doc->InsertL(doc->DocumentLength(),EParagraphDelimiter);
sl@0
   491
	doc->InsertL(doc->DocumentLength(),buf2);
sl@0
   492
	//
sl@0
   493
	// Apply formatting
sl@0
   494
	TCharFormat applyFormat;
sl@0
   495
	TCharFormatMask applyMask;
sl@0
   496
	applyFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
sl@0
   497
	applyMask.SetAttrib(EAttFontStrokeWeight);
sl@0
   498
	doc->ApplyCharFormatL(applyFormat,applyMask,8,28);
sl@0
   499
	//
sl@0
   500
	// Now try the delete - should end up with a single shared paragraph!!!
sl@0
   501
	doc->DeleteL(8,28);
sl@0
   502
	TInt documentLength=doc->DocumentLength();
sl@0
   503
	test(documentLength==27);
sl@0
   504
	//
sl@0
   505
	delete doc;
sl@0
   506
	delete paraLayer;
sl@0
   507
	delete charLayer;
sl@0
   508
sl@0
   509
	__UHEAP_MARKEND;
sl@0
   510
	}
sl@0
   511
sl@0
   512
sl@0
   513
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   514
void CRichTest<S,T,D>::TestDelete2L()
sl@0
   515
//
sl@0
   516
// Test the DeleteL() method of CRichText.
sl@0
   517
// Deleting the paragraph delimiter between 2 paras of constant character format, but of varying
sl@0
   518
// paragraph formats.
sl@0
   519
//
sl@0
   520
	{
sl@0
   521
	__UHEAP_MARK;
sl@0
   522
	INFO_PRINTF1(_L("DeleteL()"));
sl@0
   523
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   524
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   525
	CRichText* doc=NULL;
sl@0
   526
	TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer,D));
sl@0
   527
	if (ret!=KErrNone)
sl@0
   528
		{
sl@0
   529
		test(doc==NULL);
sl@0
   530
		User::Leave(ret);
sl@0
   531
		}
sl@0
   532
	TPtrC buf1(_L("A"));
sl@0
   533
	TPtrC buf2(_L("B"));
sl@0
   534
	TPtrC buf3(_L("C"));
sl@0
   535
	doc->InsertL(0,buf1);
sl@0
   536
	doc->InsertL(doc->DocumentLength(),EParagraphDelimiter);
sl@0
   537
	doc->InsertL(doc->DocumentLength(),buf2);
sl@0
   538
	doc->InsertL(doc->DocumentLength(),EParagraphDelimiter);
sl@0
   539
	doc->InsertL(doc->DocumentLength(),buf3);
sl@0
   540
	//
sl@0
   541
	// Apply formatting
sl@0
   542
	CParaFormat* applyFormat=CParaFormat::NewLC();
sl@0
   543
	TParaFormatMask applyMask;
sl@0
   544
	applyFormat->iHorizontalAlignment=CParaFormat::ERightAlign;
sl@0
   545
	applyMask.SetAttrib(EAttAlignment);
sl@0
   546
	//
sl@0
   547
	// Make 1st & 3rd para the same para format, different to para 2.
sl@0
   548
	
sl@0
   549
	doc->ApplyParaFormatL(applyFormat,applyMask,1,1);
sl@0
   550
	doc->ApplyParaFormatL(applyFormat,applyMask,5,1);
sl@0
   551
	CleanupStack::PopAndDestroy();  // para format
sl@0
   552
	//
sl@0
   553
	// Now try the delete - should end up with a single shared paragraph!!!
sl@0
   554
	/*TBool parasMerged=*/doc->DeleteL(3,1);  // delete para 2 delimiter
sl@0
   555
	TInt documentLength=doc->DocumentLength();
sl@0
   556
	test(documentLength==4);
sl@0
   557
	//
sl@0
   558
	delete doc;
sl@0
   559
	delete paraLayer;
sl@0
   560
	delete charLayer;
sl@0
   561
sl@0
   562
	__UHEAP_MARKEND;
sl@0
   563
	}
sl@0
   564
sl@0
   565
sl@0
   566
/**
sl@0
   567
@SYMTestCaseID             SYSLIB-ETEXT-UT-3431
sl@0
   568
@SYMTestCaseDesc          Testing behaviour of functions ApplyCharFormatL() and RemoveSpecificFormatL();
sl@0
   569
    formatting of text including end of document character
sl@0
   570
@SYMTestPriority          High
sl@0
   571
@SYMTestActions         1. format text and compare attribute values for equality
sl@0
   572
                        2. testing for fix of INC097216 whether EOD also formatted
sl@0
   573
                        3. remove formatting of text and compare attribute values for equality
sl@0
   574
                        4. testing for fix of DEF104149 whether EOD also has formatting removed
sl@0
   575
@SYMTestExpectedResults    ApplyCharFormatL() and RemoveSpecificFormatL() apply and remove formatting from
sl@0
   576
    specified range of text including end of document character
sl@0
   577
@SYMDEF                    DEF104149
sl@0
   578
*/
sl@0
   579
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   580
void CRichTest<S,T,D>::TestApplyRemoveCharFormat()
sl@0
   581
    {
sl@0
   582
    __UHEAP_MARK;
sl@0
   583
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-UT-3431 Test ApplyCharFormatL() & RemoveSpecificCharFormat() "));	
sl@0
   584
    CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
   585
    CleanupStack::PushL(paraLayer);
sl@0
   586
    CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
   587
    CleanupStack::PushL(charLayer);
sl@0
   588
    CRichText* doc = CRichText::NewL(paraLayer,charLayer,D);
sl@0
   589
    CleanupStack::PushL(doc);
sl@0
   590
    _LIT(KText1, "Hello there!");
sl@0
   591
    doc->InsertL(0, KText1);
sl@0
   592
    test(doc->DocumentLength()==12);
sl@0
   593
   
sl@0
   594
    // initilizing format (ie.underline) values
sl@0
   595
    TCharFormat formatCheck;
sl@0
   596
    formatCheck.iFontPresentation.iUnderline = EUnderlineOff;
sl@0
   597
    TCharFormat fmatCheck;
sl@0
   598
    formatCheck.iFontPresentation.iUnderline = EUnderlineOff;
sl@0
   599
    TCharFormat format;
sl@0
   600
    format.iFontPresentation.iUnderline = EUnderlineOn;
sl@0
   601
    TCharFormat formatNone;
sl@0
   602
    formatCheck.iFontPresentation.iUnderline = EUnderlineOff;
sl@0
   603
sl@0
   604
    // initilizing format attributes
sl@0
   605
    TCharFormatMask maskCheck;   
sl@0
   606
    TCharFormatMask mask;
sl@0
   607
    mask.SetAttrib(EAttFontUnderline);
sl@0
   608
   
sl@0
   609
    // underline KText1 and compare its attribute values with EUnderlineOn for equality
sl@0
   610
    doc->ApplyCharFormatL(format, mask, 0, 12);   
sl@0
   611
    doc->GetCharFormat(formatCheck, maskCheck, 0, 12);
sl@0
   612
    // testing for fix of INC097216 whether EOD also formatted
sl@0
   613
    doc->GetCharFormat(fmatCheck, maskCheck, 12, 1);
sl@0
   614
    test(format.IsEqual(formatCheck));
sl@0
   615
    test(format.IsEqual(fmatCheck));
sl@0
   616
sl@0
   617
    // remove underlining of KText1 and compare its attribute values with EUnderlineOff for equality
sl@0
   618
    doc->RemoveSpecificCharFormatL(0, 12);
sl@0
   619
    doc->GetCharFormat(formatCheck, maskCheck, 0, 12);
sl@0
   620
    // testing for fix of INC104149 whether EOD also has formatting removed
sl@0
   621
    doc->GetCharFormat(fmatCheck, maskCheck, 12, 1);
sl@0
   622
    test(formatCheck.IsEqual(formatNone));
sl@0
   623
    test(fmatCheck.IsEqual(formatNone));
sl@0
   624
   
sl@0
   625
    CleanupStack::PopAndDestroy(doc);
sl@0
   626
    CleanupStack::PopAndDestroy(charLayer);
sl@0
   627
    CleanupStack::PopAndDestroy(paraLayer);   
sl@0
   628
    __UHEAP_MARKEND;
sl@0
   629
    }
sl@0
   630
sl@0
   631
sl@0
   632
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   633
void CRichTest<S,T,D>::TestResetL()
sl@0
   634
//
sl@0
   635
// Test the Reset() method of CRichText.
sl@0
   636
//
sl@0
   637
	{
sl@0
   638
	__UHEAP_MARK;
sl@0
   639
	INFO_PRINTF1(_L("Reset()"));
sl@0
   640
	CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
sl@0
   641
	CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
sl@0
   642
	CRichText* doc=NULL;
sl@0
   643
	TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer,D));
sl@0
   644
	if (ret!=KErrNone)
sl@0
   645
		{
sl@0
   646
		test(doc==NULL);
sl@0
   647
		User::Leave(ret);
sl@0
   648
		}
sl@0
   649
	TPtrC buf1(_L("Here is paragraph one text."));
sl@0
   650
	TPtrC buf2(_L("And here is that of the second paragraph"));
sl@0
   651
	doc->InsertL(0,buf1);
sl@0
   652
	doc->InsertL(doc->DocumentLength(),EParagraphDelimiter);
sl@0
   653
	doc->InsertL(doc->DocumentLength(),buf2);
sl@0
   654
	//
sl@0
   655
	doc->Reset();
sl@0
   656
	test(doc->ParagraphCount()==1);
sl@0
   657
	doc->Reset();
sl@0
   658
	test(doc->ParagraphCount()==1);
sl@0
   659
	doc->Reset();
sl@0
   660
	test(doc->ParagraphCount()==1);
sl@0
   661
	delete doc;
sl@0
   662
	delete paraLayer;
sl@0
   663
	delete charLayer;
sl@0
   664
sl@0
   665
	__UHEAP_MARKEND;
sl@0
   666
	}
sl@0
   667
	
sl@0
   668
sl@0
   669
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   670
void CRichTest<S,T,D>::DoPML()
sl@0
   671
//
sl@0
   672
// Use PML source translator to produce a RichText component.
sl@0
   673
//
sl@0
   674
	{
sl@0
   675
 	__UHEAP_MARK;
sl@0
   676
	INFO_PRINTF1(_L("Checking PML sourced RichText Component"));
sl@0
   677
 	// set filename
sl@0
   678
	TFileName theFileName=_L("z:\\test\\app-framework\\etext\\t_rich1a.pml");
sl@0
   679
	// Parse PML
sl@0
   680
	CParser* myParser=NULL;
sl@0
   681
	CRichText* richTextDoc=NULL;
sl@0
   682
	TRAPD(ret, myParser=CParser::NewL());
sl@0
   683
	CleanupStack::PushL(myParser);
sl@0
   684
	TRAP(ret, richTextDoc=myParser->ParseL(theFileName));
sl@0
   685
	CleanupStack::PushL(richTextDoc);
sl@0
   686
	CParaFormatLayer* pl = const_cast<CParaFormatLayer*>(
sl@0
   687
		richTextDoc->GlobalParaFormatLayer());
sl@0
   688
	CleanupStack::PushL(pl);
sl@0
   689
	CCharFormatLayer* cl = const_cast<CCharFormatLayer*>(
sl@0
   690
		richTextDoc->GlobalCharFormatLayer());
sl@0
   691
	CleanupStack::PushL(cl);
sl@0
   692
	
sl@0
   693
	TInt paraCount=richTextDoc->ParagraphCount();
sl@0
   694
	test(paraCount==2);
sl@0
   695
	TBool hasMarkupData=richTextDoc->HasMarkupData();
sl@0
   696
	test(hasMarkupData==EFalse);
sl@0
   697
sl@0
   698
	// Testing overloaded senseChars - looking at the indeterminate mask.
sl@0
   699
//	TCharFormat charFormat;	TCharFormatMask charFormatMask;
sl@0
   700
//	richTextDoc->GetCharFormat(0,17,charFormat,charFormatMask);
sl@0
   701
//	test(charFormatMask==0);
sl@0
   702
sl@0
   703
//	richTextDoc->GetCharFormat(17,10,charFormat,charFormatMask);
sl@0
   704
sl@0
   705
	CParaFormat* paraFormat = 0;
sl@0
   706
	paraFormat=CParaFormat::NewLC();
sl@0
   707
	TParaFormatMask paraFormatMask;
sl@0
   708
	richTextDoc->GetParaFormatL(paraFormat,paraFormatMask,0,2);
sl@0
   709
	richTextDoc->GetParaFormatL(paraFormat,paraFormatMask,17,3);  // All para 2 and just para1
sl@0
   710
sl@0
   711
	CleanupStack::PopAndDestroy(paraFormat);
sl@0
   712
	CleanupStack::PopAndDestroy(cl);
sl@0
   713
	CleanupStack::PopAndDestroy(pl);
sl@0
   714
	CleanupStack::PopAndDestroy(richTextDoc);
sl@0
   715
	CleanupStack::PopAndDestroy(myParser);
sl@0
   716
	__UHEAP_MARKEND;
sl@0
   717
	}
sl@0
   718
sl@0
   719
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   720
void CRichTest<S,T,D>::TestForDefectTET5DHEWWL()
sl@0
   721
//
sl@0
   722
// Test the CRichTextIndex::InsertL() for defect TET-5DHEWW which 
sl@0
   723
// should not be present from 15/10/02.
sl@0
   724
//
sl@0
   725
	{
sl@0
   726
	__UHEAP_MARK;
sl@0
   727
sl@0
   728
	INFO_PRINTF1(_L("Testing for the presence of defect TET-5DHEWW"));
sl@0
   729
sl@0
   730
	CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
   731
	CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
   732
sl@0
   733
	CRichText* doc = NULL;
sl@0
   734
	TRAPD(ret, doc = CRichText::NewL(paraLayer,charLayer,D));
sl@0
   735
	if (ret!=KErrNone)
sl@0
   736
		{
sl@0
   737
		test(doc==NULL);
sl@0
   738
		User::Leave(ret);
sl@0
   739
		}
sl@0
   740
sl@0
   741
	TPtrC buf1(_L("sometext "));
sl@0
   742
	doc->InsertL(0, buf1);
sl@0
   743
sl@0
   744
	TCharFormat charFormat12(_L("Times New Roman"), 240);
sl@0
   745
	TCharFormatMask charMask12;
sl@0
   746
	charMask12.SetAttrib(EAttFontHeight);
sl@0
   747
	doc->SetInsertCharFormatL(charFormat12, charMask12, doc->DocumentLength());
sl@0
   748
sl@0
   749
	TPtrC buf2(_L("sometext "));
sl@0
   750
	doc->InsertL(doc->DocumentLength(), buf2);
sl@0
   751
sl@0
   752
	doc->SetInsertCharFormatL(charFormat12, charMask12, doc->DocumentLength());
sl@0
   753
	doc->InsertL(doc->DocumentLength(), EParagraphDelimiter);
sl@0
   754
sl@0
   755
	// Defect present in CRichTextIndex if test executable crashes/panics on the 
sl@0
   756
	// previous line on a debug build. Should this test method return normally then 
sl@0
   757
	// the EText library used does not contain the defect.
sl@0
   758
sl@0
   759
	TInt docLen = doc->DocumentLength();
sl@0
   760
	test(docLen==19);
sl@0
   761
sl@0
   762
	INFO_PRINTF1(_L("RTEST:                        Test PASSED - defect not present!\n"));
sl@0
   763
sl@0
   764
	delete doc;
sl@0
   765
	delete paraLayer;
sl@0
   766
	delete charLayer;
sl@0
   767
sl@0
   768
	__UHEAP_MARKEND;
sl@0
   769
	}
sl@0
   770
sl@0
   771
// CRichTextIndex::GetParaFormatL doesn't set TParaFormatMask correctly
sl@0
   772
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   773
void CRichTest<S,T,D>::TestForDefectINC010183L()
sl@0
   774
	{
sl@0
   775
	__UHEAP_MARK;
sl@0
   776
sl@0
   777
	INFO_PRINTF1(_L("Testing for the presence of defect INC010183"));
sl@0
   778
sl@0
   779
	CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
   780
	CleanupStack::PushL(paraLayer);
sl@0
   781
	CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
   782
	CleanupStack::PushL(charLayer);
sl@0
   783
sl@0
   784
	CRichText* doc = CRichText::NewL(paraLayer,charLayer,D);
sl@0
   785
	CleanupStack::PushL(doc);
sl@0
   786
sl@0
   787
	TPtrC buf1(_L("para1\x2029para2\x2029para3"));
sl@0
   788
	doc->InsertL(0, buf1);
sl@0
   789
sl@0
   790
	CParaFormat* pFormat = CParaFormat::NewLC();
sl@0
   791
	pFormat->iBullet = new(ELeave) TBullet;
sl@0
   792
	pFormat->iBullet->iHeightInTwips = 1;
sl@0
   793
	TParaFormatMask pMask;
sl@0
   794
	pMask.SetAttrib(EAttBullet);
sl@0
   795
sl@0
   796
	doc->ApplyParaFormatL(pFormat, pMask, 8, 1);
sl@0
   797
	doc->GetParaFormatL(pFormat, pMask, 0, 14);
sl@0
   798
sl@0
   799
	// test that the bullet's "varies" flag is set.
sl@0
   800
	test(pMask.AttribIsSet(EAttBullet));
sl@0
   801
sl@0
   802
	doc->GetParaFormatL(pFormat, pMask, 7, 6);
sl@0
   803
sl@0
   804
	// test that the bullet's "varies" flag is set.
sl@0
   805
	test(pMask.AttribIsSet(EAttBullet));
sl@0
   806
sl@0
   807
	CleanupStack::PopAndDestroy(pFormat);
sl@0
   808
	CleanupStack::PopAndDestroy(doc);
sl@0
   809
	CleanupStack::PopAndDestroy(charLayer);
sl@0
   810
	CleanupStack::PopAndDestroy(paraLayer);
sl@0
   811
sl@0
   812
	__UHEAP_MARKEND;
sl@0
   813
	}
sl@0
   814
sl@0
   815
sl@0
   816
// CRichTextIndex::InsertL, Insertion of zero-length text should not cancel the pending new TCharFormat.
sl@0
   817
// This test sets the Strikethrough option on and applies it to a zero length section of text before checking
sl@0
   818
// the format has been applied correctly. Then it inputs 3 characters and checks to see if the format of these
sl@0
   819
// characters also has the character format applied to them.  
sl@0
   820
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   821
void CRichTest<S,T,D>::TestForDefectINC064162L()
sl@0
   822
	{
sl@0
   823
	__UHEAP_MARK;
sl@0
   824
	
sl@0
   825
	INFO_PRINTF1(_L("INC064162 - Testing insertion of zero-length text doesn't cancel the pending TCharFormat"));
sl@0
   826
	
sl@0
   827
	TInt length = 3;	
sl@0
   828
	TPtrC bufPtrLetterNone(_L(""));
sl@0
   829
	TPtrC bufPtrLettersABC(_L("ABC"));
sl@0
   830
	
sl@0
   831
	CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
   832
	CleanupStack::PushL(paraLayer);
sl@0
   833
	CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
   834
	CleanupStack::PushL(charLayer);
sl@0
   835
sl@0
   836
	CRichText* doc = CRichText::NewL(paraLayer,charLayer,D);
sl@0
   837
	CleanupStack::PushL(doc);
sl@0
   838
sl@0
   839
	TCharFormat cFormatCheck;
sl@0
   840
	cFormatCheck.iFontPresentation.iStrikethrough = EStrikethroughOff;
sl@0
   841
	
sl@0
   842
	TCharFormat cFormat;
sl@0
   843
	cFormat.iFontPresentation.iStrikethrough = EStrikethroughOn;
sl@0
   844
sl@0
   845
	TCharFormatMask cMaskCheck;
sl@0
   846
	
sl@0
   847
	TCharFormatMask cMask;
sl@0
   848
	cMask.SetAttrib(EAttFontStrikethrough);
sl@0
   849
	
sl@0
   850
	// Applying the strikethrough format on a zero length section of text.
sl@0
   851
	doc->ApplyCharFormatL(cFormat,cMask,0,0);	
sl@0
   852
sl@0
   853
	doc->InsertL(0, bufPtrLetterNone);
sl@0
   854
	
sl@0
   855
	doc->GetCharFormat(cFormatCheck, cMaskCheck,0,0);
sl@0
   856
sl@0
   857
	// testing the format of the empty buf
sl@0
   858
	test(cFormat.IsEqual(cFormatCheck));
sl@0
   859
sl@0
   860
	doc->InsertL(0, bufPtrLettersABC);	
sl@0
   861
	doc->GetCharFormat(cFormatCheck, cMaskCheck,0,length);
sl@0
   862
	
sl@0
   863
	// testing the format of the 3 characters
sl@0
   864
	test(cFormat.IsEqual(cFormatCheck));
sl@0
   865
 
sl@0
   866
	CleanupStack::PopAndDestroy(doc);
sl@0
   867
	CleanupStack::PopAndDestroy(charLayer);
sl@0
   868
	CleanupStack::PopAndDestroy(paraLayer);
sl@0
   869
sl@0
   870
	__UHEAP_MARKEND;
sl@0
   871
	}
sl@0
   872
sl@0
   873
sl@0
   874
sl@0
   875
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   876
TBool CRichTest<S,T,D>::TestAndRunStageL(TInt aStage)
sl@0
   877
	{
sl@0
   878
	_LIT(KSomeText, "Text\x2029par ");
sl@0
   879
	_LIT(KSomeTextPlus3, "Text\x2029par \x2029z ");
sl@0
   880
	TCharFormat format;
sl@0
   881
	TCharFormatMask mask;
sl@0
   882
	TCharFormatMask varies;
sl@0
   883
	switch (aStage)
sl@0
   884
		{
sl@0
   885
	case 0:
sl@0
   886
		Reset();
sl@0
   887
		return ETrue;
sl@0
   888
	case 1:
sl@0
   889
		test(DocumentLength() == 0);
sl@0
   890
		InsertL(0, KSomeText);
sl@0
   891
		return ETrue;
sl@0
   892
	case 2:
sl@0
   893
			{
sl@0
   894
			TBuf<100> buf;
sl@0
   895
			test(DocumentLength() == KSomeText().Length());
sl@0
   896
			Extract(buf, 0, KSomeText().Length());
sl@0
   897
			test(0 == buf.Compare(KSomeText));
sl@0
   898
			TCharFormat format0;
sl@0
   899
			GetCharFormat(format, varies, 0, KSomeText().Length());
sl@0
   900
			test(varies.IsNull());		// format should not vary
sl@0
   901
			test(format.IsEqual(format0));
sl@0
   902
			}
sl@0
   903
		// Set an insert char format for font height 100
sl@0
   904
		mask.SetAttrib(EAttFontHeight);
sl@0
   905
		format.iFontSpec.iHeight = 100;
sl@0
   906
		SetInsertCharFormatL(format, mask, 9);
sl@0
   907
		return ETrue;
sl@0
   908
	case 3:
sl@0
   909
		test(DocumentLength() == KSomeText().Length());
sl@0
   910
		// Insert a carriage return and cancel the insert char format.
sl@0
   911
		// This stands in place of moving the cursor away from the
sl@0
   912
		// insertion point and back again.
sl@0
   913
		InsertL(9, 0x2029);
sl@0
   914
		return ETrue;
sl@0
   915
	case 4:
sl@0
   916
		test(DocumentLength() == KSomeText().Length() + 1);
sl@0
   917
		CancelInsertCharFormat();
sl@0
   918
		return ETrue;
sl@0
   919
	case 5:
sl@0
   920
		test(DocumentLength() == KSomeText().Length() + 1);
sl@0
   921
		GetCharFormat(format, varies, 0, 9);
sl@0
   922
			{
sl@0
   923
			TCharFormat format0;
sl@0
   924
			test(format.IsEqual(format0));
sl@0
   925
			test(varies.IsNull());
sl@0
   926
			}
sl@0
   927
		GetCharFormat(format, varies, 9, 1);
sl@0
   928
		test(varies.IsNull());
sl@0
   929
		test(format.iFontSpec.iHeight == 100);
sl@0
   930
		// Insert a character after the new carriage return. It should
sl@0
   931
		// have height 100. This is what the defect INC038479 is
sl@0
   932
		// complaining about. In fact it is a long-standing problem,
sl@0
   933
		// long assumed to be too difficult to solve in a reasonable
sl@0
   934
		// time.
sl@0
   935
		InsertL(10, 'z');
sl@0
   936
		return ETrue;
sl@0
   937
	case 6:
sl@0
   938
		test(DocumentLength() == KSomeText().Length() + 2);
sl@0
   939
		GetCharFormat(format, varies, 9, 2);
sl@0
   940
		test(varies.IsNull());
sl@0
   941
		test(format.iFontSpec.iHeight == 100);
sl@0
   942
		// Insert a space. This prepares us for checking for a regression
sl@0
   943
		// that was introduced then fixed in the fix for INC038479.
sl@0
   944
		InsertL(11, ' ');
sl@0
   945
		return ETrue;
sl@0
   946
	case 7:
sl@0
   947
			{
sl@0
   948
			TBuf<100> buf;
sl@0
   949
			test(DocumentLength() == KSomeTextPlus3().Length());
sl@0
   950
			Extract(buf, 0, KSomeTextPlus3().Length());
sl@0
   951
			test(0 == buf.Compare(KSomeTextPlus3));
sl@0
   952
			TCharFormat format0;
sl@0
   953
			GetCharFormat(format, varies, 0, KSomeText().Length());
sl@0
   954
			test(varies.IsNull());		// format should not vary across the original bit
sl@0
   955
			test(format.IsEqual(format0));
sl@0
   956
			GetCharFormat(format, varies, KSomeText().Length(), 3);
sl@0
   957
			test(format.iFontSpec.iHeight == 100);
sl@0
   958
			test(varies.IsNull());
sl@0
   959
			}
sl@0
   960
		// Set a new insert character format for bold
sl@0
   961
		mask.SetAttrib(EAttFontStrokeWeight);
sl@0
   962
		format.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
sl@0
   963
		SetInsertCharFormatL(format, mask, 9);
sl@0
   964
		return ETrue;
sl@0
   965
	case 8:
sl@0
   966
		// and unset the insert character format again
sl@0
   967
		mask.SetAttrib(EAttFontStrokeWeight);
sl@0
   968
		format.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightNormal);
sl@0
   969
		SetInsertCharFormatL(format, mask, 9);
sl@0
   970
		return ETrue;
sl@0
   971
	case 9:
sl@0
   972
		test(DocumentLength() == KSomeTextPlus3().Length());
sl@0
   973
		// Add a carriage return.
sl@0
   974
		InsertL(12, 0x2029);
sl@0
   975
		return ETrue;
sl@0
   976
	case 10:
sl@0
   977
		test(DocumentLength() == KSomeTextPlus3().Length() + 1);
sl@0
   978
		GetCharFormat(format, varies, KSomeTextPlus3().Length(), 1);
sl@0
   979
		test(varies.IsNull());
sl@0
   980
		test(format.iFontSpec.iFontStyle.StrokeWeight() == EStrokeWeightNormal);
sl@0
   981
		return EFalse;
sl@0
   982
	default:
sl@0
   983
		return ETrue;
sl@0
   984
		}
sl@0
   985
	}
sl@0
   986
sl@0
   987
template<class S, class T,CEditableText::TDocumentStorage D>
sl@0
   988
void CRichTest<S,T,D>::TestErrorCondition(TInt aStage, TInt aError)
sl@0
   989
	{
sl@0
   990
	// No leaves possible except NoMemory.
sl@0
   991
	test(aError == KErrNoMemory);
sl@0
   992
	// Stage 4 should not leave at all.
sl@0
   993
	test(aStage != 4);
sl@0
   994
	}
sl@0
   995
sl@0
   996
sl@0
   997
template<class S, class T, CEditableText::TDocumentStorage D>
sl@0
   998
void TestClassesL()
sl@0
   999
	{
sl@0
  1000
	__UHEAP_MARK;
sl@0
  1001
sl@0
  1002
	CParaFormatLayer* paraLayer = CParaFormatLayer::NewL();
sl@0
  1003
	CleanupStack::PushL(paraLayer);
sl@0
  1004
	CCharFormatLayer* charLayer = CCharFormatLayer::NewL();
sl@0
  1005
	CleanupStack::PushL(charLayer);
sl@0
  1006
	CRichTest<S, T, D>* doc = CRichTest<S, T, D>::NewL(paraLayer, charLayer);
sl@0
  1007
	CleanupStack::PushL(doc);
sl@0
  1008
sl@0
  1009
	doc->DoFlatTests();
sl@0
  1010
	doc->TestResetL();
sl@0
  1011
	doc->TestDelete1L();
sl@0
  1012
	doc->TestDelete2L();
sl@0
  1013
	doc->TestApplyRemoveCharFormat();
sl@0
  1014
	doc->TestRemSpecParaFmtL();
sl@0
  1015
	doc->DoPML();
sl@0
  1016
	doc->TestForDefectTET5DHEWWL();
sl@0
  1017
	doc->TestForDefectINC010183L();
sl@0
  1018
	doc->TestForDefectINC064162L();
sl@0
  1019
	doc->TestForDefectINC109323L();
sl@0
  1020
	INFO_PRINTF1(_L("INC038479 - Email editor: font settings made at doc end can be lost and returned to default"));
sl@0
  1021
	// Also tests SetInsetCharFormat more thoroughly.
sl@0
  1022
	doc->RunAtomicTest();
sl@0
  1023
sl@0
  1024
	CleanupStack::PopAndDestroy(doc);
sl@0
  1025
	CleanupStack::PopAndDestroy(charLayer);
sl@0
  1026
	CleanupStack::PopAndDestroy(paraLayer);
sl@0
  1027
sl@0
  1028
	__UHEAP_MARKEND;
sl@0
  1029
	}
sl@0
  1030
sl@0
  1031
void DoTestsL()
sl@0
  1032
	{
sl@0
  1033
	INFO_PRINTF1(_L("CRichText - Flat"));
sl@0
  1034
	TestClassesL<TText,TPtrC,CEditableText::EFlatStorage>();
sl@0
  1035
	INFO_PRINTF1(_L("CRichText - Segmented"));
sl@0
  1036
	TestClassesL<TText,TPtrC,CEditableText::ESegmentedStorage>();
sl@0
  1037
	
sl@0
  1038
	}
sl@0
  1039
sl@0
  1040
	
sl@0
  1041
LOCAL_C void setupCleanup()
sl@0
  1042
//
sl@0
  1043
// Initialise the cleanup stack.
sl@0
  1044
//
sl@0
  1045
	{
sl@0
  1046
sl@0
  1047
	TheTrapCleanup=CTrapCleanup::New();
sl@0
  1048
	TRAPD(r,\
sl@0
  1049
		{\
sl@0
  1050
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
  1051
			CleanupStack::PushL((TAny*)1);\
sl@0
  1052
		test(r==KErrNone);\
sl@0
  1053
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
  1054
		});
sl@0
  1055
	}
sl@0
  1056
sl@0
  1057
CT_RICH1A::CT_RICH1A()
sl@0
  1058
    {
sl@0
  1059
    SetTestStepName(KTestStep_T_RICH1A);
sl@0
  1060
    pTestStep = this;
sl@0
  1061
    }
sl@0
  1062
sl@0
  1063
TVerdict CT_RICH1A::doTestStepL()
sl@0
  1064
    {
sl@0
  1065
    SetTestStepResult(EFail);
sl@0
  1066
sl@0
  1067
    setupCleanup();
sl@0
  1068
    INFO_PRINTF1(_L("CRichText Document"));
sl@0
  1069
    __UHEAP_MARK;
sl@0
  1070
    
sl@0
  1071
    TRAPD(ret,DoTestsL());
sl@0
  1072
    
sl@0
  1073
    __UHEAP_MARKEND;
sl@0
  1074
    delete TheTrapCleanup;
sl@0
  1075
    
sl@0
  1076
    if (ret == KErrNone)
sl@0
  1077
        {
sl@0
  1078
        SetTestStepResult(EPass);
sl@0
  1079
        }
sl@0
  1080
sl@0
  1081
    return TestStepResult();
sl@0
  1082
    }