os/textandloc/textrendering/texthandling/ttext/T_RTCLIP.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 "TSTCLIPB.H"
    20 #include <txtrich.h>
    21 #include "TXTMRTSR.H"
    22 #include <s32mem.h>
    23 #include <s32file.h>
    24 #include <gdi.h>
    25 #include <conpics.h>
    26 #include "../incp/T_PMLPAR.H"
    27 #include "T_RTCLIP.h"
    28 
    29 LOCAL_D CTestStep *pTestStep = NULL;
    30 #define test(cond)											\
    31 	{														\
    32 	TBool __bb = (cond);									\
    33 	pTestStep->TEST(__bb);									\
    34 	if (!__bb)												\
    35 		{													\
    36 		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    37 		User::Leave(1);										\
    38 		}													\
    39 	}
    40 #undef INFO_PRINTF1
    41 #undef INFO_PRINTF2
    42 // copy from tefexportconst.h
    43 #define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    44 #define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    45 
    46 
    47 #define UNUSED_VAR(a) a = a
    48 
    49 const TInt KTestCleanupStack=0x80;
    50 
    51 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
    52 LOCAL_D CRichText* TheText=NULL;
    53 LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
    54 LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
    55 LOCAL_D CClipboard* TheWriteBoard=NULL;
    56 LOCAL_D CClipboard* TheReadBoard=NULL;
    57 LOCAL_D TFileName TheFileName = _L("z:\\test\\app-framework\\etext\\rtclipb.pml");
    58 LOCAL_D RFs TheSession;
    59 
    60 
    61 class TDemStoreResolver : public MRichTextStoreResolver
    62 	{
    63 public:
    64 	TDemStoreResolver(CStreamStore& aStore);
    65 	//
    66 	virtual const CStreamStore& StreamStoreL(TInt aPos)const;
    67 private:
    68 	CStreamStore* iStore;
    69 	};
    70 
    71 
    72 TDemStoreResolver::TDemStoreResolver(CStreamStore& aStore)
    73 : iStore(&aStore)
    74 	{}
    75 
    76 const CStreamStore& TDemStoreResolver::StreamStoreL(TInt /*aPos*/)const
    77 	{return *iStore;}
    78 
    79 
    80 LOCAL_C void OpenWriteClipboardLC()
    81 // Initialize a new write clipboard, after
    82 // deleting any existing read clipboard.
    83 //
    84 	{
    85 	if (TheReadBoard)
    86 		{
    87 		CleanupStack::PopAndDestroy();
    88 		TheReadBoard=NULL;
    89 		TheSession.Close();
    90 		}
    91 	User::LeaveIfError(TheSession.Connect());
    92 	TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
    93 	}
    94 
    95 
    96 LOCAL_C void OpenReadClipboardLC()
    97 // Initialize a new read clipboard, after
    98 // deleting any existing write clipboard.
    99 //
   100 	{
   101 	if (TheWriteBoard)
   102 		{
   103 		TheWriteBoard->CommitL();
   104 		CleanupStack::PopAndDestroy();
   105 		TheWriteBoard=NULL;
   106 		TheSession.Close();
   107 		}
   108 	User::LeaveIfError(TheSession.Connect());
   109 	TheReadBoard=CClipboard::NewForReadingLC(TheSession);
   110 	}
   111 
   112 
   113 LOCAL_C void ParseRichTextDocumentLC()
   114 //
   115 	{
   116 	CParser* myParser=CParser::NewL();
   117 	CleanupStack::PushL(myParser);
   118 	TheText=myParser->ParseL(TheFileName);
   119 	TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer();
   120 	TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer();
   121 	CleanupStack::PopAndDestroy();
   122 	//
   123 	CleanupStack::PushL(TheText);
   124 	}
   125 
   126 
   127 LOCAL_C void testRichTextCutPaste1a()
   128 //
   129 //
   130 	{
   131 	INFO_PRINTF1(_L("Cut & paste, preserving formatting into non-empty document"));
   132 	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");
   133 	ParseRichTextDocumentLC();
   134 	TheText->DeleteL(0,TheText->DocumentLength());
   135 	TPtrC buf1(_L("ab"));
   136 	TheText->InsertL(0,buf1);
   137 	TheText->InsertL(1,CEditableText::EParagraphDelimiter);
   138 	TheReadBoard=NULL;
   139 	TheWriteBoard=NULL;
   140 	OpenWriteClipboardLC();
   141 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   142 	TheText->DeleteL(1,2);  // Just leaves the single character 'a' as content.
   143 	//
   144 	OpenReadClipboardLC();
   145 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   146 	//
   147 	CleanupStack::PopAndDestroy();  // Last clipboard object
   148 	CleanupStack::PopAndDestroy();  // TheTextObject
   149 	delete TheGlobalParaLayer;
   150 	delete TheGlobalCharLayer;
   151 	}
   152 
   153 _LIT(KOutputFile, "c:\\etext\\t_rtclip.doc");
   154 LOCAL_C void testRichTextCutPaste1b()
   155 //
   156 //
   157 	{
   158 	TheReadBoard=NULL;
   159 	TheWriteBoard=NULL;
   160 	INFO_PRINTF1(_L("Copy to Clipboard with pictures, with missing host applications."));
   161 	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");  // dummy - just to get global layers
   162 	ParseRichTextDocumentLC();
   163 	TheText->Reset();
   164 	//
   165 	CXzeDoor* pic1=CXzeDoor::NewL('1',EFalse);  // never fail to detach
   166 	CXzePicture* pic2=CXzePicture::NewL('2');
   167 	CXzeDoor* pic3=CXzeDoor::NewL('1',EFalse);  // never fail to detach
   168 	CXzePicture* pic4=CXzePicture::NewL('2');
   169 	//
   170 	TPictureHeader hdr1;
   171 	TPictureHeader hdr2;
   172 	TPictureHeader hdr3;
   173 	TPictureHeader hdr4;
   174 	//
   175 	hdr1.iPictureType=KUidXzeDoorType;
   176 	hdr2.iPictureType=KUidXzePictureType;
   177 	hdr3.iPictureType=KUidXzeDoorType;
   178 	hdr4.iPictureType=KUidXzePictureType;
   179 	//
   180 	hdr1.iPicture=pic1;
   181 	hdr2.iPicture=pic2;
   182 	hdr3.iPicture=pic3;
   183 	hdr4.iPicture=pic4;
   184 	//
   185 	TheText->InsertL(0,hdr4);
   186 	TheText->InsertL(0,hdr3);
   187 	TheText->InsertL(0,hdr2);
   188 	TheText->InsertL(0,hdr1);
   189 	test(TheText->PictureCount()==4);
   190 	//
   191 	// Now save and reload this to get the pictures into a deferred picture store.
   192 	RFs session;
   193 	session.Connect();
   194 	session.Delete(KOutputFile);
   195 	session.MkDirAll(KOutputFile);
   196 	CFileStore* store=CDirectFileStore::CreateLC(session,KOutputFile,EFileRead|EFileWrite);
   197 	store->SetTypeL(KDirectFileStoreLayoutUid);
   198 	TStreamId id=KNullStreamId;
   199 	TRAPD(r,	
   200 	id=TheText->StoreL(*store));
   201 		test(r==KErrNone);
   202 	//
   203 	TheText->Reset();
   204 	TheText->RestoreL(*store,id);
   205 	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   206 	TDemStoreResolver resolver(*store);
   207 	TheText->SetPictureFactory(factory,&resolver);
   208 	//
   209 	// Now the tests.
   210 	OpenWriteClipboardLC();
   211 	TInt documentLength=TheText->DocumentLength();
   212 	TRAP(r,
   213 	TheText->DetachFromStoreL(CPicture::EDetachFull,0,documentLength));
   214 	if (r==KErrNotSupported)
   215 	    INFO_PRINTF1(_L("    SIMULATION: Some picture data has been removed\n"));
   216 	else if (r!=KErrNone)
   217 		User::Leave(r);
   218 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,documentLength);
   219 	//
   220 	TheText->Reset();
   221 	TheText->SetPictureFactory(factory,&resolver);
   222 	documentLength=TheText->DocumentLength();
   223 	test(documentLength==0);
   224 	OpenReadClipboardLC();
   225 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),documentLength);
   226 		test(TheText->DocumentLength()==4);
   227 		test(TheText->ParagraphCount()==1);
   228 		test(TheText->PictureCount()==4);
   229 	/////////////////////////////////////////////////////////////////////////////
   230 	CleanupStack::PopAndDestroy();  // Last clipboard object
   231 	CleanupStack::PopAndDestroy();  // store
   232 	CleanupStack::PopAndDestroy();  // TheTextObject
   233 	delete factory;
   234 	delete TheGlobalParaLayer;
   235 	delete TheGlobalCharLayer;
   236 	session.Close();
   237 	}
   238 	
   239 
   240 	LOCAL_C void testRichTextCutPaste1()
   241 //
   242 //
   243 	{
   244 	INFO_PRINTF1(_L("Cut&Paste - preserving formatting"));
   245 	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");
   246 	ParseRichTextDocumentLC();
   247 	//
   248 	CRichText* copiedText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
   249 	////////////////////////////////////////////////////////////////////////////
   250 	TheReadBoard=NULL;
   251 	TheWriteBoard=NULL;
   252 	//
   253 	// Scenario 1
   254 	INFO_PRINTF1(_L("multiple partial phrases"));
   255 	OpenWriteClipboardLC();
   256 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),36,73);
   257 	OpenReadClipboardLC();
   258 	copiedText->Reset();
   259 	TInt pasted=0;
   260 	TRAPD(ret,
   261 	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0));
   262 	test(ret==KErrNone);
   263 	test(pasted==73);
   264 	test(copiedText->DocumentLength()==73);
   265 	test(copiedText->ParagraphCount()==3);
   266 	//
   267 	// Scenario 2
   268 	INFO_PRINTF1(_L("multiple whole phrases"));
   269 	OpenWriteClipboardLC();
   270 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),51,60);
   271 	copiedText->Reset();
   272 	OpenReadClipboardLC();
   273 	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   274 	test(pasted==60);
   275 	test(copiedText->DocumentLength()==60);
   276 	test(copiedText->ParagraphCount()==3);
   277 	//
   278 	// Scenario 3
   279 	INFO_PRINTF1(_L("single middle portion of a phrase"));
   280 	OpenWriteClipboardLC();
   281 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),53,2);
   282 	copiedText->Reset();
   283 	OpenReadClipboardLC();
   284 	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   285 	test(pasted==2);
   286 	test(copiedText->DocumentLength()==2);
   287 	test(copiedText->ParagraphCount()==1);
   288 	//
   289 	// Scenario 4
   290 	INFO_PRINTF1(_L("multiple phrases, starting/ending on shared paragraphs"));
   291 	OpenWriteClipboardLC();
   292 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,140);
   293 	copiedText->Reset();
   294 	OpenReadClipboardLC();
   295 	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   296 	test(pasted==140);
   297 	test(copiedText->DocumentLength()==140);
   298 	test(copiedText->ParagraphCount()==5);
   299 
   300 	//
   301 	// Scenario 5
   302 	INFO_PRINTF1(_L("zero phrases"));
   303 	OpenWriteClipboardLC();
   304 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),70,10);
   305 	copiedText->Reset();
   306 	OpenReadClipboardLC();
   307 	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   308 	test(pasted==10);
   309 	test(copiedText->DocumentLength()==10);
   310 	test(copiedText->ParagraphCount()==1);
   311 
   312 	//
   313 	CleanupStack::PopAndDestroy();  // Last clipboard object
   314 	CleanupStack::PopAndDestroy();  // TheTextObject
   315 	delete copiedText;
   316 	delete TheGlobalParaLayer;
   317 	delete TheGlobalCharLayer;
   318 	
   319 	}
   320 
   321 
   322 /**
   323 @SYMTestCaseID          SYSLIB-ETEXT-CT-4001
   324 @SYMTestCaseDesc        Pasted final paragraph formatting should match copied final paragraph
   325                         formatting.
   326 @SYMTestPriority        High
   327 @SYMTestActions         Enter three paragraphs into an empty document with the last paragraph
   328                         *not* terminated by a paragraph delimiter.  Apply some custom
   329                         formatting to the last paragraph then copy and paste all of the text
   330                         into a new empty document.
   331 @SYMTestExpectedResults The formatting in the pasted final paragraph should match the copied.
   332 @SYMDEF                 INC115783
   333 */
   334 LOCAL_C void testRichTextCutPaste2()
   335 	{
   336 	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-CT-4001 Pasted final paragraph format should match copied final paragraph format "));	
   337 	TheReadBoard=NULL;
   338 	TheWriteBoard=NULL;
   339 	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");  // dummy - just to get global layers
   340 	ParseRichTextDocumentLC();
   341 	TheText->Reset();
   342 	TheText->InsertL(0,_L("\x2029\x2029SomeData")); //3 paras, last has no ending para delimiter);
   343 
   344 	//create paragraph formatting (yellow bkg, indent & bullets)
   345 	CParaFormat* paraFormatIn = CParaFormat::NewLC();
   346 	paraFormatIn->iBullet=new(ELeave)TBullet;  
   347 	paraFormatIn->iBullet->iHeightInTwips=240;
   348 	paraFormatIn->iFillColor = 0xffffff00;
   349 	paraFormatIn->iIndentInTwips = 600;
   350 	TParaFormatMask paraFormatMask;
   351 	paraFormatMask.SetAttrib(EAttBullet);
   352 	paraFormatMask.SetAttrib(EAttFillColor);
   353 	paraFormatMask.SetAttrib(EAttIndent);
   354 
   355 	TheText->ApplyParaFormatL(paraFormatIn,paraFormatMask,3,0); //Apply format to last para only
   356 	
   357 	OpenWriteClipboardLC();
   358 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   359 
   360 	TheText->Reset();
   361 	test(TheText->DocumentLength()==0);
   362 	OpenReadClipboardLC();
   363 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   364 	test(TheText->DocumentLength()==_L("\x2029\x2029SomeData").Length());
   365 	test(TheText->ParagraphCount()==3);
   366 	
   367 	CParaFormat* paraFormatOut = CParaFormat::NewLC();
   368 	TheText->GetParagraphFormatL(paraFormatOut,3);
   369 	
   370 	test(paraFormatOut->IsEqual(*paraFormatIn,paraFormatMask));// in and out should match
   371 
   372 	CleanupStack::PopAndDestroy(4);
   373 	delete TheGlobalParaLayer;
   374 	delete TheGlobalCharLayer;
   375 	}
   376 
   377 
   378 LOCAL_C void testRichTextCutPaste3()
   379 // 
   380 //
   381     {
   382 	INFO_PRINTF1(_L("Cutting paragraph of constant character formatting"));
   383 	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb3.pml");
   384 	ParseRichTextDocumentLC();
   385 	//
   386 	TheReadBoard=NULL;
   387 	TheWriteBoard=NULL;
   388 	//
   389 	INFO_PRINTF1(_L("Copying to clipboard"));
   390 	OpenWriteClipboardLC();
   391 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),4,3);
   392 	//
   393 	CleanupStack::PopAndDestroy();  // Last clipboard object
   394 	CleanupStack::PopAndDestroy();  // TheTextObject
   395 	delete TheGlobalParaLayer;
   396 	delete TheGlobalCharLayer;
   397 	
   398 	}
   399 
   400 
   401 
   402 LOCAL_C void testRichTextCutPaste()
   403 // 
   404 //
   405     {
   406 	INFO_PRINTF1(_L("Cut&Paste - with Rich Text"));
   407 	ParseRichTextDocumentLC();
   408 	OpenWriteClipboardLC();
   409 	INFO_PRINTF1(_L("Copy zero-length text to the clipboard"));
   410 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0);
   411 
   412 	OpenReadClipboardLC();
   413 	INFO_PRINTF1(_L("Paste from empty clipboard"));
   414 	TInt err=0;
   415 	TRAPD(ret,
   416 	err=TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()));
   417     UNUSED_VAR(ret);
   418 	if (err==KErrNotFound)
   419 	    INFO_PRINTF1(_L("        No recognised data to paste or clipboard empty\n\r"));
   420 	TInt fieldCount=TheText->FieldCount();
   421 	test(fieldCount==0);
   422 	////////////////////////////////////////////////////////////////////////////
   423 	INFO_PRINTF1(_L("Paste into empty RichText"));
   424 	TheText->Reset();
   425 	TheText->InsertL(TheText->DocumentLength(),_L("SomeData"));
   426 	OpenWriteClipboardLC();
   427 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   428 	TheText->Reset();
   429 		test(TheText->DocumentLength()==0);
   430 	OpenReadClipboardLC();
   431 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   432 		test(TheText->DocumentLength()==_L("SomeData").Length());
   433 		test(TheText->ParagraphCount()==1);
   434 		fieldCount=TheText->FieldCount();
   435 		test(fieldCount==0);
   436 	/////////////////////////////////////////////////////////////////////////////
   437 	INFO_PRINTF1(_L("Pasting text only - no paragraph delimiter"));
   438 	TheText->Reset();
   439 	TheText->InsertL(0,_L("the  end"));
   440 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   441 	test(TheText->DocumentLength()==16);
   442 	//////////////////////////////////////////////////////////////////////////
   443 	INFO_PRINTF1(_L("Paste @ start (pos=0)"));
   444 	TheText->Reset();
   445 	TheText->InsertL(TheText->DocumentLength(),_L("SomeData"));
   446 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   447 		test(TheText->DocumentLength()==_L("SomeDataSomeData").Length());
   448 		test(TheText->ParagraphCount()==1);
   449 		fieldCount=TheText->FieldCount();
   450 		test(fieldCount==0);
   451 	////////////////////////////////////////////////////////////////////////////
   452 	INFO_PRINTF1(_L("Paste @ end   (DocumentLength())"));
   453 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   454 		test(TheText->DocumentLength()==_L("SomeDataSomeDataSomeData").Length());
   455 		test(TheText->ParagraphCount()==1);
   456 		fieldCount=TheText->FieldCount();
   457 		test(fieldCount==0);
   458 	////////////////////////////////////////////////////////////////////////////
   459 	INFO_PRINTF1(_L("Paste @ middle"));
   460 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   461 	fieldCount=TheText->FieldCount();
   462 		test(fieldCount==0);
   463 		TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData"));
   464 		test(TheText->DocumentLength()==buf.Length());
   465 		buf.Append(CEditableText::EParagraphDelimiter);
   466 		test(TheText->Read(0)==buf);
   467 		test(TheText->ParagraphCount()==1);
   468 	/////////////////////////////////////////////////////////////////////////////
   469 
   470 	/////////////////////////////////////////////////////////////////////////////
   471 	INFO_PRINTF1(_L("Pasting rich text inbetween 2 pictures"));
   472 	TheText->Reset();
   473 	//
   474 	CXzePicture* pic1=CXzePicture::NewL('1');
   475 	CXzePicture* pic2=CXzePicture::NewL('2');
   476 	//
   477 	TPictureHeader hdr1;
   478 	TPictureHeader hdr2;
   479 	//
   480 	hdr1.iPictureType=KUidXzePictureType;
   481 	hdr2.iPictureType=KUidXzePictureType;
   482 	//
   483 	hdr1.iPicture=pic1;
   484 	hdr2.iPicture=pic2;
   485 	//
   486 	TheText->InsertL(0,hdr2);
   487 	TheText->InsertL(0,hdr1);
   488 	//
   489 	OpenWriteClipboardLC();
   490 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   491 	//
   492 	OpenReadClipboardLC();
   493 
   494 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   495 		test(TheText->DocumentLength()==4);
   496 		test(TheText->ParagraphCount()==1);
   497 	/////////////////////////////////////////////////////////////////////////////
   498 	INFO_PRINTF1(_L("Pasting rich text with para delimiters"));
   499 	TheText->InsertL(1,CEditableText::EParagraphDelimiter);
   500 	//
   501 	OpenWriteClipboardLC();
   502 	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   503 	//
   504 	OpenReadClipboardLC();
   505 	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   506 		test(TheText->DocumentLength()==10);
   507 		test(TheText->ParagraphCount()==3);
   508 		
   509 	/////////////////////////////////////////////////////////////////////////////	
   510 	CleanupStack::PopAndDestroy();  // Last clipboard object
   511 	CleanupStack::PopAndDestroy();  // TheTextObject
   512 	delete TheGlobalParaLayer;
   513 	delete TheGlobalCharLayer;
   514 	}
   515 
   516 
   517 LOCAL_C void setupCleanup()
   518 //
   519 // Initialise the cleanup stack.
   520 //
   521     {
   522 
   523 	TheTrapCleanup=CTrapCleanup::New();
   524 	TRAPD(r,\
   525 		{\
   526 		for (TInt i=KTestCleanupStack;i>0;i--)\
   527 			CleanupStack::PushL((TAny*)1);\
   528 		test(r==KErrNone);\
   529 		CleanupStack::Pop(KTestCleanupStack);\
   530 		});
   531 	}
   532 
   533 
   534 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   535 	{
   536 	RFs fsSession;
   537 	TInt err = fsSession.Connect();
   538 	if(err == KErrNone)
   539 		{
   540 		TEntry entry;
   541 		if(fsSession.Entry(aFullName, entry) == KErrNone)
   542 			{
   543 			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   544 			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   545 			if(err != KErrNone) 
   546 				{
   547 				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   548 				}
   549 			err = fsSession.Delete(aFullName);
   550 			if(err != KErrNone) 
   551 				{
   552 				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   553 				}
   554 			}
   555 		fsSession.Close();
   556 		}
   557 	else
   558 		{
   559 		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   560 		}
   561 	}
   562 
   563 CT_RTCLIP::CT_RTCLIP()
   564     {
   565     SetTestStepName(KTestStep_T_RTCLIP);
   566     pTestStep = this;
   567     }
   568 
   569 TVerdict CT_RTCLIP::doTestStepL()
   570     {
   571     SetTestStepResult(EFail);
   572 
   573     INFO_PRINTF1(_L("Cut & Paste"));
   574     
   575     __UHEAP_MARK;
   576     setupCleanup();
   577 
   578     TRAPD(r1, testRichTextCutPaste());
   579     TRAPD(r2, testRichTextCutPaste1());
   580     TRAPD(r3, testRichTextCutPaste1a());
   581     TRAPD(r4, testRichTextCutPaste1b());
   582     TRAPD(r5, testRichTextCutPaste2());
   583     TRAPD(r6, testRichTextCutPaste3());
   584 
   585     delete TheTrapCleanup;
   586     
   587     __UHEAP_MARKEND;
   588     
   589     ::DeleteDataFile(KOutputFile);      //deletion of data files must be before call to End() - DEF047652
   590 
   591     if (r1 == KErrNone && r2 == KErrNone && r3 == KErrNone && r4 == KErrNone && r5 == KErrNone && r6 == KErrNone)
   592         {
   593         SetTestStepResult(EPass);
   594         }
   595 
   596     return TestStepResult();
   597     }