Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // f32test\server\t_parse.cpp
22 GLDEF_D RTest test(_L("T_PARSE"));
23 TPtrC test_string=_L("Y:\\");
27 // Test all TParse methods
31 test.Start(_L("Test all TParse methods"));
32 TBuf<16> relatedFiles(_L(".CCC"));
33 TBuf<16> defaultPath(_L("C:\\"));
35 TInt r=parser.Set(_L("\\WWW\\XXX\\YYY\\ZZZ\\AAA"),&relatedFiles,&defaultPath);
37 test(parser.FullName()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\AAA.CCC"));
38 test(parser.Drive()==_L("C:"));
39 test(parser.Path()==_L("\\WWW\\XXX\\YYY\\ZZZ\\"));
40 test(parser.DriveAndPath()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\"));
41 test(parser.Name()==_L("AAA"));
42 test(parser.Ext()==_L(".CCC"));
43 test(parser.NameAndExt()==_L("AAA.CCC"));
44 test(parser.DrivePresent()==EFalse);
45 test(parser.PathPresent());
46 test(parser.NamePresent());
47 test(parser.ExtPresent()==EFalse);
48 test(parser.NameOrExtPresent());
49 test(parser.IsRoot()==EFalse);
50 test(parser.IsWild()==EFalse);
51 test(parser.IsNameWild()==EFalse);
52 test(parser.IsExtWild()==EFalse);
53 r=parser.SetNoWild(_L("\\WWW\\XXX\\YYY\\ZZZ\\AAA.EXT"),&relatedFiles,&defaultPath);
55 test(parser.PopDir()==KErrNone);
56 test(parser.AddDir(_L("BBB"))==KErrNone);
62 // Test multiple PopDirs
66 test.Start(_L("Test multiple PopDirs"));
68 TInt r=parser.Set(_L("\\WWW\\XXX\\YYY\\ZZZ\\"),NULL,NULL);
69 // TParsePtrC parser(_L("\\WWW\\XXX\\YYY\\ZZZ\\"));
73 test(parser.Path()==_L("\\WWW\\XXX\\YYY\\"));
76 test(parser.Path()==_L("\\WWW\\XXX\\"));
79 test(parser.Path()==_L("\\WWW\\"));
82 test(parser.Path()==_L("\\"));
86 test(parser.Set(_L("C:\\Documents\\.TXT"),NULL,NULL)==KErrNone);
87 test(parser.PopDir()==KErrNone);
88 test(parser.FullName()==_L("C:\\.TXT"));
94 // Test conflicting drive letters
98 test.Start(_L("Test conflicting default drive letters"));
100 TPtrC one=_L("\\ONE\\");
105 TInt r=parser.Set(_L("Z:\\Hello"),&one,&null);
107 test(parser.FullName()==_L("Z:\\Hello"));
108 TPtrC sht=_L("*.SHT");
109 r=parser.Set(_L("Z:"),&sht,&x);
111 test(parser.FullName()==_L("Z:*.SHT"));
112 r=parser.Set(_L("Hello"),&z,&x2);
114 test(parser.FullName()==_L("Z:\\Hello"));
115 r=parser.Set(_L("W:\\Hello"),&z,&x2);
117 test(parser.FullName()==_L("W:\\Hello"));
118 TPtrC abcdefg=_L("abcdefg");
119 TPtrC onetwo=_L("X:\\ONE\\TWO\\.CCC");
120 r=parser.Set(_L("W:"),&abcdefg,&onetwo);
122 test(parser.FullName()==_L("W:\\ONE\\TWO\\abcdefg.CCC"));
124 TPtrC xhello=_L("X:\\HELLO\\");
125 r=parser.Set(_L("World"),&y,&xhello);
127 test(parser.FullName()==_L("Y:\\HELLO\\World"));
128 TPtrC xhelloext=_L("X:\\HELLO\\.EXT");
129 r=parser.Set(_L("World"),&y,&xhelloext);
131 test(parser.FullName()==_L("Y:\\HELLO\\World.EXT"));
137 // Conflicting relative path drives and names
141 test.Start(_L("Test conflicting relative drive letters"));
143 TPtrC xone=_L("X:\\ONE\\");
145 TInt r=parser.Set(_L("Z:\\Hello"),&xone,&y);
147 test(parser.FullName()==_L("Z:\\Hello"));
148 TPtrC zone=_L("Z:\\ONE\\");
149 TPtrC xnew=_L("X:\\NEW\\");
150 r=parser.Set(_L("\\Hello"),&zone,&xnew);
152 test(parser.FullName()==_L("Z:\\Hello"));
153 TPtrC aone=_L("A:\\ONE\\");
154 TPtrC anew=_L("A:\\NEW\\");
155 r=parser.Set(_L("A:Hello"),&aone,&anew);
157 test(parser.FullName()==_L("A:\\ONE\\Hello"));
159 r=parser.Set(_L("Hello"),&a,&xnew);
161 test(parser.FullName()==_L("A:\\Hello"));
162 r=parser.Set(_L("Hello"),&aone,&xnew);
164 test(parser.FullName()==_L("A:\\ONE\\Hello"));
171 // Test illegal paths
175 test.Start(_L("Test errors returned by illegal paths"));
177 TInt r=parser.Set(_L("FOO\\"),NULL,NULL);
178 test(r==KErrBadName);
179 r=parser.Set(_L("C:\\FOO\\\\"),NULL,NULL);
190 test.Start(_L("Test AddDir"));
192 test(parser.Set(_L("C:\\"),NULL,NULL)==KErrNone);
193 test(parser.IsRoot());
194 test(parser.FullName()==_L("C:\\"));
195 test(parser.AddDir(_L("HELLO"))==KErrNone);
196 test(parser.IsRoot()==EFalse);
197 test(parser.FullName()==_L("C:\\HELLO\\"));
198 test(parser.AddDir(_L("BYEBYE"))==KErrNone);
199 test(parser.IsRoot()==EFalse);
200 test(parser.FullName()==_L("C:\\HELLO\\BYEBYE\\"));
201 test(parser.PopDir()==KErrNone);
202 test(parser.IsRoot()==EFalse);
203 test(parser.FullName()==_L("C:\\HELLO\\"));
204 test(parser.PopDir()==KErrNone);
205 test(parser.IsRoot());
206 test(parser.FullName()==_L("C:\\"));
208 test(parser.AddDir(_L(""))==KErrNone);
209 test(parser.IsRoot());
210 test(parser.FullName()==_L("C:\\"));
211 test(parser.AddDir(_L("HELLO"))==KErrNone);
212 test(parser.IsRoot()==EFalse);
213 test(parser.FullName()==_L("C:\\HELLO\\"));
214 test(parser.AddDir(_L(""))==KErrNone);
215 test(parser.IsRoot()==EFalse);
216 test(parser.FullName()==_L("C:\\HELLO\\"));
218 test(parser.Set(_L("C:\\Documents\\.TXT"),NULL,NULL)==KErrNone);
219 test(parser.AddDir(_L("Documents"))==KErrNone);
220 test(parser.FullName()==_L("C:\\Documents\\Documents\\.TXT"));
230 test.Start(_L("Test TParsePtr"));
231 TBuf<128> nameBuf=_L("C:\\WWW\\XXX\\YYY\\ZZZ\\AAA.CCC");
232 TParsePtr parser(nameBuf);
234 test(parser.FullName()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\AAA.CCC"));
235 test(parser.Drive()==_L("C:"));
236 test(parser.Path()==_L("\\WWW\\XXX\\YYY\\ZZZ\\"));
237 test(parser.DriveAndPath()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\"));
238 test(parser.Name()==_L("AAA"));
239 test(parser.Ext()==_L(".CCC"));
240 test(parser.NameAndExt()==_L("AAA.CCC"));
241 test(parser.DrivePresent());
242 test(parser.PathPresent());
243 test(parser.NamePresent());
244 test(parser.ExtPresent());
245 test(parser.NameOrExtPresent());
246 test(parser.IsRoot()==EFalse);
247 test(parser.IsWild()==EFalse);
248 test(parser.IsNameWild()==EFalse);
249 test(parser.IsExtWild()==EFalse);
251 test(parser.AddDir(_L("HELLO"))==KErrNone);
252 test(parser.Path()==_L("\\WWW\\XXX\\YYY\\ZZZ\\HELLO\\"));
254 TBuf<16> shortName=_L("1234567812345678");
255 TParsePtr parser2(shortName);
256 test(parser2.FullName()==_L("1234567812345678"));
257 test(parser2.Path()==_L(""));
258 test(parser2.DriveAndPath()==_L(""));
259 test(parser2.Ext()==_L(""));
260 test(parser2.Name()==_L("1234567812345678"));
261 test(parser2.AddDir(_L("TOOBIG"))==KErrGeneral);
271 test.Start(_L("Test TParsePtrC"));
272 TBuf<128> nameBuf=_L("C:\\WWW\\XXX\\YYY\\ZZZ\\AAA.CCC");
273 TParsePtrC parser(nameBuf);
275 test(parser.FullName()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\AAA.CCC"));
276 test(parser.Drive()==_L("C:"));
277 test(parser.Path()==_L("\\WWW\\XXX\\YYY\\ZZZ\\"));
278 test(parser.DriveAndPath()==_L("C:\\WWW\\XXX\\YYY\\ZZZ\\"));
279 test(parser.Name()==_L("AAA"));
280 test(parser.Ext()==_L(".CCC"));
281 test(parser.NameAndExt()==_L("AAA.CCC"));
282 test(parser.DrivePresent());
283 test(parser.PathPresent());
284 test(parser.NamePresent());
285 test(parser.ExtPresent());
286 test(parser.NameOrExtPresent());
287 test(parser.IsRoot()==EFalse);
288 test(parser.IsWild()==EFalse);
289 test(parser.IsNameWild()==EFalse);
290 test(parser.IsExtWild()==EFalse);
296 // Test names with leading spaces
300 test.Start(_L("Test names with leading spaces"));
302 TBuf<16> nameBuf=_L(" name.txt");
303 TBuf<16> pathBuf=_L("\\PATH\\");
305 TInt r=parser.Set(pathBuf,NULL,&nameBuf);
307 test(parser.FullName()==_L("\\PATH\\ name.txt"));
308 r=parser.Set(_L(""),&nameBuf,&pathBuf);
310 test(parser.FullName()==_L("\\PATH\\ name.txt"));
311 r=parser.Set(_L(" name.txt"),NULL,&pathBuf);
313 test(parser.FullName()==_L("\\PATH\\ name.txt"));
314 r=parser.Set(nameBuf,&pathBuf,NULL);
316 test(parser.FullName()==_L("\\PATH\\ name.txt"));
318 TBuf<16> badPath=_L(" \\PATH\\");
319 r=parser.Set(_L("C:\\"),NULL,&badPath);
320 test(r==KErrBadName);
321 r=parser.Set(_L("C:\\"),&badPath,NULL);
322 test(r==KErrBadName);
324 TBuf<16> spacePath=_L("\\ PATH\\");
325 r=parser.Set(_L("C:"),&nameBuf,&spacePath);
327 test(parser.FullName()==_L("C:\\ PATH\\ name.txt"));
329 TBuf<32> spacename=_L("\\ name . txt ");
330 r=parser.Set(_L("C:"),&spacename,NULL);
332 test(parser.FullName()==_L("C:\\ name . txt"));
334 // Illegal (?) values
336 TBuf<16> pureSpace=_L(" ");
337 r=parser.Set(_L("C:\\NAME\\"),NULL,&pureSpace);
339 test(parser.FullName()==_L("C:\\NAME\\")); // Trims right off name
340 r=parser.Set(_L("C:\\NAME\\ "),NULL,NULL);
342 test(parser.FullName()==_L("C:\\NAME\\"));
344 TBuf<16> spacePlusExt=_L(" . ext ");
345 r=parser.Set(_L("C:\\NAME\\"),NULL,&spacePlusExt);
347 test(parser.FullName()==_L("C:\\NAME\\ . ext")); // Trims right off ext
348 r=parser.Set(_L("C:\\NAME\\ . ext "),NULL,NULL);
350 test(parser.FullName()==_L("C:\\NAME\\ . ext"));
352 TBuf<32> pathSpace=_L("\\asdf\\zxcv\\ \\asdf\\");
353 r=parser.Set(_L("C:"),NULL,&pathSpace);
355 test(parser.FullName()==_L("C:\\asdf\\zxcv\\ \\asdf\\")); // Leaves spaces in path
356 r=parser.Set(_L("C:\\NAME\\ \\alt.sdf"),NULL,NULL);
358 test(parser.FullName()==_L("C:\\NAME\\ \\alt.sdf"));
361 TBuf<32> zeroPath=_L("\\asdf\\wqer\\\\asdf\\");
362 r=parser.Set(_L("NAME.TXT"),NULL,&zeroPath);
364 test(parser.FullName()==_L("\\asdf\\wqer\\\\asdf\\NAME.TXT")); // Leaves zerolength path
365 r=parser.Set(_L("C:\\NAME\\\\alt.sdf"),NULL,NULL);
367 test(parser.FullName()==_L("C:\\NAME\\\\alt.sdf"));
371 LOCAL_C void Test10()
373 // Test a very long path
377 test.Next(_L("Test a Path > 256 chars"));
378 TBuf<16> pathPart=_L("\\2345678");
381 for(TInt i=0;i<63;i++)
388 r=fs.Parse(testPath,parse);
389 test(r==KErrBadName);
392 TFileName longFileName;
393 longFileName.SetLength(254);
394 // Mem::Fill((TUint8*)longFileName.Ptr(),254,'A');
395 Mem::Fill((TUint8*)longFileName.Ptr(),254*sizeof(TText),'A');
396 longFileName[0]='\\';
397 longFileName[253]='\\';
398 r=parse.Set(longFileName,&test_string,NULL);
403 longFileName[123]='\\';
404 r=parse.Set(longFileName,&test_string,NULL);
408 TPtrC startPath((TText*)longFileName.Ptr(),124);
409 test(parse.Path()==startPath);
411 TPtrC endPath((TText*)longFileName.Ptr()+124,252-124+1);
412 r=parse.AddDir(endPath);
414 test(parse.Path()==longFileName);
417 LOCAL_C void DoTestsL()
435 GLDEF_C void CallTestsL(void)
437 // Test resource counting
442 test.Start(_L("Starting TParse Tests ..."));