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.
29 TBool __bb = (cond); \
33 ERR_PRINTF1(_L("ERROR: Test Failed")); \
38 const TInt KTestCleanupStack=0x20;
40 LOCAL_D CTrapCleanup* TheTrapCleanup;
42 LOCAL_D TPtrC bigBuf(_L("This is a very big buffer indeed, containing text and special characters,\
43 big enough to fill a segment of an editable text component that employs segmented storage"));
45 ////////////////////////////////////////////////////////////////////////////////////////////
46 class TTestFieldFactoryCONVS1 : public MTextFieldFactory
49 // from MTextFieldFactory
50 virtual CTextField* NewFieldL(TUid aFieldType);
51 // Creates a field of the type specified
52 // Returns NULL if it does not recognise/support the field type
55 CTextField* TTestFieldFactoryCONVS1::NewFieldL(TUid aFieldType)
56 // Creates a field (in aHeader) of the type specified in aHeader
59 CTextField* field=NULL;
60 if (aFieldType==KDateTimeFieldUid)
61 field = (CTextField*)new(ELeave) CDateTimeField();
64 /////////////////////////////////////////////////////////////////////////////////////////////
66 _LIT(KOutputFile, "c:\\etext\\t_convs1.tst");
68 void CT_CONVS1::testStoreRestoreL(T& aCopy,const T& aOriginal)
69 // Test document persistance.
76 theFs.Delete(KOutputFile);
77 theFs.MkDirAll(KOutputFile);
78 CFileStore* theStore=CDirectFileStore::CreateL(theFs,KOutputFile,EFileRead|EFileWrite);
79 CleanupStack::PushL(theStore);
80 theStore->SetTypeL(KDirectFileStoreLayoutUid);
84 TRAPD(ret,id=aOriginal.StoreL(*theStore));
87 // restore into the copy
88 TRAP(ret,aCopy.RestoreL(*theStore,id));
92 CleanupStack::PopAndDestroy(); // theStore
96 TInt CT_CONVS1::IsEqual(const CPlainText* aCopy,const CPlainText* aOriginal)
98 // Tests for equality of plain text components.
99 // Takes account of multiple segments of a segmented text component.
102 TInt lengthOfOriginal=aOriginal->DocumentLength();
103 TInt lengthOfCopy=aCopy->DocumentLength();
104 test(lengthOfOriginal==lengthOfCopy);
109 while(lengthRead<=lengthOfOriginal)
111 copy.Set((aCopy->Read(lengthRead)));
112 orig.Set((aOriginal->Read(lengthRead)));
113 for (TInt offset=0; offset<orig.Length(); offset++)
114 test(copy[offset]==orig[offset]);
115 lengthRead+=orig.Length();
117 test(lengthRead==lengthOfOriginal+1);
118 INFO_PRINTF1(_L("Restored plain text component matches original"));
119 TInt copyFieldCount=aCopy->FieldCount();
120 TInt origFieldCount=aOriginal->FieldCount();
121 test(copyFieldCount==origFieldCount);
126 TInt CT_CONVS1::DocsEqual(const CGlobalText* aCopy,const CGlobalText* aOrig)
131 test(IsEqual(aCopy,aOrig));
136 void CT_CONVS1::GenerateGlobalTextL()
138 // Create a global text documnet.
141 // Set up the character format layer.
142 CCharFormatLayer* cl1=CCharFormatLayer::NewL();
143 TCharFormat charFormat; TCharFormatMask charMask;
145 charFormat.iFontSpec.iFontStyle.SetStrokeWeight(EStrokeWeightBold); charMask.SetAttrib(EAttFontStrokeWeight);
146 charFormat.iFontSpec.iFontStyle.SetPosture(EPostureItalic); charMask.SetAttrib(EAttFontPosture);
147 charFormat.iFontPresentation.iUnderline=EUnderlineOn; charMask.SetAttrib(EAttFontUnderline);
148 cl1->SetL(charFormat,charMask);
150 // Set up the paragraph format layer.
151 CParaFormatLayer* l1=CParaFormatLayer::NewL();
152 CParaFormat* paraFormat=CParaFormat::NewL(); TParaFormatMask paraMask;
155 tab1.iTwipsPosition=5000; tab2.iTwipsPosition=5001;
156 tab1.iType=TTabStop::ERightTab; tab2.iType=TTabStop::ECenteredTab;
157 paraFormat->StoreTabL(tab1);
158 paraFormat->StoreTabL(tab2);
159 paraMask.SetAttrib(EAttTabStop);
160 paraFormat->iLeftMarginInTwips=666; paraMask.SetAttrib(EAttLeftMargin);
161 l1->SetL(paraFormat,paraMask);
163 // Now create the global text component.
164 CGlobalText* globalDoc=CGlobalText::NewL(l1,cl1,CEditableText::ESegmentedStorage);
165 globalDoc->InsertL(0,bigBuf);
166 // Now create the global text that will be the restored one.
167 CCharFormatLayer* cr1=CCharFormatLayer::NewL();
168 TCharFormat ff;TCharFormatMask mm;cr1->SetL(ff,mm);
169 CParaFormatLayer* r1=CParaFormatLayer::NewL();
170 TParaFormatMask nn; r1->SetL((CParaFormat*)NULL,nn);
171 CGlobalText* restoredDoc=CGlobalText::NewL(r1,cr1,CEditableText::ESegmentedStorage);
172 // Store a text field in the global text.
173 TTestFieldFactoryCONVS1 factory;
174 globalDoc->SetFieldFactory(&factory);
175 restoredDoc->SetFieldFactory(&factory);
176 CTextField* field=NULL;
178 field=factory.NewFieldL(KDateTimeFieldUid));
181 globalDoc->InsertFieldL(0,field,KDateTimeFieldUid));
183 // And do the streaming/restore.
184 INFO_PRINTF1(_L("Storing global text with field record"));
185 INFO_PRINTF1(_L("Restoring global text"));
186 testStoreRestoreL(*restoredDoc,*globalDoc);
187 test(DocsEqual(restoredDoc,globalDoc));
189 TInt restoredCharChain=cr1->ChainCount();
190 TInt restoredParaChain=r1->ChainCount();
191 CCharFormatLayer* chCurrent=cr1;
192 CCharFormatLayer* chNext=(CCharFormatLayer*)cr1->SenseBase();
194 for (TInt loop=0;loop<restoredCharChain-1;loop++)
197 chNext=(CCharFormatLayer*)chCurrent->SenseBase();
200 CParaFormatLayer* paCurrent=r1;
201 CParaFormatLayer* paNext=(CParaFormatLayer*)r1->SenseBase();
203 for (TInt ploop=0;ploop<restoredParaChain-1;ploop++)
206 paNext=(CParaFormatLayer*)paCurrent->SenseBase();
217 void CT_CONVS1::setupCleanup()
219 // Initialise the cleanup stack.
223 TheTrapCleanup=CTrapCleanup::New();
226 for (TInt i=KTestCleanupStack;i>0;i--)\
227 CleanupStack::PushL((TAny*)1);\
229 CleanupStack::Pop(KTestCleanupStack);\
234 void CT_CONVS1::DeleteDataFile(const TDesC& aFullName)
237 TInt err = fsSession.Connect();
241 if(fsSession.Entry(aFullName, entry) == KErrNone)
243 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
244 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
247 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
249 err = fsSession.Delete(aFullName);
252 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
259 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
263 CT_CONVS1::CT_CONVS1()
265 SetTestStepName(KTestStep_T_CONVS1);
268 TVerdict CT_CONVS1::doTestStepL()
270 SetTestStepResult(EFail);
275 INFO_PRINTF1(_L("T_CONVS1 - GlobalText Persistence"));
276 INFO_PRINTF1(_L("Generate global text"));
277 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_CONVS1-0001 "));
278 TRAPD(error1, GenerateGlobalTextL());
281 DeleteDataFile(KOutputFile); //deletion of data files must be before call to End() - DEF047652
282 delete TheTrapCleanup;
284 if(error1 == KErrNone)
286 SetTestStepResult(EPass);
289 return TestStepResult();