First public contribution.
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.
30 #include "../incp/T_PMLPAR.H"
31 //#include "../spml/T_PMLPAR.CPP"
34 LOCAL_D CTestStep *pTestStep = NULL;
37 TBool __bb = (cond); \
38 pTestStep->TEST(__bb); \
41 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
47 // copy from tefexportconst.h
48 #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
49 #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
51 // included in a namespace, to avoid confliction
53 /* this fixes a MSVC link warning */
55 #pragma comment (linker, "/opt:noref")
58 #define UNUSED_VAR(a) a = a
60 const TInt KTestCleanupStack=0x40;
62 _LIT(KExportFileName1, "c:\\etext\\t_para.txg");
63 _LIT(KExportFileName2, "c:\\etext\\t_para2.txg");
65 void EnsureFileExists(const TDesC& aName)
71 file.Create(fs, aName, EFileRead|EFileWrite);
76 class CContainer : public CBase, public MRichTextStoreResolver
79 static CContainer* NewL(TFileName aFileName);
84 virtual const CStreamStore& StreamStoreL(TInt aPos)const;
86 TStreamId StoreL(CStreamStore& aStore)const;
87 void RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFctry);
90 void ConstructL(TFileName aFileName);
93 const CParaFormatLayer* iGlobalParaFormatLayer;
94 const CCharFormatLayer* iGlobalCharFormatLayer;
97 LOCAL_D CTrapCleanup* TheTrapCleanup;
98 LOCAL_D RFs TheFs; // the file server
99 LOCAL_D RFile TheFile; // the data file
100 LOCAL_D CParser* TheParser;
101 LOCAL_D CContainer* TheContainer;
102 LOCAL_D CStreamStore* TheDeferredPictureStore;
104 CContainer* CContainer::NewL(TFileName aFileName)
105 // Create new container & set its components.
108 CContainer* self=new(ELeave) CContainer;
109 CleanupStack::PushL(self);
110 self->ConstructL(aFileName);
116 CContainer::CContainer()
121 void CContainer::ConstructL(TFileName aFileName)
123 TheParser=CParser::NewL();
124 CleanupStack::PushL(TheParser);
125 iText=TheParser->ParseL(aFileName);
126 CleanupStack::PopAndDestroy();
127 iGlobalParaFormatLayer=iText->GlobalParaFormatLayer();
128 iGlobalCharFormatLayer=iText->GlobalCharFormatLayer();
132 CContainer::~CContainer()
135 delete (CParaFormatLayer*)iGlobalParaFormatLayer;
136 delete (CCharFormatLayer*)iGlobalCharFormatLayer;
140 const CStreamStore& CContainer::StreamStoreL(TInt /*aPos*/)const
141 // Return the deferred picture store.
142 // In this instance, the deferred picture store does not vary with document position.
144 {return *TheDeferredPictureStore;}
147 TStreamId CContainer::StoreL(CStreamStore& aStore)const
148 // Store this component
151 CStoreMap* map=CStoreMap::NewLC(aStore);
152 iText->StoreComponentsL(aStore,*map);
154 RStoreWriteStream stream(*map);
155 TStreamId id=stream.CreateLC(aStore);
156 iGlobalParaFormatLayer->ExternalizeL(stream);
157 iGlobalCharFormatLayer->ExternalizeL(stream);
162 CleanupStack::PopAndDestroy(2);
167 void CContainer::RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFactory)
168 // Restore this component
171 RStoreReadStream stream;
172 stream.OpenLC(aStore,aId);
173 iGlobalParaFormatLayer=CParaFormatLayer::NewL(stream);
174 iGlobalCharFormatLayer=CCharFormatLayer::NewL(stream);
175 iText=CRichText::NewL(iGlobalParaFormatLayer,iGlobalCharFormatLayer);
176 iText->SetPictureFactory(aFactory,this);
179 CleanupStack::PopAndDestroy();
181 iText->RestoreComponentsL(aStore);
185 /*LOCAL_C void testPictureRestorer(TBool aDeferPictureLoad=ETrue)
186 // Test Picture persistance.
192 TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word.doc"),EFileRead|EFileWrite);
193 TheDeferredPictureStore=TheStore;
194 CleanupStack::PushL(TheStore);
195 TheStore->SetTypeL(KDirectFileStoreLayout);
197 // Create concrete picture factory.
198 MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
200 TheContainer->iText->Reset();
201 TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
203 TheContainer->iText->SetPictureFactory(factory,TheContainer);
204 // Create some pictures.
205 CXzePicture* pic1=CXzePicture::NewL('x');
206 CleanupStack::PushL(pic1);
207 CXzePicture* pic2=CXzePicture::NewL('z');
208 CleanupStack::PushL(pic2);
209 CXzePicture* pic3=CXzePicture::NewL('e');
210 CleanupStack::PushL(pic3);
212 // Create the picture headers
218 pic1->GetSizeInTwips(size);
219 hdr1.iPictureType=KUidXzePictureType;
221 hdr2.iPictureType=KUidXzePictureType;
223 hdr3.iPictureType=KUidXzePictureType;
226 // Insert the pictures into the rich text
227 TBool hasMarkupData=TheContainer->iText->HasMarkupData();
228 test(!hasMarkupData);
229 TheContainer->iText->CancelInsertCharFormat();
230 TheContainer->iText->InsertL(0,hdr1);
231 TheContainer->iText->InsertL(5,hdr2);
232 TheContainer->iText->InsertL(7,hdr3);
233 TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
234 TheContainer->iText->CancelInsertCharFormat();
235 TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
236 CleanupStack::Pop(3);
237 hasMarkupData=TheContainer->iText->HasMarkupData();
240 // High level Store context
241 TStreamId id=TheContainer->StoreL(*TheStore);
243 delete TheContainer->iText;
244 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
245 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
248 // Now restore the container with rich text
249 TheContainer->RestoreL(*TheStore,id,factory);
250 if (!aDeferPictureLoad)
251 TheContainer->iText->LoadAllPicturesNowL();
253 hasMarkupData=TheContainer->iText->HasMarkupData();
255 test(TheContainer->iText->ParagraphCount()==3);
256 test(TheContainer->iText->DocumentLength()==21);
261 // TEST THE PICTURE HEADERS, DEPENDING ON WHETHER DEFERRED LOADING IS SET OR NOT
262 TPictureHeader hdrA=TheContainer->iText->PictureHeader(1);
263 test(hdrA.iPictureType==KUidXzePictureType);
264 if (aDeferPictureLoad)
266 test(hdrA.iPicture.IsId());
270 test(hdrA.iPicture!=NULL);
271 test(hdrA.iPicture.IsPtr());
272 test(((CXzePicture*)hdrA.iPicture.AsPtr())->iLabel=='x');
274 TPictureHeader hdrB=TheContainer->iText->PictureHeader(7);
275 test(hdrB.iPictureType==KUidXzePictureType);
276 if (aDeferPictureLoad)
278 test(hdrB.iPicture.IsId());
282 test(hdrB.iPicture!=NULL);
283 test(hdrB.iPicture.IsPtr());
284 test(((CXzePicture*)hdrB.iPicture.AsPtr())->iLabel=='z');
286 TPictureHeader hdrC=TheContainer->iText->PictureHeader(9);
287 test(hdrC.iPictureType==KUidXzePictureType);
288 if (aDeferPictureLoad)
290 test(hdrC.iPicture.IsId());
294 test(hdrC.iPicture!=NULL);
295 test(hdrC.iPicture.IsPtr());
296 test(((CXzePicture*)hdrC.iPicture.AsPtr())->iLabel=='e');
298 TPictureHeader hdrD=TheContainer->iText->PictureHeader(0); // This is not a picture character
299 test(hdrD.iPictureType==KNullUid);
300 test(hdrD.iPicture==NULL);
302 test(hdrD.iSize==dummySize);
304 TheContainer->iText->GetChars(view,format,1);
305 test(view[0]==CEditableText::EPictureCharacter);
306 picture=TheContainer->iText->PictureHandleL(1);
307 test(((CXzePicture*)picture)->iLabel=='x');
309 TheContainer->iText->GetChars(view,format,7);
310 test(view[0]==CEditableText::EPictureCharacter);
311 picture=TheContainer->iText->PictureHandleL(7);
312 test(((CXzePicture*)picture)->iLabel=='z');
314 TheContainer->iText->GetChars(view,format,9);
315 test(view[0]==CEditableText::EPictureCharacter);
316 picture=TheContainer->iText->PictureHandleL(9);
317 test(((CXzePicture*)picture)->iLabel=='e');
320 CleanupStack::PopAndDestroy(); // TheStore
325 LOCAL_C void testPictureRestorer2(TBool aAlwaysFailToLoad=EFalse)
326 // Test Picture persistance.
332 TheStore=CDirectFileStore::ReplaceL(TheFs,_L("c:\\etext\\t_word1.doc"),EFileRead|EFileWrite);
333 TheDeferredPictureStore=TheStore;
334 CleanupStack::PushL(TheStore);
335 TheStore->SetTypeL(KDirectFileStoreLayout);
337 // Create concrete picture factory.
338 MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
340 TheContainer->iText->Reset();
341 TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
343 TheContainer->iText->SetPictureFactory(factory,TheContainer);
344 // Create some pictures.
345 CXzeDoor* pic1=CXzeDoor::NewL('x',aAlwaysFailToLoad);
346 CleanupStack::PushL(pic1);
347 CXzeDoor* pic2=CXzeDoor::NewL('z',aAlwaysFailToLoad);
348 CleanupStack::PushL(pic2);
349 CXzePicture* pic3=CXzePicture::NewL('e'); // Control: will always load.
350 CleanupStack::PushL(pic3);
352 // Create the picture headers
358 pic1->GetSizeInTwips(size);
359 hdr1.iPictureType=KUidXzeDoorType;
361 hdr2.iPictureType=KUidXzeDoorType;
363 hdr3.iPictureType=KUidXzePictureType;
366 // Insert the pictures into the rich text
367 TBool hasMarkupData=TheContainer->iText->HasMarkupData();
368 test(!hasMarkupData);
369 TheContainer->iText->CancelInsertCharFormat();
370 TheContainer->iText->InsertL(0,hdr1);
371 TheContainer->iText->InsertL(5,hdr2);
372 TheContainer->iText->InsertL(7,hdr3);
373 TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
374 TheContainer->iText->CancelInsertCharFormat();
375 TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
376 CleanupStack::Pop(3); // pic1,2,3 - ownership transferred to rich text
377 hasMarkupData=TheContainer->iText->HasMarkupData();
380 // High level Store context - all pictures currently in memory
381 TStreamId id=TheContainer->StoreL(*TheStore);
383 delete TheContainer->iText;
384 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
385 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
388 // Now restore the container with rich text
389 TheContainer->RestoreL(*TheStore,id,factory);
392 // Now store the stuff again
393 TInt error=TheContainer->iText->LoadAllPicturesNowL();
394 if (error==KErrNotFound)
395 INFO_PRINTF1(_L(" SIMULATION: Some picture data has been removed as no app could be found."));
396 // if (aAlwaysFailToLoad)
397 // test(error==KErrNotFound);
399 // test(error==KErrNone);
402 id=TheContainer->StoreL(*TheStore));
403 test(error==KErrNone);
405 // ...and restore it to check what we have got.
406 delete TheContainer->iText;
407 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
408 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
409 TheContainer->RestoreL(*TheStore,id,factory);
410 TInt pictureCount=TheContainer->iText->PictureCount();
411 if (aAlwaysFailToLoad)
412 test(pictureCount==1);
414 test(pictureCount==3);
417 CleanupStack::PopAndDestroy(); // TheStore
422 LOCAL_C void CompareRichTextL(CRichText *aDoc1,CRichText *aDoc2)
425 INFO_PRINTF1(_L("Comparing Documents"));
428 TInt ii=0,len1,len2,pos1,pos2,oldPos;
430 INFO_PRINTF1(_L("Document Length"));
431 length=aDoc1->LdDocumentLength();
432 num2=aDoc2->LdDocumentLength();
435 INFO_PRINTF1(_L("Paragraph Count"));
436 num1=aDoc1->ParagraphCount();
437 num2=aDoc2->ParagraphCount();
440 INFO_PRINTF1(_L("Paragraph Lengths"));
446 pos1=aDoc1->CharPosOfParagraph(len1,ii);
447 pos2=aDoc2->CharPosOfParagraph(len2,ii);
453 INFO_PRINTF1(_L("Word Count"));
454 num1=aDoc1->WordCount();
455 num2=aDoc2->WordCount();
458 INFO_PRINTF1(_L("Characters"));
459 TCharFormat format1,format2;
465 aDoc1->GetChars(chars1,format1,ii);
466 aDoc2->GetChars(chars2,format2,ii);
467 len1=Min(chars1.Length(),chars2.Length());
468 test(chars1.Left(len1)==chars2.Left(len1));
469 test(format1.IsEqual(format2));
470 test(format2.IsEqual(format1));
482 CParaFormatLayer* pLayer=CParaFormatLayer::NewL();
483 CCharFormatLayer* cLayer=CCharFormatLayer::NewL();
484 CRichText *document=CRichText::NewL(pLayer,cLayer);
487 INFO_PRINTF1(_L("Document with single Paragraph"));
488 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_TRAN-0001 "));
490 TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
491 INFO_PRINTF1(_L("Exporting a file by Para"));
492 TFileName exportFile=KExportFileName1();
493 EnsureFileExists(exportFile);
494 TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
496 INFO_PRINTF1(_L("Importing a file by Para"));
498 TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
499 test(charsImported>0);
500 INFO_PRINTF1(_L("Comparing Result"));
501 TRAP(err,CompareRichTextL(TheContainer->iText,document));
507 TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
508 INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
509 INFO_PRINTF1(_L("Line Lengths 25,30,...,95"));
510 TFileName exportFile=KExportFileName1();
512 for(ii=25;ii<100;ii+=5)
514 INFO_PRINTF1(_L("With next line length"));
515 EnsureFileExists(exportFile);
516 TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
519 TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
520 test(charsImported>0);
521 TRAP(err,CompareRichTextL(TheContainer->iText,document));
529 INFO_PRINTF1(_L("Document with two Paragraphs"));
532 TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para2.pml"));
533 INFO_PRINTF1(_L("Exporting a file by Para"));
534 TFileName exportFile=KExportFileName2();
535 EnsureFileExists(exportFile);
536 TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
538 INFO_PRINTF1(_L("Importing a file by Para"));
540 TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByParagraph);
541 test(charsImported>0);
542 INFO_PRINTF1(_L("Comparing Result"));
543 TRAP(err,CompareRichTextL(TheContainer->iText,document));
549 TheContainer=CContainer::NewL(_L("z:\\test\\app-framework\\etext\\t_para.pml"));
550 INFO_PRINTF1(_L("Exporting and Importing a file by Line"));
551 INFO_PRINTF1(_L("Line Lengths 30,40,...,100"));
552 TFileName exportFile=KExportFileName1();
554 for(ii=30;ii<105;ii+=10)
556 INFO_PRINTF1(_L("With next line length"));
557 EnsureFileExists(exportFile);
558 TRAP(err,TheContainer->iText->ExportAsTextL(exportFile,CPlainText::EOrganiseByLine,ii));
561 TInt charsImported=document->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
562 test(charsImported>0);
563 TRAP(err,CompareRichTextL(TheContainer->iText,document));
578 LOCAL_C void setupCleanup()
580 // Initialise the cleanup stack.
584 TheTrapCleanup=CTrapCleanup::New();
587 for (TInt i=KTestCleanupStack;i>0;i--)\
588 CleanupStack::PushL((TAny*)1);\
590 CleanupStack::Pop(KTestCleanupStack);\
595 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
598 TInt err = fsSession.Connect();
602 if(fsSession.Entry(aFullName, entry) == KErrNone)
604 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
605 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
608 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
610 err = fsSession.Delete(aFullName);
613 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
620 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
627 SetTestStepName(KTestStep_T_TRAN);
631 TVerdict CT_TRAN::doTestStepL()
633 SetTestStepResult(EFail);
635 INFO_PRINTF1(_L("Testing Picture Restorer mechanism"));
638 T_TRAN::setupCleanup();
639 TRAPD(r, T_TRAN::GoL());
641 delete T_TRAN::TheTrapCleanup;
645 T_TRAN::DeleteDataFile(T_TRAN::KExportFileName1); //deletion of data files must be before call to End() - DEF047652
646 T_TRAN::DeleteDataFile(T_TRAN::KExportFileName2);
650 SetTestStepResult(EPass);
653 return TestStepResult();