]> git.saurik.com Git - wxWidgets.git/blame - tests/filename/filenametest.cpp
No changes, just fix unused variables and parameters warnings.
[wxWidgets.git] / tests / filename / filenametest.cpp
CommitLineData
f095b1fc
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: tests/filename/filename.cpp
3// Purpose: wxFileName unit test
4// Author: Vadim Zeitlin
5// Created: 2004-07-25
6// RCS-ID: $Id$
7// Copyright: (c) 2004 Vadim Zeitlin
8///////////////////////////////////////////////////////////////////////////////
9
10// ----------------------------------------------------------------------------
11// headers
12// ----------------------------------------------------------------------------
13
8899b155 14#include "testprec.h"
f095b1fc
VZ
15
16#ifdef __BORLANDC__
17 #pragma hdrstop
18#endif
19
20#ifndef WX_PRECOMP
f7c69b90 21 #include "wx/utils.h"
f095b1fc
VZ
22#endif // WX_PRECOMP
23
24#include "wx/filename.h"
c08dd08b 25#include "wx/filefn.h"
f095b1fc 26
525711d7
VZ
27#ifdef __WXMSW__
28 #include "wx/msw/registry.h"
29#endif // __WXMSW__
30
2264775b
VZ
31// ----------------------------------------------------------------------------
32// local functions
33// ----------------------------------------------------------------------------
34
35// define stream inserter for wxFileName to use it in CPPUNIT_ASSERT_EQUAL()
36inline std::ostream& operator<<(std::ostream& o, const wxFileName& fn)
37{
38 return o << fn.GetFullPath();
39}
40
f095b1fc
VZ
41// ----------------------------------------------------------------------------
42// test data
43// ----------------------------------------------------------------------------
44
5fed01a9 45static struct TestFileNameInfo
f095b1fc 46{
9630954d
VZ
47 const char *fullname;
48 const char *volume;
49 const char *path;
50 const char *name;
51 const char *ext;
f095b1fc
VZ
52 bool isAbsolute;
53 wxPathFormat format;
54} filenames[] =
55{
69858116 56 // the empty string
9630954d
VZ
57 { "", "", "", "", "", false, wxPATH_UNIX },
58 { "", "", "", "", "", false, wxPATH_DOS },
59 { "", "", "", "", "", false, wxPATH_VMS },
69858116 60
f095b1fc 61 // Unix file names
9630954d
VZ
62 { "/usr/bin/ls", "", "/usr/bin", "ls", "", true, wxPATH_UNIX },
63 { "/usr/bin/", "", "/usr/bin", "", "", true, wxPATH_UNIX },
64 { "~/.zshrc", "", "~", ".zshrc", "", true, wxPATH_UNIX },
65 { "../../foo", "", "../..", "foo", "", false, wxPATH_UNIX },
66 { "foo.bar", "", "", "foo", "bar", false, wxPATH_UNIX },
67 { "~/foo.bar", "", "~", "foo", "bar", true, wxPATH_UNIX },
be5be16a
VZ
68 { "~user/foo.bar", "", "~user", "foo", "bar", true, wxPATH_UNIX },
69 { "~user/", "", "~user", "", "", true, wxPATH_UNIX },
9630954d
VZ
70 { "/foo", "", "/", "foo", "", true, wxPATH_UNIX },
71 { "Mahogany-0.60/foo.bar", "", "Mahogany-0.60", "foo", "bar", false, wxPATH_UNIX },
72 { "/tmp/wxwin.tar.bz", "", "/tmp", "wxwin.tar", "bz", true, wxPATH_UNIX },
f095b1fc
VZ
73
74 // Windows file names
9630954d
VZ
75 { "foo.bar", "", "", "foo", "bar", false, wxPATH_DOS },
76 { "\\foo.bar", "", "\\", "foo", "bar", false, wxPATH_DOS },
77 { "c:foo.bar", "c", "", "foo", "bar", false, wxPATH_DOS },
78 { "c:\\foo.bar", "c", "\\", "foo", "bar", true, wxPATH_DOS },
79 { "c:\\Windows\\command.com", "c", "\\Windows", "command", "com", true, wxPATH_DOS },
bf7f7793 80
ea6319cb 81#if 0
c7099635
VZ
82 // NB: when using the wxFileName::GetLongPath() function on these two
83 // strings, the program will hang for several seconds blocking inside
84 // Win32 GetLongPathName() function
9630954d
VZ
85 { "\\\\server\\foo.bar", "server", "\\", "foo", "bar", true, wxPATH_DOS },
86 { "\\\\server\\dir\\foo.bar", "server", "\\dir", "foo", "bar", true, wxPATH_DOS },
ea6319cb 87#endif
f095b1fc 88
34841b21
VZ
89 // consecutive [back]slashes should be treated as single occurrences of
90 // them and not interpreted as share names if there is a volume name
9630954d
VZ
91 { "c:\\aaa\\bbb\\ccc", "c", "\\aaa\\bbb", "ccc", "", true, wxPATH_DOS },
92 { "c:\\\\aaa\\bbb\\ccc", "c", "\\\\aaa\\bbb", "ccc", "", true, wxPATH_DOS },
bf7f7793 93
f095b1fc
VZ
94 // wxFileName support for Mac file names is broken currently
95#if 0
96 // Mac file names
9630954d
VZ
97 { "Volume:Dir:File", "Volume", "Dir", "File", "", true, wxPATH_MAC },
98 { "Volume:Dir:Subdir:File", "Volume", "Dir:Subdir", "File", "", true, wxPATH_MAC },
99 { "Volume:", "Volume", "", "", "", true, wxPATH_MAC },
100 { ":Dir:File", "", "Dir", "File", "", false, wxPATH_MAC },
101 { ":File.Ext", "", "", "File", ".Ext", false, wxPATH_MAC },
102 { "File.Ext", "", "", "File", ".Ext", false, wxPATH_MAC },
f095b1fc
VZ
103#endif // 0
104
ea6319cb 105#if 0
f095b1fc 106 // VMS file names
bf7f7793
RR
107 // NB: on Windows they have the same effect of the \\server\\ strings
108 // (see the note above)
9630954d 109 { "device:[dir1.dir2.dir3]file.txt", "device", "dir1.dir2.dir3", "file", "txt", true, wxPATH_VMS },
ea6319cb 110#endif
9630954d 111 { "file.txt", "", "", "file", "txt", false, wxPATH_VMS },
f095b1fc
VZ
112};
113
114// ----------------------------------------------------------------------------
115// test class
116// ----------------------------------------------------------------------------
117
118class FileNameTestCase : public CppUnit::TestCase
119{
120public:
121 FileNameTestCase() { }
122
123private:
124 CPPUNIT_TEST_SUITE( FileNameTestCase );
125 CPPUNIT_TEST( TestConstruction );
33366127 126 CPPUNIT_TEST( TestComparison );
f095b1fc 127 CPPUNIT_TEST( TestSplit );
4524a24b 128 CPPUNIT_TEST( TestSetPath );
c08dd08b 129 CPPUNIT_TEST( TestStrip );
bf7f7793 130 CPPUNIT_TEST( TestNormalize );
395f3aa8 131 CPPUNIT_TEST( TestReplace );
60c0dfe5
VZ
132#ifdef __WINDOWS__
133 CPPUNIT_TEST( TestShortLongPath );
134#endif // __WINDOWS__
f095b1fc
VZ
135 CPPUNIT_TEST_SUITE_END();
136
137 void TestConstruction();
33366127 138 void TestComparison();
f095b1fc
VZ
139 void TestSplit();
140 void TestSetPath();
c08dd08b 141 void TestStrip();
bf7f7793 142 void TestNormalize();
395f3aa8 143 void TestReplace();
60c0dfe5
VZ
144#ifdef __WINDOWS__
145 void TestShortLongPath();
146#endif // __WINDOWS__
f095b1fc
VZ
147
148 DECLARE_NO_COPY_CLASS(FileNameTestCase)
149};
150
151// register in the unnamed registry so that these tests are run by default
152CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase );
153
154// also include in it's own registry so that these tests can be run alone
155CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase, "FileNameTestCase" );
156
157void FileNameTestCase::TestConstruction()
158{
159 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
160 {
5fed01a9 161 const TestFileNameInfo& fni = filenames[n];
f095b1fc
VZ
162
163 wxFileName fn(fni.fullname, fni.format);
164
9b9596de
VZ
165 // the original full name could contain consecutive [back]slashes,
166 // squeeze them except for the double backslash in the beginning in
167 // Windows filenames where it has special meaning
168 wxString fullnameOrig;
169 if ( fni.format == wxPATH_DOS )
170 {
171 // copy the backslashes at beginning unchanged
9630954d
VZ
172 const char *p = fni.fullname;
173 while ( *p == '\\' )
9b9596de
VZ
174 fullnameOrig += *p++;
175
176 // replace consecutive slashes with single ones in the rest
9630954d 177 for ( char chPrev = '\0'; *p; p++ )
9b9596de 178 {
9630954d 179 if ( *p == '\\' && chPrev == '\\' )
9b9596de
VZ
180 continue;
181
182 chPrev = *p;
183 fullnameOrig += chPrev;
184 }
185 }
186 else // !wxPATH_DOS
187 {
188 fullnameOrig = fni.fullname;
189 }
190
9630954d 191 fullnameOrig.Replace("//", "/");
9b9596de
VZ
192
193
f095b1fc 194 wxString fullname = fn.GetFullPath(fni.format);
9b9596de 195 CPPUNIT_ASSERT_EQUAL( fullnameOrig, fullname );
f095b1fc 196
ab8576b4
VZ
197 // notice that we use a dummy working directory to ensure that paths
198 // with "../.." in them could be normalized, otherwise this would fail
199 // if the test is run from root directory or its direct subdirectory
2264775b
VZ
200 CPPUNIT_ASSERT_MESSAGE
201 (
9630954d
VZ
202 (const char *)wxString::Format("Normalize(%s) failed", fni.fullname).mb_str(),
203 fn.Normalize(wxPATH_NORM_ALL, "/foo/bar/baz", fni.format)
2264775b 204 );
4c2deb19
VZ
205
206 if ( *fni.volume && *fni.path )
207 {
208 // check that specifying the volume separately or as part of the
209 // path doesn't make any difference
210 wxString pathWithVolume = fni.volume;
211 pathWithVolume += wxFileName::GetVolumeSeparator(fni.format);
212 pathWithVolume += fni.path;
213
2264775b 214 CPPUNIT_ASSERT_EQUAL( wxFileName(pathWithVolume,
4c2deb19
VZ
215 fni.name,
216 fni.ext,
2264775b 217 fni.format), fn );
4c2deb19 218 }
f095b1fc 219 }
69858116
VZ
220
221 wxFileName fn;
222
223 // empty strings
224 fn.AssignDir(wxEmptyString);
225 CPPUNIT_ASSERT( !fn.IsOk() );
226
227 fn.Assign(wxEmptyString);
228 CPPUNIT_ASSERT( !fn.IsOk() );
229
230 fn.Assign(wxEmptyString, wxEmptyString);
231 CPPUNIT_ASSERT( !fn.IsOk() );
232
233 fn.Assign(wxEmptyString, wxEmptyString, wxEmptyString);
234 CPPUNIT_ASSERT( !fn.IsOk() );
235
236 fn.Assign(wxEmptyString, wxEmptyString, wxEmptyString, wxEmptyString);
237 CPPUNIT_ASSERT( !fn.IsOk() );
f095b1fc
VZ
238}
239
33366127
VZ
240void FileNameTestCase::TestComparison()
241{
523cd68a
VZ
242 wxFileName fn1(wxT("/tmp/file1"));
243 wxFileName fn2(wxT("/tmp/dir2/../file2"));
244 fn1.Normalize();
245 fn2.Normalize();
2264775b 246 CPPUNIT_ASSERT_EQUAL(fn1.GetPath(), fn2.GetPath());
33366127
VZ
247}
248
f095b1fc
VZ
249void FileNameTestCase::TestSplit()
250{
251 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
252 {
5fed01a9 253 const TestFileNameInfo& fni = filenames[n];
f095b1fc
VZ
254 wxString volume, path, name, ext;
255 wxFileName::SplitPath(fni.fullname,
256 &volume, &path, &name, &ext, fni.format);
257
2264775b
VZ
258 CPPUNIT_ASSERT_EQUAL( wxString(fni.volume), volume );
259 CPPUNIT_ASSERT_EQUAL( wxString(fni.path), path );
260 CPPUNIT_ASSERT_EQUAL( wxString(fni.name), name );
261 CPPUNIT_ASSERT_EQUAL( wxString(fni.ext), ext );
f095b1fc 262 }
dfecbee5
VZ
263
264 // special case of empty extension
9630954d
VZ
265 wxFileName fn("foo.");
266 CPPUNIT_ASSERT_EQUAL( wxString("foo."), fn.GetFullPath() );
f095b1fc
VZ
267}
268
4524a24b
VZ
269void FileNameTestCase::TestSetPath()
270{
9630954d
VZ
271 wxFileName fn("d:\\test\\foo.bar", wxPATH_DOS);
272 fn.SetPath("c:\\temp", wxPATH_DOS);
273 CPPUNIT_ASSERT( fn.SameAs(wxFileName("c:\\temp\\foo.bar", wxPATH_DOS)) );
4524a24b 274
9630954d
VZ
275 fn = wxFileName("/usr/bin/ls", wxPATH_UNIX);
276 fn.SetPath("/usr/local/bin", wxPATH_UNIX);
277 CPPUNIT_ASSERT( fn.SameAs(wxFileName("/usr/local/bin/ls", wxPATH_UNIX)) );
4524a24b
VZ
278}
279
bf7f7793
RR
280void FileNameTestCase::TestNormalize()
281{
282 // prepare some data to be used later
283 wxString sep = wxFileName::GetPathSeparator();
284 wxString cwd = wxGetCwd();
285 wxString home = wxGetUserHome();
286
287 cwd.Replace(sep, wxT("/"));
288 if (cwd.Last() != wxT('/'))
289 cwd += wxT('/');
290 home.Replace(sep, wxT("/"));
291 if (home.Last() != wxT('/'))
292 home += wxT('/');
293
294 // since we will always be testing paths using the wxPATH_UNIX
295 // format, we need to remove the volume, if present
296 if (home.Contains(wxT(':')))
297 home = home.AfterFirst(wxT(':'));
298 if (cwd.Contains(wxT(':')))
299 cwd = cwd.AfterFirst(wxT(':'));
300
8e083702 301 static const struct FileNameTest
bf7f7793 302 {
527587d3 303 const char *original;
bf7f7793 304 int flags;
527587d3 305 const char *expected;
c7099635 306 wxPathFormat fmt;
bf7f7793
RR
307 } tests[] =
308 {
309 // test wxPATH_NORM_ENV_VARS
310#ifdef __WXMSW__
c7099635 311 { "%ABCDEF%/g/h/i", wxPATH_NORM_ENV_VARS, "abcdef/g/h/i", wxPATH_UNIX },
bf7f7793 312#else
c7099635 313 { "$(ABCDEF)/g/h/i", wxPATH_NORM_ENV_VARS, "abcdef/g/h/i", wxPATH_UNIX },
bf7f7793
RR
314#endif
315
316 // test wxPATH_NORM_DOTS
c7099635 317 { "a/.././b/c/../../", wxPATH_NORM_DOTS, "", wxPATH_UNIX },
60c4147a
VZ
318 { "./", wxPATH_NORM_DOTS, "", wxPATH_UNIX },
319 { "b/../", wxPATH_NORM_DOTS, "", wxPATH_UNIX },
bf7f7793 320
be5be16a
VZ
321 // test wxPATH_NORM_TILDE: notice that ~ is only interpreted specially
322 // when it is the first character in the file name
c7099635 323 { "/a/b/~", wxPATH_NORM_TILDE, "/a/b/~", wxPATH_UNIX },
be5be16a 324 { "/~/a/b", wxPATH_NORM_TILDE, "/~/a/b", wxPATH_UNIX },
527587d3 325 { "~/a/b", wxPATH_NORM_TILDE, "HOME/a/b", wxPATH_UNIX },
c7099635
VZ
326
327 // test wxPATH_NORM_CASE
328 { "Foo", wxPATH_NORM_CASE, "Foo", wxPATH_UNIX },
329 { "Foo", wxPATH_NORM_CASE, "foo", wxPATH_DOS },
330 { "C:\\Program Files\\wx", wxPATH_NORM_CASE,
331 "c:\\program files\\wx", wxPATH_DOS },
332 { "C:/Program Files/wx", wxPATH_NORM_ALL | wxPATH_NORM_CASE,
333 "c:\\program files\\wx", wxPATH_DOS },
9a0c5c01
VZ
334 { "C:\\Users\\zeitlin", wxPATH_NORM_ALL | wxPATH_NORM_CASE,
335 "c:\\users\\zeitlin", wxPATH_DOS },
bf7f7793
RR
336
337 // test wxPATH_NORM_ABSOLUTE
527587d3
VZ
338 { "a/b/", wxPATH_NORM_ABSOLUTE, "CWD/a/b/", wxPATH_UNIX },
339 { "a/b/c.ext", wxPATH_NORM_ABSOLUTE, "CWD/a/b/c.ext", wxPATH_UNIX },
c7099635 340 { "/a", wxPATH_NORM_ABSOLUTE, "/a", wxPATH_UNIX },
bf7f7793
RR
341
342 // test giving no flags at all to Normalize()
c7099635
VZ
343 { "a/b/", 0, "a/b/", wxPATH_UNIX },
344 { "a/b/c.ext", 0, "a/b/c.ext", wxPATH_UNIX },
ea6319cb
VZ
345 { "/a", 0, "/a", wxPATH_UNIX },
346
347 // test handling dots without wxPATH_NORM_DOTS and wxPATH_NORM_ABSOLUTE
348 // for both existing and non-existent files (this is important under
349 // MSW where GetLongPathName() works only for the former)
350 { "./foo", wxPATH_NORM_LONG, "./foo", wxPATH_UNIX },
351 { "../foo", wxPATH_NORM_LONG, "../foo", wxPATH_UNIX },
352 { ".\\test.bkl", wxPATH_NORM_LONG, ".\\test.bkl", wxPATH_DOS },
353 { ".\\foo", wxPATH_NORM_LONG, ".\\foo", wxPATH_DOS },
354 { "..\\Makefile.in", wxPATH_NORM_LONG, "..\\Makefile.in", wxPATH_DOS },
355 { "..\\foo", wxPATH_NORM_LONG, "..\\foo", wxPATH_DOS },
bf7f7793
RR
356 };
357
358 // set the env var ABCDEF
9630954d 359 wxSetEnv("ABCDEF", "abcdef");
bf7f7793 360
2264775b 361 for ( size_t i = 0; i < WXSIZEOF(tests); i++ )
bf7f7793 362 {
c7099635
VZ
363 const FileNameTest& fnt = tests[i];
364 wxFileName fn(fnt.original, fnt.fmt);
bf7f7793
RR
365
366 // be sure this normalization does not fail
a779d809 367 WX_ASSERT_MESSAGE
2264775b 368 (
a779d809 369 ("#%d: Normalize(%s) failed", (int)i, fnt.original),
c7099635 370 fn.Normalize(fnt.flags, cwd, fnt.fmt)
2264775b 371 );
bf7f7793
RR
372
373 // compare result with expected string
527587d3 374 wxString expected(tests[i].expected);
9630954d
VZ
375 expected.Replace("HOME/", home);
376 expected.Replace("CWD/", cwd);
a779d809
VZ
377 WX_ASSERT_EQUAL_MESSAGE
378 (
379 ("array element #%d", (int)i),
380 expected, fn.GetFullPath(fnt.fmt)
381 );
bf7f7793 382 }
525711d7
VZ
383
384 // MSW-only test for wxPATH_NORM_LONG: notice that we only run it if short
385 // names generation is not disabled for this system as otherwise the file
386 // MKINST~1 doesn't exist at all and normalizing it fails (it's possible
387 // that we're on a FAT partition in which case the test would still succeed
388 // and also that the registry key was changed recently and didn't take
389 // effect yet but these are marginal cases which we consciously choose to
390 // ignore for now)
391#ifdef __WXMSW__
392 long shortNamesDisabled;
393 if ( wxRegKey
394 (
395 wxRegKey::HKLM,
396 "SYSTEM\\CurrentControlSet\\Control\\FileSystem"
397 ).QueryValue("NtfsDisable8dot3NameCreation", &shortNamesDisabled) &&
398 !shortNamesDisabled )
399 {
400 wxFileName fn("..\\MKINST~1");
401 CPPUNIT_ASSERT( fn.Normalize(wxPATH_NORM_LONG, cwd) );
402 CPPUNIT_ASSERT_EQUAL( "..\\mkinstalldirs", fn.GetFullPath() );
403 }
404 //else: when in doubt, don't run the test
405#endif // __WXMSW__
bf7f7793
RR
406}
407
395f3aa8
FM
408void FileNameTestCase::TestReplace()
409{
410 static const struct FileNameTest
411 {
412 const char *original;
413 const char *env_contents;
414 const char *replace_fmtstring;
415 const char *expected;
416 wxPathFormat fmt;
417 } tests[] =
418 {
419 { "/usr/a/strange path/lib/someFile.ext", "/usr/a/strange path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX },
420 { "/usr/a/path/lib/someFile.ext", "/usr/a/path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX },
421 { "/usr/a/path/lib/someFile", "/usr/a/path/", "$%s", "$TEST_VARlib/someFile", wxPATH_UNIX },
422 { "/usr/a/path/lib/", "/usr/a/path/", "$(%s)", "$(TEST_VAR)lib/", wxPATH_UNIX },
423 { "/usr/a/path/lib/", "/usr/a/path/", "${{%s}}", "${{TEST_VAR}}lib/", wxPATH_UNIX },
424 { "/usr/a/path/lib/", "/usr/a/path/", "%s", "TEST_VARlib/", wxPATH_UNIX },
425 { "/usr/a/path/lib/", "/usr/a/path/", "%s//", "TEST_VAR/lib/", wxPATH_UNIX },
426 // note: empty directory components are automatically removed by wxFileName thus
427 // using // in the replace format string has no effect
428
429 { "/usr/../a/path/lib/", "/usr/a/path/", "%s", "/usr/../a/path/lib/", wxPATH_UNIX },
430 { "/usr/a/path/usr/usr", "/usr", "%s", "TEST_VAR/a/pathTEST_VAR/usr", wxPATH_UNIX },
431 { "/usr/a/path/usr/usr", "/usr", "$%s", "$TEST_VAR/a/path$TEST_VAR/usr", wxPATH_UNIX },
432 { "/a/b/c/d", "a/", "%s", "/TEST_VARb/c/d", wxPATH_UNIX },
433
434 { "C:\\A\\Strange Path\\lib\\someFile", "C:\\A\\Strange Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN },
435 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN },
436 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "$(%s)", "$(TEST_VAR)\\lib\\someFile", wxPATH_WIN }
437 };
438
439 for ( size_t i = 0; i < WXSIZEOF(tests); i++ )
440 {
441 const FileNameTest& fnt = tests[i];
442 wxFileName fn(fnt.original, fnt.fmt);
443
444 // set the environment variable
9630954d 445 wxSetEnv("TEST_VAR", fnt.env_contents);
395f3aa8
FM
446
447 // be sure this ReplaceEnvVariable does not fail
448 WX_ASSERT_MESSAGE
449 (
450 ("#%d: ReplaceEnvVariable(%s) failed", (int)i, fnt.replace_fmtstring),
451 fn.ReplaceEnvVariable("TEST_VAR", fnt.replace_fmtstring, fnt.fmt)
452 );
453
454 // compare result with expected string
455 wxString expected(fnt.expected);
456 WX_ASSERT_EQUAL_MESSAGE
457 (
458 ("array element #%d", (int)i),
459 expected, fn.GetFullPath(fnt.fmt)
460 );
461 }
462
463 // now test ReplaceHomeDir
464
465 wxFileName fn = wxFileName::DirName(wxGetHomeDir());
466 fn.AppendDir("test1");
467 fn.AppendDir("test2");
468 fn.AppendDir("test3");
469 fn.SetName("some file");
470
471 WX_ASSERT_MESSAGE
472 (
473 ("ReplaceHomeDir(%s) failed", fn.GetFullPath()),
474 fn.ReplaceHomeDir()
475 );
476
9630954d 477 CPPUNIT_ASSERT_EQUAL( wxString("~/test1/test2/test3/some file"),
395f3aa8
FM
478 fn.GetFullPath(wxPATH_UNIX) );
479}
480
c08dd08b
RN
481void FileNameTestCase::TestStrip()
482{
9630954d
VZ
483 CPPUNIT_ASSERT_EQUAL( "", wxFileName::StripExtension("") );
484 CPPUNIT_ASSERT_EQUAL( ".", wxFileName::StripExtension(".") );
485 CPPUNIT_ASSERT_EQUAL( ".vimrc", wxFileName::StripExtension(".vimrc") );
486 CPPUNIT_ASSERT_EQUAL( "bad", wxFileName::StripExtension("bad") );
487 CPPUNIT_ASSERT_EQUAL( "good", wxFileName::StripExtension("good.wav") );
488 CPPUNIT_ASSERT_EQUAL( "good.wav", wxFileName::StripExtension("good.wav.wav") );
ff3d9a35 489}
60c0dfe5
VZ
490
491#ifdef __WINDOWS__
492
493void FileNameTestCase::TestShortLongPath()
494{
9630954d 495 wxFileName fn("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe");
60c0dfe5
VZ
496
497 // incredibly enough, GetLongPath() used to return different results during
498 // the first and subsequent runs, test for this
499 CPPUNIT_ASSERT_EQUAL( fn.GetLongPath(), fn.GetLongPath() );
500 CPPUNIT_ASSERT_EQUAL( fn.GetShortPath(), fn.GetShortPath() );
501}
502
503#endif // __WINDOWS__