1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/filename/filename.cpp
3 // Purpose: wxFileName unit test
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2004 Vadim Zeitlin
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
24 #include "wx/filename.h"
25 #include "wx/filefn.h"
26 #include "wx/stdpaths.h"
27 #include "wx/scopeguard.h"
30 #include "wx/msw/registry.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 static struct TestFileNameInfo
55 { "", "", "", "", "", false, wxPATH_UNIX
},
56 { "", "", "", "", "", false, wxPATH_DOS
},
57 { "", "", "", "", "", false, wxPATH_VMS
},
60 { "/usr/bin/ls", "", "/usr/bin", "ls", "", true, wxPATH_UNIX
},
61 { "/usr/bin/", "", "/usr/bin", "", "", true, wxPATH_UNIX
},
62 { "~/.zshrc", "", "~", ".zshrc", "", true, wxPATH_UNIX
},
63 { "../../foo", "", "../..", "foo", "", false, wxPATH_UNIX
},
64 { "foo.bar", "", "", "foo", "bar", false, wxPATH_UNIX
},
65 { "~/foo.bar", "", "~", "foo", "bar", true, wxPATH_UNIX
},
66 { "~user/foo.bar", "", "~user", "foo", "bar", true, wxPATH_UNIX
},
67 { "~user/", "", "~user", "", "", true, wxPATH_UNIX
},
68 { "/foo", "", "/", "foo", "", true, wxPATH_UNIX
},
69 { "Mahogany-0.60/foo.bar", "", "Mahogany-0.60", "foo", "bar", false, wxPATH_UNIX
},
70 { "/tmp/wxwin.tar.bz", "", "/tmp", "wxwin.tar", "bz", true, wxPATH_UNIX
},
73 { "foo.bar", "", "", "foo", "bar", false, wxPATH_DOS
},
74 { "\\foo.bar", "", "\\", "foo", "bar", false, wxPATH_DOS
},
75 { "c:foo.bar", "c", "", "foo", "bar", false, wxPATH_DOS
},
76 { "c:\\foo.bar", "c", "\\", "foo", "bar", true, wxPATH_DOS
},
77 { "c:\\Windows\\command.com", "c", "\\Windows", "command", "com", true, wxPATH_DOS
},
78 { "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\",
79 "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}", "\\", "", "", true, wxPATH_DOS
},
80 { "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\Program Files\\setup.exe",
81 "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}", "\\Program Files", "setup", "exe", true, wxPATH_DOS
},
84 // NB: when using the wxFileName::GetLongPath() function on these two
85 // strings, the program will hang for several seconds blocking inside
86 // Win32 GetLongPathName() function
87 { "\\\\server\\foo.bar", "server", "\\", "foo", "bar", true, wxPATH_DOS
},
88 { "\\\\server\\dir\\foo.bar", "server", "\\dir", "foo", "bar", true, wxPATH_DOS
},
91 // consecutive [back]slashes should be treated as single occurrences of
92 // them and not interpreted as share names if there is a volume name
93 { "c:\\aaa\\bbb\\ccc", "c", "\\aaa\\bbb", "ccc", "", true, wxPATH_DOS
},
94 { "c:\\\\aaa\\bbb\\ccc", "c", "\\\\aaa\\bbb", "ccc", "", true, wxPATH_DOS
},
96 // wxFileName support for Mac file names is broken currently
99 { "Volume:Dir:File", "Volume", "Dir", "File", "", true, wxPATH_MAC
},
100 { "Volume:Dir:Subdir:File", "Volume", "Dir:Subdir", "File", "", true, wxPATH_MAC
},
101 { "Volume:", "Volume", "", "", "", true, wxPATH_MAC
},
102 { ":Dir:File", "", "Dir", "File", "", false, wxPATH_MAC
},
103 { ":File.Ext", "", "", "File", ".Ext", false, wxPATH_MAC
},
104 { "File.Ext", "", "", "File", ".Ext", false, wxPATH_MAC
},
109 // NB: on Windows they have the same effect of the \\server\\ strings
110 // (see the note above)
111 { "device:[dir1.dir2.dir3]file.txt", "device", "dir1.dir2.dir3", "file", "txt", true, wxPATH_VMS
},
113 { "file.txt", "", "", "file", "txt", false, wxPATH_VMS
},
116 // ----------------------------------------------------------------------------
118 // ----------------------------------------------------------------------------
120 class FileNameTestCase
: public CppUnit::TestCase
123 FileNameTestCase() { }
126 CPPUNIT_TEST_SUITE( FileNameTestCase
);
127 CPPUNIT_TEST( TestConstruction
);
128 CPPUNIT_TEST( TestComparison
);
129 CPPUNIT_TEST( TestSplit
);
130 CPPUNIT_TEST( TestSetPath
);
131 CPPUNIT_TEST( TestStrip
);
132 CPPUNIT_TEST( TestNormalize
);
133 CPPUNIT_TEST( TestReplace
);
134 CPPUNIT_TEST( TestGetHumanReadable
);
136 CPPUNIT_TEST( TestShortLongPath
);
137 #endif // __WINDOWS__
138 CPPUNIT_TEST( TestUNC
);
139 CPPUNIT_TEST( TestVolumeUniqueName
);
140 CPPUNIT_TEST( TestCreateTempFileName
);
141 CPPUNIT_TEST( TestGetTimes
);
142 CPPUNIT_TEST( TestExists
);
143 CPPUNIT_TEST( TestIsSame
);
144 #if defined(__UNIX__)
145 CPPUNIT_TEST( TestSymlinks
);
147 CPPUNIT_TEST_SUITE_END();
149 void TestConstruction();
150 void TestComparison();
154 void TestNormalize();
156 void TestGetHumanReadable();
158 void TestShortLongPath();
159 #endif // __WINDOWS__
161 void TestVolumeUniqueName();
162 void TestCreateTempFileName();
166 #if defined(__UNIX__)
170 DECLARE_NO_COPY_CLASS(FileNameTestCase
)
173 // register in the unnamed registry so that these tests are run by default
174 CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase
);
176 // also include in its own registry so that these tests can be run alone
177 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase
, "FileNameTestCase" );
179 void FileNameTestCase::TestConstruction()
181 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
183 const TestFileNameInfo
& fni
= filenames
[n
];
185 wxFileName
fn(fni
.fullname
, fni
.format
);
187 // the original full name could contain consecutive [back]slashes,
188 // squeeze them except for the double backslash in the beginning in
189 // Windows filenames where it has special meaning
190 wxString fullnameOrig
;
191 if ( fni
.format
== wxPATH_DOS
)
193 // copy the backslashes at beginning unchanged
194 const char *p
= fni
.fullname
;
196 fullnameOrig
+= *p
++;
198 // replace consecutive slashes with single ones in the rest
199 for ( char chPrev
= '\0'; *p
; p
++ )
201 if ( *p
== '\\' && chPrev
== '\\' )
205 fullnameOrig
+= chPrev
;
210 fullnameOrig
= fni
.fullname
;
213 fullnameOrig
.Replace("//", "/");
216 wxString fullname
= fn
.GetFullPath(fni
.format
);
217 CPPUNIT_ASSERT_EQUAL( fullnameOrig
, fullname
);
219 // notice that we use a dummy working directory to ensure that paths
220 // with "../.." in them could be normalized, otherwise this would fail
221 // if the test is run from root directory or its direct subdirectory
222 CPPUNIT_ASSERT_MESSAGE
224 (const char *)wxString::Format("Normalize(%s) failed", fni
.fullname
).mb_str(),
225 fn
.Normalize(wxPATH_NORM_ALL
, "/foo/bar/baz", fni
.format
)
228 if ( *fni
.volume
&& *fni
.path
)
230 // check that specifying the volume separately or as part of the
231 // path doesn't make any difference
232 wxString pathWithVolume
= fni
.volume
;
233 pathWithVolume
+= wxFileName::GetVolumeSeparator(fni
.format
);
234 pathWithVolume
+= fni
.path
;
236 CPPUNIT_ASSERT_EQUAL( wxFileName(pathWithVolume
,
246 fn
.AssignDir(wxEmptyString
);
247 CPPUNIT_ASSERT( !fn
.IsOk() );
249 fn
.Assign(wxEmptyString
);
250 CPPUNIT_ASSERT( !fn
.IsOk() );
252 fn
.Assign(wxEmptyString
, wxEmptyString
);
253 CPPUNIT_ASSERT( !fn
.IsOk() );
255 fn
.Assign(wxEmptyString
, wxEmptyString
, wxEmptyString
);
256 CPPUNIT_ASSERT( !fn
.IsOk() );
258 fn
.Assign(wxEmptyString
, wxEmptyString
, wxEmptyString
, wxEmptyString
);
259 CPPUNIT_ASSERT( !fn
.IsOk() );
262 void FileNameTestCase::TestComparison()
264 wxFileName
fn1(wxT("/tmp/file1"));
265 wxFileName
fn2(wxT("/tmp/dir2/../file2"));
268 CPPUNIT_ASSERT_EQUAL(fn1
.GetPath(), fn2
.GetPath());
271 void FileNameTestCase::TestSplit()
273 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
275 const TestFileNameInfo
& fni
= filenames
[n
];
276 wxString volume
, path
, name
, ext
;
277 wxFileName::SplitPath(fni
.fullname
,
278 &volume
, &path
, &name
, &ext
, fni
.format
);
280 CPPUNIT_ASSERT_EQUAL( wxString(fni
.volume
), volume
);
281 CPPUNIT_ASSERT_EQUAL( wxString(fni
.path
), path
);
282 CPPUNIT_ASSERT_EQUAL( wxString(fni
.name
), name
);
283 CPPUNIT_ASSERT_EQUAL( wxString(fni
.ext
), ext
);
286 // special case of empty extension
287 wxFileName
fn("foo.");
288 CPPUNIT_ASSERT_EQUAL( wxString("foo."), fn
.GetFullPath() );
291 void FileNameTestCase::TestSetPath()
293 wxFileName
fn("d:\\test\\foo.bar", wxPATH_DOS
);
294 fn
.SetPath("c:\\temp", wxPATH_DOS
);
295 CPPUNIT_ASSERT( fn
.SameAs(wxFileName("c:\\temp\\foo.bar", wxPATH_DOS
)) );
297 fn
= wxFileName("/usr/bin/ls", wxPATH_UNIX
);
298 fn
.SetPath("/usr/local/bin", wxPATH_UNIX
);
299 CPPUNIT_ASSERT( fn
.SameAs(wxFileName("/usr/local/bin/ls", wxPATH_UNIX
)) );
302 void FileNameTestCase::TestNormalize()
304 // prepare some data to be used later
305 wxString sep
= wxFileName::GetPathSeparator();
306 wxString cwd
= wxGetCwd();
307 wxString home
= wxGetUserHome();
309 cwd
.Replace(sep
, wxT("/"));
310 if (cwd
.Last() != wxT('/'))
312 home
.Replace(sep
, wxT("/"));
313 if (home
.Last() != wxT('/'))
316 // since we will always be testing paths using the wxPATH_UNIX
317 // format, we need to remove the volume, if present
318 if (home
.Contains(wxT(':')))
319 home
= home
.AfterFirst(wxT(':'));
320 if (cwd
.Contains(wxT(':')))
321 cwd
= cwd
.AfterFirst(wxT(':'));
323 static const struct FileNameTest
325 const char *original
;
327 const char *expected
;
331 // test wxPATH_NORM_ENV_VARS
333 { "%ABCDEF%/g/h/i", wxPATH_NORM_ENV_VARS
, "abcdef/g/h/i", wxPATH_UNIX
},
335 { "$(ABCDEF)/g/h/i", wxPATH_NORM_ENV_VARS
, "abcdef/g/h/i", wxPATH_UNIX
},
338 // test wxPATH_NORM_DOTS
339 { "a/.././b/c/../../", wxPATH_NORM_DOTS
, "", wxPATH_UNIX
},
340 { "", wxPATH_NORM_DOTS
, "", wxPATH_UNIX
},
341 { "./foo", wxPATH_NORM_DOTS
, "foo", wxPATH_UNIX
},
342 { "b/../bar", wxPATH_NORM_DOTS
, "bar", wxPATH_UNIX
},
343 { "c/../../quux", wxPATH_NORM_DOTS
, "../quux", wxPATH_UNIX
},
344 { "/c/../../quux", wxPATH_NORM_DOTS
, "/quux", wxPATH_UNIX
},
346 // test wxPATH_NORM_TILDE: notice that ~ is only interpreted specially
347 // when it is the first character in the file name
348 { "/a/b/~", wxPATH_NORM_TILDE
, "/a/b/~", wxPATH_UNIX
},
349 { "/~/a/b", wxPATH_NORM_TILDE
, "/~/a/b", wxPATH_UNIX
},
350 { "~/a/b", wxPATH_NORM_TILDE
, "HOME/a/b", wxPATH_UNIX
},
352 // test wxPATH_NORM_CASE
353 { "Foo", wxPATH_NORM_CASE
, "Foo", wxPATH_UNIX
},
354 { "Foo", wxPATH_NORM_CASE
, "foo", wxPATH_DOS
},
355 { "C:\\Program Files\\wx", wxPATH_NORM_CASE
,
356 "c:\\program files\\wx", wxPATH_DOS
},
357 { "C:/Program Files/wx", wxPATH_NORM_ALL
| wxPATH_NORM_CASE
,
358 "c:\\program files\\wx", wxPATH_DOS
},
359 { "C:\\Users\\zeitlin", wxPATH_NORM_ALL
| wxPATH_NORM_CASE
,
360 "c:\\users\\zeitlin", wxPATH_DOS
},
362 // test wxPATH_NORM_ABSOLUTE
363 { "a/b/", wxPATH_NORM_ABSOLUTE
, "CWD/a/b/", wxPATH_UNIX
},
364 { "a/b/c.ext", wxPATH_NORM_ABSOLUTE
, "CWD/a/b/c.ext", wxPATH_UNIX
},
365 { "/a", wxPATH_NORM_ABSOLUTE
, "/a", wxPATH_UNIX
},
367 // test giving no flags at all to Normalize()
368 { "a/b/", 0, "a/b/", wxPATH_UNIX
},
369 { "a/b/c.ext", 0, "a/b/c.ext", wxPATH_UNIX
},
370 { "/a", 0, "/a", wxPATH_UNIX
},
372 // test handling dots without wxPATH_NORM_DOTS and wxPATH_NORM_ABSOLUTE
373 // for both existing and non-existent files (this is important under
374 // MSW where GetLongPathName() works only for the former)
375 { "./foo", wxPATH_NORM_LONG
, "./foo", wxPATH_UNIX
},
376 { "../foo", wxPATH_NORM_LONG
, "../foo", wxPATH_UNIX
},
377 { ".\\test.bkl", wxPATH_NORM_LONG
, ".\\test.bkl", wxPATH_DOS
},
378 { ".\\foo", wxPATH_NORM_LONG
, ".\\foo", wxPATH_DOS
},
379 { "..\\Makefile.in", wxPATH_NORM_LONG
, "..\\Makefile.in", wxPATH_DOS
},
380 { "..\\foo", wxPATH_NORM_LONG
, "..\\foo", wxPATH_DOS
},
383 // set the env var ABCDEF
384 wxSetEnv("ABCDEF", "abcdef");
386 for ( size_t i
= 0; i
< WXSIZEOF(tests
); i
++ )
388 const FileNameTest
& fnt
= tests
[i
];
389 wxFileName
fn(fnt
.original
, fnt
.fmt
);
391 // be sure this normalization does not fail
394 ("#%d: Normalize(%s) failed", (int)i
, fnt
.original
),
395 fn
.Normalize(fnt
.flags
, cwd
, fnt
.fmt
)
398 // compare result with expected string
399 wxString
expected(tests
[i
].expected
);
400 expected
.Replace("HOME/", home
);
401 expected
.Replace("CWD/", cwd
);
402 WX_ASSERT_EQUAL_MESSAGE
404 ("array element #%d", (int)i
),
405 expected
, fn
.GetFullPath(fnt
.fmt
)
409 // MSW-only test for wxPATH_NORM_LONG: notice that we only run it if short
410 // names generation is not disabled for this system as otherwise the file
411 // MKINST~1 doesn't exist at all and normalizing it fails (it's possible
412 // that we're on a FAT partition in which case the test would still succeed
413 // and also that the registry key was changed recently and didn't take
414 // effect yet but these are marginal cases which we consciously choose to
417 long shortNamesDisabled
;
421 "SYSTEM\\CurrentControlSet\\Control\\FileSystem"
422 ).QueryValue("NtfsDisable8dot3NameCreation", &shortNamesDisabled
) &&
423 !shortNamesDisabled
)
425 wxFileName
fn("..\\MKINST~1");
426 CPPUNIT_ASSERT( fn
.Normalize(wxPATH_NORM_LONG
, cwd
) );
427 CPPUNIT_ASSERT_EQUAL( "..\\mkinstalldirs", fn
.GetFullPath() );
429 //else: when in doubt, don't run the test
430 #endif // __WINDOWS__
433 void FileNameTestCase::TestReplace()
435 static const struct FileNameTest
437 const char *original
;
438 const char *env_contents
;
439 const char *replace_fmtstring
;
440 const char *expected
;
444 { "/usr/a/strange path/lib/someFile.ext", "/usr/a/strange path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX
},
445 { "/usr/a/path/lib/someFile.ext", "/usr/a/path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX
},
446 { "/usr/a/path/lib/someFile", "/usr/a/path/", "$%s", "$TEST_VARlib/someFile", wxPATH_UNIX
},
447 { "/usr/a/path/lib/", "/usr/a/path/", "$(%s)", "$(TEST_VAR)lib/", wxPATH_UNIX
},
448 { "/usr/a/path/lib/", "/usr/a/path/", "${{%s}}", "${{TEST_VAR}}lib/", wxPATH_UNIX
},
449 { "/usr/a/path/lib/", "/usr/a/path/", "%s", "TEST_VARlib/", wxPATH_UNIX
},
450 { "/usr/a/path/lib/", "/usr/a/path/", "%s//", "TEST_VAR/lib/", wxPATH_UNIX
},
451 // note: empty directory components are automatically removed by wxFileName thus
452 // using // in the replace format string has no effect
454 { "/usr/../a/path/lib/", "/usr/a/path/", "%s", "/usr/../a/path/lib/", wxPATH_UNIX
},
455 { "/usr/a/path/usr/usr", "/usr", "%s", "TEST_VAR/a/pathTEST_VAR/usr", wxPATH_UNIX
},
456 { "/usr/a/path/usr/usr", "/usr", "$%s", "$TEST_VAR/a/path$TEST_VAR/usr", wxPATH_UNIX
},
457 { "/a/b/c/d", "a/", "%s", "/TEST_VARb/c/d", wxPATH_UNIX
},
459 { "C:\\A\\Strange Path\\lib\\someFile", "C:\\A\\Strange Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN
},
460 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN
},
461 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "$(%s)", "$(TEST_VAR)\\lib\\someFile", wxPATH_WIN
}
464 for ( size_t i
= 0; i
< WXSIZEOF(tests
); i
++ )
466 const FileNameTest
& fnt
= tests
[i
];
467 wxFileName
fn(fnt
.original
, fnt
.fmt
);
469 // set the environment variable
470 wxSetEnv("TEST_VAR", fnt
.env_contents
);
472 // be sure this ReplaceEnvVariable does not fail
475 ("#%d: ReplaceEnvVariable(%s) failed", (int)i
, fnt
.replace_fmtstring
),
476 fn
.ReplaceEnvVariable("TEST_VAR", fnt
.replace_fmtstring
, fnt
.fmt
)
479 // compare result with expected string
480 wxString
expected(fnt
.expected
);
481 WX_ASSERT_EQUAL_MESSAGE
483 ("array element #%d", (int)i
),
484 expected
, fn
.GetFullPath(fnt
.fmt
)
488 // now test ReplaceHomeDir
490 wxFileName fn
= wxFileName::DirName(wxGetHomeDir());
491 fn
.AppendDir("test1");
492 fn
.AppendDir("test2");
493 fn
.AppendDir("test3");
494 fn
.SetName("some file");
498 ("ReplaceHomeDir(%s) failed", fn
.GetFullPath()),
502 CPPUNIT_ASSERT_EQUAL( wxString("~/test1/test2/test3/some file"),
503 fn
.GetFullPath(wxPATH_UNIX
) );
506 void FileNameTestCase::TestGetHumanReadable()
508 static const struct TestData
513 wxSizeConvention conv
;
516 { "NA", 0, 1, wxSIZE_CONV_TRADITIONAL
},
517 { "2.0 KB", 2000, 1, wxSIZE_CONV_TRADITIONAL
},
518 { "1.953 KiB", 2000, 3, wxSIZE_CONV_IEC
},
519 { "2.000 KB", 2000, 3, wxSIZE_CONV_SI
},
520 { "297 KB", 304351, 0, wxSIZE_CONV_TRADITIONAL
},
521 { "304 KB", 304351, 0, wxSIZE_CONV_SI
},
524 CLocaleSetter loc
; // we want to use "C" locale for LC_NUMERIC
525 // so that regardless of the system's locale
526 // the decimal point used by GetHumanReadableSize()
528 for ( unsigned n
= 0; n
< WXSIZEOF(testData
); n
++ )
530 const TestData
& td
= testData
[n
];
532 // take care of using the decimal point for the current locale before
533 // the actual comparison
537 wxFileName::GetHumanReadableSize(td
.size
, "NA", td
.prec
, td
.conv
)
541 // also test the default convention value
542 CPPUNIT_ASSERT_EQUAL( "1.4 MB", wxFileName::GetHumanReadableSize(1512993, "") );
545 void FileNameTestCase::TestStrip()
547 CPPUNIT_ASSERT_EQUAL( "", wxFileName::StripExtension("") );
548 CPPUNIT_ASSERT_EQUAL( ".", wxFileName::StripExtension(".") );
549 CPPUNIT_ASSERT_EQUAL( ".vimrc", wxFileName::StripExtension(".vimrc") );
550 CPPUNIT_ASSERT_EQUAL( "bad", wxFileName::StripExtension("bad") );
551 CPPUNIT_ASSERT_EQUAL( "good", wxFileName::StripExtension("good.wav") );
552 CPPUNIT_ASSERT_EQUAL( "good.wav", wxFileName::StripExtension("good.wav.wav") );
557 void FileNameTestCase::TestShortLongPath()
559 wxFileName
fn("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe");
561 // incredibly enough, GetLongPath() used to return different results during
562 // the first and subsequent runs, test for this
563 CPPUNIT_ASSERT_EQUAL( fn
.GetLongPath(), fn
.GetLongPath() );
564 CPPUNIT_ASSERT_EQUAL( fn
.GetShortPath(), fn
.GetShortPath() );
567 #endif // __WINDOWS__
569 void FileNameTestCase::TestUNC()
571 wxFileName
fn("//share/path/name.ext", wxPATH_DOS
);
572 CPPUNIT_ASSERT_EQUAL( "share", fn
.GetVolume() );
573 CPPUNIT_ASSERT_EQUAL( "\\path", fn
.GetPath(wxPATH_NO_SEPARATOR
, wxPATH_DOS
) );
575 fn
.Assign("\\\\share2\\path2\\name.ext", wxPATH_DOS
);
576 CPPUNIT_ASSERT_EQUAL( "share2", fn
.GetVolume() );
577 CPPUNIT_ASSERT_EQUAL( "\\path2", fn
.GetPath(wxPATH_NO_SEPARATOR
, wxPATH_DOS
) );
580 void FileNameTestCase::TestVolumeUniqueName()
582 wxFileName
fn("\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\",
584 CPPUNIT_ASSERT_EQUAL( "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}",
586 CPPUNIT_ASSERT_EQUAL( "\\", fn
.GetPath(wxPATH_NO_SEPARATOR
, wxPATH_DOS
) );
587 CPPUNIT_ASSERT_EQUAL( "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\",
588 fn
.GetFullPath(wxPATH_DOS
) );
590 fn
.Assign("\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\"
591 "Program Files\\setup.exe", wxPATH_DOS
);
592 CPPUNIT_ASSERT_EQUAL( "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}",
594 CPPUNIT_ASSERT_EQUAL( "\\Program Files",
595 fn
.GetPath(wxPATH_NO_SEPARATOR
, wxPATH_DOS
) );
596 CPPUNIT_ASSERT_EQUAL( "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\"
597 "Program Files\\setup.exe",
598 fn
.GetFullPath(wxPATH_DOS
) );
601 void FileNameTestCase::TestCreateTempFileName()
603 static const struct TestData
606 const char *expectedFolder
;
610 { "", "$SYSTEM_TEMP", true },
611 { "foo", "$SYSTEM_TEMP", true },
612 { "..", "$SYSTEM_TEMP", true },
613 { "../bar", "..", true },
615 { "$USER_DOCS_DIR\\", "$USER_DOCS_DIR", true },
616 { "c:\\a\\directory\\which\\does\\not\\exist", "", false },
617 #elif defined( __UNIX__ )
618 { "$USER_DOCS_DIR/", "$USER_DOCS_DIR", true },
619 { "/tmp/foo", "/tmp", true },
620 { "/tmp/a/directory/which/does/not/exist", "", false },
624 for ( size_t n
= 0; n
< WXSIZEOF(testData
); n
++ )
626 wxString prefix
= testData
[n
].prefix
;
627 prefix
.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir());
629 std::string errDesc
= wxString::Format("failed on prefix '%s'", prefix
).ToStdString();
631 wxString path
= wxFileName::CreateTempFileName(prefix
);
632 CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc
, !testData
[n
].shouldSucceed
, path
.empty() );
634 if (testData
[n
].shouldSucceed
)
636 errDesc
+= "; path is " + path
.ToStdString();
638 // test the place where the temp file has been created
639 wxString expected
= testData
[n
].expectedFolder
;
640 expected
.Replace("$SYSTEM_TEMP", wxStandardPaths::Get().GetTempDir());
641 expected
.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir());
642 CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc
, expected
, wxFileName(path
).GetPath() );
644 // the temporary file is created with full permissions for the current process
645 // so we should always be able to remove it:
646 CPPUNIT_ASSERT_MESSAGE( errDesc
, wxRemoveFile(path
) );
651 void FileNameTestCase::TestGetTimes()
653 wxFileName
fn(wxFileName::CreateTempFileName("filenametest"));
654 CPPUNIT_ASSERT( fn
.IsOk() );
655 wxON_BLOCK_EXIT1( wxRemoveFile
, fn
.GetFullPath() );
657 wxDateTime dtAccess
, dtMod
, dtCreate
;
658 CPPUNIT_ASSERT( fn
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
) );
660 // make sure all retrieved dates are equal to the current date&time
661 // with an accuracy up to 1 minute
662 CPPUNIT_ASSERT(dtCreate
.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
663 CPPUNIT_ASSERT(dtMod
.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
664 CPPUNIT_ASSERT(dtAccess
.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
667 void FileNameTestCase::TestExists()
669 wxFileName
fn(wxFileName::CreateTempFileName("filenametest"));
670 CPPUNIT_ASSERT( fn
.IsOk() );
671 wxON_BLOCK_EXIT1( wxRemoveFile
, fn
.GetFullPath() );
673 CPPUNIT_ASSERT( fn
.FileExists() );
674 CPPUNIT_ASSERT( !wxFileName::DirExists(fn
.GetFullPath()) );
676 // FIXME-VC6: This compiler crashes with
678 // fatal error C1001: INTERNAL COMPILER ERROR
679 // (compiler file 'msc1.cpp', line 1794)
681 // when compiling calls to Exists() with parameter for some reason, just
682 // disable these tests there.
684 CPPUNIT_ASSERT( fn
.Exists(wxFILE_EXISTS_REGULAR
) );
685 CPPUNIT_ASSERT( !fn
.Exists(wxFILE_EXISTS_DIR
) );
687 CPPUNIT_ASSERT( fn
.Exists() );
689 const wxString
& tempdir
= wxFileName::GetTempDir();
691 wxFileName
fileInTempDir(tempdir
, "bloordyblop");
692 CPPUNIT_ASSERT( !fileInTempDir
.Exists() );
693 CPPUNIT_ASSERT( fileInTempDir
.DirExists() );
695 wxFileName
dirTemp(wxFileName::DirName(tempdir
));
696 CPPUNIT_ASSERT( !dirTemp
.FileExists() );
697 CPPUNIT_ASSERT( dirTemp
.DirExists() );
700 CPPUNIT_ASSERT( dirTemp
.Exists(wxFILE_EXISTS_DIR
) );
701 CPPUNIT_ASSERT( !dirTemp
.Exists(wxFILE_EXISTS_REGULAR
) );
703 CPPUNIT_ASSERT( dirTemp
.Exists() );
706 CPPUNIT_ASSERT( !wxFileName::FileExists("/dev/null") );
707 CPPUNIT_ASSERT( !wxFileName::DirExists("/dev/null") );
708 CPPUNIT_ASSERT( wxFileName::Exists("/dev/null") );
709 CPPUNIT_ASSERT( wxFileName::Exists("/dev/null", wxFILE_EXISTS_DEVICE
) );
711 // These files are only guaranteed to exist under Linux.
712 // No need for wxFILE_EXISTS_NO_FOLLOW here; wxFILE_EXISTS_SYMLINK implies it
713 CPPUNIT_ASSERT( wxFileName::Exists("/dev/core", wxFILE_EXISTS_SYMLINK
) );
714 CPPUNIT_ASSERT( wxFileName::Exists("/dev/log", wxFILE_EXISTS_SOCKET
) );
717 wxString fifo
= dirTemp
.GetPath() + "/fifo";
718 if (mkfifo(fifo
.c_str(), 0600) == 0)
720 wxON_BLOCK_EXIT1(wxRemoveFile
, fifo
);
722 CPPUNIT_ASSERT( wxFileName::Exists(fifo
, wxFILE_EXISTS_FIFO
) );
728 void FileNameTestCase::TestIsSame()
730 wxFileName
fn1( wxFileName::CreateTempFileName( "filenametest1" ) );
731 CPPUNIT_ASSERT( fn1
.IsOk() );
732 wxON_BLOCK_EXIT1( wxRemoveFile
, fn1
.GetFullPath() );
734 wxFileName
fn2( wxFileName::CreateTempFileName( "filenametest2" ) );
735 CPPUNIT_ASSERT( fn2
.IsOk() );
736 wxON_BLOCK_EXIT1( wxRemoveFile
, fn2
.GetFullPath() );
738 CPPUNIT_ASSERT( fn1
.SameAs( fn1
) );
739 CPPUNIT_ASSERT( !fn1
.SameAs( fn2
) );
741 #if defined(__UNIX__)
742 // We need to create a temporary directory and a temporary link.
743 // Unfortunately we can't use wxFileName::CreateTempFileName() for neither
744 // as it creates plain files, so use tempnam() explicitly instead.
745 char* tn
= tempnam(NULL
, "wxfn1");
746 const wxString tempdir1
= wxString::From8BitData(tn
);
749 CPPUNIT_ASSERT( wxFileName::Mkdir(tempdir1
) );
750 // Unfortunately the casts are needed to select the overload we need here.
751 wxON_BLOCK_EXIT2( static_cast<bool (*)(const wxString
&, int)>(wxFileName::Rmdir
),
752 tempdir1
, static_cast<int>(wxPATH_RMDIR_RECURSIVE
) );
754 tn
= tempnam(NULL
, "wxfn2");
755 const wxString tempdir2
= wxString::From8BitData(tn
);
757 CPPUNIT_ASSERT_EQUAL( 0, symlink(tempdir1
.c_str(), tempdir2
.c_str()) );
758 wxON_BLOCK_EXIT1( wxRemoveFile
, tempdir2
);
761 wxFileName
fn3(tempdir1
, "foo");
762 wxFileName
fn4(tempdir2
, "foo");
764 // These files have different paths, hence are different.
765 CPPUNIT_ASSERT( !fn3
.SameAs(fn4
) );
767 // Create and close a file to trigger creating it.
768 wxFile(fn3
.GetFullPath(), wxFile::write
);
770 // Now that both files do exist we should be able to detect that they are
771 // actually the same file.
772 CPPUNIT_ASSERT( fn3
.SameAs(fn4
) );
776 #if defined(__UNIX__)
778 // Tests for functions that are changed by ShouldFollowLink()
779 void FileNameTestCase::TestSymlinks()
781 const wxString
tmpdir(wxStandardPaths::Get().GetTempDir());
783 wxFileName
tmpfn(wxFileName::DirName(tmpdir
));
785 wxDateTime dtAccessTmp
, dtModTmp
, dtCreateTmp
;
786 CPPUNIT_ASSERT(tmpfn
.GetTimes(&dtAccessTmp
, &dtModTmp
, &dtCreateTmp
));
788 // Create a temporary directory
790 wxString name
= tmpdir
+ ".filenametestXXXXXX]";
791 mkdir( name
.char_str() , 0222 );
792 wxString tempdir
= name
;
794 wxString name
= tmpdir
+ "/filenametestXXXXXX";
795 wxString tempdir
= wxString::From8BitData(mkdtemp(name
.char_str()));
796 tempdir
<< wxFileName::GetPathSeparator();
798 wxFileName
tempdirfn(wxFileName::DirName(tempdir
));
799 CPPUNIT_ASSERT(tempdirfn
.DirExists());
801 // Create a regular file in that dir, to act as a symlink target
802 wxFileName
targetfn(wxFileName::CreateTempFileName(tempdir
));
803 CPPUNIT_ASSERT(targetfn
.FileExists());
805 // Create a symlink to that file
806 wxFileName
linktofile(tempdir
, "linktofile");
807 CPPUNIT_ASSERT_EQUAL(0, symlink(targetfn
.GetFullPath().c_str(),
808 linktofile
.GetFullPath().c_str()));
810 // ... and another to the temporary directory
811 const wxString
linktodirName(tempdir
+ "/linktodir");
812 wxFileName
linktodir(wxFileName::DirName(linktodirName
));
813 CPPUNIT_ASSERT_EQUAL(0, symlink(tmpfn
.GetFullPath().c_str(),
814 linktodirName
.c_str()));
816 // And symlinks to both of those symlinks
817 wxFileName
linktofilelnk(tempdir
, "linktofilelnk");
818 CPPUNIT_ASSERT_EQUAL(0, symlink(linktofile
.GetFullPath().c_str(),
819 linktofilelnk
.GetFullPath().c_str()));
820 wxFileName
linktodirlnk(tempdir
, "linktodirlnk");
821 CPPUNIT_ASSERT_EQUAL(0, symlink(linktodir
.GetFullPath().c_str(),
822 linktodirlnk
.GetFullPath().c_str()));
824 // Run the tests twice: once in the default symlink following mode and the
825 // second time without following symlinks.
827 for ( int n
= 0; n
< 2; ++n
, deref
= !deref
)
829 const std::string
msg(deref
? " failed for the link target"
830 : " failed for the path itself");
834 linktofile
.DontFollowLink();
835 linktodir
.DontFollowLink();
836 linktofilelnk
.DontFollowLink();
837 linktodirlnk
.DontFollowLink();
841 CPPUNIT_ASSERT_EQUAL_MESSAGE
843 "Comparison with file" + msg
,
844 deref
, linktofile
.SameAs(targetfn
)
847 CPPUNIT_ASSERT_EQUAL_MESSAGE
849 "Comparison with directory" + msg
,
850 deref
, linktodir
.SameAs(tmpfn
)
853 // A link-to-a-link should dereference through to the final target
854 CPPUNIT_ASSERT_EQUAL_MESSAGE
856 "Comparison with link to a file" + msg
,
858 linktofilelnk
.SameAs(targetfn
)
860 CPPUNIT_ASSERT_EQUAL_MESSAGE
862 "Comparison with link to a directory" + msg
,
864 linktodirlnk
.SameAs(tmpfn
)
868 wxDateTime dtAccess
, dtMod
, dtCreate
;
869 CPPUNIT_ASSERT_MESSAGE
871 "Getting times of a directory" + msg
,
872 linktodir
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
)
875 // IsEqualTo() should be true only when dereferencing. Don't test each
876 // individually: accessing to create the link will have updated some
877 bool equal
= dtCreate
.IsEqualTo(dtCreateTmp
) &&
878 dtMod
.IsEqualTo(dtModTmp
) &&
879 dtAccess
.IsEqualTo(dtAccessTmp
);
880 CPPUNIT_ASSERT_EQUAL_MESSAGE
882 "Comparing directory times" + msg
,
887 // Test (File|Dir)Exists()
888 CPPUNIT_ASSERT_EQUAL_MESSAGE
890 "Testing file existence" + msg
,
892 linktofile
.FileExists()
894 CPPUNIT_ASSERT_EQUAL_MESSAGE
896 "Testing directory existence" + msg
,
898 linktodir
.DirExists()
901 // Test wxFileName::Exists
902 // The wxFILE_EXISTS_NO_FOLLOW flag should override DontFollowLink()
903 CPPUNIT_ASSERT_EQUAL_MESSAGE
905 "Testing file existence" + msg
,
907 linktofile
.Exists(wxFILE_EXISTS_REGULAR
| wxFILE_EXISTS_NO_FOLLOW
)
909 CPPUNIT_ASSERT_EQUAL_MESSAGE
911 "Testing directory existence" + msg
,
913 linktodir
.Exists(wxFILE_EXISTS_DIR
| wxFILE_EXISTS_NO_FOLLOW
)
915 // and the static versions
916 CPPUNIT_ASSERT_EQUAL_MESSAGE
918 "Testing file existence" + msg
,
920 wxFileName::Exists(linktofile
.GetFullPath(), wxFILE_EXISTS_REGULAR
| wxFILE_EXISTS_NO_FOLLOW
)
922 CPPUNIT_ASSERT_EQUAL_MESSAGE
924 "Testing file existence" + msg
,
926 wxFileName::Exists(linktofile
.GetFullPath(), wxFILE_EXISTS_REGULAR
)
928 CPPUNIT_ASSERT_EQUAL_MESSAGE
930 "Testing directory existence" + msg
,
932 wxFileName::Exists(linktodir
.GetFullPath(), wxFILE_EXISTS_DIR
| wxFILE_EXISTS_NO_FOLLOW
)
934 CPPUNIT_ASSERT_EQUAL_MESSAGE
936 "Testing directory existence" + msg
,
938 wxFileName::Exists(linktodir
.GetFullPath(), wxFILE_EXISTS_DIR
)
942 // Finally test Exists() after removing the file.
943 CPPUNIT_ASSERT(wxRemoveFile(targetfn
.GetFullPath()));
944 // This should succeed, as the symlink still exists and
945 // the default wxFILE_EXISTS_ANY implies wxFILE_EXISTS_NO_FOLLOW
946 CPPUNIT_ASSERT(wxFileName(tempdir
, "linktofile").Exists());
947 // So should this one, as wxFILE_EXISTS_SYMLINK does too
948 CPPUNIT_ASSERT(wxFileName(tempdir
, "linktofile").
949 Exists(wxFILE_EXISTS_SYMLINK
));
950 // but not this one, as the now broken symlink is followed
951 CPPUNIT_ASSERT(!wxFileName(tempdir
, "linktofile").
952 Exists(wxFILE_EXISTS_REGULAR
));
953 CPPUNIT_ASSERT(linktofile
.Exists());
955 // This is also a convenient place to test Rmdir() as we have things to
958 // First, check that removing a symlink to a directory fails.
959 CPPUNIT_ASSERT( !wxFileName::Rmdir(linktodirName
) );
961 // And recursively removing it only removes the symlink itself, not the
963 CPPUNIT_ASSERT( wxFileName::Rmdir(linktodirName
, wxPATH_RMDIR_RECURSIVE
) );
964 CPPUNIT_ASSERT( tmpfn
.Exists() );
966 // Finally removing the directory itself does remove everything.
967 CPPUNIT_ASSERT(tempdirfn
.Rmdir(wxPATH_RMDIR_RECURSIVE
));
968 CPPUNIT_ASSERT( !tempdirfn
.Exists() );