]> git.saurik.com Git - wxWidgets.git/blame - tests/filename/filenametest.cpp
Try native method first in LoadFile() and SaveFile()
[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
f095b1fc
VZ
6// Copyright: (c) 2004 Vadim Zeitlin
7///////////////////////////////////////////////////////////////////////////////
8
9// ----------------------------------------------------------------------------
10// headers
11// ----------------------------------------------------------------------------
12
8899b155 13#include "testprec.h"
f095b1fc
VZ
14
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
f7c69b90 20 #include "wx/utils.h"
f095b1fc
VZ
21#endif // WX_PRECOMP
22
23#include "wx/filename.h"
c08dd08b 24#include "wx/filefn.h"
1fe1aecb 25#include "wx/stdpaths.h"
41fec01f 26#include "wx/scopeguard.h"
f095b1fc 27
bb5a9514 28#ifdef __WINDOWS__
525711d7 29 #include "wx/msw/registry.h"
bb5a9514 30#endif // __WINDOWS__
525711d7 31
7c9b6c91
VZ
32#ifdef __UNIX__
33 #include <unistd.h>
34#endif // __UNIX__
35
40152925 36#include "testfile.h"
55ab7316 37#include "testdate.h"
2264775b 38
f095b1fc
VZ
39// ----------------------------------------------------------------------------
40// test data
41// ----------------------------------------------------------------------------
42
5fed01a9 43static struct TestFileNameInfo
f095b1fc 44{
9630954d
VZ
45 const char *fullname;
46 const char *volume;
47 const char *path;
48 const char *name;
49 const char *ext;
f095b1fc
VZ
50 bool isAbsolute;
51 wxPathFormat format;
52} filenames[] =
53{
69858116 54 // the empty string
9630954d
VZ
55 { "", "", "", "", "", false, wxPATH_UNIX },
56 { "", "", "", "", "", false, wxPATH_DOS },
57 { "", "", "", "", "", false, wxPATH_VMS },
69858116 58
f095b1fc 59 // Unix file names
9630954d
VZ
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 },
be5be16a
VZ
66 { "~user/foo.bar", "", "~user", "foo", "bar", true, wxPATH_UNIX },
67 { "~user/", "", "~user", "", "", true, wxPATH_UNIX },
9630954d
VZ
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 },
f095b1fc
VZ
71
72 // Windows file names
9630954d
VZ
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 },
e01a788e
VZ
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 },
bf7f7793 82
ea6319cb 83#if 0
c7099635
VZ
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
9630954d
VZ
87 { "\\\\server\\foo.bar", "server", "\\", "foo", "bar", true, wxPATH_DOS },
88 { "\\\\server\\dir\\foo.bar", "server", "\\dir", "foo", "bar", true, wxPATH_DOS },
ea6319cb 89#endif
f095b1fc 90
34841b21
VZ
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
9630954d
VZ
93 { "c:\\aaa\\bbb\\ccc", "c", "\\aaa\\bbb", "ccc", "", true, wxPATH_DOS },
94 { "c:\\\\aaa\\bbb\\ccc", "c", "\\\\aaa\\bbb", "ccc", "", true, wxPATH_DOS },
bf7f7793 95
f095b1fc
VZ
96 // wxFileName support for Mac file names is broken currently
97#if 0
98 // Mac file names
9630954d
VZ
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 },
f095b1fc
VZ
105#endif // 0
106
ea6319cb 107#if 0
f095b1fc 108 // VMS file names
bf7f7793
RR
109 // NB: on Windows they have the same effect of the \\server\\ strings
110 // (see the note above)
9630954d 111 { "device:[dir1.dir2.dir3]file.txt", "device", "dir1.dir2.dir3", "file", "txt", true, wxPATH_VMS },
ea6319cb 112#endif
9630954d 113 { "file.txt", "", "", "file", "txt", false, wxPATH_VMS },
f095b1fc
VZ
114};
115
116// ----------------------------------------------------------------------------
117// test class
118// ----------------------------------------------------------------------------
119
120class FileNameTestCase : public CppUnit::TestCase
121{
122public:
123 FileNameTestCase() { }
124
125private:
126 CPPUNIT_TEST_SUITE( FileNameTestCase );
127 CPPUNIT_TEST( TestConstruction );
33366127 128 CPPUNIT_TEST( TestComparison );
f095b1fc 129 CPPUNIT_TEST( TestSplit );
4524a24b 130 CPPUNIT_TEST( TestSetPath );
c08dd08b 131 CPPUNIT_TEST( TestStrip );
bf7f7793 132 CPPUNIT_TEST( TestNormalize );
395f3aa8 133 CPPUNIT_TEST( TestReplace );
b2edb8f3 134 CPPUNIT_TEST( TestGetHumanReadable );
60c0dfe5
VZ
135#ifdef __WINDOWS__
136 CPPUNIT_TEST( TestShortLongPath );
137#endif // __WINDOWS__
7b611a3a 138 CPPUNIT_TEST( TestUNC );
e01a788e 139 CPPUNIT_TEST( TestVolumeUniqueName );
1fe1aecb
FM
140 CPPUNIT_TEST( TestCreateTempFileName );
141 CPPUNIT_TEST( TestGetTimes );
55ab7316 142 CPPUNIT_TEST( TestSetTimes );
901504c3 143 CPPUNIT_TEST( TestExists );
7c9b6c91 144 CPPUNIT_TEST( TestIsSame );
c063adeb
VZ
145#if defined(__UNIX__)
146 CPPUNIT_TEST( TestSymlinks );
147#endif // __UNIX__
f095b1fc
VZ
148 CPPUNIT_TEST_SUITE_END();
149
150 void TestConstruction();
33366127 151 void TestComparison();
f095b1fc
VZ
152 void TestSplit();
153 void TestSetPath();
c08dd08b 154 void TestStrip();
bf7f7793 155 void TestNormalize();
395f3aa8 156 void TestReplace();
b2edb8f3 157 void TestGetHumanReadable();
60c0dfe5
VZ
158#ifdef __WINDOWS__
159 void TestShortLongPath();
160#endif // __WINDOWS__
7b611a3a 161 void TestUNC();
e01a788e 162 void TestVolumeUniqueName();
1fe1aecb
FM
163 void TestCreateTempFileName();
164 void TestGetTimes();
55ab7316 165 void TestSetTimes();
901504c3 166 void TestExists();
7c9b6c91 167 void TestIsSame();
c063adeb
VZ
168#if defined(__UNIX__)
169 void TestSymlinks();
170#endif // __UNIX__
f095b1fc
VZ
171
172 DECLARE_NO_COPY_CLASS(FileNameTestCase)
173};
174
175// register in the unnamed registry so that these tests are run by default
176CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase );
177
e3778b4d 178// also include in its own registry so that these tests can be run alone
f095b1fc
VZ
179CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase, "FileNameTestCase" );
180
181void FileNameTestCase::TestConstruction()
182{
183 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
184 {
5fed01a9 185 const TestFileNameInfo& fni = filenames[n];
f095b1fc
VZ
186
187 wxFileName fn(fni.fullname, fni.format);
188
9b9596de
VZ
189 // the original full name could contain consecutive [back]slashes,
190 // squeeze them except for the double backslash in the beginning in
191 // Windows filenames where it has special meaning
192 wxString fullnameOrig;
193 if ( fni.format == wxPATH_DOS )
194 {
195 // copy the backslashes at beginning unchanged
9630954d
VZ
196 const char *p = fni.fullname;
197 while ( *p == '\\' )
9b9596de
VZ
198 fullnameOrig += *p++;
199
200 // replace consecutive slashes with single ones in the rest
9630954d 201 for ( char chPrev = '\0'; *p; p++ )
9b9596de 202 {
9630954d 203 if ( *p == '\\' && chPrev == '\\' )
9b9596de
VZ
204 continue;
205
206 chPrev = *p;
207 fullnameOrig += chPrev;
208 }
209 }
210 else // !wxPATH_DOS
211 {
212 fullnameOrig = fni.fullname;
213 }
214
9630954d 215 fullnameOrig.Replace("//", "/");
9b9596de
VZ
216
217
f095b1fc 218 wxString fullname = fn.GetFullPath(fni.format);
9b9596de 219 CPPUNIT_ASSERT_EQUAL( fullnameOrig, fullname );
f095b1fc 220
ab8576b4
VZ
221 // notice that we use a dummy working directory to ensure that paths
222 // with "../.." in them could be normalized, otherwise this would fail
223 // if the test is run from root directory or its direct subdirectory
2264775b
VZ
224 CPPUNIT_ASSERT_MESSAGE
225 (
9630954d
VZ
226 (const char *)wxString::Format("Normalize(%s) failed", fni.fullname).mb_str(),
227 fn.Normalize(wxPATH_NORM_ALL, "/foo/bar/baz", fni.format)
2264775b 228 );
4c2deb19
VZ
229
230 if ( *fni.volume && *fni.path )
231 {
232 // check that specifying the volume separately or as part of the
233 // path doesn't make any difference
234 wxString pathWithVolume = fni.volume;
235 pathWithVolume += wxFileName::GetVolumeSeparator(fni.format);
236 pathWithVolume += fni.path;
237
2264775b 238 CPPUNIT_ASSERT_EQUAL( wxFileName(pathWithVolume,
4c2deb19
VZ
239 fni.name,
240 fni.ext,
2264775b 241 fni.format), fn );
4c2deb19 242 }
f095b1fc 243 }
69858116
VZ
244
245 wxFileName fn;
246
247 // empty strings
248 fn.AssignDir(wxEmptyString);
249 CPPUNIT_ASSERT( !fn.IsOk() );
250
251 fn.Assign(wxEmptyString);
252 CPPUNIT_ASSERT( !fn.IsOk() );
253
254 fn.Assign(wxEmptyString, wxEmptyString);
255 CPPUNIT_ASSERT( !fn.IsOk() );
256
257 fn.Assign(wxEmptyString, wxEmptyString, wxEmptyString);
258 CPPUNIT_ASSERT( !fn.IsOk() );
259
260 fn.Assign(wxEmptyString, wxEmptyString, wxEmptyString, wxEmptyString);
261 CPPUNIT_ASSERT( !fn.IsOk() );
f095b1fc
VZ
262}
263
33366127
VZ
264void FileNameTestCase::TestComparison()
265{
523cd68a
VZ
266 wxFileName fn1(wxT("/tmp/file1"));
267 wxFileName fn2(wxT("/tmp/dir2/../file2"));
268 fn1.Normalize();
269 fn2.Normalize();
2264775b 270 CPPUNIT_ASSERT_EQUAL(fn1.GetPath(), fn2.GetPath());
33366127
VZ
271}
272
f095b1fc
VZ
273void FileNameTestCase::TestSplit()
274{
275 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
276 {
5fed01a9 277 const TestFileNameInfo& fni = filenames[n];
f095b1fc
VZ
278 wxString volume, path, name, ext;
279 wxFileName::SplitPath(fni.fullname,
280 &volume, &path, &name, &ext, fni.format);
281
2264775b
VZ
282 CPPUNIT_ASSERT_EQUAL( wxString(fni.volume), volume );
283 CPPUNIT_ASSERT_EQUAL( wxString(fni.path), path );
284 CPPUNIT_ASSERT_EQUAL( wxString(fni.name), name );
285 CPPUNIT_ASSERT_EQUAL( wxString(fni.ext), ext );
f095b1fc 286 }
dfecbee5
VZ
287
288 // special case of empty extension
9630954d
VZ
289 wxFileName fn("foo.");
290 CPPUNIT_ASSERT_EQUAL( wxString("foo."), fn.GetFullPath() );
f095b1fc
VZ
291}
292
4524a24b
VZ
293void FileNameTestCase::TestSetPath()
294{
9630954d
VZ
295 wxFileName fn("d:\\test\\foo.bar", wxPATH_DOS);
296 fn.SetPath("c:\\temp", wxPATH_DOS);
297 CPPUNIT_ASSERT( fn.SameAs(wxFileName("c:\\temp\\foo.bar", wxPATH_DOS)) );
4524a24b 298
9630954d
VZ
299 fn = wxFileName("/usr/bin/ls", wxPATH_UNIX);
300 fn.SetPath("/usr/local/bin", wxPATH_UNIX);
301 CPPUNIT_ASSERT( fn.SameAs(wxFileName("/usr/local/bin/ls", wxPATH_UNIX)) );
4524a24b
VZ
302}
303
bf7f7793
RR
304void FileNameTestCase::TestNormalize()
305{
306 // prepare some data to be used later
307 wxString sep = wxFileName::GetPathSeparator();
308 wxString cwd = wxGetCwd();
309 wxString home = wxGetUserHome();
310
311 cwd.Replace(sep, wxT("/"));
312 if (cwd.Last() != wxT('/'))
313 cwd += wxT('/');
314 home.Replace(sep, wxT("/"));
315 if (home.Last() != wxT('/'))
316 home += wxT('/');
317
318 // since we will always be testing paths using the wxPATH_UNIX
319 // format, we need to remove the volume, if present
320 if (home.Contains(wxT(':')))
321 home = home.AfterFirst(wxT(':'));
322 if (cwd.Contains(wxT(':')))
323 cwd = cwd.AfterFirst(wxT(':'));
324
8e083702 325 static const struct FileNameTest
bf7f7793 326 {
527587d3 327 const char *original;
bf7f7793 328 int flags;
527587d3 329 const char *expected;
c7099635 330 wxPathFormat fmt;
bf7f7793
RR
331 } tests[] =
332 {
333 // test wxPATH_NORM_ENV_VARS
bb5a9514 334#ifdef __WINDOWS__
c7099635 335 { "%ABCDEF%/g/h/i", wxPATH_NORM_ENV_VARS, "abcdef/g/h/i", wxPATH_UNIX },
bf7f7793 336#else
c7099635 337 { "$(ABCDEF)/g/h/i", wxPATH_NORM_ENV_VARS, "abcdef/g/h/i", wxPATH_UNIX },
bf7f7793
RR
338#endif
339
340 // test wxPATH_NORM_DOTS
c7099635 341 { "a/.././b/c/../../", wxPATH_NORM_DOTS, "", wxPATH_UNIX },
f822acce
VZ
342 { "", wxPATH_NORM_DOTS, "", wxPATH_UNIX },
343 { "./foo", wxPATH_NORM_DOTS, "foo", wxPATH_UNIX },
344 { "b/../bar", wxPATH_NORM_DOTS, "bar", wxPATH_UNIX },
345 { "c/../../quux", wxPATH_NORM_DOTS, "../quux", wxPATH_UNIX },
346 { "/c/../../quux", wxPATH_NORM_DOTS, "/quux", wxPATH_UNIX },
bf7f7793 347
be5be16a
VZ
348 // test wxPATH_NORM_TILDE: notice that ~ is only interpreted specially
349 // when it is the first character in the file name
c7099635 350 { "/a/b/~", wxPATH_NORM_TILDE, "/a/b/~", wxPATH_UNIX },
be5be16a 351 { "/~/a/b", wxPATH_NORM_TILDE, "/~/a/b", wxPATH_UNIX },
527587d3 352 { "~/a/b", wxPATH_NORM_TILDE, "HOME/a/b", wxPATH_UNIX },
c7099635
VZ
353
354 // test wxPATH_NORM_CASE
355 { "Foo", wxPATH_NORM_CASE, "Foo", wxPATH_UNIX },
356 { "Foo", wxPATH_NORM_CASE, "foo", wxPATH_DOS },
357 { "C:\\Program Files\\wx", wxPATH_NORM_CASE,
358 "c:\\program files\\wx", wxPATH_DOS },
359 { "C:/Program Files/wx", wxPATH_NORM_ALL | wxPATH_NORM_CASE,
360 "c:\\program files\\wx", wxPATH_DOS },
9a0c5c01
VZ
361 { "C:\\Users\\zeitlin", wxPATH_NORM_ALL | wxPATH_NORM_CASE,
362 "c:\\users\\zeitlin", wxPATH_DOS },
bf7f7793
RR
363
364 // test wxPATH_NORM_ABSOLUTE
527587d3
VZ
365 { "a/b/", wxPATH_NORM_ABSOLUTE, "CWD/a/b/", wxPATH_UNIX },
366 { "a/b/c.ext", wxPATH_NORM_ABSOLUTE, "CWD/a/b/c.ext", wxPATH_UNIX },
c7099635 367 { "/a", wxPATH_NORM_ABSOLUTE, "/a", wxPATH_UNIX },
bf7f7793
RR
368
369 // test giving no flags at all to Normalize()
c7099635
VZ
370 { "a/b/", 0, "a/b/", wxPATH_UNIX },
371 { "a/b/c.ext", 0, "a/b/c.ext", wxPATH_UNIX },
ea6319cb
VZ
372 { "/a", 0, "/a", wxPATH_UNIX },
373
374 // test handling dots without wxPATH_NORM_DOTS and wxPATH_NORM_ABSOLUTE
375 // for both existing and non-existent files (this is important under
376 // MSW where GetLongPathName() works only for the former)
377 { "./foo", wxPATH_NORM_LONG, "./foo", wxPATH_UNIX },
378 { "../foo", wxPATH_NORM_LONG, "../foo", wxPATH_UNIX },
379 { ".\\test.bkl", wxPATH_NORM_LONG, ".\\test.bkl", wxPATH_DOS },
380 { ".\\foo", wxPATH_NORM_LONG, ".\\foo", wxPATH_DOS },
381 { "..\\Makefile.in", wxPATH_NORM_LONG, "..\\Makefile.in", wxPATH_DOS },
382 { "..\\foo", wxPATH_NORM_LONG, "..\\foo", wxPATH_DOS },
bf7f7793
RR
383 };
384
385 // set the env var ABCDEF
9630954d 386 wxSetEnv("ABCDEF", "abcdef");
bf7f7793 387
2264775b 388 for ( size_t i = 0; i < WXSIZEOF(tests); i++ )
bf7f7793 389 {
c7099635
VZ
390 const FileNameTest& fnt = tests[i];
391 wxFileName fn(fnt.original, fnt.fmt);
bf7f7793
RR
392
393 // be sure this normalization does not fail
a779d809 394 WX_ASSERT_MESSAGE
2264775b 395 (
a779d809 396 ("#%d: Normalize(%s) failed", (int)i, fnt.original),
c7099635 397 fn.Normalize(fnt.flags, cwd, fnt.fmt)
2264775b 398 );
bf7f7793
RR
399
400 // compare result with expected string
527587d3 401 wxString expected(tests[i].expected);
9630954d
VZ
402 expected.Replace("HOME/", home);
403 expected.Replace("CWD/", cwd);
a779d809
VZ
404 WX_ASSERT_EQUAL_MESSAGE
405 (
406 ("array element #%d", (int)i),
407 expected, fn.GetFullPath(fnt.fmt)
408 );
bf7f7793 409 }
525711d7
VZ
410
411 // MSW-only test for wxPATH_NORM_LONG: notice that we only run it if short
412 // names generation is not disabled for this system as otherwise the file
413 // MKINST~1 doesn't exist at all and normalizing it fails (it's possible
414 // that we're on a FAT partition in which case the test would still succeed
415 // and also that the registry key was changed recently and didn't take
416 // effect yet but these are marginal cases which we consciously choose to
417 // ignore for now)
bb5a9514 418#ifdef __WINDOWS__
525711d7
VZ
419 long shortNamesDisabled;
420 if ( wxRegKey
421 (
422 wxRegKey::HKLM,
423 "SYSTEM\\CurrentControlSet\\Control\\FileSystem"
424 ).QueryValue("NtfsDisable8dot3NameCreation", &shortNamesDisabled) &&
425 !shortNamesDisabled )
426 {
427 wxFileName fn("..\\MKINST~1");
428 CPPUNIT_ASSERT( fn.Normalize(wxPATH_NORM_LONG, cwd) );
429 CPPUNIT_ASSERT_EQUAL( "..\\mkinstalldirs", fn.GetFullPath() );
430 }
431 //else: when in doubt, don't run the test
bb5a9514 432#endif // __WINDOWS__
bf7f7793
RR
433}
434
395f3aa8
FM
435void FileNameTestCase::TestReplace()
436{
437 static const struct FileNameTest
438 {
439 const char *original;
440 const char *env_contents;
441 const char *replace_fmtstring;
442 const char *expected;
443 wxPathFormat fmt;
444 } tests[] =
445 {
446 { "/usr/a/strange path/lib/someFile.ext", "/usr/a/strange path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX },
447 { "/usr/a/path/lib/someFile.ext", "/usr/a/path", "$%s", "$TEST_VAR/lib/someFile.ext", wxPATH_UNIX },
448 { "/usr/a/path/lib/someFile", "/usr/a/path/", "$%s", "$TEST_VARlib/someFile", wxPATH_UNIX },
449 { "/usr/a/path/lib/", "/usr/a/path/", "$(%s)", "$(TEST_VAR)lib/", wxPATH_UNIX },
450 { "/usr/a/path/lib/", "/usr/a/path/", "${{%s}}", "${{TEST_VAR}}lib/", wxPATH_UNIX },
451 { "/usr/a/path/lib/", "/usr/a/path/", "%s", "TEST_VARlib/", wxPATH_UNIX },
452 { "/usr/a/path/lib/", "/usr/a/path/", "%s//", "TEST_VAR/lib/", wxPATH_UNIX },
453 // note: empty directory components are automatically removed by wxFileName thus
454 // using // in the replace format string has no effect
455
456 { "/usr/../a/path/lib/", "/usr/a/path/", "%s", "/usr/../a/path/lib/", wxPATH_UNIX },
457 { "/usr/a/path/usr/usr", "/usr", "%s", "TEST_VAR/a/pathTEST_VAR/usr", wxPATH_UNIX },
458 { "/usr/a/path/usr/usr", "/usr", "$%s", "$TEST_VAR/a/path$TEST_VAR/usr", wxPATH_UNIX },
459 { "/a/b/c/d", "a/", "%s", "/TEST_VARb/c/d", wxPATH_UNIX },
460
461 { "C:\\A\\Strange Path\\lib\\someFile", "C:\\A\\Strange Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN },
462 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "%%%s%%", "%TEST_VAR%\\lib\\someFile", wxPATH_WIN },
463 { "C:\\A\\Path\\lib\\someFile", "C:\\A\\Path", "$(%s)", "$(TEST_VAR)\\lib\\someFile", wxPATH_WIN }
464 };
465
466 for ( size_t i = 0; i < WXSIZEOF(tests); i++ )
467 {
468 const FileNameTest& fnt = tests[i];
469 wxFileName fn(fnt.original, fnt.fmt);
470
471 // set the environment variable
9630954d 472 wxSetEnv("TEST_VAR", fnt.env_contents);
395f3aa8
FM
473
474 // be sure this ReplaceEnvVariable does not fail
475 WX_ASSERT_MESSAGE
476 (
477 ("#%d: ReplaceEnvVariable(%s) failed", (int)i, fnt.replace_fmtstring),
478 fn.ReplaceEnvVariable("TEST_VAR", fnt.replace_fmtstring, fnt.fmt)
479 );
480
481 // compare result with expected string
482 wxString expected(fnt.expected);
483 WX_ASSERT_EQUAL_MESSAGE
484 (
485 ("array element #%d", (int)i),
486 expected, fn.GetFullPath(fnt.fmt)
487 );
488 }
489
490 // now test ReplaceHomeDir
491
492 wxFileName fn = wxFileName::DirName(wxGetHomeDir());
493 fn.AppendDir("test1");
494 fn.AppendDir("test2");
495 fn.AppendDir("test3");
496 fn.SetName("some file");
497
498 WX_ASSERT_MESSAGE
499 (
500 ("ReplaceHomeDir(%s) failed", fn.GetFullPath()),
501 fn.ReplaceHomeDir()
502 );
503
9630954d 504 CPPUNIT_ASSERT_EQUAL( wxString("~/test1/test2/test3/some file"),
395f3aa8
FM
505 fn.GetFullPath(wxPATH_UNIX) );
506}
507
b2edb8f3
VZ
508void FileNameTestCase::TestGetHumanReadable()
509{
510 static const struct TestData
511 {
512 const char *result;
58271f42 513 int size;
b2edb8f3
VZ
514 int prec;
515 wxSizeConvention conv;
516 } testData[] =
517 {
a0752618
VZ
518 { "NA", 0, 1, wxSIZE_CONV_TRADITIONAL },
519 { "2.0 KB", 2000, 1, wxSIZE_CONV_TRADITIONAL },
520 { "1.953 KiB", 2000, 3, wxSIZE_CONV_IEC },
521 { "2.000 KB", 2000, 3, wxSIZE_CONV_SI },
522 { "297 KB", 304351, 0, wxSIZE_CONV_TRADITIONAL },
523 { "304 KB", 304351, 0, wxSIZE_CONV_SI },
b2edb8f3
VZ
524 };
525
701aa4d8
FM
526 CLocaleSetter loc; // we want to use "C" locale for LC_NUMERIC
527 // so that regardless of the system's locale
528 // the decimal point used by GetHumanReadableSize()
529 // is always '.'
b2edb8f3
VZ
530 for ( unsigned n = 0; n < WXSIZEOF(testData); n++ )
531 {
532 const TestData& td = testData[n];
533
1fe1aecb
FM
534 // take care of using the decimal point for the current locale before
535 // the actual comparison
b2edb8f3
VZ
536 CPPUNIT_ASSERT_EQUAL
537 (
701aa4d8 538 td.result,
b2edb8f3
VZ
539 wxFileName::GetHumanReadableSize(td.size, "NA", td.prec, td.conv)
540 );
541 }
542
543 // also test the default convention value
701aa4d8 544 CPPUNIT_ASSERT_EQUAL( "1.4 MB", wxFileName::GetHumanReadableSize(1512993, "") );
b2edb8f3
VZ
545}
546
c08dd08b
RN
547void FileNameTestCase::TestStrip()
548{
9630954d
VZ
549 CPPUNIT_ASSERT_EQUAL( "", wxFileName::StripExtension("") );
550 CPPUNIT_ASSERT_EQUAL( ".", wxFileName::StripExtension(".") );
551 CPPUNIT_ASSERT_EQUAL( ".vimrc", wxFileName::StripExtension(".vimrc") );
552 CPPUNIT_ASSERT_EQUAL( "bad", wxFileName::StripExtension("bad") );
553 CPPUNIT_ASSERT_EQUAL( "good", wxFileName::StripExtension("good.wav") );
554 CPPUNIT_ASSERT_EQUAL( "good.wav", wxFileName::StripExtension("good.wav.wav") );
ff3d9a35 555}
60c0dfe5
VZ
556
557#ifdef __WINDOWS__
558
559void FileNameTestCase::TestShortLongPath()
560{
9630954d 561 wxFileName fn("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe");
60c0dfe5
VZ
562
563 // incredibly enough, GetLongPath() used to return different results during
564 // the first and subsequent runs, test for this
565 CPPUNIT_ASSERT_EQUAL( fn.GetLongPath(), fn.GetLongPath() );
566 CPPUNIT_ASSERT_EQUAL( fn.GetShortPath(), fn.GetShortPath() );
567}
568
569#endif // __WINDOWS__
7b611a3a
VZ
570
571void FileNameTestCase::TestUNC()
572{
573 wxFileName fn("//share/path/name.ext", wxPATH_DOS);
574 CPPUNIT_ASSERT_EQUAL( "share", fn.GetVolume() );
acaa8337 575 CPPUNIT_ASSERT_EQUAL( "\\path", fn.GetPath(wxPATH_NO_SEPARATOR, wxPATH_DOS) );
7b611a3a
VZ
576
577 fn.Assign("\\\\share2\\path2\\name.ext", wxPATH_DOS);
578 CPPUNIT_ASSERT_EQUAL( "share2", fn.GetVolume() );
acaa8337 579 CPPUNIT_ASSERT_EQUAL( "\\path2", fn.GetPath(wxPATH_NO_SEPARATOR, wxPATH_DOS) );
7b611a3a
VZ
580}
581
e01a788e
VZ
582void FileNameTestCase::TestVolumeUniqueName()
583{
584 wxFileName fn("\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\",
585 wxPATH_DOS);
586 CPPUNIT_ASSERT_EQUAL( "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}",
587 fn.GetVolume() );
588 CPPUNIT_ASSERT_EQUAL( "\\", fn.GetPath(wxPATH_NO_SEPARATOR, wxPATH_DOS) );
589 CPPUNIT_ASSERT_EQUAL( "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\",
590 fn.GetFullPath(wxPATH_DOS) );
591
592 fn.Assign("\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\"
593 "Program Files\\setup.exe", wxPATH_DOS);
594 CPPUNIT_ASSERT_EQUAL( "Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}",
595 fn.GetVolume() );
596 CPPUNIT_ASSERT_EQUAL( "\\Program Files",
597 fn.GetPath(wxPATH_NO_SEPARATOR, wxPATH_DOS) );
598 CPPUNIT_ASSERT_EQUAL( "\\\\?\\Volume{8089d7d7-d0ac-11db-9dd0-806d6172696f}\\"
599 "Program Files\\setup.exe",
600 fn.GetFullPath(wxPATH_DOS) );
601}
1fe1aecb
FM
602
603void FileNameTestCase::TestCreateTempFileName()
604{
605 static const struct TestData
606 {
607 const char *prefix;
608 const char *expectedFolder;
d6609db5 609 bool shouldSucceed;
1fe1aecb
FM
610 } testData[] =
611 {
d6609db5
FM
612 { "", "$SYSTEM_TEMP", true },
613 { "foo", "$SYSTEM_TEMP", true },
614 { "..", "$SYSTEM_TEMP", true },
615 { "../bar", "..", true },
bb5a9514 616#ifdef __WINDOWS__
d6609db5
FM
617 { "$USER_DOCS_DIR\\", "$USER_DOCS_DIR", true },
618 { "c:\\a\\directory\\which\\does\\not\\exist", "", false },
995202d0 619#elif defined( __UNIX__ )
d6609db5
FM
620 { "$USER_DOCS_DIR/", "$USER_DOCS_DIR", true },
621 { "/tmp/foo", "/tmp", true },
622 { "/tmp/a/directory/which/does/not/exist", "", false },
1fe1aecb
FM
623#endif // __UNIX__
624 };
625
626 for ( size_t n = 0; n < WXSIZEOF(testData); n++ )
627 {
d6609db5
FM
628 wxString prefix = testData[n].prefix;
629 prefix.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir());
1fe1aecb 630
d6609db5
FM
631 std::string errDesc = wxString::Format("failed on prefix '%s'", prefix).ToStdString();
632
633 wxString path = wxFileName::CreateTempFileName(prefix);
634 CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc, !testData[n].shouldSucceed, path.empty() );
635
636 if (testData[n].shouldSucceed)
1fe1aecb 637 {
d6609db5
FM
638 errDesc += "; path is " + path.ToStdString();
639
1fe1aecb
FM
640 // test the place where the temp file has been created
641 wxString expected = testData[n].expectedFolder;
642 expected.Replace("$SYSTEM_TEMP", wxStandardPaths::Get().GetTempDir());
d6609db5
FM
643 expected.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir());
644 CPPUNIT_ASSERT_EQUAL_MESSAGE( errDesc, expected, wxFileName(path).GetPath() );
1fe1aecb
FM
645
646 // the temporary file is created with full permissions for the current process
647 // so we should always be able to remove it:
d6609db5 648 CPPUNIT_ASSERT_MESSAGE( errDesc, wxRemoveFile(path) );
1fe1aecb
FM
649 }
650 }
651}
652
653void FileNameTestCase::TestGetTimes()
654{
655 wxFileName fn(wxFileName::CreateTempFileName("filenametest"));
656 CPPUNIT_ASSERT( fn.IsOk() );
41fec01f 657 wxON_BLOCK_EXIT1( wxRemoveFile, fn.GetFullPath() );
1fe1aecb
FM
658
659 wxDateTime dtAccess, dtMod, dtCreate;
660 CPPUNIT_ASSERT( fn.GetTimes(&dtAccess, &dtMod, &dtCreate) );
661
662 // make sure all retrieved dates are equal to the current date&time
663 // with an accuracy up to 1 minute
664 CPPUNIT_ASSERT(dtCreate.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
665 CPPUNIT_ASSERT(dtMod.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
666 CPPUNIT_ASSERT(dtAccess.IsEqualUpTo(wxDateTime::Now(), wxTimeSpan(0,1)));
667}
901504c3 668
55ab7316
VZ
669void FileNameTestCase::TestSetTimes()
670{
671 wxFileName fn(wxFileName::CreateTempFileName("filenametest"));
672 CPPUNIT_ASSERT( fn.IsOk() );
673 wxON_BLOCK_EXIT1( wxRemoveFile, fn.GetFullPath() );
674
675 const wxDateTime dtAccess(1, wxDateTime::Jan, 2013);
676 const wxDateTime dtModify(1, wxDateTime::Feb, 2013);
677 const wxDateTime dtCreate(1, wxDateTime::Mar, 2013);
678
679 CPPUNIT_ASSERT( fn.SetTimes(&dtAccess, &dtModify, &dtCreate) );
680
681 wxDateTime dtAccess2,
682 dtModify2,
683 dtCreate2;
684 CPPUNIT_ASSERT( fn.GetTimes(&dtAccess2, &dtModify2, &dtCreate2) );
685 CPPUNIT_ASSERT_EQUAL( dtAccess, dtAccess2 );
686 CPPUNIT_ASSERT_EQUAL( dtModify, dtModify2 );
2d5efafe
VZ
687
688 // Under Unix the creation time can't be set.
689#ifdef __WINDOWS__
55ab7316 690 CPPUNIT_ASSERT_EQUAL( dtCreate, dtCreate2 );
2d5efafe 691#endif // __WINDOWS__
55ab7316
VZ
692}
693
901504c3
VZ
694void FileNameTestCase::TestExists()
695{
696 wxFileName fn(wxFileName::CreateTempFileName("filenametest"));
697 CPPUNIT_ASSERT( fn.IsOk() );
41fec01f 698 wxON_BLOCK_EXIT1( wxRemoveFile, fn.GetFullPath() );
901504c3
VZ
699
700 CPPUNIT_ASSERT( fn.FileExists() );
701 CPPUNIT_ASSERT( !wxFileName::DirExists(fn.GetFullPath()) );
c50db847 702
9ff99cb5
VZ
703 // FIXME-VC6: This compiler crashes with
704 //
705 // fatal error C1001: INTERNAL COMPILER ERROR
706 // (compiler file 'msc1.cpp', line 1794)
707 //
708 // when compiling calls to Exists() with parameter for some reason, just
709 // disable these tests there.
710#ifndef __VISUALC6__
c50db847
VZ
711 CPPUNIT_ASSERT( fn.Exists(wxFILE_EXISTS_REGULAR) );
712 CPPUNIT_ASSERT( !fn.Exists(wxFILE_EXISTS_DIR) );
9ff99cb5 713#endif
996d3fe3 714 CPPUNIT_ASSERT( fn.Exists() );
901504c3 715
988f7eec
VZ
716 const wxString& tempdir = wxFileName::GetTempDir();
717
718 wxFileName fileInTempDir(tempdir, "bloordyblop");
719 CPPUNIT_ASSERT( !fileInTempDir.Exists() );
720 CPPUNIT_ASSERT( fileInTempDir.DirExists() );
721
722 wxFileName dirTemp(wxFileName::DirName(tempdir));
901504c3
VZ
723 CPPUNIT_ASSERT( !dirTemp.FileExists() );
724 CPPUNIT_ASSERT( dirTemp.DirExists() );
c50db847 725
9ff99cb5 726#ifndef __VISUALC6__
c50db847
VZ
727 CPPUNIT_ASSERT( dirTemp.Exists(wxFILE_EXISTS_DIR) );
728 CPPUNIT_ASSERT( !dirTemp.Exists(wxFILE_EXISTS_REGULAR) );
9ff99cb5 729#endif
996d3fe3 730 CPPUNIT_ASSERT( dirTemp.Exists() );
901504c3
VZ
731
732#ifdef __UNIX__
733 CPPUNIT_ASSERT( !wxFileName::FileExists("/dev/null") );
734 CPPUNIT_ASSERT( !wxFileName::DirExists("/dev/null") );
996d3fe3 735 CPPUNIT_ASSERT( wxFileName::Exists("/dev/null") );
c50db847
VZ
736 CPPUNIT_ASSERT( wxFileName::Exists("/dev/null", wxFILE_EXISTS_DEVICE) );
737#ifdef __LINUX__
738 // These files are only guaranteed to exist under Linux.
58263bb4
VZ
739 // No need for wxFILE_EXISTS_NO_FOLLOW here; wxFILE_EXISTS_SYMLINK implies it
740 CPPUNIT_ASSERT( wxFileName::Exists("/dev/core", wxFILE_EXISTS_SYMLINK) );
c50db847
VZ
741 CPPUNIT_ASSERT( wxFileName::Exists("/dev/log", wxFILE_EXISTS_SOCKET) );
742#endif // __LINUX__
67b09eac 743#ifndef __VMS
c50db847 744 wxString fifo = dirTemp.GetPath() + "/fifo";
67b09eac 745 if (mkfifo(fifo.c_str(), 0600) == 0)
c50db847
VZ
746 {
747 wxON_BLOCK_EXIT1(wxRemoveFile, fifo);
748
749 CPPUNIT_ASSERT( wxFileName::Exists(fifo, wxFILE_EXISTS_FIFO) );
750 }
67b09eac 751#endif
901504c3
VZ
752#endif // __UNIX__
753}
7c9b6c91
VZ
754
755void FileNameTestCase::TestIsSame()
756{
757 wxFileName fn1( wxFileName::CreateTempFileName( "filenametest1" ) );
758 CPPUNIT_ASSERT( fn1.IsOk() );
759 wxON_BLOCK_EXIT1( wxRemoveFile, fn1.GetFullPath() );
760
761 wxFileName fn2( wxFileName::CreateTempFileName( "filenametest2" ) );
762 CPPUNIT_ASSERT( fn2.IsOk() );
763 wxON_BLOCK_EXIT1( wxRemoveFile, fn2.GetFullPath() );
764
765 CPPUNIT_ASSERT( fn1.SameAs( fn1 ) );
766 CPPUNIT_ASSERT( !fn1.SameAs( fn2 ) );
767
768#if defined(__UNIX__)
769 // We need to create a temporary directory and a temporary link.
770 // Unfortunately we can't use wxFileName::CreateTempFileName() for neither
771 // as it creates plain files, so use tempnam() explicitly instead.
772 char* tn = tempnam(NULL, "wxfn1");
773 const wxString tempdir1 = wxString::From8BitData(tn);
774 free(tn);
775
776 CPPUNIT_ASSERT( wxFileName::Mkdir(tempdir1) );
777 // Unfortunately the casts are needed to select the overload we need here.
778 wxON_BLOCK_EXIT2( static_cast<bool (*)(const wxString&, int)>(wxFileName::Rmdir),
779 tempdir1, static_cast<int>(wxPATH_RMDIR_RECURSIVE) );
780
781 tn = tempnam(NULL, "wxfn2");
782 const wxString tempdir2 = wxString::From8BitData(tn);
783 free(tn);
fd78ef47 784 CPPUNIT_ASSERT_EQUAL( 0, symlink(tempdir1.c_str(), tempdir2.c_str()) );
7c9b6c91
VZ
785 wxON_BLOCK_EXIT1( wxRemoveFile, tempdir2 );
786
787
788 wxFileName fn3(tempdir1, "foo");
789 wxFileName fn4(tempdir2, "foo");
790
791 // These files have different paths, hence are different.
792 CPPUNIT_ASSERT( !fn3.SameAs(fn4) );
793
794 // Create and close a file to trigger creating it.
795 wxFile(fn3.GetFullPath(), wxFile::write);
796
797 // Now that both files do exist we should be able to detect that they are
798 // actually the same file.
799 CPPUNIT_ASSERT( fn3.SameAs(fn4) );
800#endif // __UNIX__
801}
c063adeb
VZ
802
803#if defined(__UNIX__)
804
805// Tests for functions that are changed by ShouldFollowLink()
806void FileNameTestCase::TestSymlinks()
807{
808 const wxString tmpdir(wxStandardPaths::Get().GetTempDir());
809
810 wxFileName tmpfn(wxFileName::DirName(tmpdir));
811
812 wxDateTime dtAccessTmp, dtModTmp, dtCreateTmp;
813 CPPUNIT_ASSERT(tmpfn.GetTimes(&dtAccessTmp, &dtModTmp, &dtCreateTmp));
814
815 // Create a temporary directory
67b09eac
JJ
816#ifdef __VMS
817 wxString name = tmpdir + ".filenametestXXXXXX]";
818 mkdir( name.char_str() , 0222 );
819 wxString tempdir = name;
820#else
c063adeb
VZ
821 wxString name = tmpdir + "/filenametestXXXXXX";
822 wxString tempdir = wxString::From8BitData(mkdtemp(name.char_str()));
823 tempdir << wxFileName::GetPathSeparator();
67b09eac 824#endif
c063adeb
VZ
825 wxFileName tempdirfn(wxFileName::DirName(tempdir));
826 CPPUNIT_ASSERT(tempdirfn.DirExists());
827
828 // Create a regular file in that dir, to act as a symlink target
829 wxFileName targetfn(wxFileName::CreateTempFileName(tempdir));
830 CPPUNIT_ASSERT(targetfn.FileExists());
831
25db2c25 832 // Create a symlink to that file
c063adeb
VZ
833 wxFileName linktofile(tempdir, "linktofile");
834 CPPUNIT_ASSERT_EQUAL(0, symlink(targetfn.GetFullPath().c_str(),
835 linktofile.GetFullPath().c_str()));
836
25db2c25 837 // ... and another to the temporary directory
c063adeb
VZ
838 const wxString linktodirName(tempdir + "/linktodir");
839 wxFileName linktodir(wxFileName::DirName(linktodirName));
840 CPPUNIT_ASSERT_EQUAL(0, symlink(tmpfn.GetFullPath().c_str(),
841 linktodirName.c_str()));
842
843 // And symlinks to both of those symlinks
844 wxFileName linktofilelnk(tempdir, "linktofilelnk");
845 CPPUNIT_ASSERT_EQUAL(0, symlink(linktofile.GetFullPath().c_str(),
846 linktofilelnk.GetFullPath().c_str()));
847 wxFileName linktodirlnk(tempdir, "linktodirlnk");
848 CPPUNIT_ASSERT_EQUAL(0, symlink(linktodir.GetFullPath().c_str(),
849 linktodirlnk.GetFullPath().c_str()));
850
851 // Run the tests twice: once in the default symlink following mode and the
852 // second time without following symlinks.
853 bool deref = true;
854 for ( int n = 0; n < 2; ++n, deref = !deref )
855 {
856 const std::string msg(deref ? " failed for the link target"
857 : " failed for the path itself");
858
859 if ( !deref )
860 {
861 linktofile.DontFollowLink();
862 linktodir.DontFollowLink();
863 linktofilelnk.DontFollowLink();
864 linktodirlnk.DontFollowLink();
865 }
866
867 // Test SameAs()
868 CPPUNIT_ASSERT_EQUAL_MESSAGE
869 (
870 "Comparison with file" + msg,
871 deref, linktofile.SameAs(targetfn)
872 );
873
874 CPPUNIT_ASSERT_EQUAL_MESSAGE
875 (
876 "Comparison with directory" + msg,
877 deref, linktodir.SameAs(tmpfn)
878 );
879
880 // A link-to-a-link should dereference through to the final target
881 CPPUNIT_ASSERT_EQUAL_MESSAGE
882 (
883 "Comparison with link to a file" + msg,
884 deref,
885 linktofilelnk.SameAs(targetfn)
886 );
887 CPPUNIT_ASSERT_EQUAL_MESSAGE
888 (
889 "Comparison with link to a directory" + msg,
890 deref,
891 linktodirlnk.SameAs(tmpfn)
892 );
893
894 // Test GetTimes()
895 wxDateTime dtAccess, dtMod, dtCreate;
896 CPPUNIT_ASSERT_MESSAGE
897 (
898 "Getting times of a directory" + msg,
899 linktodir.GetTimes(&dtAccess, &dtMod, &dtCreate)
900 );
901
902 // IsEqualTo() should be true only when dereferencing. Don't test each
903 // individually: accessing to create the link will have updated some
904 bool equal = dtCreate.IsEqualTo(dtCreateTmp) &&
905 dtMod.IsEqualTo(dtModTmp) &&
906 dtAccess.IsEqualTo(dtAccessTmp);
907 CPPUNIT_ASSERT_EQUAL_MESSAGE
908 (
909 "Comparing directory times" + msg,
910 deref,
911 equal
912 );
913
c50db847 914 // Test (File|Dir)Exists()
c063adeb
VZ
915 CPPUNIT_ASSERT_EQUAL_MESSAGE
916 (
917 "Testing file existence" + msg,
918 deref,
919 linktofile.FileExists()
920 );
921 CPPUNIT_ASSERT_EQUAL_MESSAGE
922 (
923 "Testing directory existence" + msg,
924 deref,
925 linktodir.DirExists()
926 );
c50db847
VZ
927
928 // Test wxFileName::Exists
929 // The wxFILE_EXISTS_NO_FOLLOW flag should override DontFollowLink()
930 CPPUNIT_ASSERT_EQUAL_MESSAGE
931 (
932 "Testing file existence" + msg,
933 false,
934 linktofile.Exists(wxFILE_EXISTS_REGULAR | wxFILE_EXISTS_NO_FOLLOW)
935 );
936 CPPUNIT_ASSERT_EQUAL_MESSAGE
937 (
938 "Testing directory existence" + msg,
939 false,
940 linktodir.Exists(wxFILE_EXISTS_DIR | wxFILE_EXISTS_NO_FOLLOW)
941 );
942 // and the static versions
943 CPPUNIT_ASSERT_EQUAL_MESSAGE
944 (
945 "Testing file existence" + msg,
946 false,
947 wxFileName::Exists(linktofile.GetFullPath(), wxFILE_EXISTS_REGULAR | wxFILE_EXISTS_NO_FOLLOW)
948 );
949 CPPUNIT_ASSERT_EQUAL_MESSAGE
950 (
951 "Testing file existence" + msg,
952 true,
953 wxFileName::Exists(linktofile.GetFullPath(), wxFILE_EXISTS_REGULAR)
954 );
955 CPPUNIT_ASSERT_EQUAL_MESSAGE
956 (
957 "Testing directory existence" + msg,
958 false,
959 wxFileName::Exists(linktodir.GetFullPath(), wxFILE_EXISTS_DIR | wxFILE_EXISTS_NO_FOLLOW)
960 );
961 CPPUNIT_ASSERT_EQUAL_MESSAGE
962 (
963 "Testing directory existence" + msg,
964 true,
965 wxFileName::Exists(linktodir.GetFullPath(), wxFILE_EXISTS_DIR)
966 );
c063adeb
VZ
967 }
968
969 // Finally test Exists() after removing the file.
970 CPPUNIT_ASSERT(wxRemoveFile(targetfn.GetFullPath()));
58263bb4
VZ
971 // This should succeed, as the symlink still exists and
972 // the default wxFILE_EXISTS_ANY implies wxFILE_EXISTS_NO_FOLLOW
973 CPPUNIT_ASSERT(wxFileName(tempdir, "linktofile").Exists());
974 // So should this one, as wxFILE_EXISTS_SYMLINK does too
975 CPPUNIT_ASSERT(wxFileName(tempdir, "linktofile").
976 Exists(wxFILE_EXISTS_SYMLINK));
977 // but not this one, as the now broken symlink is followed
978 CPPUNIT_ASSERT(!wxFileName(tempdir, "linktofile").
979 Exists(wxFILE_EXISTS_REGULAR));
c063adeb
VZ
980 CPPUNIT_ASSERT(linktofile.Exists());
981
25db2c25
VZ
982 // This is also a convenient place to test Rmdir() as we have things to
983 // remove.
984
985 // First, check that removing a symlink to a directory fails.
986 CPPUNIT_ASSERT( !wxFileName::Rmdir(linktodirName) );
987
988 // And recursively removing it only removes the symlink itself, not the
989 // directory.
990 CPPUNIT_ASSERT( wxFileName::Rmdir(linktodirName, wxPATH_RMDIR_RECURSIVE) );
991 CPPUNIT_ASSERT( tmpfn.Exists() );
992
993 // Finally removing the directory itself does remove everything.
c063adeb 994 CPPUNIT_ASSERT(tempdirfn.Rmdir(wxPATH_RMDIR_RECURSIVE));
25db2c25 995 CPPUNIT_ASSERT( !tempdirfn.Exists() );
c063adeb
VZ
996}
997
998#endif // __UNIX__