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.
25 #include "../incp/T_PMLPAR.H"
30 TBool __bb = (cond); \
34 ERR_PRINTF1(_L("ERROR: Test Failed")); \
39 #define UNUSED_VAR(a) a = a
41 const TInt KTestCleanupStack=0x20;
43 LOCAL_D CTrapCleanup* TheTrapCleanup;
45 LOCAL_D CRichText* TheText=NULL;
46 LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
47 LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
50 ////////////////////////////////////////////////////////////////////////////////////////////
51 class TTestFieldFactoryCONVRT : public MTextFieldFactory
54 // from MTextFieldFactory
55 virtual CTextField* NewFieldL(TUid aFieldType);
56 // Creates a field of the type specified
57 // Returns NULL if it does not recognise/support the field type
60 CTextField* TTestFieldFactoryCONVRT::NewFieldL(TUid aFieldType)
61 // Creates a field (in aHeader) of the type specified in aHeader
64 CTextField* field=NULL;
65 if (aFieldType==KDateTimeFieldUid)
66 field = (CTextField*)new(ELeave) CDateTimeField();
69 /////////////////////////////////////////////////////////////////////////////////////////////
71 _LIT(KOutputFile, "c:\\etext\\t_convrt.tst");
73 void CT_CONVRT::testStoreRestoreL(T& aCopy,const T& aOriginal)
74 // Test document persistance.
81 theFs.Delete(KOutputFile);
82 theFs.MkDirAll(KOutputFile);
83 CFileStore* theStore = CDirectFileStore::CreateL(theFs, KOutputFile, EFileRead | EFileWrite);
84 CleanupStack::PushL(theStore);
85 theStore->SetTypeL(KDirectFileStoreLayoutUid);
89 TRAPD(ret,id=aOriginal.StoreL(*theStore));
92 // restore into the copy
93 TRAP(ret,aCopy.RestoreL(*theStore,id));
97 CleanupStack::PopAndDestroy(); // theStore
102 TInt CT_CONVRT::IsEqual(const CEditableText* aCopy,const CEditableText* aOriginal)
104 // Returns true if aCopy contents matches aOriginal contents.
105 // Takes account of multiple segments of a segmented text component.
108 TInt lengthOfOriginal=aOriginal->DocumentLength();
109 TInt lengthOfCopy=aCopy->DocumentLength();
110 test(lengthOfOriginal==lengthOfCopy);
115 while(lengthRead<=lengthOfOriginal)
117 copy.Set((aCopy->Read(lengthRead)));
118 orig.Set((aOriginal->Read(lengthRead)));
119 for (TInt offset=0; offset<copy.Length(); offset++)
120 test(copy[offset]==orig[offset]);
121 lengthRead+=copy.Length();
123 test(lengthRead==lengthOfOriginal+1);
128 void CT_CONVRT::DoTestRichTextL()
130 // Test streaming CRichText.
132 {// Create the global text components.
133 const TInt KSmallestTextBuffer=1;
134 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
135 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
137 CRichText* theCopy=NULL;
140 TInt size=User::Available(biggest);
143 theCopy=CRichText::NewL(paraLayer,charLayer,CEditableText::ESegmentedStorage,KSmallestTextBuffer));
145 TInt newsize=User::Available(biggest);
146 TInt footprint=size-newsize;
148 size=User::Available(biggest);
149 CGlobalText* gText=NULL;
151 gText=CGlobalText::NewL(paraLayer,charLayer,CEditableText::ESegmentedStorage,KSmallestTextBuffer));
152 newsize=User::Available(biggest);
153 TInt globalPrint=size-newsize;
155 buf.Format(_L("Empty rich text takes: %d bytes\n"),footprint);
157 buf.Format(_L("Empty global text takes: %d bytes\n"),globalPrint);
162 // Now add a text field to this.
163 TTestFieldFactoryCONVRT factory;
164 TheText->SetFieldFactory(&factory);
165 theCopy->SetFieldFactory(&factory);
166 CTextField* field=NULL;
168 field=factory.NewFieldL(KDateTimeFieldUid));
171 TheText->InsertFieldL(0,field,KDateTimeFieldUid));
174 TheText->UpdateFieldL(0));
177 // Do the store/restore and test
178 testStoreRestoreL(*theCopy,*TheText);
179 test(IsEqual(theCopy,TheText));
180 theCopy->Reset(); // lets me see inside the invariant;
188 void CT_CONVRT::LoadIntoText(TFileName& aFileName)
191 CParser* myParser=NULL;
193 myParser=CParser::NewL());
194 test(ret == KErrNone);
196 TheText=myParser->ParseL(aFileName));
197 test(ret == KErrNone);
198 TheGlobalParaLayer=(CParaFormatLayer*)TheText->GlobalParaFormatLayer();
199 TheGlobalCharLayer=(CCharFormatLayer*)TheText->GlobalCharFormatLayer();
204 void CT_CONVRT::KillText()
211 void CT_CONVRT::KillLayers()
213 delete TheGlobalParaLayer;
214 delete TheGlobalCharLayer;
218 void CT_CONVRT::Reset()
226 void CT_CONVRT::GoL()
229 INFO_PRINTF1(_L("Rich Text of Shared Para Formats Only"));
230 TFileName fileName=_L("z:\\test\\app-framework\\etext\\shared.pml");
231 LoadIntoText(fileName);
232 TBool hasMarkupData=TheText->HasMarkupData();
237 INFO_PRINTF1(_L("Rich Text with specific character formatting"));
238 fileName=_L("z:\\test\\app-framework\\etext\\test1.pml");
239 LoadIntoText(fileName);
240 hasMarkupData=TheText->HasMarkupData();
247 void CT_CONVRT::setupCleanup()
249 // Initialise the cleanup stack.
253 TheTrapCleanup=CTrapCleanup::New();
256 for (TInt i=KTestCleanupStack;i>0;i--)\
257 CleanupStack::PushL((TAny*)1);\
259 CleanupStack::Pop(KTestCleanupStack);\
264 void CT_CONVRT::DeleteDataFile(const TDesC& aFullName)
267 TInt err = fsSession.Connect();
271 if(fsSession.Entry(aFullName, entry) == KErrNone)
273 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
274 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
277 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
279 err = fsSession.Delete(aFullName);
282 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
289 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
293 CT_CONVRT::CT_CONVRT()
295 SetTestStepName(KTestStep_T_CONVRT);
298 TVerdict CT_CONVRT::doTestStepL()
300 SetTestStepResult(EFail);
305 INFO_PRINTF1(_L("T_CONVRT - Rich Text Persistence"));
306 INFO_PRINTF1(_L("Persisting Rich Text"));
307 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVRT-0001 "));
308 TRAPD(error1, GoL());
311 delete TheTrapCleanup;
313 if(error1 == KErrNone)
315 SetTestStepResult(EPass);
318 return TestStepResult();