os/textandloc/textrendering/texthandling/ttext/T_TRAN.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.
     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 <e32std.h>
    20 #include <e32base.h>
    21 
    22 #include <gdi.h>
    23 #include <conpics.h>
    24 #include <s32file.h>
    25 
    26 #include <txtrich.h>
    27 #include <txtfmlyr.h>
    28 #include "TXTMRTSR.H"
    29 
    30 #include "../incp/T_PMLPAR.H"
    31 //#include "../spml/T_PMLPAR.CPP"
    32 #include "T_TRAN.h"
    33 
    34 LOCAL_D CTestStep *pTestStep = NULL;
    35 #define test(cond)											\
    36 	{														\
    37 	TBool __bb = (cond);									\
    38 	pTestStep->TEST(__bb);									\
    39 	if (!__bb)												\
    40 		{													\
    41 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    42 		User::Leave(1);										\
    43 		}													\
    44 	}
    45 #undef INFO_PRINTF1
    46 #undef INFO_PRINTF2
    47 // copy from tefexportconst.h
    48 #define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    49 #define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    50 
    51 // included in a namespace, to avoid confliction
    52 namespace T_TRAN {
    53 /* this fixes a MSVC link warning */
    54 #ifdef __VC32__
    55 #pragma comment (linker, "/opt:noref") 
    56 #endif
    57 
    58 #define UNUSED_VAR(a) a = a
    59 
    60 const TInt KTestCleanupStack=0x40;
    61 
    62 _LIT(KExportFileName1, "c:\\etext\\t_para.txg");
    63 _LIT(KExportFileName2, "c:\\etext\\t_para2.txg");
    64 
    65 void EnsureFileExists(const TDesC& aName)
    66 	{
    67 	RFs fs;
    68 	fs.Connect();
    69 	fs.MkDirAll(aName);
    70 	RFile file;
    71 	file.Create(fs, aName, EFileRead|EFileWrite);
    72 	file.Close();
    73 	fs.Close();
    74 	}
    75 
    76 class CContainer : public CBase, public MRichTextStoreResolver
    77 	{
    78 public:
    79 	static CContainer* NewL(TFileName aFileName);
    80 	~CContainer();
    81 	//
    82 	// Mixin
    83 	//
    84 	virtual const CStreamStore& StreamStoreL(TInt aPos)const;
    85 	// Methods
    86 	TStreamId StoreL(CStreamStore& aStore)const;
    87 	void RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFctry);
    88 protected:
    89 	CContainer();
    90 	void ConstructL(TFileName aFileName);
    91 public:
    92 	CRichText* iText;
    93 	const CParaFormatLayer* iGlobalParaFormatLayer;
    94 	const CCharFormatLayer* iGlobalCharFormatLayer;
    95 	};
    96 
    97 LOCAL_D CTrapCleanup* TheTrapCleanup;
    98 LOCAL_D RFs TheFs;  // the file server
    99 LOCAL_D RFile TheFile;  // the data file
   100 LOCAL_D CParser* TheParser;
   101 LOCAL_D CContainer* TheContainer;
   102 LOCAL_D CStreamStore* TheDeferredPictureStore;
   103 
   104 CContainer* CContainer::NewL(TFileName aFileName)
   105 // Create new container & set its components.
   106 //
   107 	{
   108 	CContainer* self=new(ELeave) CContainer;
   109 	CleanupStack::PushL(self);
   110 	self->ConstructL(aFileName);
   111 	CleanupStack::Pop();
   112 	return self;
   113 	}
   114 
   115 
   116 CContainer::CContainer()
   117 	{
   118 	}
   119 
   120 
   121 void CContainer::ConstructL(TFileName aFileName)
   122 	{
   123 	TheParser=CParser::NewL();
   124 	CleanupStack::PushL(TheParser);
   125 	iText=TheParser->ParseL(aFileName);
   126 	CleanupStack::PopAndDestroy();
   127 	iGlobalParaFormatLayer=iText->GlobalParaFormatLayer();
   128 	iGlobalCharFormatLayer=iText->GlobalCharFormatLayer();
   129 	}
   130 
   131 
   132 CContainer::~CContainer()
   133 	{
   134 	delete iText;
   135 	delete (CParaFormatLayer*)iGlobalParaFormatLayer;
   136 	delete (CCharFormatLayer*)iGlobalCharFormatLayer;
   137 	}
   138 
   139 
   140 const CStreamStore& CContainer::StreamStoreL(TInt /*aPos*/)const
   141 // Return the deferred picture store.
   142 // In this instance, the deferred picture store does not vary with document position.
   143 //
   144 	{return *TheDeferredPictureStore;}
   145 
   146 
   147 TStreamId CContainer::StoreL(CStreamStore& aStore)const
   148 // Store this component
   149 //
   150 	{
   151 	CStoreMap* map=CStoreMap::NewLC(aStore);
   152 	iText->StoreComponentsL(aStore,*map);
   153 	//
   154 	RStoreWriteStream stream(*map);
   155 	TStreamId id=stream.CreateLC(aStore);
   156 	iGlobalParaFormatLayer->ExternalizeL(stream);
   157 	iGlobalCharFormatLayer->ExternalizeL(stream);
   158 	stream<< *iText;
   159 	stream.CommitL();
   160 	//
   161 	map->Reset();
   162 	CleanupStack::PopAndDestroy(2);
   163 	return id;
   164 	}
   165 
   166 
   167 void CContainer::RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFactory)
   168 // Restore this component
   169 //
   170 	{
   171 	RStoreReadStream stream;
   172 	stream.OpenLC(aStore,aId);
   173 	iGlobalParaFormatLayer=CParaFormatLayer::NewL(stream);
   174 	iGlobalCharFormatLayer=CCharFormatLayer::NewL(stream);
   175 	iText=CRichText::NewL(iGlobalParaFormatLayer,iGlobalCharFormatLayer);
   176 	iText->SetPictureFactory(aFactory,this);
   177 	stream>> *iText;
   178 	//
   179 	CleanupStack::PopAndDestroy();
   180 	//
   181 	iText->RestoreComponentsL(aStore);
   182 	}
   183 
   184 
   185 /*LOCAL_C void testPictureRestorer(TBool aDeferPictureLoad=ETrue)
   186 // Test Picture persistance.
   187 //
   188     {
   189 	//
   190 	TheFs.Connect();
   191 	//
   192 	TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word.doc"),EFileRead|EFileWrite);
   193 	TheDeferredPictureStore=TheStore;
   194 	CleanupStack::PushL(TheStore);
   195 	TheStore->SetTypeL(KDirectFileStoreLayout);
   196 	//
   197 	// Create concrete picture factory.
   198 	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   199 
   200 	TheContainer->iText->Reset();
   201 	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
   202 
   203 	TheContainer->iText->SetPictureFactory(factory,TheContainer);
   204 	// Create some pictures.
   205 	CXzePicture* pic1=CXzePicture::NewL('x');
   206 		CleanupStack::PushL(pic1);
   207 	CXzePicture* pic2=CXzePicture::NewL('z');
   208 		CleanupStack::PushL(pic2);
   209 	CXzePicture* pic3=CXzePicture::NewL('e');
   210 		CleanupStack::PushL(pic3);
   211 	//
   212 	// Create the picture headers
   213 	TPictureHeader hdr1;
   214 	TPictureHeader hdr2;
   215 	TPictureHeader hdr3;
   216 	//
   217 	TSize size;
   218 	pic1->GetSizeInTwips(size);
   219 	hdr1.iPictureType=KUidXzePictureType;
   220 	hdr1.iPicture=pic1;
   221 	hdr2.iPictureType=KUidXzePictureType;
   222 	hdr2.iPicture=pic2;
   223 	hdr3.iPictureType=KUidXzePictureType;
   224 	hdr3.iPicture=pic3;
   225 	//
   226 	// Insert the pictures into the rich text
   227 	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
   228 	test(!hasMarkupData);
   229 	TheContainer->iText->CancelInsertCharFormat();
   230 	TheContainer->iText->InsertL(0,hdr1);
   231 	TheContainer->iText->InsertL(5,hdr2);
   232 	TheContainer->iText->InsertL(7,hdr3);
   233 	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
   234 	TheContainer->iText->CancelInsertCharFormat();
   235 	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
   236 	CleanupStack::Pop(3);
   237 	hasMarkupData=TheContainer->iText->HasMarkupData();
   238 	test(hasMarkupData);
   239 	//
   240 	// High level Store context
   241 	TStreamId id=TheContainer->StoreL(*TheStore);
   242 //
   243 	delete TheContainer->iText;
   244 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   245 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   246 //
   247 //
   248 //	Now restore the container with rich text
   249 	TheContainer->RestoreL(*TheStore,id,factory);
   250 	if (!aDeferPictureLoad)
   251 		TheContainer->iText->LoadAllPicturesNowL();
   252 	//
   253 	hasMarkupData=TheContainer->iText->HasMarkupData();
   254 	test(hasMarkupData);
   255 	test(TheContainer->iText->ParagraphCount()==3);
   256 	test(TheContainer->iText->DocumentLength()==21);
   257 	TPtrC view;
   258 	TCharFormat format;
   259 	CPicture* picture;
   260 	//
   261 	// TEST THE PICTURE HEADERS, DEPENDING ON WHETHER DEFERRED LOADING IS SET OR NOT
   262 	TPictureHeader hdrA=TheContainer->iText->PictureHeader(1);
   263 	test(hdrA.iPictureType==KUidXzePictureType);
   264 	if (aDeferPictureLoad)
   265 		{
   266 		test(hdrA.iPicture.IsId());
   267 		}
   268 	else
   269 		{
   270 		test(hdrA.iPicture!=NULL);
   271 		test(hdrA.iPicture.IsPtr());
   272 		test(((CXzePicture*)hdrA.iPicture.AsPtr())->iLabel=='x');
   273 		}
   274 	TPictureHeader hdrB=TheContainer->iText->PictureHeader(7);
   275 	test(hdrB.iPictureType==KUidXzePictureType);
   276 	if (aDeferPictureLoad)
   277 		{
   278 		test(hdrB.iPicture.IsId());
   279 		}
   280 	else
   281 		{
   282 		test(hdrB.iPicture!=NULL);
   283 		test(hdrB.iPicture.IsPtr());
   284 		test(((CXzePicture*)hdrB.iPicture.AsPtr())->iLabel=='z');
   285 		}
   286 	TPictureHeader hdrC=TheContainer->iText->PictureHeader(9);
   287 	test(hdrC.iPictureType==KUidXzePictureType);
   288 	if (aDeferPictureLoad)
   289 		{
   290 		test(hdrC.iPicture.IsId());
   291 		}
   292 	else
   293 		{
   294 		test(hdrC.iPicture!=NULL);
   295 		test(hdrC.iPicture.IsPtr());
   296 		test(((CXzePicture*)hdrC.iPicture.AsPtr())->iLabel=='e');
   297 		}
   298 	TPictureHeader hdrD=TheContainer->iText->PictureHeader(0);  // This is not a picture character
   299 	test(hdrD.iPictureType==KNullUid);
   300 	test(hdrD.iPicture==NULL);
   301 	TSize dummySize;
   302 	test(hdrD.iSize==dummySize);
   303 	//
   304 	TheContainer->iText->GetChars(view,format,1);
   305 	test(view[0]==CEditableText::EPictureCharacter);
   306 	picture=TheContainer->iText->PictureHandleL(1);
   307 	test(((CXzePicture*)picture)->iLabel=='x');
   308 	
   309 	TheContainer->iText->GetChars(view,format,7);
   310 	test(view[0]==CEditableText::EPictureCharacter);
   311 	picture=TheContainer->iText->PictureHandleL(7);
   312 	test(((CXzePicture*)picture)->iLabel=='z');
   313 	
   314 	TheContainer->iText->GetChars(view,format,9);
   315 	test(view[0]==CEditableText::EPictureCharacter);
   316 	picture=TheContainer->iText->PictureHandleL(9);
   317 	test(((CXzePicture*)picture)->iLabel=='e');
   318 
   319 	delete factory;
   320 	CleanupStack::PopAndDestroy();  // TheStore
   321 	TheFs.Close();
   322     }
   323 
   324 
   325 LOCAL_C void testPictureRestorer2(TBool aAlwaysFailToLoad=EFalse)
   326 // Test Picture persistance.
   327 //
   328     {
   329 	//
   330 	TheFs.Connect();
   331 	//
   332 	TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word1.doc"),EFileRead|EFileWrite);
   333 	TheDeferredPictureStore=TheStore;
   334 	CleanupStack::PushL(TheStore);
   335 	TheStore->SetTypeL(KDirectFileStoreLayout);
   336 	//
   337 	// Create concrete picture factory.
   338 	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   339 
   340 	TheContainer->iText->Reset();
   341 	TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
   342 
   343 	TheContainer->iText->SetPictureFactory(factory,TheContainer);
   344 	// Create some pictures.
   345 	CXzeDoor* pic1=CXzeDoor::NewL('x',aAlwaysFailToLoad);
   346 		CleanupStack::PushL(pic1);
   347 	CXzeDoor* pic2=CXzeDoor::NewL('z',aAlwaysFailToLoad);
   348 		CleanupStack::PushL(pic2);
   349 	CXzePicture* pic3=CXzePicture::NewL('e');  // Control: will always load.
   350 		CleanupStack::PushL(pic3);
   351 	//
   352 	// Create the picture headers
   353 	TPictureHeader hdr1;
   354 	TPictureHeader hdr2;
   355 	TPictureHeader hdr3;
   356 	//
   357 	TSize size;
   358 	pic1->GetSizeInTwips(size);
   359 	hdr1.iPictureType=KUidXzeDoorType;
   360 	hdr1.iPicture=pic1;
   361 	hdr2.iPictureType=KUidXzeDoorType;
   362 	hdr2.iPicture=pic2;
   363 	hdr3.iPictureType=KUidXzePictureType;
   364 	hdr3.iPicture=pic3;
   365 	//
   366 	// Insert the pictures into the rich text
   367 	TBool hasMarkupData=TheContainer->iText->HasMarkupData();
   368 	test(!hasMarkupData);
   369 	TheContainer->iText->CancelInsertCharFormat();
   370 	TheContainer->iText->InsertL(0,hdr1);
   371 	TheContainer->iText->InsertL(5,hdr2);
   372 	TheContainer->iText->InsertL(7,hdr3);
   373 	TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
   374 	TheContainer->iText->CancelInsertCharFormat();
   375 	TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
   376 	CleanupStack::Pop(3);  // pic1,2,3 - ownership transferred to rich text
   377 	hasMarkupData=TheContainer->iText->HasMarkupData();
   378 	test(hasMarkupData);
   379 	//
   380 	// High level Store context - all pictures currently in memory
   381 	TStreamId id=TheContainer->StoreL(*TheStore);
   382 //
   383 	delete TheContainer->iText;
   384 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   385 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   386 //
   387 //
   388 //	Now restore the container with rich text
   389 	TheContainer->RestoreL(*TheStore,id,factory);
   390 //
   391 //
   392 //  Now store the stuff again
   393 	TInt error=TheContainer->iText->LoadAllPicturesNowL();
   394 	if (error==KErrNotFound)
   395 		INFO_PRINTF1(_L("   SIMULATION: Some picture data has been removed as no app could be found."));
   396 //	if (aAlwaysFailToLoad)
   397 //		test(error==KErrNotFound);
   398 //	else
   399 //		test(error==KErrNone);
   400 	id=KNullStreamId;
   401 	TRAP(error,
   402 	id=TheContainer->StoreL(*TheStore));
   403 	test(error==KErrNone);
   404 //
   405 // ...and restore it to check what we have got.
   406 	delete TheContainer->iText;
   407 	delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
   408 	delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
   409     TheContainer->RestoreL(*TheStore,id,factory);
   410 	TInt pictureCount=TheContainer->iText->PictureCount();
   411 	if (aAlwaysFailToLoad)
   412 		test(pictureCount==1);
   413 	else
   414 		test(pictureCount==3);
   415 //
   416 	delete factory;
   417 	CleanupStack::PopAndDestroy();  // TheStore
   418 	TheFs.Close();
   419     }*/
   420 
   421 
   422 LOCAL_C void CompareRichTextL(CRichText *aDoc1,CRichText *aDoc2)
   423 //
   424 	{
   425 	INFO_PRINTF1(_L("Comparing Documents"));
   426 	TInt length;
   427 	TInt num1,num2;
   428  	TInt ii=0,len1,len2,pos1,pos2,oldPos;
   429 
   430 	INFO_PRINTF1(_L("Document Length"));
   431 	length=aDoc1->LdDocumentLength();
   432 	num2=aDoc2->LdDocumentLength();
   433 	test(length==num2);
   434 
   435 	INFO_PRINTF1(_L("Paragraph Count"));
   436 	num1=aDoc1->ParagraphCount();
   437 	num2=aDoc2->ParagraphCount();
   438 	test(num1==num2);
   439 
   440 	INFO_PRINTF1(_L("Paragraph Lengths"));
   441 	pos1=-1;
   442 	oldPos=-2;
   443 	while (pos1>oldPos)
   444 		{
   445 		oldPos=pos1;
   446 		pos1=aDoc1->CharPosOfParagraph(len1,ii);
   447 		pos2=aDoc2->CharPosOfParagraph(len2,ii);
   448 		test(len1==len2);
   449 		test(pos1==pos2);
   450 		ii++;
   451 		}
   452  
   453 	INFO_PRINTF1(_L("Word Count"));
   454 	num1=aDoc1->WordCount();
   455 	num2=aDoc2->WordCount();
   456 	test(num1==num2);
   457 
   458 	INFO_PRINTF1(_L("Characters"));
   459 	TCharFormat format1,format2;
   460 	TPtrC chars1,chars2;
   461 	len1=1;
   462 	ii=0;
   463 	while (ii<=length)
   464 		{
   465 		aDoc1->GetChars(chars1,format1,ii);
   466 		aDoc2->GetChars(chars2,format2,ii);
   467 		len1=Min(chars1.Length(),chars2.Length());
   468 		test(chars1.Left(len1)==chars2.Left(len1));
   469 		test(format1.IsEqual(format2));
   470 		test(format2.IsEqual(format1));
   471 		ii+=len1;
   472 		}
   473 	
   474 	
   475 	}
   476 
   477 
   478 LOCAL_C  void GoL()
   479 // Run the tests
   480 //
   481 	{
   482 	CParaFormatLayer* pLayer=CParaFormatLayer::NewL();
   483 	CCharFormatLayer* cLayer=CCharFormatLayer::NewL();
   484 	CRichText *document=CRichText::NewL(pLayer,cLayer);
   485 	TInt err;
   486 	
   487 	INFO_PRINTF1(_L("Document with single Paragraph"));
   488 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRAN-0001 "));
   489 	{	
   490 	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
   491 	INFO_PRINTF1(_L("Exporting a file by Para"));
   492 	TFileName exportFile=KExportFileName1();
   493 	EnsureFileExists(exportFile);
   494 	TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
   495 	test(err==KErrNone);
   496 	INFO_PRINTF1(_L("Importing a file by Para"));
   497 	document->Reset();
   498 	TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
   499 	test(charsImported>0);
   500 	INFO_PRINTF1(_L("Comparing Result"));
   501 	TRAP(err,CompareRichTextL(TheContainer->iText,document));
   502  	test(err==KErrNone);
   503 	delete TheContainer;
   504 	}
   505 	
   506 	{
   507 	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
   508 	INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
   509 	INFO_PRINTF1(_L("Line Lengths 25,30,...,95"));
   510 	TFileName exportFile=KExportFileName1();
   511 	TInt ii;
   512 	for(ii=25;ii<100;ii+=5)
   513 		{
   514 		INFO_PRINTF1(_L("With next line length"));
   515 		EnsureFileExists(exportFile);
   516 		TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
   517 		test(err==KErrNone);
   518 		document->Reset();
   519 		TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
   520 		test(charsImported>0);
   521 		TRAP(err,CompareRichTextL(TheContainer->iText,document));
   522  		test(err==KErrNone);
   523 		}
   524 	delete TheContainer;
   525 	
   526 	}
   527 
   528 	
   529 	INFO_PRINTF1(_L("Document with two Paragraphs"));
   530 	
   531 	{	
   532 	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para2.pml"));
   533 	INFO_PRINTF1(_L("Exporting a file by Para"));
   534 	TFileName exportFile=KExportFileName2();
   535 	EnsureFileExists(exportFile);
   536 	TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
   537 	test(err==KErrNone);
   538 	INFO_PRINTF1(_L("Importing a file by Para"));
   539 	document->Reset();
   540 	TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
   541 	test(charsImported>0);
   542 	INFO_PRINTF1(_L("Comparing Result"));
   543 	TRAP(err,CompareRichTextL(TheContainer->iText,document));
   544  	test(err==KErrNone);
   545 	delete TheContainer;
   546 	}
   547 	
   548 	{
   549 	TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
   550 	INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
   551 	INFO_PRINTF1(_L("Line Lengths 30,40,...,100"));
   552 	TFileName exportFile=KExportFileName1();
   553 	TInt ii;
   554 	for(ii=30;ii<105;ii+=10)
   555 		{
   556 		INFO_PRINTF1(_L("With next line length"));
   557 		EnsureFileExists(exportFile);
   558 		TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
   559 		test(err==KErrNone);
   560 		document->Reset();
   561 		TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
   562 		test(charsImported>0);
   563 		TRAP(err,CompareRichTextL(TheContainer->iText,document));
   564  		test(err==KErrNone);
   565 		}
   566 	delete TheContainer;
   567 	
   568 	}
   569 
   570 	delete document;
   571 	delete cLayer;
   572 	delete pLayer;
   573 
   574 	
   575 	}
   576 
   577 
   578 LOCAL_C void setupCleanup()
   579 //
   580 // Initialise the cleanup stack.
   581 //
   582     {
   583 
   584 	TheTrapCleanup=CTrapCleanup::New();
   585 	TRAPD(r,\
   586 		{\
   587 		for (TInt i=KTestCleanupStack;i>0;i--)\
   588 			CleanupStack::PushL((TAny*)1);\
   589 		test(r==KErrNone);\
   590 		CleanupStack::Pop(KTestCleanupStack);\
   591 		});
   592 	}
   593 
   594 
   595 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   596 	{
   597 	RFs fsSession;
   598 	TInt err = fsSession.Connect();
   599 	if(err == KErrNone)
   600 		{
   601 		TEntry entry;
   602 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   603 			{
   604 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   605 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   606 			if(err != KErrNone) 
   607 				{
   608 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   609 				}
   610 			err = fsSession.Delete(aFullName);
   611 			if(err != KErrNone) 
   612 				{
   613 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   614 				}
   615 			}
   616 		fsSession.Close();
   617 		}
   618 	else
   619 		{
   620 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   621 		}
   622 	}
   623 }
   624 
   625 CT_TRAN::CT_TRAN()
   626     {
   627     SetTestStepName(KTestStep_T_TRAN);
   628     pTestStep = this;
   629     }
   630 
   631 TVerdict CT_TRAN::doTestStepL()
   632     {
   633     SetTestStepResult(EFail);
   634 
   635     INFO_PRINTF1(_L("Testing Picture Restorer mechanism"));
   636     
   637     __UHEAP_MARK;
   638     T_TRAN::setupCleanup();
   639     TRAPD(r, T_TRAN::GoL());
   640 
   641     delete T_TRAN::TheTrapCleanup;
   642     
   643     __UHEAP_MARKEND;
   644     
   645     T_TRAN::DeleteDataFile(T_TRAN::KExportFileName1);     //deletion of data files must be before call to End() - DEF047652
   646     T_TRAN::DeleteDataFile(T_TRAN::KExportFileName2); 
   647     
   648     if (r == KErrNone)
   649         {
   650         SetTestStepResult(EPass);
   651         }
   652 
   653     return TestStepResult();
   654     }