sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
#include <e32svr.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <txtetext.h>
|
sl@0
|
24 |
#include <txtfrmat.h>
|
sl@0
|
25 |
#include <txtfmlyr.h>
|
sl@0
|
26 |
#include <txtrich.h>
|
sl@0
|
27 |
#include <txtglobl.h>
|
sl@0
|
28 |
#include <gdi.h>
|
sl@0
|
29 |
#include <s32mem.h>
|
sl@0
|
30 |
#include <charconv.h>
|
sl@0
|
31 |
#include "T_IMPORT.h"
|
sl@0
|
32 |
|
sl@0
|
33 |
LOCAL_D CTestStep *pTestStep = NULL;
|
sl@0
|
34 |
#define test(cond) \
|
sl@0
|
35 |
{ \
|
sl@0
|
36 |
TBool __bb = (cond); \
|
sl@0
|
37 |
pTestStep->TEST(__bb); \
|
sl@0
|
38 |
if (!__bb) \
|
sl@0
|
39 |
{ \
|
sl@0
|
40 |
pTestStep->ERR_PRINTF1(_L("ERROR: Test Failed")); \
|
sl@0
|
41 |
User::Leave(1); \
|
sl@0
|
42 |
} \
|
sl@0
|
43 |
}
|
sl@0
|
44 |
#undef INFO_PRINTF1
|
sl@0
|
45 |
#undef INFO_PRINTF2
|
sl@0
|
46 |
// copy from tefexportconst.h
|
sl@0
|
47 |
#define INFO_PRINTF1(p1) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1))
|
sl@0
|
48 |
#define INFO_PRINTF2(p1, p2) pTestStep->Logger().LogExtra(((TText8*)__FILE__), __LINE__, ESevrInfo, (p1), (p2))
|
sl@0
|
49 |
|
sl@0
|
50 |
/* this fixes a MSVC link warning */
|
sl@0
|
51 |
#ifdef __VC32__
|
sl@0
|
52 |
#pragma comment (linker, "/opt:noref")
|
sl@0
|
53 |
#endif
|
sl@0
|
54 |
|
sl@0
|
55 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
56 |
|
sl@0
|
57 |
const TInt KTestCleanupStack=0x40;
|
sl@0
|
58 |
|
sl@0
|
59 |
_LIT(KTestFileName1, "c:\\etext\\climb.txg");
|
sl@0
|
60 |
_LIT(KTestFileName2, "c:\\etext\\import1.txg");
|
sl@0
|
61 |
|
sl@0
|
62 |
LOCAL_D void EnsureFileExists(const TDesC& aName)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
RFs fs;
|
sl@0
|
65 |
fs.Connect();
|
sl@0
|
66 |
fs.MkDirAll(aName);
|
sl@0
|
67 |
RFile file;
|
sl@0
|
68 |
file.Create(fs, aName, EFileRead|EFileWrite);
|
sl@0
|
69 |
file.Close();
|
sl@0
|
70 |
fs.Close();
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
LOCAL_D CTrapCleanup* TheTrapCleanup=NULL;
|
sl@0
|
74 |
LOCAL_D CPlainText* TheText=NULL;
|
sl@0
|
75 |
LOCAL_D CRichText* richText=NULL;
|
sl@0
|
76 |
LOCAL_D CParaFormatLayer* TheGlobalParaLayer=NULL;
|
sl@0
|
77 |
LOCAL_D CCharFormatLayer* TheGlobalCharLayer=NULL;
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
|
sl@0
|
81 |
LOCAL_C void CreateTextL()
|
sl@0
|
82 |
//
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TheText=CPlainText::NewL();
|
sl@0
|
85 |
//
|
sl@0
|
86 |
TCharFormat charFormat;
|
sl@0
|
87 |
TCharFormatMask charMask;
|
sl@0
|
88 |
TheGlobalCharLayer=CCharFormatLayer::NewL(charFormat,charMask);
|
sl@0
|
89 |
TParaFormatMask paraMask;
|
sl@0
|
90 |
TheGlobalParaLayer=CParaFormatLayer::NewL((CParaFormat*)NULL,paraMask);
|
sl@0
|
91 |
richText=CRichText::NewL(TheGlobalParaLayer,TheGlobalCharLayer);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
|
sl@0
|
95 |
LOCAL_C void DestroyText()
|
sl@0
|
96 |
//
|
sl@0
|
97 |
{
|
sl@0
|
98 |
delete TheText;
|
sl@0
|
99 |
delete TheGlobalParaLayer;
|
sl@0
|
100 |
delete TheGlobalCharLayer;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
LOCAL_C void ResetTextL()
|
sl@0
|
105 |
// Initialise the rich text.
|
sl@0
|
106 |
//
|
sl@0
|
107 |
{TheText->Reset();}
|
sl@0
|
108 |
|
sl@0
|
109 |
|
sl@0
|
110 |
|
sl@0
|
111 |
LOCAL_C void ImportText1()
|
sl@0
|
112 |
//
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TFileName file=_L("z:\\test\\app-framework\\etext\\import1.txt");
|
sl@0
|
115 |
ResetTextL();
|
sl@0
|
116 |
TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
|
sl@0
|
117 |
test(TheText->DocumentLength()==51);
|
sl@0
|
118 |
test(TheText->ParagraphCount()==10);
|
sl@0
|
119 |
test(count==51);
|
sl@0
|
120 |
// Now export
|
sl@0
|
121 |
TFileName exportFile=KTestFileName2();
|
sl@0
|
122 |
EnsureFileExists(exportFile);
|
sl@0
|
123 |
TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0);
|
sl@0
|
124 |
ResetTextL();
|
sl@0
|
125 |
// and import this export ?!!
|
sl@0
|
126 |
count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
|
sl@0
|
127 |
TInt documentLength=TheText->DocumentLength();
|
sl@0
|
128 |
test(documentLength==49);
|
sl@0
|
129 |
TInt paraCount=TheText->ParagraphCount();
|
sl@0
|
130 |
test(paraCount==3);
|
sl@0
|
131 |
test(count==49);
|
sl@0
|
132 |
ResetTextL();
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
LOCAL_C void ImportText2()
|
sl@0
|
137 |
// A very long text file of a realistic document nature!
|
sl@0
|
138 |
//
|
sl@0
|
139 |
{
|
sl@0
|
140 |
TFileName file=_L("z:\\test\\app-framework\\etext\\climb.txt");
|
sl@0
|
141 |
ResetTextL();
|
sl@0
|
142 |
TInt count=TheText->ImportTextFileL(0,file,CPlainText::EOrganiseByParagraph);
|
sl@0
|
143 |
TInt documentLength=TheText->DocumentLength();
|
sl@0
|
144 |
test(documentLength==18396);
|
sl@0
|
145 |
TInt paraCount=TheText->ParagraphCount();
|
sl@0
|
146 |
test(paraCount==158);
|
sl@0
|
147 |
TInt wordCount=TheText->WordCount();
|
sl@0
|
148 |
test(wordCount=3450);
|
sl@0
|
149 |
// Now export
|
sl@0
|
150 |
TFileName exportFile=KTestFileName1();
|
sl@0
|
151 |
//
|
sl@0
|
152 |
//
|
sl@0
|
153 |
EnsureFileExists(exportFile);
|
sl@0
|
154 |
TRAPD(ret,
|
sl@0
|
155 |
TheText->ExportAsTextL(exportFile,CPlainText::EOrganiseByParagraph,0));
|
sl@0
|
156 |
test(ret==KErrNone);
|
sl@0
|
157 |
//
|
sl@0
|
158 |
ResetTextL();
|
sl@0
|
159 |
// and import this export ?!!??!
|
sl@0
|
160 |
count=TheText->ImportTextFileL(0,exportFile,CPlainText::EOrganiseByLine);
|
sl@0
|
161 |
documentLength=TheText->DocumentLength();
|
sl@0
|
162 |
paraCount=TheText->ParagraphCount();
|
sl@0
|
163 |
wordCount=TheText->WordCount();
|
sl@0
|
164 |
test(documentLength==18362);
|
sl@0
|
165 |
test(paraCount==34);
|
sl@0
|
166 |
test(wordCount=3450);
|
sl@0
|
167 |
ResetTextL();
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Test code for INC044582 - [MX0416] Document - Document application crashed when converting file.
|
sl@0
|
173 |
This occurs when more than 256 styles are used. The fix to this defect is to Leave with
|
sl@0
|
174 |
KErrNotSupported if there are more than 256 styles
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
LOCAL_C void TestInc044582()
|
sl@0
|
177 |
|
sl@0
|
178 |
{
|
sl@0
|
179 |
__UHEAP_MARK;
|
sl@0
|
180 |
|
sl@0
|
181 |
// create an empty style list
|
sl@0
|
182 |
CStyleList* list=CStyleList::NewL();
|
sl@0
|
183 |
|
sl@0
|
184 |
// create formats and add to cleanup stack
|
sl@0
|
185 |
CParaFormatLayer* GlobalParaFormatLayer=CParaFormatLayer::NewL();
|
sl@0
|
186 |
CleanupStack::PushL(GlobalParaFormatLayer);
|
sl@0
|
187 |
CCharFormatLayer* GlobalCharFormatLayer=CCharFormatLayer::NewL();
|
sl@0
|
188 |
CleanupStack::PushL(GlobalCharFormatLayer);
|
sl@0
|
189 |
|
sl@0
|
190 |
// create RichText object and supply empty Style list
|
sl@0
|
191 |
CRichText* richText1=CRichText::NewL(GlobalParaFormatLayer,GlobalCharFormatLayer,*list);
|
sl@0
|
192 |
|
sl@0
|
193 |
// Load the RichText object with 300 paragraphs
|
sl@0
|
194 |
_LIT(para, "A line of text\x2029");
|
sl@0
|
195 |
for (TInt Z=0; Z<300; Z++)
|
sl@0
|
196 |
{
|
sl@0
|
197 |
// a line of text foloowed by the paragraph separator
|
sl@0
|
198 |
richText1->InsertL(0,para);
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
// create a formats for the style
|
sl@0
|
202 |
CParaFormatLayer* paraLayer=CParaFormatLayer::NewL();
|
sl@0
|
203 |
CleanupStack::PushL(paraLayer);
|
sl@0
|
204 |
CCharFormatLayer* charLayer=CCharFormatLayer::NewL();
|
sl@0
|
205 |
CleanupStack::PushL(charLayer);
|
sl@0
|
206 |
|
sl@0
|
207 |
// Set the richtext object to own the style list
|
sl@0
|
208 |
richText1->SetStyleListExternallyOwned( EFalse );
|
sl@0
|
209 |
|
sl@0
|
210 |
// add more than 256 styles
|
sl@0
|
211 |
TInt StartOfNextPara=0;
|
sl@0
|
212 |
TInt Length=0;
|
sl@0
|
213 |
for ( TInt i= 0 ; i< 300; i++ )
|
sl@0
|
214 |
{
|
sl@0
|
215 |
// create a new style and add to the Style list
|
sl@0
|
216 |
CParagraphStyle* paraStyle=CParagraphStyle::NewL(*paraLayer,*charLayer);
|
sl@0
|
217 |
RParagraphStyleInfo info(paraStyle);
|
sl@0
|
218 |
TRAPD(ret, list->AppendL(&info));
|
sl@0
|
219 |
UNUSED_VAR(ret);
|
sl@0
|
220 |
|
sl@0
|
221 |
// find the next paragraph and add a style to it
|
sl@0
|
222 |
StartOfNextPara = richText1->CharPosOfParagraph(Length, i);
|
sl@0
|
223 |
richText1->ApplyParagraphStyleL(*paraStyle,StartOfNextPara,1,
|
sl@0
|
224 |
CParagraphStyle::ERetainAllSpecificFormats);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
|
sl@0
|
227 |
// Compress it to a buffer.
|
sl@0
|
228 |
CBufFlat* buffer = CBufFlat::NewL(500000);
|
sl@0
|
229 |
CleanupStack::PushL(buffer);
|
sl@0
|
230 |
RBufWriteStream output_stream(*buffer);
|
sl@0
|
231 |
|
sl@0
|
232 |
// Attempt to "externalize" the RichText object which has more then 256 styles
|
sl@0
|
233 |
// This caused the problem to occur and should leave "with KErrNotSupported"
|
sl@0
|
234 |
TRAPD( error, richText1->ExternalizeMarkupDataL(output_stream));
|
sl@0
|
235 |
test( error == KErrNotSupported);
|
sl@0
|
236 |
|
sl@0
|
237 |
output_stream.Close();
|
sl@0
|
238 |
delete richText1;
|
sl@0
|
239 |
CleanupStack::PopAndDestroy(5); // GlobalParaFormatLayer, GlobalCharFormatLayer, paraLayer,
|
sl@0
|
240 |
// charLayer, buffer
|
sl@0
|
241 |
__UHEAP_MARKEND;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
static void TestUnicodeCompressionL()
|
sl@0
|
245 |
{
|
sl@0
|
246 |
CPlainText* plain1 = CPlainText::NewL();
|
sl@0
|
247 |
CleanupStack::PushL(plain1);
|
sl@0
|
248 |
CPlainText* plain2 = CPlainText::NewL();
|
sl@0
|
249 |
CleanupStack::PushL(plain2);
|
sl@0
|
250 |
|
sl@0
|
251 |
// Read complicated Unicode text from a file.
|
sl@0
|
252 |
TFileName raw_file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
|
sl@0
|
253 |
plain1->ImportTextFileL(0,raw_file_name,CPlainText::EOrganiseByParagraph);
|
sl@0
|
254 |
|
sl@0
|
255 |
// Compress it to a buffer.
|
sl@0
|
256 |
CBufFlat* buffer = CBufFlat::NewL(1024);
|
sl@0
|
257 |
CleanupStack::PushL(buffer);
|
sl@0
|
258 |
RBufWriteStream output_stream(*buffer);
|
sl@0
|
259 |
plain1->ExternalizePlainTextL(output_stream);
|
sl@0
|
260 |
output_stream.Close();
|
sl@0
|
261 |
|
sl@0
|
262 |
// Decompress it to a different plain text object.
|
sl@0
|
263 |
RBufReadStream input_stream(*buffer);
|
sl@0
|
264 |
plain2->InternalizePlainTextL(input_stream);
|
sl@0
|
265 |
input_stream.Close();
|
sl@0
|
266 |
|
sl@0
|
267 |
// Test for equality.
|
sl@0
|
268 |
int length = plain1->DocumentLength();
|
sl@0
|
269 |
test(length == plain2->DocumentLength());
|
sl@0
|
270 |
int pos = 0;
|
sl@0
|
271 |
do
|
sl@0
|
272 |
{
|
sl@0
|
273 |
TPtrC p1 = plain1->Read(pos);
|
sl@0
|
274 |
TPtrC p2 = plain2->Read(pos);
|
sl@0
|
275 |
test(p1 == p2);
|
sl@0
|
276 |
pos += p1.Length();
|
sl@0
|
277 |
} while (pos < length);
|
sl@0
|
278 |
|
sl@0
|
279 |
CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
static void TestEncodingConversionL()
|
sl@0
|
283 |
{
|
sl@0
|
284 |
CPlainText* plain1 = CPlainText::NewL();
|
sl@0
|
285 |
CleanupStack::PushL(plain1);
|
sl@0
|
286 |
CPlainText* plain2 = CPlainText::NewL();
|
sl@0
|
287 |
CleanupStack::PushL(plain2);
|
sl@0
|
288 |
CBufSeg* buffer = CBufSeg::NewL(1024);
|
sl@0
|
289 |
CleanupStack::PushL(buffer);
|
sl@0
|
290 |
|
sl@0
|
291 |
// Read multilingual text from a file.
|
sl@0
|
292 |
TFileName file_name = _L("z:\\test\\app-framework\\etext\\polyglot.txt");
|
sl@0
|
293 |
plain1->ImportTextFileL(0,file_name,CPlainText::EOrganiseByParagraph);
|
sl@0
|
294 |
|
sl@0
|
295 |
// Convert to UTF8.
|
sl@0
|
296 |
RBufWriteStream output(*buffer,0);
|
sl@0
|
297 |
CPlainText::TImportExportParam param;
|
sl@0
|
298 |
param.iForeignEncoding = KCharacterSetIdentifierUtf8;
|
sl@0
|
299 |
CPlainText::TImportExportResult result;
|
sl@0
|
300 |
plain1->ExportTextL(0,output,param,result);
|
sl@0
|
301 |
output.Close();
|
sl@0
|
302 |
|
sl@0
|
303 |
// Read it into another plain text object.
|
sl@0
|
304 |
RBufReadStream input(*buffer,0);
|
sl@0
|
305 |
plain2->ImportTextL(0,input,param,result);
|
sl@0
|
306 |
|
sl@0
|
307 |
// Test for equality.
|
sl@0
|
308 |
int length1 = plain1->DocumentLength();
|
sl@0
|
309 |
TText* text1 = new(ELeave) TText[length1];
|
sl@0
|
310 |
TPtr ptr1(text1,length1);
|
sl@0
|
311 |
plain1->Extract(ptr1);
|
sl@0
|
312 |
int length2 = plain2->DocumentLength();
|
sl@0
|
313 |
TText* text2 = new(ELeave) TText[length2];
|
sl@0
|
314 |
TPtr ptr2(text2,length2);
|
sl@0
|
315 |
plain2->Extract(ptr2);
|
sl@0
|
316 |
test(length1 == length2);
|
sl@0
|
317 |
delete [] text1;
|
sl@0
|
318 |
delete [] text2;
|
sl@0
|
319 |
int pos = 0;
|
sl@0
|
320 |
do
|
sl@0
|
321 |
{
|
sl@0
|
322 |
TPtrC p1 = plain1->Read(pos);
|
sl@0
|
323 |
TPtrC p2 = plain2->Read(pos);
|
sl@0
|
324 |
test(p1 == p2);
|
sl@0
|
325 |
pos += p1.Length();
|
sl@0
|
326 |
} while (pos < length1);
|
sl@0
|
327 |
|
sl@0
|
328 |
INFO_PRINTF1(_L("DEF058651 - Propagated:NTT - Received MMS with line break CR set does not cause line feed."));
|
sl@0
|
329 |
buffer->Reset();
|
sl@0
|
330 |
plain1->Reset();
|
sl@0
|
331 |
|
sl@0
|
332 |
TBuf8<100> testString(_L8("This Is Test Message"));
|
sl@0
|
333 |
testString[4] = 0x0D;
|
sl@0
|
334 |
testString[7] = 0x0A;
|
sl@0
|
335 |
testString[12] = 0x0D;
|
sl@0
|
336 |
testString[13] = 0x0A;
|
sl@0
|
337 |
buffer->InsertL(0,testString.Ptr(),testString.Length());
|
sl@0
|
338 |
|
sl@0
|
339 |
RBufReadStream insert(*buffer,0);
|
sl@0
|
340 |
plain1->ImportTextL(0,insert,param,result);
|
sl@0
|
341 |
insert.Close();
|
sl@0
|
342 |
|
sl@0
|
343 |
TBuf<100> str;
|
sl@0
|
344 |
plain1->Extract(str);
|
sl@0
|
345 |
test(str[4] ==CEditableText::EParagraphDelimiter);
|
sl@0
|
346 |
CleanupStack::PopAndDestroy(3); // plain1, plain2, buffer
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|
sl@0
|
349 |
LOCAL_C void DoTestL()
|
sl@0
|
350 |
// Main routine
|
sl@0
|
351 |
//
|
sl@0
|
352 |
{
|
sl@0
|
353 |
INFO_PRINTF1(_L(" @SYMTestCaseID:SYSLIB-ETEXT-LEGACY-T_IMPORT-0001 CPlainText "));
|
sl@0
|
354 |
CreateTextL();
|
sl@0
|
355 |
|
sl@0
|
356 |
ImportText1();
|
sl@0
|
357 |
ImportText2();
|
sl@0
|
358 |
|
sl@0
|
359 |
TestUnicodeCompressionL();
|
sl@0
|
360 |
TestEncodingConversionL();
|
sl@0
|
361 |
|
sl@0
|
362 |
INFO_PRINTF1(_L("CRichText"));
|
sl@0
|
363 |
delete TheText;
|
sl@0
|
364 |
TheText=richText;
|
sl@0
|
365 |
|
sl@0
|
366 |
ImportText1();
|
sl@0
|
367 |
ImportText2();
|
sl@0
|
368 |
|
sl@0
|
369 |
INFO_PRINTF1(_L("CRichText - more than 256 styles, defect INC044582"));
|
sl@0
|
370 |
TestInc044582();
|
sl@0
|
371 |
|
sl@0
|
372 |
DestroyText();
|
sl@0
|
373 |
}
|
sl@0
|
374 |
|
sl@0
|
375 |
|
sl@0
|
376 |
LOCAL_C void setupCleanup()
|
sl@0
|
377 |
// Initialise the cleanup stack.
|
sl@0
|
378 |
//
|
sl@0
|
379 |
{
|
sl@0
|
380 |
|
sl@0
|
381 |
TheTrapCleanup=CTrapCleanup::New();
|
sl@0
|
382 |
TRAPD(r,\
|
sl@0
|
383 |
{\
|
sl@0
|
384 |
for (TInt i=KTestCleanupStack;i>0;i--)\
|
sl@0
|
385 |
CleanupStack::PushL((TAny*)1);\
|
sl@0
|
386 |
test(r==KErrNone);\
|
sl@0
|
387 |
CleanupStack::Pop(KTestCleanupStack);\
|
sl@0
|
388 |
});
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
|
sl@0
|
392 |
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
RFs fsSession;
|
sl@0
|
395 |
TInt err = fsSession.Connect();
|
sl@0
|
396 |
if(err == KErrNone)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
TEntry entry;
|
sl@0
|
399 |
if(fsSession.Entry(aFullName, entry) == KErrNone)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
|
sl@0
|
402 |
err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
|
sl@0
|
403 |
if(err != KErrNone)
|
sl@0
|
404 |
{
|
sl@0
|
405 |
RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
|
sl@0
|
406 |
}
|
sl@0
|
407 |
err = fsSession.Delete(aFullName);
|
sl@0
|
408 |
if(err != KErrNone)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
|
sl@0
|
411 |
}
|
sl@0
|
412 |
}
|
sl@0
|
413 |
fsSession.Close();
|
sl@0
|
414 |
}
|
sl@0
|
415 |
else
|
sl@0
|
416 |
{
|
sl@0
|
417 |
RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
|
sl@0
|
418 |
}
|
sl@0
|
419 |
}
|
sl@0
|
420 |
|
sl@0
|
421 |
CT_IMPORT::CT_IMPORT()
|
sl@0
|
422 |
{
|
sl@0
|
423 |
SetTestStepName(KTestStep_T_IMPORT);
|
sl@0
|
424 |
pTestStep = this;
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
TVerdict CT_IMPORT::doTestStepL()
|
sl@0
|
428 |
{
|
sl@0
|
429 |
SetTestStepResult(EFail);
|
sl@0
|
430 |
|
sl@0
|
431 |
INFO_PRINTF1(_L("Plain Text File Imports"));
|
sl@0
|
432 |
__UHEAP_MARK;
|
sl@0
|
433 |
setupCleanup();
|
sl@0
|
434 |
TRAPD(r, DoTestL());
|
sl@0
|
435 |
|
sl@0
|
436 |
::DeleteDataFile(KTestFileName1); //deletion of data files must be before call to End() - DEF047652
|
sl@0
|
437 |
::DeleteDataFile(KTestFileName2);
|
sl@0
|
438 |
|
sl@0
|
439 |
delete TheTrapCleanup;
|
sl@0
|
440 |
|
sl@0
|
441 |
__UHEAP_MARKEND;
|
sl@0
|
442 |
|
sl@0
|
443 |
if (r == KErrNone)
|
sl@0
|
444 |
{
|
sl@0
|
445 |
SetTestStepResult(EPass);
|
sl@0
|
446 |
}
|
sl@0
|
447 |
|
sl@0
|
448 |
return TestStepResult();
|
sl@0
|
449 |
}
|