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