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.
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))
50 /* this fixes a MSVC link warning */
52 #pragma comment (linker, "/opt:noref")
55 #define UNUSED_VAR(a) a = a
57 const TInt KTestCleanupStack=0x40;
59 _LIT(KTestFileName1, "c:\\etext\\climb.txg");
60 _LIT(KTestFileName2, "c:\\etext\\import1.txg");
62 LOCAL_D void EnsureFileExists(const TDesC& aName)
68 file.Create(fs, aName, EFileRead|EFileWrite);
73 LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
74 LOCAL_D CPlainText* TheText=NULL;
75 LOCAL_D CRichText* richText=NULL;
76 LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
77 LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
81 LOCAL_C void CreateTextL()
84 TheText=CPlainText::NewL();
86 TCharFormat charFormat;
87 TCharFormatMask charMask;
88 TheGlobalCharLayer=CCharFormatLayer::NewL(charFormat,charMask);
89 TParaFormatMask paraMask;
90 TheGlobalParaLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
91 richText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
95 LOCAL_C void DestroyText()
99 delete TheGlobalParaLayer;
100 delete TheGlobalCharLayer;
104 LOCAL_C void ResetTextL()
105 // Initialise the rich text.
111 LOCAL_C void ImportText1()
114 TFileName file=_L("z:\\test\\app-framework\\etext\\import1.txt");
116 TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
117 test(TheText->DocumentLength()==51);
118 test(TheText->ParagraphCount()==10);
121 TFileName exportFile=KTestFileName2();
122 EnsureFileExists(exportFile);
123 TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0);
125 // and import this export ?!!
126 count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
127 TInt documentLength=TheText->DocumentLength();
128 test(documentLength==49);
129 TInt paraCount=TheText->ParagraphCount();
136 LOCAL_C void ImportText2()
137 // A very long text file of a realistic document nature!
140 TFileName file=_L("z:\\test\\app-framework\\etext\\climb.txt");
142 TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
143 TInt documentLength=TheText->DocumentLength();
144 test(documentLength==18396);
145 TInt paraCount=TheText->ParagraphCount();
146 test(paraCount==158);
147 TInt wordCount=TheText->WordCount();
148 test(wordCount=3450);
150 TFileName exportFile=KTestFileName1();
153 EnsureFileExists(exportFile);
155 TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
159 // and import this export ?!!??!
160 count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
161 documentLength=TheText->DocumentLength();
162 paraCount=TheText->ParagraphCount();
163 wordCount=TheText->WordCount();
164 test(documentLength==18362);
166 test(wordCount=3450);
172 Test code for INC044582 - [MX0416] Document - Document application crashed when converting file.
173 This occurs when more than 256 styles are used. The fix to this defect is to Leave with
174 KErrNotSupported if there are more than 256 styles
176 LOCAL_C void TestInc044582()
181 // create an empty style list
182 CStyleList* list=CStyleList::NewL();
184 // create formats and add to cleanup stack
185 CParaFormatLayer* GlobalParaFormatLayer=CParaFormatLayer::NewL();
186 CleanupStack::PushL(GlobalParaFormatLayer);
187 CCharFormatLayer* GlobalCharFormatLayer=CCharFormatLayer::NewL();
188 CleanupStack::PushL(GlobalCharFormatLayer);
190 // create RichText object and supply empty Style list
191 CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list);
193 // Load the RichText object with 300 paragraphs
194 _LIT(para, "A line of text\x2029");
195 for (TInt Z=0; Z<300; Z++)
197 // a line of text foloowed by the paragraph separator
198 richText1->InsertL(0,para);
201 // create a formats for the style
202 CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
203 CleanupStack::PushL(paraLayer);
204 CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
205 CleanupStack::PushL(charLayer);
207 // Set the richtext object to own the style list
208 richText1->SetStyleListExternallyOwned( EFalse );
210 // add more than 256 styles
211 TInt StartOfNextPara=0;
213 for ( TInt i= 0 ; i< 300; i++ )
215 // create a new style and add to the Style list
216 CParagraphStyle* paraStyle=CParagraphStyle::NewL(*paraLayer,*charLayer);
217 RParagraphStyleInfo info(paraStyle);
218 TRAPD(ret, list->AppendL(&info));
221 // find the next paragraph and add a style to it
222 StartOfNextPara = richText1->CharPosOfParagraph(Length, i);
223 richText1->ApplyParagraphStyleL(*paraStyle,StartOfNextPara,1,
224 CParagraphStyle::ERetainAllSpecificFormats);
227 // Compress it to a buffer.
228 CBufFlat* buffer = CBufFlat::NewL(500000);
229 CleanupStack::PushL(buffer);
230 RBufWriteStream output_stream(*buffer);
232 // Attempt to "externalize" the RichText object which has more then 256 styles
233 // This caused the problem to occur and should leave "with KErrNotSupported"
234 TRAPD( error, richText1->ExternalizeMarkupDataL(output_stream));
235 test( error == KErrNotSupported);
237 output_stream.Close();
239 CleanupStack::PopAndDestroy(5); // GlobalParaFormatLayer, GlobalCharFormatLayer, paraLayer,
244 static void TestUnicodeCompressionL()
246 CPlainText* plain1 = CPlainText::NewL();
247 CleanupStack::PushL(plain1);
248 CPlainText* plain2 = CPlainText::NewL();
249 CleanupStack::PushL(plain2);
251 // Read complicated Unicode text from a file.
252 TFileName raw_file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
253 plain1->ImportTextFileL(0,raw_file_name,CPlainText::EOrganiseByParagraph);
255 // Compress it to a buffer.
256 CBufFlat* buffer = CBufFlat::NewL(1024);
257 CleanupStack::PushL(buffer);
258 RBufWriteStream output_stream(*buffer);
259 plain1->ExternalizePlainTextL(output_stream);
260 output_stream.Close();
262 // Decompress it to a different plain text object.
263 RBufReadStream input_stream(*buffer);
264 plain2->InternalizePlainTextL(input_stream);
265 input_stream.Close();
267 // Test for equality.
268 int length = plain1->DocumentLength();
269 test(length == plain2->DocumentLength());
273 TPtrC p1 = plain1->Read(pos);
274 TPtrC p2 = plain2->Read(pos);
277 } while (pos < length);
279 CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
282 static void TestEncodingConversionL()
284 CPlainText* plain1 = CPlainText::NewL();
285 CleanupStack::PushL(plain1);
286 CPlainText* plain2 = CPlainText::NewL();
287 CleanupStack::PushL(plain2);
288 CBufSeg* buffer = CBufSeg::NewL(1024);
289 CleanupStack::PushL(buffer);
291 // Read multilingual text from a file.
292 TFileName file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
293 plain1->ImportTextFileL(0,file_name,CPlainText::EOrganiseByParagraph);
296 RBufWriteStream output(*buffer,0);
297 CPlainText::TImportExportParam param;
298 param.iForeignEncoding = KCharacterSetIdentifierUtf8;
299 CPlainText::TImportExportResult result;
300 plain1->ExportTextL(0,output,param,result);
303 // Read it into another plain text object.
304 RBufReadStream input(*buffer,0);
305 plain2->ImportTextL(0,input,param,result);
307 // Test for equality.
308 int length1 = plain1->DocumentLength();
309 TText* text1 = new(ELeave) TText[length1];
310 TPtr ptr1(text1,length1);
311 plain1->Extract(ptr1);
312 int length2 = plain2->DocumentLength();
313 TText* text2 = new(ELeave) TText[length2];
314 TPtr ptr2(text2,length2);
315 plain2->Extract(ptr2);
316 test(length1 == length2);
322 TPtrC p1 = plain1->Read(pos);
323 TPtrC p2 = plain2->Read(pos);
326 } while (pos < length1);
328 INFO_PRINTF1(_L("DEF058651 - Propagated:NTT - Received MMS with line break CR set does not cause line feed."));
332 TBuf8<100> testString(_L8("This Is Test Message"));
333 testString[4] = 0x0D;
334 testString[7] = 0x0A;
335 testString[12] = 0x0D;
336 testString[13] = 0x0A;
337 buffer->InsertL(0,testString.Ptr(),testString.Length());
339 RBufReadStream insert(*buffer,0);
340 plain1->ImportTextL(0,insert,param,result);
344 plain1->Extract(str);
345 test(str[4] ==CEditableText::EParagraphDelimiter);
346 CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
349 LOCAL_C void DoTestL()
353 INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_IMPORT-0001 CPlainText "));
359 TestUnicodeCompressionL();
360 TestEncodingConversionL();
362 INFO_PRINTF1(_L("CRichText"));
369 INFO_PRINTF1(_L("CRichText - more than 256 styles, defect INC044582"));
376 LOCAL_C void setupCleanup()
377 // Initialise the cleanup stack.
381 TheTrapCleanup=CTrapCleanup::New();
384 for (TInt i=KTestCleanupStack;i>0;i--)\
385 CleanupStack::PushL((TAny*)1);\
387 CleanupStack::Pop(KTestCleanupStack);\
392 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
395 TInt err = fsSession.Connect();
399 if(fsSession.Entry(aFullName, entry) == KErrNone)
401 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
402 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
405 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
407 err = fsSession.Delete(aFullName);
410 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
417 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
421 CT_IMPORT::CT_IMPORT()
423 SetTestStepName(KTestStep_T_IMPORT);
427 TVerdict CT_IMPORT::doTestStepL()
429 SetTestStepResult(EFail);
431 INFO_PRINTF1(_L("Plain Text File Imports"));
436 ::DeleteDataFile(KTestFileName1); //deletion of data files must be before call to End() - DEF047652
437 ::DeleteDataFile(KTestFileName2);
439 delete TheTrapCleanup;
445 SetTestStepResult(EPass);
448 return TestStepResult();