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