os/textandloc/textrendering/texthandling/ttext/T_CONVS1.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 <txtglobl.h>
sl@0
    20
#include <txtfmlyr.h>
sl@0
    21
#include <s32mem.h>
sl@0
    22
#include <s32file.h>
sl@0
    23
#include <flddef.h>
sl@0
    24
#include <fldbltin.h>
sl@0
    25
#include "T_CONVS1.h"
sl@0
    26
sl@0
    27
#define test(cond)											\
sl@0
    28
	{														\
sl@0
    29
	TBool __bb = (cond);									\
sl@0
    30
	TEST(__bb);												\
sl@0
    31
	if (!__bb)												\
sl@0
    32
		{													\
sl@0
    33
		ERR_PRINTF1(_L("ERROR: Test Failed"));				\
sl@0
    34
		User::Leave(1);										\
sl@0
    35
		}													\
sl@0
    36
	}
sl@0
    37
sl@0
    38
const TInt KTestCleanupStack=0x20;
sl@0
    39
sl@0
    40
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    41
sl@0
    42
LOCAL_D	TPtrC bigBuf(_L("This is a very big buffer indeed, containing text and special characters,\
sl@0
    43
 big enough to fill a segment of an editable text component that employs segmented storage"));
sl@0
    44
sl@0
    45
////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    46
class TTestFieldFactoryCONVS1 : public MTextFieldFactory
sl@0
    47
	{
sl@0
    48
public:
sl@0
    49
	// from MTextFieldFactory
sl@0
    50
	virtual CTextField* NewFieldL(TUid aFieldType); 
sl@0
    51
	// Creates a field of the type specified
sl@0
    52
	// Returns NULL if it does not recognise/support the field type
sl@0
    53
	};
sl@0
    54
sl@0
    55
CTextField* TTestFieldFactoryCONVS1::NewFieldL(TUid aFieldType)
sl@0
    56
// Creates a field (in aHeader) of the type specified in aHeader
sl@0
    57
// 
sl@0
    58
	{
sl@0
    59
	CTextField* field=NULL;
sl@0
    60
	if (aFieldType==KDateTimeFieldUid)
sl@0
    61
		field = (CTextField*)new(ELeave) CDateTimeField();
sl@0
    62
	return field;
sl@0
    63
	}
sl@0
    64
/////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    65
sl@0
    66
_LIT(KOutputFile, "c:\\etext\\t_convs1.tst");
sl@0
    67
template <class T>
sl@0
    68
void CT_CONVS1::testStoreRestoreL(T& aCopy,const T& aOriginal)
sl@0
    69
// Test document persistance.
sl@0
    70
//
sl@0
    71
    {
sl@0
    72
	// set up the store
sl@0
    73
	RFs	theFs;
sl@0
    74
	theFs.Connect();
sl@0
    75
	//
sl@0
    76
	theFs.Delete(KOutputFile);
sl@0
    77
	theFs.MkDirAll(KOutputFile);
sl@0
    78
	CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
sl@0
    79
	CleanupStack::PushL(theStore);
sl@0
    80
	theStore->SetTypeL(KDirectFileStoreLayoutUid);
sl@0
    81
	//
sl@0
    82
	// store the original
sl@0
    83
	TStreamId id(0);
sl@0
    84
	TRAPD(ret,id=aOriginal.StoreL(*theStore));
sl@0
    85
		test(ret==KErrNone);
sl@0
    86
	//
sl@0
    87
	// restore into the copy
sl@0
    88
	TRAP(ret,aCopy.RestoreL(*theStore,id));
sl@0
    89
		test(ret==KErrNone);
sl@0
    90
	//
sl@0
    91
	// tidy up
sl@0
    92
	CleanupStack::PopAndDestroy();  // theStore
sl@0
    93
	theFs.Close();
sl@0
    94
    }
sl@0
    95
sl@0
    96
TInt CT_CONVS1::IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal)
sl@0
    97
//
sl@0
    98
// Tests for equality of plain text components.
sl@0
    99
// Takes account of multiple segments of a segmented text component.
sl@0
   100
//
sl@0
   101
	{
sl@0
   102
	TInt lengthOfOriginal=aOriginal->DocumentLength();
sl@0
   103
	TInt lengthOfCopy=aCopy->DocumentLength();
sl@0
   104
	test(lengthOfOriginal==lengthOfCopy);
sl@0
   105
//
sl@0
   106
	TPtrC copy,orig;
sl@0
   107
//
sl@0
   108
	TInt lengthRead=0;
sl@0
   109
	while(lengthRead<=lengthOfOriginal)
sl@0
   110
		{
sl@0
   111
		copy.Set((aCopy->Read(lengthRead)));
sl@0
   112
		orig.Set((aOriginal->Read(lengthRead)));
sl@0
   113
		for (TInt offset=0; offset<orig.Length(); offset++)
sl@0
   114
			test(copy[offset]==orig[offset]);
sl@0
   115
		lengthRead+=orig.Length();
sl@0
   116
		}
sl@0
   117
	test(lengthRead==lengthOfOriginal+1);
sl@0
   118
	INFO_PRINTF1(_L("Restored plain text component matches original"));
sl@0
   119
	TInt copyFieldCount=aCopy->FieldCount();
sl@0
   120
	TInt origFieldCount=aOriginal->FieldCount();
sl@0
   121
	test(copyFieldCount==origFieldCount);
sl@0
   122
	return 1;
sl@0
   123
	}
sl@0
   124
sl@0
   125
sl@0
   126
TInt CT_CONVS1::DocsEqual(const CGlobalText* aCopy,const CGlobalText* aOrig)
sl@0
   127
//
sl@0
   128
//
sl@0
   129
//
sl@0
   130
	{
sl@0
   131
	test(IsEqual(aCopy,aOrig));
sl@0
   132
	return 1;
sl@0
   133
	}
sl@0
   134
sl@0
   135
sl@0
   136
void CT_CONVS1::GenerateGlobalTextL()
sl@0
   137
//
sl@0
   138
// Create a global text documnet.
sl@0
   139
//
sl@0
   140
	{
sl@0
   141
//	Set up the character format layer.
sl@0
   142
	CCharFormatLayer* cl1=CCharFormatLayer::NewL();
sl@0
   143
	TCharFormat charFormat;	TCharFormatMask charMask;
sl@0
   144
	charMask.ClearAll();
sl@0
   145
	charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);	charMask.SetAttrib(EAttFontStrokeWeight);
sl@0
   146
	charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic);	charMask.SetAttrib(EAttFontPosture);
sl@0
   147
	charFormat.iFontPresentation.iUnderline=EUnderlineOn;	charMask.SetAttrib(EAttFontUnderline);
sl@0
   148
	cl1->SetL(charFormat,charMask);
sl@0
   149
	charMask.ClearAll();
sl@0
   150
//	Set up the paragraph format layer.
sl@0
   151
	CParaFormatLayer* l1=CParaFormatLayer::NewL();
sl@0
   152
	CParaFormat* paraFormat=CParaFormat::NewL();	TParaFormatMask paraMask;
sl@0
   153
	paraMask.ClearAll();
sl@0
   154
	TTabStop tab1,tab2;
sl@0
   155
	tab1.iTwipsPosition=5000;	tab2.iTwipsPosition=5001;
sl@0
   156
	tab1.iType=TTabStop::ERightTab;	tab2.iType=TTabStop::ECenteredTab;
sl@0
   157
	paraFormat->StoreTabL(tab1);
sl@0
   158
	paraFormat->StoreTabL(tab2);
sl@0
   159
	paraMask.SetAttrib(EAttTabStop);
sl@0
   160
	paraFormat->iLeftMarginInTwips=666; paraMask.SetAttrib(EAttLeftMargin);
sl@0
   161
	l1->SetL(paraFormat,paraMask);
sl@0
   162
	paraMask.ClearAll();
sl@0
   163
//	Now create the global text component.
sl@0
   164
	CGlobalText* globalDoc=CGlobalText::NewL(l1,cl1,CEditableText::ESegmentedStorage);
sl@0
   165
	globalDoc->InsertL(0,bigBuf);
sl@0
   166
//	Now create the global text that will be the restored one.
sl@0
   167
	CCharFormatLayer* cr1=CCharFormatLayer::NewL();
sl@0
   168
	TCharFormat ff;TCharFormatMask mm;cr1->SetL(ff,mm);
sl@0
   169
	CParaFormatLayer* r1=CParaFormatLayer::NewL();
sl@0
   170
	TParaFormatMask nn; r1->SetL((CParaFormat*)NULL,nn);
sl@0
   171
	CGlobalText* restoredDoc=CGlobalText::NewL(r1,cr1,CEditableText::ESegmentedStorage);
sl@0
   172
//	Store a text field in the global text.
sl@0
   173
	TTestFieldFactoryCONVS1 factory;
sl@0
   174
	globalDoc->SetFieldFactory(&factory);
sl@0
   175
	restoredDoc->SetFieldFactory(&factory);
sl@0
   176
	CTextField* field=NULL;
sl@0
   177
	TRAPD(ret,
sl@0
   178
	field=factory.NewFieldL(KDateTimeFieldUid));
sl@0
   179
 	test(ret==KErrNone);
sl@0
   180
	TRAP(ret,
sl@0
   181
	globalDoc->InsertFieldL(0,field,KDateTimeFieldUid));
sl@0
   182
	test(ret==KErrNone);
sl@0
   183
//	And do the streaming/restore.
sl@0
   184
	INFO_PRINTF1(_L("Storing global text with field record"));
sl@0
   185
	INFO_PRINTF1(_L("Restoring global text"));
sl@0
   186
	testStoreRestoreL(*restoredDoc,*globalDoc);
sl@0
   187
	test(DocsEqual(restoredDoc,globalDoc));
sl@0
   188
//	Now clean up.
sl@0
   189
	TInt restoredCharChain=cr1->ChainCount();
sl@0
   190
	TInt restoredParaChain=r1->ChainCount();
sl@0
   191
	CCharFormatLayer* chCurrent=cr1;
sl@0
   192
	CCharFormatLayer* chNext=(CCharFormatLayer*)cr1->SenseBase();
sl@0
   193
	delete chCurrent;
sl@0
   194
	for (TInt loop=0;loop<restoredCharChain-1;loop++)	
sl@0
   195
		{
sl@0
   196
		chCurrent=chNext;
sl@0
   197
		chNext=(CCharFormatLayer*)chCurrent->SenseBase();
sl@0
   198
		delete chCurrent;
sl@0
   199
		}
sl@0
   200
	CParaFormatLayer* paCurrent=r1;
sl@0
   201
	CParaFormatLayer* paNext=(CParaFormatLayer*)r1->SenseBase();
sl@0
   202
	delete paCurrent ;
sl@0
   203
	for (TInt ploop=0;ploop<restoredParaChain-1;ploop++)	
sl@0
   204
		{
sl@0
   205
		paCurrent=paNext;
sl@0
   206
		paNext=(CParaFormatLayer*)paCurrent->SenseBase();
sl@0
   207
		delete paCurrent;
sl@0
   208
		}
sl@0
   209
	delete l1;
sl@0
   210
	delete cl1;
sl@0
   211
	delete paraFormat;
sl@0
   212
	delete restoredDoc;
sl@0
   213
	delete globalDoc;
sl@0
   214
	}
sl@0
   215
sl@0
   216
sl@0
   217
void CT_CONVS1::setupCleanup()
sl@0
   218
//
sl@0
   219
// Initialise the cleanup stack.
sl@0
   220
//
sl@0
   221
    {
sl@0
   222
sl@0
   223
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   224
	TRAPD(r,\
sl@0
   225
		{\
sl@0
   226
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   227
			CleanupStack::PushL((TAny*)1);\
sl@0
   228
		test(r==KErrNone);\
sl@0
   229
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   230
		});
sl@0
   231
	}
sl@0
   232
sl@0
   233
sl@0
   234
void CT_CONVS1::DeleteDataFile(const TDesC& aFullName)
sl@0
   235
	{
sl@0
   236
	RFs fsSession;
sl@0
   237
	TInt err = fsSession.Connect();
sl@0
   238
	if(err == KErrNone)
sl@0
   239
		{
sl@0
   240
		TEntry entry;
sl@0
   241
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   242
			{
sl@0
   243
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   244
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   245
			if(err != KErrNone) 
sl@0
   246
				{
sl@0
   247
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   248
				}
sl@0
   249
			err = fsSession.Delete(aFullName);
sl@0
   250
			if(err != KErrNone) 
sl@0
   251
				{
sl@0
   252
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   253
				}
sl@0
   254
			}
sl@0
   255
		fsSession.Close();
sl@0
   256
		}
sl@0
   257
	else
sl@0
   258
		{
sl@0
   259
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   260
		}
sl@0
   261
	}
sl@0
   262
sl@0
   263
CT_CONVS1::CT_CONVS1()
sl@0
   264
    {
sl@0
   265
    SetTestStepName(KTestStep_T_CONVS1);
sl@0
   266
    }
sl@0
   267
sl@0
   268
TVerdict CT_CONVS1::doTestStepL()
sl@0
   269
    {
sl@0
   270
    SetTestStepResult(EFail);
sl@0
   271
sl@0
   272
    setupCleanup();
sl@0
   273
    __UHEAP_MARK;
sl@0
   274
sl@0
   275
    INFO_PRINTF1(_L("T_CONVS1 - GlobalText Persistence"));
sl@0
   276
    INFO_PRINTF1(_L("Generate global text"));
sl@0
   277
    INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVS1-0001 "));
sl@0
   278
    TRAPD(error1, GenerateGlobalTextL());
sl@0
   279
sl@0
   280
    __UHEAP_MARKEND;
sl@0
   281
    DeleteDataFile(KOutputFile);  //deletion of data files must be before call to End() - DEF047652
sl@0
   282
    delete TheTrapCleanup;
sl@0
   283
sl@0
   284
    if(error1 == KErrNone)
sl@0
   285
        {
sl@0
   286
        SetTestStepResult(EPass);
sl@0
   287
        }
sl@0
   288
sl@0
   289
    return TestStepResult();
sl@0
   290
    }