Update contrib.
2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 #include "../incp/T_PMLPAR.H"
29 LOCAL_D CTestStep *pTestStep = NULL;
32 TBool __bb = (cond); \
33 pTestStep->TEST(__bb); \
36 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
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))
47 #define UNUSED_VAR(a) a = a
49 const TInt KTestCleanupStack=0x80;
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;
61 class TDemStoreResolver : public MRichTextStoreResolver
64 TDemStoreResolver(CStreamStore& aStore);
66 virtual const CStreamStore& StreamStoreL(TInt aPos)const;
72 TDemStoreResolver::TDemStoreResolver(CStreamStore& aStore)
76 const CStreamStore& TDemStoreResolver::StreamStoreL(TInt /*aPos*/)const
80 LOCAL_C void OpenWriteClipboardLC()
81 // Initialize a new write clipboard, after
82 // deleting any existing read clipboard.
87 CleanupStack::PopAndDestroy();
91 User::LeaveIfError(TheSession.Connect());
92 TheWriteBoard=CClipboard::NewForWritingLC(TheSession);
96 LOCAL_C void OpenReadClipboardLC()
97 // Initialize a new read clipboard, after
98 // deleting any existing write clipboard.
103 TheWriteBoard->CommitL();
104 CleanupStack::PopAndDestroy();
108 User::LeaveIfError(TheSession.Connect());
109 TheReadBoard=CClipboard::NewForReadingLC(TheSession);
113 LOCAL_C void ParseRichTextDocumentLC()
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();
123 CleanupStack::PushL(TheText);
127 LOCAL_C void testRichTextCutPaste1a()
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);
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.
144 OpenReadClipboardLC();
145 TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
147 CleanupStack::PopAndDestroy(); // Last clipboard object
148 CleanupStack::PopAndDestroy(); // TheTextObject
149 delete TheGlobalParaLayer;
150 delete TheGlobalCharLayer;
153 _LIT(KOutputFile, "c:\\etext\\t_rtclip.doc");
154 LOCAL_C void testRichTextCutPaste1b()
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();
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');
175 hdr1.iPictureType=KUidXzeDoorType;
176 hdr2.iPictureType=KUidXzePictureType;
177 hdr3.iPictureType=KUidXzeDoorType;
178 hdr4.iPictureType=KUidXzePictureType;
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);
191 // Now save and reload this to get the pictures into a deferred picture store.
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;
200 id=TheText->StoreL(*store));
204 TheText->RestoreL(*store,id);
205 MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
206 TDemStoreResolver resolver(*store);
207 TheText->SetPictureFactory(factory,&resolver);
210 OpenWriteClipboardLC();
211 TInt documentLength=TheText->DocumentLength();
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)
218 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,documentLength);
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
234 delete TheGlobalParaLayer;
235 delete TheGlobalCharLayer;
240 LOCAL_C void testRichTextCutPaste1()
244 INFO_PRINTF1(_L("Cut&Paste - preserving formatting"));
245 TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml");
246 ParseRichTextDocumentLC();
248 CRichText* copiedText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
249 ////////////////////////////////////////////////////////////////////////////
254 INFO_PRINTF1(_L("multiple partial phrases"));
255 OpenWriteClipboardLC();
256 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),36,73);
257 OpenReadClipboardLC();
261 pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0));
264 test(copiedText->DocumentLength()==73);
265 test(copiedText->ParagraphCount()==3);
268 INFO_PRINTF1(_L("multiple whole phrases"));
269 OpenWriteClipboardLC();
270 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),51,60);
272 OpenReadClipboardLC();
273 pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
275 test(copiedText->DocumentLength()==60);
276 test(copiedText->ParagraphCount()==3);
279 INFO_PRINTF1(_L("single middle portion of a phrase"));
280 OpenWriteClipboardLC();
281 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),53,2);
283 OpenReadClipboardLC();
284 pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
286 test(copiedText->DocumentLength()==2);
287 test(copiedText->ParagraphCount()==1);
290 INFO_PRINTF1(_L("multiple phrases, starting/ending on shared paragraphs"));
291 OpenWriteClipboardLC();
292 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,140);
294 OpenReadClipboardLC();
295 pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
297 test(copiedText->DocumentLength()==140);
298 test(copiedText->ParagraphCount()==5);
302 INFO_PRINTF1(_L("zero phrases"));
303 OpenWriteClipboardLC();
304 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),70,10);
306 OpenReadClipboardLC();
307 pasted=copiedText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),0);
309 test(copiedText->DocumentLength()==10);
310 test(copiedText->ParagraphCount()==1);
313 CleanupStack::PopAndDestroy(); // Last clipboard object
314 CleanupStack::PopAndDestroy(); // TheTextObject
316 delete TheGlobalParaLayer;
317 delete TheGlobalCharLayer;
323 @SYMTestCaseID SYSLIB-ETEXT-CT-4001
324 @SYMTestCaseDesc Pasted final paragraph formatting should match copied final paragraph
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.
334 LOCAL_C void testRichTextCutPaste2()
336 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-CT-4001 Pasted final paragraph format should match copied final paragraph format "));
339 TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb2.pml"); // dummy - just to get global layers
340 ParseRichTextDocumentLC();
342 TheText->InsertL(0,_L("\x2029\x2029SomeData")); //3 paras, last has no ending para delimiter);
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);
355 TheText->ApplyParaFormatL(paraFormatIn,paraFormatMask,3,0); //Apply format to last para only
357 OpenWriteClipboardLC();
358 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
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);
367 CParaFormat* paraFormatOut = CParaFormat::NewLC();
368 TheText->GetParagraphFormatL(paraFormatOut,3);
370 test(paraFormatOut->IsEqual(*paraFormatIn,paraFormatMask));// in and out should match
372 CleanupStack::PopAndDestroy(4);
373 delete TheGlobalParaLayer;
374 delete TheGlobalCharLayer;
378 LOCAL_C void testRichTextCutPaste3()
382 INFO_PRINTF1(_L("Cutting paragraph of constant character formatting"));
383 TheFileName=_L("z:\\test\\app-framework\\etext\\rtclipb3.pml");
384 ParseRichTextDocumentLC();
389 INFO_PRINTF1(_L("Copying to clipboard"));
390 OpenWriteClipboardLC();
391 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),4,3);
393 CleanupStack::PopAndDestroy(); // Last clipboard object
394 CleanupStack::PopAndDestroy(); // TheTextObject
395 delete TheGlobalParaLayer;
396 delete TheGlobalCharLayer;
402 LOCAL_C void testRichTextCutPaste()
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);
412 OpenReadClipboardLC();
413 INFO_PRINTF1(_L("Paste from empty clipboard"));
416 err=TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),TheText->DocumentLength()));
418 if (err==KErrNotFound)
419 INFO_PRINTF1(_L(" No recognised data to paste or clipboard empty\n\r"));
420 TInt fieldCount=TheText->FieldCount();
422 ////////////////////////////////////////////////////////////////////////////
423 INFO_PRINTF1(_L("Paste into empty RichText"));
425 TheText->InsertL(TheText->DocumentLength(),_L("SomeData"));
426 OpenWriteClipboardLC();
427 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
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();
436 /////////////////////////////////////////////////////////////////////////////
437 INFO_PRINTF1(_L("Pasting text only - no paragraph delimiter"));
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)"));
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();
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();
458 ////////////////////////////////////////////////////////////////////////////
459 INFO_PRINTF1(_L("Paste @ middle"));
460 TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),4);
461 fieldCount=TheText->FieldCount();
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 /////////////////////////////////////////////////////////////////////////////
470 /////////////////////////////////////////////////////////////////////////////
471 INFO_PRINTF1(_L("Pasting rich text inbetween 2 pictures"));
474 CXzePicture* pic1=CXzePicture::NewL('1');
475 CXzePicture* pic2=CXzePicture::NewL('2');
480 hdr1.iPictureType=KUidXzePictureType;
481 hdr2.iPictureType=KUidXzePictureType;
486 TheText->InsertL(0,hdr2);
487 TheText->InsertL(0,hdr1);
489 OpenWriteClipboardLC();
490 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
492 OpenReadClipboardLC();
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);
501 OpenWriteClipboardLC();
502 TheText->CopyToStoreL(TheWriteBoard->Store(),TheWriteBoard->StreamDictionary(),0,TheText->DocumentLength());
504 OpenReadClipboardLC();
505 TheText->PasteFromStoreL(TheReadBoard->Store(),TheReadBoard->StreamDictionary(),1);
506 test(TheText->DocumentLength()==10);
507 test(TheText->ParagraphCount()==3);
509 /////////////////////////////////////////////////////////////////////////////
510 CleanupStack::PopAndDestroy(); // Last clipboard object
511 CleanupStack::PopAndDestroy(); // TheTextObject
512 delete TheGlobalParaLayer;
513 delete TheGlobalCharLayer;
517 LOCAL_C void setupCleanup()
519 // Initialise the cleanup stack.
523 TheTrapCleanup=CTrapCleanup::New();
526 for (TInt i=KTestCleanupStack;i>0;i--)\
527 CleanupStack::PushL((TAny*)1);\
529 CleanupStack::Pop(KTestCleanupStack);\
534 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
537 TInt err = fsSession.Connect();
541 if(fsSession.Entry(aFullName, entry) == KErrNone)
543 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
544 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
547 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
549 err = fsSession.Delete(aFullName);
552 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
559 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
563 CT_RTCLIP::CT_RTCLIP()
565 SetTestStepName(KTestStep_T_RTCLIP);
569 TVerdict CT_RTCLIP::doTestStepL()
571 SetTestStepResult(EFail);
573 INFO_PRINTF1(_L("Cut & Paste"));
578 TRAPD(r1, testRichTextCutPaste());
579 TRAPD(r2, testRichTextCutPaste1());
580 TRAPD(r3, testRichTextCutPaste1a());
581 TRAPD(r4, testRichTextCutPaste1b());
582 TRAPD(r5, testRichTextCutPaste2());
583 TRAPD(r6, testRichTextCutPaste3());
585 delete TheTrapCleanup;
589 ::DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
591 if (r1 == KErrNone && r2 == KErrNone && r3 == KErrNone && r4 == KErrNone && r5 == KErrNone && r6 == KErrNone)
593 SetTestStepResult(EPass);
596 return TestStepResult();