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.
28 #include "../incp/T_PMLPAR.H"
29 #include "T_RICHOOM.h"
33 TBool __bb = (cond); \
37 ERR_PRINTF1(_L("ERROR: Test Failed")); \
42 const TInt KTestCleanupStack=0x500;
45 LOCAL_D CParaFormatLayer* GlobalParaFormatLayer;
46 LOCAL_D CCharFormatLayer* GlobalCharFormatLayer;
47 LOCAL_D MPictureFactory* GlobalPictureFactory;
48 LOCAL_D CTrapCleanup* TheTrapCleanup;
49 LOCAL_D CParser* TheParser;
50 LOCAL_D RFs TheSession;
53 CRichText* CT_RICHOOM::LoadIntoTextL(TFileName& aFileName)
57 TheParser=CParser::NewL());
60 text=TheParser->ParseL(aFileName));
61 delete GlobalParaFormatLayer;
62 delete GlobalCharFormatLayer;
63 GlobalParaFormatLayer=(CParaFormatLayer*)text->GlobalParaFormatLayer();
64 GlobalCharFormatLayer=(CCharFormatLayer*)text->GlobalCharFormatLayer();
71 void CT_RICHOOM::ConstructOOM()
72 // Test CRichText construction, (and index), forcing a leave error at each
73 // possible stage of the process.
76 INFO_PRINTF1(_L("Construction under low memory conditions"));
78 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
79 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
82 for (failRate=1;;failRate++)
85 __UHEAP_SETFAIL(RHeap::EDeterministic,failRate);
87 TRAPD(ret,doc=CRichText::NewL(paraLayer,charLayer));
96 // test(!doc->HasMarkupData());
106 answer.Format(_L(" #allocs for full c'tion: %d\n"),failRate-1);
107 INFO_PRINTF1(answer);
111 void CT_RICHOOM::CopyPasteOOM()
113 // Set up the framework
114 INFO_PRINTF1(_L("Copy/Paste OOM"));
115 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
116 TFileName file=_L("z:\\test\\app-framework\\etext\\climb.txt");
117 /*TInt count=*/richText1->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
119 // Insert some picture components
120 CXzePicture* pic1=CXzePicture::NewL('p');
121 CXzePicture* pic2=CXzePicture::NewL('l');
122 CXzePicture* pic3=CXzePicture::NewL('l');
126 hdr1.iPictureType = KUidXzePictureType;
127 hdr2.iPictureType = KUidXzePictureType;
128 hdr3.iPictureType = KUidXzePictureType;
129 hdr1.iPicture = pic1;
130 hdr2.iPicture = pic2;
131 hdr3.iPicture = pic3;
132 richText1->InsertL(richText1->DocumentLength(),hdr3);
133 richText1->InsertL(richText1->DocumentLength(),hdr2);
134 richText1->InsertL(richText1->DocumentLength(),hdr1);
136 // Apply some random formatting
137 TCharFormat charFormat; TCharFormatMask charMask;
138 charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
139 charMask.SetAttrib(EAttFontStrokeWeight);
140 richText1->ApplyCharFormatL(charFormat,charMask,10,37);
142 // Copy to clipboard normally.
143 INFO_PRINTF1(_L("Copy Normally"));
144 User::LeaveIfError(TheSession.Connect());
145 CClipboard* writeBoard=CClipboard::NewForWritingLC(TheSession);
146 richText1->CopyToStoreL(writeBoard->Store(),writeBoard->StreamDictionary(),0,richText1->DocumentLength()-1); // forces virtual trailing phrase
147 writeBoard->CommitL();
148 CleanupStack::PopAndDestroy(); // writeboard
153 // Paste from clipboard normally.
154 INFO_PRINTF1(_L("Paste Normally"));
156 CRichText* empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
157 MDemPictureFactory pictureFactory;
158 empty->SetPictureFactory(&pictureFactory,NULL);
159 CClipboard* readBoard=CClipboard::NewForReadingLC(TheSession);
161 empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),0));
165 CleanupStack::PopAndDestroy(); // readBoard
169 // Paste from clipboard with OOM
170 INFO_PRINTF1(_L("Paste with OOM"));
171 INFO_PRINTF1(_L("...please wait"));
173 empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
174 for (TInt ii=1; ;ii++)
176 readBoard=CClipboard::NewForReadingLC(TheSession);
177 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
178 TRAP(ret,empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),0));
181 CleanupStack::PopAndDestroy();
195 void CT_RICHOOM::CopyPasteOOM2()
196 // Test case for defect HA-282 - simple case
200 // Set up the framework
201 INFO_PRINTF1(_L("Copy/Paste OOM 2"));
202 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
203 richText1->InsertL(0,_L("HelloHello"));
204 richText1->InsertL(5,CEditableText::EParagraphDelimiter);
206 // Format the first paragraph
207 TCharFormat charFormat; TCharFormatMask charMask;
208 charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
209 charMask.SetAttrib(EAttFontStrokeWeight);
210 richText1->ApplyCharFormatL(charFormat,charMask,0,6);
212 // Copy to clipboard normally.
213 INFO_PRINTF1(_L("Copy Normally"));
214 User::LeaveIfError(TheSession.Connect());
215 CClipboard* writeBoard=CClipboard::NewForWritingLC(TheSession);
216 richText1->CopyToStoreL(writeBoard->Store(),writeBoard->StreamDictionary(),2,6); // forces virtual trailing phrase
217 writeBoard->CommitL();
218 CleanupStack::PopAndDestroy(); // writeboard
221 // Paste from clipboard normally.
222 INFO_PRINTF1(_L("Paste Normally"));
224 CRichText* empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
225 empty->AppendTakingSolePictureOwnershipL(*richText1);
226 CClipboard* readBoard=CClipboard::NewForReadingLC(TheSession);
228 empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),empty->DocumentLength()));
232 CleanupStack::PopAndDestroy(); // readBoard
236 // Paste from clipboard with OOM
237 INFO_PRINTF1(_L("Paste with OOM"));
238 INFO_PRINTF1(_L("...please wait"));
240 empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
241 empty->AppendTakingSolePictureOwnershipL(*richText1);
244 for (TInt ii=1; ;ii++)
246 readBoard=CClipboard::NewForReadingLC(TheSession);
247 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
248 TRAP(ret,empty->PasteFromStoreL(readBoard->Store(),readBoard->StreamDictionary(),empty->DocumentLength()));
251 CleanupStack::PopAndDestroy();
265 void CT_RICHOOM::WriteInlineL(RWriteStream& aStream,CRichText* aRichText)
267 aRichText->ExternalizeStyleDataL(aStream);
268 aRichText->ExternalizeMarkupDataL(aStream);
269 aRichText->ExternalizePlainTextL(aStream);
272 void CT_RICHOOM::ReadInlineL(RReadStream& aStream,CRichText* aRichText)
274 aRichText->InternalizeStyleDataL(aStream);
275 aRichText->InternalizeMarkupDataL(aStream);
276 aRichText->InternalizePlainTextL(aStream);
280 CStyleList* CT_RICHOOM::CreatePopulatedStyleList()
284 // Create style aswell.
285 CStyleList* list=CStyleList::NewL();
286 CParagraphStyle* style1=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
287 CParagraphStyle* style2=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
288 CParagraphStyle* style3=CParagraphStyle::NewL(*GlobalParaFormatLayer,*GlobalCharFormatLayer);
289 RParagraphStyleInfo info1(style1);
290 RParagraphStyleInfo info2(style2);
291 RParagraphStyleInfo info3(style3);
292 list->AppendL(&info1);
293 list->AppendL(&info2);
294 list->AppendL(&info3);
297 _LIT(KTRichOutputFile,"c:\\etext\\TRICH.DAT");
299 void CT_RICHOOM::SaveLoadOOM()
301 // Set up the framework
302 theFs.Delete(KTRichOutputFile);
303 theFs.MkDirAll(KTRichOutputFile);
304 CFileStore* store = CPermanentFileStore::CreateLC(theFs,KTRichOutputFile,EFileRead|EFileWrite);
305 store->SetTypeL(store->Layout());
306 CStyleList* list=CreatePopulatedStyleList();
307 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list);
308 TBool hasMarkupData=richText1->HasMarkupData();
309 test(hasMarkupData); // because of owned style list.
310 richText1->InsertL(0,_L("hello"));
311 richText1->InsertL(richText1->DocumentLength(),CEditableText::EParagraphDelimiter);
312 richText1->InsertL(richText1->DocumentLength(),_L("there"));
314 RStoreWriteStream out;
315 TStreamId id1 = out.CreateLC(*store);
317 INFO_PRINTF1(_L("Store/Restore OOM"));
318 INFO_PRINTF1(_L("Writing Inline noramlly"));
319 // Write out inline normally
320 WriteInlineL(out,richText1);
323 CleanupStack::PopAndDestroy(); // out
326 in.OpenLC(*store,id1);
327 CRichText* empty = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
329 INFO_PRINTF1(_L("Reading Inline noramlly"));
330 // Read in inline normally:
331 TRAPD(ret,ReadInlineL(in,empty));
333 CleanupStack::PopAndDestroy(); // in
337 INFO_PRINTF1(_L("Reading Inline with OOM"));
338 // Read in inline with OOM:
339 empty=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
341 for (TInt jj = 1; ;++jj)
343 RStoreReadStream in2;
344 in2.OpenLC(*store,id1);
345 __UHEAP_SETFAIL(RHeap::EDeterministic,jj);
346 TRAPD(ret,ReadInlineL(in2,empty));
348 CleanupStack::PopAndDestroy(); // in2
353 test(empty->HasMarkupData());
358 INFO_PRINTF1(_L("Writing Inline with OOM"));
359 // Write out inline with OOM:
360 CStyleList* list2=CreatePopulatedStyleList();
361 CRichText* richText2 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list2);
362 richText2->InsertL(0,_L("hello"));
363 TStreamId i = store->ExtendL();
364 for (TInt ii = 1; ;++ii)
366 RStoreWriteStream out2;
367 out2.ReplaceLC(*store,i);
368 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
369 TRAP(ret,WriteInlineL(out2,richText2));
374 CleanupStack::PopAndDestroy(); // out2
379 CleanupStack::PopAndDestroy(); // out2
383 INFO_PRINTF1(_L("Reading Inline after OOM write"));
384 // Read in inline normally following a write out with OOM
385 RStoreReadStream in3;
386 in3.OpenLC(*store,i);
388 TRAP(ret,ReadInlineL(in3,empty)); // unhandled exception
390 CleanupStack::PopAndDestroy();
397 // Set up new component framework
398 CXzePicture* pic1=CXzePicture::NewL('p');
399 CXzePicture* pic2=CXzePicture::NewL('l');
400 CXzePicture* pic3=CXzePicture::NewL('l');
404 hdr1.iPictureType = KUidXzePictureType;
405 hdr2.iPictureType = KUidXzePictureType;
406 hdr3.iPictureType = KUidXzePictureType;
407 hdr1.iPicture = pic1;
408 hdr2.iPicture = pic2;
409 hdr3.iPicture = pic3;
410 CRichText* richText3 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
411 richText3->InsertL(0,hdr3);
412 richText3->InsertL(0,hdr2);
413 richText3->InsertL(0,hdr1);
414 richText3->InsertL(2,_L("hello"));
416 INFO_PRINTF1(_L("Writing Outline noramlly"));
417 // Write outline normally:
418 TStreamId id2 = richText3->StoreL(*store);
422 INFO_PRINTF1(_L("Reading Outline noramlly"));
423 // Read outline normally:
425 TRAP(ret,empty->RestoreL(*store,id2));
429 INFO_PRINTF1(_L("Reading Outline with OOM"));
430 // Read outline with OOM:
431 CRichText* inText2=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
432 for (TInt kk = 1; ;++kk)
434 __UHEAP_SETFAIL(RHeap::EDeterministic,kk);
436 TRAP(ret,inText2->RestoreL(*store,id2));
448 CRichText* richText4 = CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
449 CXzePicture* pic4=CXzePicture::NewL('P');
450 CXzePicture* pic5=CXzePicture::NewL('P');
451 CXzePicture* pic6=CXzePicture::NewL('P');
455 hdr4.iPictureType=KUidXzePictureType;
456 hdr5.iPictureType=KUidXzePictureType;
457 hdr6.iPictureType=KUidXzePictureType;
461 richText4->InsertL(0,hdr4);
462 richText4->InsertL(0,hdr5);
463 richText4->InsertL(0,hdr6);
464 richText4->InsertL(1,_L("hello"));
466 INFO_PRINTF1(_L("Writing Outline with OOM"));
467 // Wtite outline with OOM:
469 for (TInt mm=1; ;++mm)
471 __UHEAP_SETFAIL(RHeap::EDeterministic,mm);
472 TRAPD(ret,id3 = richText4->StoreL(*store));
482 INFO_PRINTF1(_L("Reading Outline after OOM write"));
483 // Read outline normally folliwng a write with OOM:
485 TRAP(ret,empty->RestoreL(*store,id3));
488 CleanupStack::PopAndDestroy(); // store
493 void CT_RICHOOM::CheckTextIntegrity(const CRichText* aText)
494 // Simply invokes a method to run the text (& component's) onvariants.
498 CParaFormat* paraFormat=CParaFormat::NewLC();
499 aText->GetParagraphFormatL(paraFormat,0); // forces CRichTextIndex::__DbgTextInvariant() to run.
500 CleanupStack::PopAndDestroy(); // paraFormat
504 void CT_RICHOOM::BasicEditOOM()
505 // Tests basic editing functions under OOM conditions.
508 INFO_PRINTF1(_L("Basic Editing methods under OOM"));
509 INFO_PRINTF1(_L("InsertL(TChar)"));
511 // Insert a single character
512 const TInt insertCharLoop=10;
513 const TInt KSmallTextBufferSize=1;
514 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
515 richText1->SetPictureFactory(NULL,NULL); // forces index generation
516 for (TInt mm=1;mm<=insertCharLoop;mm++)
518 __UHEAP_SETFAIL(RHeap::EDeterministic,mm);
519 for (TInt nn=1;nn<=insertCharLoop;nn++)
521 TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),'x'));
524 test(richText1->DocumentLength()+1==nn);
525 CheckTextIntegrity(richText1);
536 INFO_PRINTF1(_L("InsertL(TDesC&)"));
538 // Insert a descriptor
539 const TInt insertDescriptorLoop=10;
540 richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
541 richText1->SetPictureFactory(NULL,NULL); // forces index generation
542 TPtrC buf(_L("1234567890"));
544 for (TInt nn=1;nn<=insertDescriptorLoop+1;nn++)
546 __UHEAP_SETFAIL(RHeap::EDeterministic,nn);
547 TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),buf));
550 test(richText1->DocumentLength()==0);
554 test(richText1->DocumentLength()==buf.Length());
556 CheckTextIntegrity(richText1);
564 INFO_PRINTF1(_L("InsertL(TPictureHeader&)"));
566 // Insert a picture header
567 richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
569 for (TInt ii=18; ;ii++)
571 // create the picture header
573 CXzePicture* pic1=CXzePicture::NewL('o');
575 hdr1.iPictureType=KUidXzePictureType;
577 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
578 TRAPD(ret,richText1->InsertL(richText1->DocumentLength(),hdr1));
581 test(richText1->DocumentLength()==0);
585 THE ABOVE 2 LINES ARE WRONG NOW, SINCE THE PICTURE IS DELETED AUTOMATICALLY, IF THE INSERTION FAILS.
592 test(richText1->DocumentLength()==1);
604 void CT_RICHOOM::AppendTest1L()
606 // Insert a single character
607 const TInt insertDescriptorLoop=10;
608 const TInt KSmallTextBufferSize=1;
609 CRichText* source=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
610 CRichText* target=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
611 source->InsertL(source->DocumentLength(),_L("1234567890"));
612 target->InsertL(target->DocumentLength(),_L("abcdef"));
613 TInt targetStartLength=target->DocumentLength();
614 for (TInt nn=1;nn<=insertDescriptorLoop+2;nn++) // +1 for the last para delim, +1 to force a suceed
616 __UHEAP_SETFAIL(RHeap::EDeterministic,nn);
617 TRAPD(ret,target->AppendTakingSolePictureOwnershipL(*source));
620 test(target->DocumentLength()==targetStartLength);
624 TInt targetLength=target->DocumentLength();
625 test(targetLength==targetStartLength+source->DocumentLength()+1);
628 CheckTextIntegrity(target);
636 void CT_RICHOOM::AppendTest2L(CRichText* aTarget)
639 const TInt KSmallTextBufferSize=1;
640 TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
641 CRichText* source=LoadIntoTextL(filename);
643 aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
644 TInt targetStartLength=aTarget->DocumentLength();
645 for (TInt ii = 1; ;++ii)
647 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
649 aTarget->AppendTakingSolePictureOwnershipL(*source));
653 test(aTarget->DocumentLength()==targetStartLength);
656 {// We have succeeded in appending the document.
657 TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
658 test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
667 void CT_RICHOOM::AppendTestNewL(CRichText* aTarget)
669 const TInt KSmallTextBufferSize=4;
670 TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
671 CRichText* source=LoadIntoTextL(filename);
674 aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
675 aTarget->InsertL(0,_L("This is paragraph number one"));
676 aTarget->InsertL(1,CEditableText::EParagraphDelimiter);
678 TInt targetStartLength=aTarget->DocumentLength();
679 for (TInt ii = 1; ;++ii)
681 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
683 aTarget->AppendTakingSolePictureOwnershipL(*source));
687 test(aTarget->DocumentLength()==targetStartLength);
690 {// We have succeeded in appending the document.
691 TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
692 test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
701 void CT_RICHOOM::AppendTest3L(CRichText* aTarget)
703 const TInt KSmallTextBufferSize=31;
704 TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
705 CRichText* source=LoadIntoTextL(filename);
707 aTarget=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,CEditableText::ESegmentedStorage,KSmallTextBufferSize);
708 TInt targetStartLength=aTarget->DocumentLength();
709 for (TInt ii = 1; ;++ii)
711 __UHEAP_SETFAIL(RHeap::EDeterministic,ii);
713 aTarget->AppendTakingSolePictureOwnershipL(*source));
717 test(aTarget->DocumentLength()==targetStartLength);
720 {// We have succeeded in appending the document.
721 TInt paraDelimiter=(targetStartLength>0) ? 1 : 0;
722 test(aTarget->DocumentLength()==targetStartLength+paraDelimiter+source->DocumentLength());
731 void CT_RICHOOM::AppendTakingSolePictureOwnershipOOM()
734 INFO_PRINTF1(_L("AppendTakingSolePictureOwnershipL() under OOM"));
736 INFO_PRINTF1(_L("Plain text only"));
741 INFO_PRINTF1(_L("Plain text + phrase markup, with empty target"));
743 AppendTest2L(STATIC_CAST(CRichText*,NULL)));
746 INFO_PRINTF1(_L("Plain text + phrase markup, with non-empty target"));
747 TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
748 CRichText* target=LoadIntoTextL(filename);
750 AppendTest2L(target));
753 // INFO_PRINTF1(_L("Plain text + shared markup, with empty target"));
755 // AppendTest3L(STATIC_CAST(CRichText*,NULL)));
756 // test(ret==KErrNone);
758 INFO_PRINTF1(_L("Plain text + shared markup, non-empty target"));
760 AppendTestNewL(STATIC_CAST(CRichText*,NULL)));
763 INFO_PRINTF1(_L("Plain text + shared markup, with non-empty target"));
764 filename=_L("z:\\test\\app-framework\\etext\\richoom2.pml");
765 target=LoadIntoTextL(filename);
767 AppendTest3L(target));
772 void CT_RICHOOM::DoAppendParagraphOOM(CRichText* aRichText,TBool aUnderOOM,TInt aReplicas)
776 aRichText->AppendParagraphL(aReplicas);
780 // Append testing for OOM
781 TInt charCount=aRichText->DocumentLength();
782 TInt paraCount=aRichText->ParagraphCount();
783 for (TInt jj = 1; ;++jj)
785 __UHEAP_SETFAIL(RHeap::EDeterministic,jj);
787 aRichText->AppendParagraphL(aReplicas));
789 TInt newCharCount=aRichText->DocumentLength();
790 TInt newParaCount=aRichText->ParagraphCount();
793 test(newCharCount==charCount);
794 test(newParaCount==paraCount);
798 test(newCharCount==charCount+aReplicas);
799 test(newParaCount==paraCount+aReplicas);
801 buf.Format(_L(" allocs=%d\n"),jj);
809 void CT_RICHOOM::AppendParagraphOOM()
814 INFO_PRINTF1(_L("AppendParagraphL() under OOM"));
816 INFO_PRINTF1(_L("appending normally - text has markup - single para"));
817 TFileName filename=_L("z:\\test\\app-framework\\etext\\richoom1.pml");
818 CRichText* text=LoadIntoTextL(filename);
819 DoAppendParagraphOOM(text,EFalse,singlePara);
823 INFO_PRINTF1(_L("appending with OOM - text has markup - single para"));
824 text=LoadIntoTextL(filename);
825 DoAppendParagraphOOM(text,ETrue,singlePara);
829 INFO_PRINTF1(_L("appending normally - text has markup - many paras"));
830 text=LoadIntoTextL(filename);
831 DoAppendParagraphOOM(text,EFalse,manyParas);
835 INFO_PRINTF1(_L("appending with OOM - text has markup - many paras"));
836 text=LoadIntoTextL(filename);
837 DoAppendParagraphOOM(text,ETrue,manyParas);
843 void CT_RICHOOM::ApplyCharFormatOOM1()
845 // Set up the framework
846 INFO_PRINTF1(_L("ApplyCharFormatL() OOM - no markup"));
847 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
848 richText1->InsertL(0,_L("SOME VERY FINE TEXT"));
850 // Apply some random formatting
851 TCharFormat charFormat; TCharFormatMask charMask;
852 charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
853 charMask.SetAttrib(EAttFontStrokeWeight);
855 for (TInt jj=1; ;jj++)
857 __UHEAP_SETFAIL(RHeap::EDeterministic,jj);
859 richText1->ApplyCharFormatL(charFormat,charMask,5,11));
864 TCharFormat newFormat;
865 richText1->GetChars(buf,newFormat,5);
866 test(newFormat.IsEqual(charFormat,charMask));
867 test(buf.Length() < richText1->DocumentLength());
881 void CT_RICHOOM::ApplyCharFormatOOM2()
883 // Set up the framework
884 INFO_PRINTF1(_L("ApplyCharFormatL() OOM - with markup"));
885 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer);
886 richText1->InsertL(0,_L("SOME TEXT"));
888 // Generate some markup
891 cF.iFontSpec.iFontStyle.SetPosture(EPostureItalic);
892 cM.SetAttrib(EAttFontPosture);
893 richText1->ApplyCharFormatL(cF,cM,3,3);
895 // Apply some random formatting
896 TCharFormat charFormat; TCharFormatMask charMask;
897 charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold);
898 charMask.SetAttrib(EAttFontStrokeWeight);
900 for (TInt jj=1; ;jj++)
902 __UHEAP_SETFAIL(RHeap::EDeterministic,jj);
904 richText1->ApplyCharFormatL(charFormat,charMask,3,3));
909 TCharFormat newFormat;
910 richText1->GetChars(buf,newFormat,3);
911 test(newFormat.iFontSpec.iFontStyle.Posture()==EPostureItalic);
912 test(newFormat.iFontSpec.iFontStyle.StrokeWeight()==EStrokeWeightBold);
913 test(buf.Length()==3);
927 void CT_RICHOOM::doMainL()
930 GlobalPictureFactory=new(ELeave) MDemPictureFactory;
931 GlobalParaFormatLayer=CParaFormatLayer::NewL();
932 GlobalCharFormatLayer=CCharFormatLayer::NewL();
935 TRAPD(ret,ConstructOOM());
937 TRAP(ret,SaveLoadOOM());
939 TRAP(ret,CopyPasteOOM());
941 TRAP(ret,BasicEditOOM());
943 TRAP(ret,AppendTakingSolePictureOwnershipOOM());
945 TRAP(ret,CopyPasteOOM2());
947 TRAP(ret,AppendParagraphOOM());
949 TRAP(ret,ApplyCharFormatOOM1());
951 TRAP(ret,ApplyCharFormatOOM2());
954 delete GlobalPictureFactory;
955 delete GlobalParaFormatLayer;
956 delete GlobalCharFormatLayer;
961 void CT_RICHOOM::setupCleanup()
963 // Initialise the cleanup stack.
966 TheTrapCleanup=CTrapCleanup::New();
967 test(TheTrapCleanup!=NULL);
970 for (TInt i=KTestCleanupStack;i>0;i--)\
971 CleanupStack::PushL((TAny*)0);\
972 CleanupStack::Pop(KTestCleanupStack);\
978 void CT_RICHOOM::DeleteDataFile(const TDesC& aFullName)
981 TInt err = fsSession.Connect();
985 if(fsSession.Entry(aFullName, entry) == KErrNone)
987 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
988 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
991 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
993 err = fsSession.Delete(aFullName);
996 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1003 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1007 CT_RICHOOM::CT_RICHOOM()
1009 SetTestStepName(KTestStep_T_RICHOOM);
1012 TVerdict CT_RICHOOM::doTestStepL()
1014 SetTestStepResult(EFail);
1020 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRICHOOM-0001 RichText OOM Testing "));
1021 TRAPD(error1, doMainL());
1023 delete TheTrapCleanup;
1027 if(error1 == KErrNone)
1029 SetTestStepResult(EPass);
1032 return TestStepResult();