os/textandloc/textrendering/texthandling/ttext/T_RTCLIP.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/ttext/T_RTCLIP.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,597 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#include "TSTCLIPB.H"
    1.23 +#include <txtrich.h>
    1.24 +#include "TXTMRTSR.H"
    1.25 +#include <s32mem.h>
    1.26 +#include <s32file.h>
    1.27 +#include <gdi.h>
    1.28 +#include <conpics.h>
    1.29 +#include "../incp/T_PMLPAR.H"
    1.30 +#include "T_RTCLIP.h"
    1.31 +
    1.32 +LOCAL_D CTestStep *pTestStep = NULL;
    1.33 +#define test(cond)											\
    1.34 +	{														\
    1.35 +	TBool __bb = (cond);									\
    1.36 +	pTestStep->TEST(__bb);									\
    1.37 +	if (!__bb)												\
    1.38 +		{													\
    1.39 +		pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed"));	\
    1.40 +		User::Leave(1);										\
    1.41 +		}													\
    1.42 +	}
    1.43 +#undef INFO_PRINTF1
    1.44 +#undef INFO_PRINTF2
    1.45 +// copy from tefexportconst.h
    1.46 +#define INFO_PRINTF1(p1)        pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
    1.47 +#define INFO_PRINTF2(p1, p2)    pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
    1.48 +
    1.49 +
    1.50 +#define UNUSED_VAR(a) a = a
    1.51 +
    1.52 +const TInt KTestCleanupStack=0x80;
    1.53 +
    1.54 +LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
    1.55 +LOCAL_D CRichText* TheText=NULL;
    1.56 +LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
    1.57 +LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
    1.58 +LOCAL_D CClipboard* TheWriteBoard=NULL;
    1.59 +LOCAL_D CClipboard* TheReadBoard=NULL;
    1.60 +LOCAL_D TFileName TheFileName = _L("z:\\test\\app-framework\\etext\\rtclipb.pml");
    1.61 +LOCAL_D RFs TheSession;
    1.62 +
    1.63 +
    1.64 +class TDemStoreResolver : public MRichTextStoreResolver
    1.65 +	{
    1.66 +public:
    1.67 +	TDemStoreResolver(CStreamStore& aStore);
    1.68 +	//
    1.69 +	virtual const CStreamStore& StreamStoreL(TInt aPos)const;
    1.70 +private:
    1.71 +	CStreamStore* iStore;
    1.72 +	};
    1.73 +
    1.74 +
    1.75 +TDemStoreResolver::TDemStoreResolver(CStreamStore& aStore)
    1.76 +: iStore(&aStore)
    1.77 +	{}
    1.78 +
    1.79 +const CStreamStore& TDemStoreResolver::StreamStoreL(TInt /*aPos*/)const
    1.80 +	{return *iStore;}
    1.81 +
    1.82 +
    1.83 +LOCAL_C void OpenWriteClipboardLC()
    1.84 +// Initialize a new write clipboard, after
    1.85 +// deleting any existing read clipboard.
    1.86 +//
    1.87 +	{
    1.88 +	if (TheReadBoard)
    1.89 +		{
    1.90 +		CleanupStack::PopAndDestroy();
    1.91 +		TheReadBoard=NULL;
    1.92 +		TheSession.Close();
    1.93 +		}
    1.94 +	User::LeaveIfError(TheSession.Connect());
    1.95 +	TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
    1.96 +	}
    1.97 +
    1.98 +
    1.99 +LOCAL_C void OpenReadClipboardLC()
   1.100 +// Initialize a new read clipboard, after
   1.101 +// deleting any existing write clipboard.
   1.102 +//
   1.103 +	{
   1.104 +	if (TheWriteBoard)
   1.105 +		{
   1.106 +		TheWriteBoard->CommitL();
   1.107 +		CleanupStack::PopAndDestroy();
   1.108 +		TheWriteBoard=NULL;
   1.109 +		TheSession.Close();
   1.110 +		}
   1.111 +	User::LeaveIfError(TheSession.Connect());
   1.112 +	TheReadBoard=CClipboard::NewForReadingLC(TheSession);
   1.113 +	}
   1.114 +
   1.115 +
   1.116 +LOCAL_C void ParseRichTextDocumentLC()
   1.117 +//
   1.118 +	{
   1.119 +	CParser* myParser=CParser::NewL();
   1.120 +	CleanupStack::PushL(myParser);
   1.121 +	TheText=myParser->ParseL(TheFileName);
   1.122 +	TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer();
   1.123 +	TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer();
   1.124 +	CleanupStack::PopAndDestroy();
   1.125 +	//
   1.126 +	CleanupStack::PushL(TheText);
   1.127 +	}
   1.128 +
   1.129 +
   1.130 +LOCAL_C void testRichTextCutPaste1a()
   1.131 +//
   1.132 +//
   1.133 +	{
   1.134 +	INFO_PRINTF1(_L("Cut & paste, preserving formatting into non-empty document"));
   1.135 +	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");
   1.136 +	ParseRichTextDocumentLC();
   1.137 +	TheText->DeleteL(0,TheText->DocumentLength());
   1.138 +	TPtrC buf1(_L("ab"));
   1.139 +	TheText->InsertL(0,buf1);
   1.140 +	TheText->InsertL(1,CEditableText::EParagraphDelimiter);
   1.141 +	TheReadBoard=NULL;
   1.142 +	TheWriteBoard=NULL;
   1.143 +	OpenWriteClipboardLC();
   1.144 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   1.145 +	TheText->DeleteL(1,2);  // Just leaves the single character 'a' as content.
   1.146 +	//
   1.147 +	OpenReadClipboardLC();
   1.148 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   1.149 +	//
   1.150 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.151 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.152 +	delete TheGlobalParaLayer;
   1.153 +	delete TheGlobalCharLayer;
   1.154 +	}
   1.155 +
   1.156 +_LIT(KOutputFile, "c:\\etext\\t_rtclip.doc");
   1.157 +LOCAL_C void testRichTextCutPaste1b()
   1.158 +//
   1.159 +//
   1.160 +	{
   1.161 +	TheReadBoard=NULL;
   1.162 +	TheWriteBoard=NULL;
   1.163 +	INFO_PRINTF1(_L("Copy to Clipboard with pictures, with missing host applications."));
   1.164 +	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");  // dummy - just to get global layers
   1.165 +	ParseRichTextDocumentLC();
   1.166 +	TheText->Reset();
   1.167 +	//
   1.168 +	CXzeDoor* pic1=CXzeDoor::NewL('1',EFalse);  // never fail to detach
   1.169 +	CXzePicture* pic2=CXzePicture::NewL('2');
   1.170 +	CXzeDoor* pic3=CXzeDoor::NewL('1',EFalse);  // never fail to detach
   1.171 +	CXzePicture* pic4=CXzePicture::NewL('2');
   1.172 +	//
   1.173 +	TPictureHeader hdr1;
   1.174 +	TPictureHeader hdr2;
   1.175 +	TPictureHeader hdr3;
   1.176 +	TPictureHeader hdr4;
   1.177 +	//
   1.178 +	hdr1.iPictureType=KUidXzeDoorType;
   1.179 +	hdr2.iPictureType=KUidXzePictureType;
   1.180 +	hdr3.iPictureType=KUidXzeDoorType;
   1.181 +	hdr4.iPictureType=KUidXzePictureType;
   1.182 +	//
   1.183 +	hdr1.iPicture=pic1;
   1.184 +	hdr2.iPicture=pic2;
   1.185 +	hdr3.iPicture=pic3;
   1.186 +	hdr4.iPicture=pic4;
   1.187 +	//
   1.188 +	TheText->InsertL(0,hdr4);
   1.189 +	TheText->InsertL(0,hdr3);
   1.190 +	TheText->InsertL(0,hdr2);
   1.191 +	TheText->InsertL(0,hdr1);
   1.192 +	test(TheText->PictureCount()==4);
   1.193 +	//
   1.194 +	// Now save and reload this to get the pictures into a deferred picture store.
   1.195 +	RFs session;
   1.196 +	session.Connect();
   1.197 +	session.Delete(KOutputFile);
   1.198 +	session.MkDirAll(KOutputFile);
   1.199 +	CFileStore* store=CDirectFileStore::CreateLC(session,KOutputFile,EFileRead|EFileWrite);
   1.200 +	store->SetTypeL(KDirectFileStoreLayoutUid);
   1.201 +	TStreamId id=KNullStreamId;
   1.202 +	TRAPD(r,	
   1.203 +	id=TheText->StoreL(*store));
   1.204 +		test(r==KErrNone);
   1.205 +	//
   1.206 +	TheText->Reset();
   1.207 +	TheText->RestoreL(*store,id);
   1.208 +	MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
   1.209 +	TDemStoreResolver resolver(*store);
   1.210 +	TheText->SetPictureFactory(factory,&resolver);
   1.211 +	//
   1.212 +	// Now the tests.
   1.213 +	OpenWriteClipboardLC();
   1.214 +	TInt documentLength=TheText->DocumentLength();
   1.215 +	TRAP(r,
   1.216 +	TheText->DetachFromStoreL(CPicture::EDetachFull,0,documentLength));
   1.217 +	if (r==KErrNotSupported)
   1.218 +	    INFO_PRINTF1(_L("    SIMULATION: Some picture data has been removed\n"));
   1.219 +	else if (r!=KErrNone)
   1.220 +		User::Leave(r);
   1.221 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,documentLength);
   1.222 +	//
   1.223 +	TheText->Reset();
   1.224 +	TheText->SetPictureFactory(factory,&resolver);
   1.225 +	documentLength=TheText->DocumentLength();
   1.226 +	test(documentLength==0);
   1.227 +	OpenReadClipboardLC();
   1.228 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),documentLength);
   1.229 +		test(TheText->DocumentLength()==4);
   1.230 +		test(TheText->ParagraphCount()==1);
   1.231 +		test(TheText->PictureCount()==4);
   1.232 +	/////////////////////////////////////////////////////////////////////////////
   1.233 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.234 +	CleanupStack::PopAndDestroy();  // store
   1.235 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.236 +	delete factory;
   1.237 +	delete TheGlobalParaLayer;
   1.238 +	delete TheGlobalCharLayer;
   1.239 +	session.Close();
   1.240 +	}
   1.241 +	
   1.242 +
   1.243 +	LOCAL_C void testRichTextCutPaste1()
   1.244 +//
   1.245 +//
   1.246 +	{
   1.247 +	INFO_PRINTF1(_L("Cut&Paste - preserving formatting"));
   1.248 +	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");
   1.249 +	ParseRichTextDocumentLC();
   1.250 +	//
   1.251 +	CRichText* copiedText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
   1.252 +	////////////////////////////////////////////////////////////////////////////
   1.253 +	TheReadBoard=NULL;
   1.254 +	TheWriteBoard=NULL;
   1.255 +	//
   1.256 +	// Scenario 1
   1.257 +	INFO_PRINTF1(_L("multiple partial phrases"));
   1.258 +	OpenWriteClipboardLC();
   1.259 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),36,73);
   1.260 +	OpenReadClipboardLC();
   1.261 +	copiedText->Reset();
   1.262 +	TInt pasted=0;
   1.263 +	TRAPD(ret,
   1.264 +	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0));
   1.265 +	test(ret==KErrNone);
   1.266 +	test(pasted==73);
   1.267 +	test(copiedText->DocumentLength()==73);
   1.268 +	test(copiedText->ParagraphCount()==3);
   1.269 +	//
   1.270 +	// Scenario 2
   1.271 +	INFO_PRINTF1(_L("multiple whole phrases"));
   1.272 +	OpenWriteClipboardLC();
   1.273 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),51,60);
   1.274 +	copiedText->Reset();
   1.275 +	OpenReadClipboardLC();
   1.276 +	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.277 +	test(pasted==60);
   1.278 +	test(copiedText->DocumentLength()==60);
   1.279 +	test(copiedText->ParagraphCount()==3);
   1.280 +	//
   1.281 +	// Scenario 3
   1.282 +	INFO_PRINTF1(_L("single middle portion of a phrase"));
   1.283 +	OpenWriteClipboardLC();
   1.284 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),53,2);
   1.285 +	copiedText->Reset();
   1.286 +	OpenReadClipboardLC();
   1.287 +	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.288 +	test(pasted==2);
   1.289 +	test(copiedText->DocumentLength()==2);
   1.290 +	test(copiedText->ParagraphCount()==1);
   1.291 +	//
   1.292 +	// Scenario 4
   1.293 +	INFO_PRINTF1(_L("multiple phrases, starting/ending on shared paragraphs"));
   1.294 +	OpenWriteClipboardLC();
   1.295 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,140);
   1.296 +	copiedText->Reset();
   1.297 +	OpenReadClipboardLC();
   1.298 +	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.299 +	test(pasted==140);
   1.300 +	test(copiedText->DocumentLength()==140);
   1.301 +	test(copiedText->ParagraphCount()==5);
   1.302 +
   1.303 +	//
   1.304 +	// Scenario 5
   1.305 +	INFO_PRINTF1(_L("zero phrases"));
   1.306 +	OpenWriteClipboardLC();
   1.307 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),70,10);
   1.308 +	copiedText->Reset();
   1.309 +	OpenReadClipboardLC();
   1.310 +	pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.311 +	test(pasted==10);
   1.312 +	test(copiedText->DocumentLength()==10);
   1.313 +	test(copiedText->ParagraphCount()==1);
   1.314 +
   1.315 +	//
   1.316 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.317 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.318 +	delete copiedText;
   1.319 +	delete TheGlobalParaLayer;
   1.320 +	delete TheGlobalCharLayer;
   1.321 +	
   1.322 +	}
   1.323 +
   1.324 +
   1.325 +/**
   1.326 +@SYMTestCaseID          SYSLIB-ETEXT-CT-4001
   1.327 +@SYMTestCaseDesc        Pasted final paragraph formatting should match copied final paragraph
   1.328 +                        formatting.
   1.329 +@SYMTestPriority        High
   1.330 +@SYMTestActions         Enter three paragraphs into an empty document with the last paragraph
   1.331 +                        *not* terminated by a paragraph delimiter.  Apply some custom
   1.332 +                        formatting to the last paragraph then copy and paste all of the text
   1.333 +                        into a new empty document.
   1.334 +@SYMTestExpectedResults The formatting in the pasted final paragraph should match the copied.
   1.335 +@SYMDEF                 INC115783
   1.336 +*/
   1.337 +LOCAL_C void testRichTextCutPaste2()
   1.338 +	{
   1.339 +	INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-CT-4001 Pasted final paragraph format should match copied final paragraph format "));	
   1.340 +	TheReadBoard=NULL;
   1.341 +	TheWriteBoard=NULL;
   1.342 +	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");  // dummy - just to get global layers
   1.343 +	ParseRichTextDocumentLC();
   1.344 +	TheText->Reset();
   1.345 +	TheText->InsertL(0,_L("\x2029\x2029SomeData")); //3 paras, last has no ending para delimiter);
   1.346 +
   1.347 +	//create paragraph formatting (yellow bkg, indent & bullets)
   1.348 +	CParaFormat* paraFormatIn = CParaFormat::NewLC();
   1.349 +	paraFormatIn->iBullet=new(ELeave)TBullet;  
   1.350 +	paraFormatIn->iBullet->iHeightInTwips=240;
   1.351 +	paraFormatIn->iFillColor = 0xffffff00;
   1.352 +	paraFormatIn->iIndentInTwips = 600;
   1.353 +	TParaFormatMask paraFormatMask;
   1.354 +	paraFormatMask.SetAttrib(EAttBullet);
   1.355 +	paraFormatMask.SetAttrib(EAttFillColor);
   1.356 +	paraFormatMask.SetAttrib(EAttIndent);
   1.357 +
   1.358 +	TheText->ApplyParaFormatL(paraFormatIn,paraFormatMask,3,0); //Apply format to last para only
   1.359 +	
   1.360 +	OpenWriteClipboardLC();
   1.361 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   1.362 +
   1.363 +	TheText->Reset();
   1.364 +	test(TheText->DocumentLength()==0);
   1.365 +	OpenReadClipboardLC();
   1.366 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   1.367 +	test(TheText->DocumentLength()==_L("\x2029\x2029SomeData").Length());
   1.368 +	test(TheText->ParagraphCount()==3);
   1.369 +	
   1.370 +	CParaFormat* paraFormatOut = CParaFormat::NewLC();
   1.371 +	TheText->GetParagraphFormatL(paraFormatOut,3);
   1.372 +	
   1.373 +	test(paraFormatOut->IsEqual(*paraFormatIn,paraFormatMask));// in and out should match
   1.374 +
   1.375 +	CleanupStack::PopAndDestroy(4);
   1.376 +	delete TheGlobalParaLayer;
   1.377 +	delete TheGlobalCharLayer;
   1.378 +	}
   1.379 +
   1.380 +
   1.381 +LOCAL_C void testRichTextCutPaste3()
   1.382 +// 
   1.383 +//
   1.384 +    {
   1.385 +	INFO_PRINTF1(_L("Cutting paragraph of constant character formatting"));
   1.386 +	TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb3.pml");
   1.387 +	ParseRichTextDocumentLC();
   1.388 +	//
   1.389 +	TheReadBoard=NULL;
   1.390 +	TheWriteBoard=NULL;
   1.391 +	//
   1.392 +	INFO_PRINTF1(_L("Copying to clipboard"));
   1.393 +	OpenWriteClipboardLC();
   1.394 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),4,3);
   1.395 +	//
   1.396 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.397 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.398 +	delete TheGlobalParaLayer;
   1.399 +	delete TheGlobalCharLayer;
   1.400 +	
   1.401 +	}
   1.402 +
   1.403 +
   1.404 +
   1.405 +LOCAL_C void testRichTextCutPaste()
   1.406 +// 
   1.407 +//
   1.408 +    {
   1.409 +	INFO_PRINTF1(_L("Cut&Paste - with Rich Text"));
   1.410 +	ParseRichTextDocumentLC();
   1.411 +	OpenWriteClipboardLC();
   1.412 +	INFO_PRINTF1(_L("Copy zero-length text to the clipboard"));
   1.413 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,0);
   1.414 +
   1.415 +	OpenReadClipboardLC();
   1.416 +	INFO_PRINTF1(_L("Paste from empty clipboard"));
   1.417 +	TInt err=0;
   1.418 +	TRAPD(ret,
   1.419 +	err=TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()));
   1.420 +    UNUSED_VAR(ret);
   1.421 +	if (err==KErrNotFound)
   1.422 +	    INFO_PRINTF1(_L("        No recognised data to paste or clipboard empty\n\r"));
   1.423 +	TInt fieldCount=TheText->FieldCount();
   1.424 +	test(fieldCount==0);
   1.425 +	////////////////////////////////////////////////////////////////////////////
   1.426 +	INFO_PRINTF1(_L("Paste into empty RichText"));
   1.427 +	TheText->Reset();
   1.428 +	TheText->InsertL(TheText->DocumentLength(),_L("SomeData"));
   1.429 +	OpenWriteClipboardLC();
   1.430 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   1.431 +	TheText->Reset();
   1.432 +		test(TheText->DocumentLength()==0);
   1.433 +	OpenReadClipboardLC();
   1.434 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   1.435 +		test(TheText->DocumentLength()==_L("SomeData").Length());
   1.436 +		test(TheText->ParagraphCount()==1);
   1.437 +		fieldCount=TheText->FieldCount();
   1.438 +		test(fieldCount==0);
   1.439 +	/////////////////////////////////////////////////////////////////////////////
   1.440 +	INFO_PRINTF1(_L("Pasting text only - no paragraph delimiter"));
   1.441 +	TheText->Reset();
   1.442 +	TheText->InsertL(0,_L("the  end"));
   1.443 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   1.444 +	test(TheText->DocumentLength()==16);
   1.445 +	//////////////////////////////////////////////////////////////////////////
   1.446 +	INFO_PRINTF1(_L("Paste @ start (pos=0)"));
   1.447 +	TheText->Reset();
   1.448 +	TheText->InsertL(TheText->DocumentLength(),_L("SomeData"));
   1.449 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
   1.450 +		test(TheText->DocumentLength()==_L("SomeDataSomeData").Length());
   1.451 +		test(TheText->ParagraphCount()==1);
   1.452 +		fieldCount=TheText->FieldCount();
   1.453 +		test(fieldCount==0);
   1.454 +	////////////////////////////////////////////////////////////////////////////
   1.455 +	INFO_PRINTF1(_L("Paste @ end   (DocumentLength())"));
   1.456 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength());
   1.457 +		test(TheText->DocumentLength()==_L("SomeDataSomeDataSomeData").Length());
   1.458 +		test(TheText->ParagraphCount()==1);
   1.459 +		fieldCount=TheText->FieldCount();
   1.460 +		test(fieldCount==0);
   1.461 +	////////////////////////////////////////////////////////////////////////////
   1.462 +	INFO_PRINTF1(_L("Paste @ middle"));
   1.463 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
   1.464 +	fieldCount=TheText->FieldCount();
   1.465 +		test(fieldCount==0);
   1.466 +		TBuf<33> buf(_L("SomeSomeDataDataSomeDataSomeData"));
   1.467 +		test(TheText->DocumentLength()==buf.Length());
   1.468 +		buf.Append(CEditableText::EParagraphDelimiter);
   1.469 +		test(TheText->Read(0)==buf);
   1.470 +		test(TheText->ParagraphCount()==1);
   1.471 +	/////////////////////////////////////////////////////////////////////////////
   1.472 +
   1.473 +	/////////////////////////////////////////////////////////////////////////////
   1.474 +	INFO_PRINTF1(_L("Pasting rich text inbetween 2 pictures"));
   1.475 +	TheText->Reset();
   1.476 +	//
   1.477 +	CXzePicture* pic1=CXzePicture::NewL('1');
   1.478 +	CXzePicture* pic2=CXzePicture::NewL('2');
   1.479 +	//
   1.480 +	TPictureHeader hdr1;
   1.481 +	TPictureHeader hdr2;
   1.482 +	//
   1.483 +	hdr1.iPictureType=KUidXzePictureType;
   1.484 +	hdr2.iPictureType=KUidXzePictureType;
   1.485 +	//
   1.486 +	hdr1.iPicture=pic1;
   1.487 +	hdr2.iPicture=pic2;
   1.488 +	//
   1.489 +	TheText->InsertL(0,hdr2);
   1.490 +	TheText->InsertL(0,hdr1);
   1.491 +	//
   1.492 +	OpenWriteClipboardLC();
   1.493 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   1.494 +	//
   1.495 +	OpenReadClipboardLC();
   1.496 +
   1.497 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   1.498 +		test(TheText->DocumentLength()==4);
   1.499 +		test(TheText->ParagraphCount()==1);
   1.500 +	/////////////////////////////////////////////////////////////////////////////
   1.501 +	INFO_PRINTF1(_L("Pasting rich text with para delimiters"));
   1.502 +	TheText->InsertL(1,CEditableText::EParagraphDelimiter);
   1.503 +	//
   1.504 +	OpenWriteClipboardLC();
   1.505 +	TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
   1.506 +	//
   1.507 +	OpenReadClipboardLC();
   1.508 +	TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
   1.509 +		test(TheText->DocumentLength()==10);
   1.510 +		test(TheText->ParagraphCount()==3);
   1.511 +		
   1.512 +	/////////////////////////////////////////////////////////////////////////////	
   1.513 +	CleanupStack::PopAndDestroy();  // Last clipboard object
   1.514 +	CleanupStack::PopAndDestroy();  // TheTextObject
   1.515 +	delete TheGlobalParaLayer;
   1.516 +	delete TheGlobalCharLayer;
   1.517 +	}
   1.518 +
   1.519 +
   1.520 +LOCAL_C void setupCleanup()
   1.521 +//
   1.522 +// Initialise the cleanup stack.
   1.523 +//
   1.524 +    {
   1.525 +
   1.526 +	TheTrapCleanup=CTrapCleanup::New();
   1.527 +	TRAPD(r,\
   1.528 +		{\
   1.529 +		for (TInt i=KTestCleanupStack;i>0;i--)\
   1.530 +			CleanupStack::PushL((TAny*)1);\
   1.531 +		test(r==KErrNone);\
   1.532 +		CleanupStack::Pop(KTestCleanupStack);\
   1.533 +		});
   1.534 +	}
   1.535 +
   1.536 +
   1.537 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
   1.538 +	{
   1.539 +	RFs fsSession;
   1.540 +	TInt err = fsSession.Connect();
   1.541 +	if(err == KErrNone)
   1.542 +		{
   1.543 +		TEntry entry;
   1.544 +		if(fsSession.Entry(aFullName, entry) == KErrNone)
   1.545 +			{
   1.546 +			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
   1.547 +			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
   1.548 +			if(err != KErrNone) 
   1.549 +				{
   1.550 +				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
   1.551 +				}
   1.552 +			err = fsSession.Delete(aFullName);
   1.553 +			if(err != KErrNone) 
   1.554 +				{
   1.555 +				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
   1.556 +				}
   1.557 +			}
   1.558 +		fsSession.Close();
   1.559 +		}
   1.560 +	else
   1.561 +		{
   1.562 +		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
   1.563 +		}
   1.564 +	}
   1.565 +
   1.566 +CT_RTCLIP::CT_RTCLIP()
   1.567 +    {
   1.568 +    SetTestStepName(KTestStep_T_RTCLIP);
   1.569 +    pTestStep = this;
   1.570 +    }
   1.571 +
   1.572 +TVerdict CT_RTCLIP::doTestStepL()
   1.573 +    {
   1.574 +    SetTestStepResult(EFail);
   1.575 +
   1.576 +    INFO_PRINTF1(_L("Cut & Paste"));
   1.577 +    
   1.578 +    __UHEAP_MARK;
   1.579 +    setupCleanup();
   1.580 +
   1.581 +    TRAPD(r1, testRichTextCutPaste());
   1.582 +    TRAPD(r2, testRichTextCutPaste1());
   1.583 +    TRAPD(r3, testRichTextCutPaste1a());
   1.584 +    TRAPD(r4, testRichTextCutPaste1b());
   1.585 +    TRAPD(r5, testRichTextCutPaste2());
   1.586 +    TRAPD(r6, testRichTextCutPaste3());
   1.587 +
   1.588 +    delete TheTrapCleanup;
   1.589 +    
   1.590 +    __UHEAP_MARKEND;
   1.591 +    
   1.592 +    ::DeleteDataFile(KOutputFile);      //deletion of data files must be before call to End() - DEF047652
   1.593 +
   1.594 +    if (r1 == KErrNone && r2 == KErrNone && r3 == KErrNone && r4 == KErrNone && r5 == KErrNone && r6 == KErrNone)
   1.595 +        {
   1.596 +        SetTestStepResult(EPass);
   1.597 +        }
   1.598 +
   1.599 +    return TestStepResult();
   1.600 +    }