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.
30 #include "../incp/T_PMLPAR.H"
33 LOCAL_D CTestStep *pTestStep = NULL;
36 TBool __bb = (cond); \
37 pTestStep->TEST(__bb); \
40 pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
46 // copy from tefexportconst.h
47 #define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
48 #define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
51 #define UNUSED_VAR(a) a = a
53 const TInt KTestCleanupStack=0x40;
55 class CContainer : public CBase, public MRichTextStoreResolver
58 static CContainer* NewL();
63 virtual const CStreamStore& StreamStoreL(TInt aPos)const;
65 TStreamId StoreL(CStreamStore& aStore)const;
66 void RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFctry);
72 const CParaFormatLayer* iGlobalParaFormatLayer;
73 const CCharFormatLayer* iGlobalCharFormatLayer;
76 LOCAL_D CTrapCleanup* TheTrapCleanup;
77 LOCAL_D RFs TheFs; // the file server
78 LOCAL_D RFile TheFile; // the data file
79 LOCAL_D CFileStore* TheStore; // concrete CStreamStore
80 LOCAL_D CParser* TheParser;
81 LOCAL_D CContainer* TheContainer;
82 LOCAL_D CStreamStore* TheDeferredPictureStore;
84 CContainer* CContainer::NewL()
85 // Create new container & set its components.
88 CContainer* self=new(ELeave) CContainer;
89 CleanupStack::PushL(self);
96 CContainer::CContainer()
101 void CContainer::ConstructL()
103 TFileName theFileName = _L("z:\\test\\app-framework\\etext\\t_picres.pml");
104 TheParser=CParser::NewL();
105 CleanupStack::PushL(TheParser);
106 iText=TheParser->ParseL(theFileName);
107 CleanupStack::PopAndDestroy();
108 iGlobalParaFormatLayer=iText->GlobalParaFormatLayer();
109 iGlobalCharFormatLayer=iText->GlobalCharFormatLayer();
113 CContainer::~CContainer()
116 delete (CParaFormatLayer*)iGlobalParaFormatLayer;
117 delete (CCharFormatLayer*)iGlobalCharFormatLayer;
121 const CStreamStore& CContainer::StreamStoreL(TInt /*aPos*/)const
122 // Return the deferred picture store.
123 // In this instance, the deferred picture store does not vary with document position.
125 {return *TheDeferredPictureStore;}
128 TStreamId CContainer::StoreL(CStreamStore& aStore)const
129 // Store this component
132 CStoreMap* map=CStoreMap::NewLC(aStore);
133 iText->StoreComponentsL(aStore,*map);
135 RStoreWriteStream stream(*map);
136 TStreamId id=stream.CreateLC(aStore);
137 iGlobalParaFormatLayer->ExternalizeL(stream);
138 iGlobalCharFormatLayer->ExternalizeL(stream);
143 CleanupStack::PopAndDestroy(2);
148 void CContainer::RestoreL(const CStreamStore& aStore,TStreamId aId,MPictureFactory* aFactory)
149 // Restore this component
152 RStoreReadStream stream;
153 stream.OpenLC(aStore,aId);
154 iGlobalParaFormatLayer=CParaFormatLayer::NewL(stream);
155 iGlobalCharFormatLayer=CCharFormatLayer::NewL(stream);
156 iText=CRichText::NewL(iGlobalParaFormatLayer,iGlobalCharFormatLayer);
157 iText->SetPictureFactory(aFactory,this);
160 CleanupStack::PopAndDestroy();
162 iText->RestoreComponentsL(aStore);
165 _LIT(KOutputFile, "c:\\etext\\t_word.doc");
166 LOCAL_C void testPictureRestorer(TBool aDeferPictureLoad=ETrue)
167 // Test Picture persistance.
173 TheFs.Delete(KOutputFile);
174 TheFs.MkDirAll(KOutputFile);
175 TheStore=CDirectFileStore::CreateL(TheFs,KOutputFile,EFileRead|EFileWrite);
176 TheDeferredPictureStore=TheStore;
177 CleanupStack::PushL(TheStore);
178 TheStore->SetTypeL(KDirectFileStoreLayoutUid);
180 // Create concrete picture factory.
181 MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
183 TheContainer->iText->Reset();
184 TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
186 TheContainer->iText->SetPictureFactory(factory,TheContainer);
187 // Create some pictures.
188 CXzePicture* pic1=CXzePicture::NewL('x');
189 CleanupStack::PushL(pic1);
190 CXzePicture* pic2=CXzePicture::NewL('z');
191 CleanupStack::PushL(pic2);
192 CXzePicture* pic3=CXzePicture::NewL('e');
193 CleanupStack::PushL(pic3);
195 // Create the picture headers
201 pic1->GetSizeInTwips(size);
202 hdr1.iPictureType=KUidXzePictureType;
204 hdr2.iPictureType=KUidXzePictureType;
206 hdr3.iPictureType=KUidXzePictureType;
209 // Insert the pictures into the rich text
210 TBool hasMarkupData=TheContainer->iText->HasMarkupData();
211 test(!hasMarkupData);
212 TheContainer->iText->CancelInsertCharFormat();
213 TheContainer->iText->InsertL(0,hdr1);
214 TheContainer->iText->InsertL(5,hdr2);
215 TheContainer->iText->InsertL(7,hdr3);
216 TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
217 TheContainer->iText->CancelInsertCharFormat();
218 TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
219 CleanupStack::Pop(3);
220 hasMarkupData=TheContainer->iText->HasMarkupData();
223 // High level Store context
224 TStreamId id=TheContainer->StoreL(*TheStore);
226 delete TheContainer->iText;
227 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
228 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
231 // Now restore the container with rich text
232 TheContainer->RestoreL(*TheStore,id,factory);
233 if (!aDeferPictureLoad)
234 TheContainer->iText->DetachFromStoreL(CPicture::EDetachFull);
236 hasMarkupData=TheContainer->iText->HasMarkupData();
238 test(TheContainer->iText->ParagraphCount()==3);
239 test(TheContainer->iText->DocumentLength()==21);
244 // TEST THE PICTURE HEADERS, DEPENDING ON WHETHER DEFERRED LOADING IS SET OR NOT
245 TPictureHeader hdrA=TheContainer->iText->PictureHeader(1);
246 test(hdrA.iPictureType==KUidXzePictureType);
247 if (aDeferPictureLoad)
249 test(hdrA.iPicture.IsId());
253 test(hdrA.iPicture!=NULL);
254 test(hdrA.iPicture.IsPtr());
255 test(((CXzePicture*)hdrA.iPicture.AsPtr())->iLabel=='x');
257 TPictureHeader hdrB=TheContainer->iText->PictureHeader(7);
258 test(hdrB.iPictureType==KUidXzePictureType);
259 if (aDeferPictureLoad)
261 test(hdrB.iPicture.IsId());
265 test(hdrB.iPicture!=NULL);
266 test(hdrB.iPicture.IsPtr());
267 test(((CXzePicture*)hdrB.iPicture.AsPtr())->iLabel=='z');
269 TPictureHeader hdrC=TheContainer->iText->PictureHeader(9);
270 test(hdrC.iPictureType==KUidXzePictureType);
271 if (aDeferPictureLoad)
273 test(hdrC.iPicture.IsId());
277 test(hdrC.iPicture!=NULL);
278 test(hdrC.iPicture.IsPtr());
279 test(((CXzePicture*)hdrC.iPicture.AsPtr())->iLabel=='e');
281 TPictureHeader hdrD=TheContainer->iText->PictureHeader(0); // This is not a picture character
282 test(hdrD.iPictureType==KNullUid);
283 test(hdrD.iPicture==NULL);
285 test(hdrD.iSize==dummySize);
287 TheContainer->iText->GetChars(view,format,1);
288 test(view[0]==CEditableText::EPictureCharacter);
289 picture=TheContainer->iText->PictureHandleL(1);
290 test(((CXzePicture*)picture)->iLabel=='x');
292 TheContainer->iText->GetChars(view,format,7);
293 test(view[0]==CEditableText::EPictureCharacter);
294 picture=TheContainer->iText->PictureHandleL(7);
295 test(((CXzePicture*)picture)->iLabel=='z');
297 TheContainer->iText->GetChars(view,format,9);
298 test(view[0]==CEditableText::EPictureCharacter);
299 picture=TheContainer->iText->PictureHandleL(9);
300 test(((CXzePicture*)picture)->iLabel=='e');
303 CleanupStack::PopAndDestroy(); // TheStore
307 _LIT(KOutputFile1, "c:\\etext\\t_word1.doc");
308 LOCAL_C void testPictureRestorer2(TBool aAlwaysFailToLoad=EFalse)
309 // Test Picture persistance.
315 TheFs.Delete(KOutputFile1);
316 TheFs.MkDirAll(KOutputFile1);
317 TheStore=CDirectFileStore::CreateL(TheFs,KOutputFile1,EFileRead|EFileWrite);
318 TheDeferredPictureStore=TheStore;
319 CleanupStack::PushL(TheStore);
320 TheStore->SetTypeL(KDirectFileStoreLayoutUid);
322 // Create concrete picture factory.
323 MDemPictureFactory* factory=new(ELeave) MDemPictureFactory;
325 TheContainer->iText->Reset();
326 TheContainer->iText->InsertL(0,_L("Hello Duncan how"));
328 TheContainer->iText->SetPictureFactory(factory,TheContainer);
329 // Create some pictures.
330 CXzeDoor* pic1=CXzeDoor::NewL('x',aAlwaysFailToLoad);
331 CleanupStack::PushL(pic1);
332 CXzeDoor* pic2=CXzeDoor::NewL('z',aAlwaysFailToLoad);
333 CleanupStack::PushL(pic2);
334 CXzePicture* pic3=CXzePicture::NewL('e'); // Control: will always load.
335 CleanupStack::PushL(pic3);
337 // Create the picture headers
343 pic1->GetSizeInTwips(size);
344 hdr1.iPictureType=KUidXzeDoorType;
346 hdr2.iPictureType=KUidXzeDoorType;
348 hdr3.iPictureType=KUidXzePictureType;
351 // Insert the pictures into the rich text
352 TBool hasMarkupData=TheContainer->iText->HasMarkupData();
353 test(!hasMarkupData);
354 TheContainer->iText->CancelInsertCharFormat();
355 TheContainer->iText->InsertL(0,hdr1);
356 TheContainer->iText->InsertL(5,hdr2);
357 TheContainer->iText->InsertL(7,hdr3);
358 TheContainer->iText->InsertL(0,CEditableText::EParagraphDelimiter);
359 TheContainer->iText->CancelInsertCharFormat();
360 TheContainer->iText->InsertL(2,CEditableText::EParagraphDelimiter);
361 CleanupStack::Pop(3); // pic1,2,3 - ownership transferred to rich text
362 hasMarkupData=TheContainer->iText->HasMarkupData();
365 // High level Store context - all pictures currently in memory
366 TStreamId id=TheContainer->StoreL(*TheStore);
368 delete TheContainer->iText;
369 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
370 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
373 // Now restore the container with rich text
374 TheContainer->RestoreL(*TheStore,id,factory);
377 // Now store the stuff again
379 TheContainer->iText->DetachFromStoreL(CPicture::EDetachFull));
380 if (ret==KErrNotSupported)
381 INFO_PRINTF1(_L(" SIMULATION: Some picture data is not supported by the current factory."));
382 // if (aAlwaysFailToLoad)
383 // test(error==KErrNotFound);
385 // test(error==KErrNone);
388 id=TheContainer->StoreL(*TheStore));
391 // ...and restore it to check what we have got.
392 delete TheContainer->iText;
393 delete (CParaFormatLayer*)TheContainer->iGlobalParaFormatLayer;
394 delete (CCharFormatLayer*)TheContainer->iGlobalCharFormatLayer;
395 TheContainer->RestoreL(*TheStore,id,factory);
396 TInt pictureCount=TheContainer->iText->PictureCount();
397 if (aAlwaysFailToLoad)
399 test(pictureCount==1);
403 test(pictureCount==3);
407 CleanupStack::PopAndDestroy(); // TheStore
416 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-TTEXT-LEGACY-T_PICRES-0001 RichText Storing - with pictures deferred loading "));
417 TheContainer=CContainer::NewL();
419 testPictureRestorer());
421 delete TheContainer; // deletes the rich text, which deletes the contained pictures.
424 INFO_PRINTF1(_L("RichText Storing - with pictures auto loading"));
425 TheContainer=CContainer::NewL();
427 testPictureRestorer(EFalse)); // DO NOT DEFER PICTURE LOADING
429 delete TheContainer; // deletes the rich text, which deletes the contained pictures.
433 INFO_PRINTF1(_L("Testing no missing picture app's"));
434 TheContainer=CContainer::NewL();
436 testPictureRestorer2());
438 delete TheContainer; // deletes the rich text, which deletes the contained pictures.
442 TEST NOW REDUNDANT AS OF NEW PICTURE CONTAINMENT MECHANISM AS AT RELEASE 073
444 INFO_PRINTF1(_L("Testing missing picture app's"));
445 TheContainer=CContainer::NewL();
447 testPictureRestorer2(ETrue)); // ALWAYS FAIL TO DETACH FROM STORE
449 delete TheContainer; // deletes the rich text, which deletes the contained pictures.
454 LOCAL_C void setupCleanup()
456 // Initialise the cleanup stack.
460 TheTrapCleanup=CTrapCleanup::New();
463 for (TInt i=KTestCleanupStack;i>0;i--)\
464 CleanupStack::PushL((TAny*)1);\
466 CleanupStack::Pop(KTestCleanupStack);\
471 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
474 TInt err = fsSession.Connect();
478 if(fsSession.Entry(aFullName, entry) == KErrNone)
480 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
481 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
484 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
486 err = fsSession.Delete(aFullName);
489 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
496 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
500 CT_PICRES::CT_PICRES()
502 SetTestStepName(KTestStep_T_PICRES);
506 TVerdict CT_PICRES::doTestStepL()
508 SetTestStepResult(EFail);
510 INFO_PRINTF1(_L("Testing Picture Restorer mechanism"));
515 delete TheTrapCleanup;
519 ::DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
520 ::DeleteDataFile(KOutputFile1);
524 SetTestStepResult(EPass);
527 return TestStepResult();