]>
git.saurik.com Git - wxWidgets.git/blob - tests/filename/filenametest.cpp
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"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 // define stream inserter for wxFileName to use it in CPPUNIT_ASSERT_EQUAL()
32 inline std::ostream
& operator<<(std::ostream
& o
, const wxFileName
& fn
)
34 return o
<< fn
.GetFullPath();
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 static struct TestFileNameInfo
43 const wxChar
*fullname
;
53 { _T(""), _T(""), _T(""), _T(""), _T(""), false, wxPATH_UNIX
},
54 { _T(""), _T(""), _T(""), _T(""), _T(""), false, wxPATH_DOS
},
55 { _T(""), _T(""), _T(""), _T(""), _T(""), false, wxPATH_VMS
},
58 { _T("/usr/bin/ls"), _T(""), _T("/usr/bin"), _T("ls"), _T(""), true, wxPATH_UNIX
},
59 { _T("/usr/bin/"), _T(""), _T("/usr/bin"), _T(""), _T(""), true, wxPATH_UNIX
},
60 { _T("~/.zshrc"), _T(""), _T("~"), _T(".zshrc"), _T(""), true, wxPATH_UNIX
},
61 { _T("../../foo"), _T(""), _T("../.."), _T("foo"), _T(""), false, wxPATH_UNIX
},
62 { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_UNIX
},
63 { _T("~/foo.bar"), _T(""), _T("~"), _T("foo"), _T("bar"), true, wxPATH_UNIX
},
64 { _T("/foo"), _T(""), _T("/"), _T("foo"), _T(""), true, wxPATH_UNIX
},
65 { _T("Mahogany-0.60/foo.bar"), _T(""), _T("Mahogany-0.60"), _T("foo"), _T("bar"), false, wxPATH_UNIX
},
66 { _T("/tmp/wxwin.tar.bz"), _T(""), _T("/tmp"), _T("wxwin.tar"), _T("bz"), true, wxPATH_UNIX
},
69 { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS
},
70 { _T("\\foo.bar"), _T(""), _T("\\"), _T("foo"), _T("bar"), false, wxPATH_DOS
},
71 { _T("c:foo.bar"), _T("c"), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS
},
72 { _T("c:\\foo.bar"), _T("c"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
73 { _T("c:\\Windows\\command.com"), _T("c"), _T("\\Windows"), _T("command"), _T("com"), true, wxPATH_DOS
},
76 // NB: when using the wxFileName::GetLongPath() function on these two
77 // strings, the program will hang for several seconds blocking inside
78 // Win32 GetLongPathName() function
79 { _T("\\\\server\\foo.bar"), _T("server"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
80 { _T("\\\\server\\dir\\foo.bar"), _T("server"), _T("\\dir"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
83 // consecutive [back]slashes should be treated as single occurrences of
84 // them and not interpreted as share names if there is a volume name
85 { _T("c:\\aaa\\bbb\\ccc"), _T("c"), _T("\\aaa\\bbb"), _T("ccc"), _T(""), true, wxPATH_DOS
},
86 { _T("c:\\\\aaa\\bbb\\ccc"), _T("c"), _T("\\\\aaa\\bbb"), _T("ccc"), _T(""), true, wxPATH_DOS
},
88 // wxFileName support for Mac file names is broken currently
91 { _T("Volume:Dir:File"), _T("Volume"), _T("Dir"), _T("File"), _T(""), true, wxPATH_MAC
},
92 { _T("Volume:Dir:Subdir:File"), _T("Volume"), _T("Dir:Subdir"), _T("File"), _T(""), true, wxPATH_MAC
},
93 { _T("Volume:"), _T("Volume"), _T(""), _T(""), _T(""), true, wxPATH_MAC
},
94 { _T(":Dir:File"), _T(""), _T("Dir"), _T("File"), _T(""), false, wxPATH_MAC
},
95 { _T(":File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC
},
96 { _T("File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC
},
101 // NB: on Windows they have the same effect of the \\server\\ strings
102 // (see the note above)
103 { _T("device:[dir1.dir2.dir3]file.txt"), _T("device"), _T("dir1.dir2.dir3"), _T("file"), _T("txt"), true, wxPATH_VMS
},
105 { _T("file.txt"), _T(""), _T(""), _T("file"), _T("txt"), false, wxPATH_VMS
},
108 // ----------------------------------------------------------------------------
110 // ----------------------------------------------------------------------------
112 class FileNameTestCase
: public CppUnit::TestCase
115 FileNameTestCase() { }
118 CPPUNIT_TEST_SUITE( FileNameTestCase
);
119 CPPUNIT_TEST( TestConstruction
);
120 CPPUNIT_TEST( TestComparison
);
121 CPPUNIT_TEST( TestSplit
);
122 CPPUNIT_TEST( TestSetPath
);
123 CPPUNIT_TEST( TestStrip
);
124 CPPUNIT_TEST( TestNormalize
);
126 CPPUNIT_TEST( TestShortLongPath
);
127 #endif // __WINDOWS__
128 CPPUNIT_TEST_SUITE_END();
130 void TestConstruction();
131 void TestComparison();
135 void TestNormalize();
137 void TestShortLongPath();
138 #endif // __WINDOWS__
140 DECLARE_NO_COPY_CLASS(FileNameTestCase
)
143 // register in the unnamed registry so that these tests are run by default
144 CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase
);
146 // also include in it's own registry so that these tests can be run alone
147 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase
, "FileNameTestCase" );
149 void FileNameTestCase::TestConstruction()
151 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
153 const TestFileNameInfo
& fni
= filenames
[n
];
155 wxFileName
fn(fni
.fullname
, fni
.format
);
157 // the original full name could contain consecutive [back]slashes,
158 // squeeze them except for the double backslash in the beginning in
159 // Windows filenames where it has special meaning
160 wxString fullnameOrig
;
161 if ( fni
.format
== wxPATH_DOS
)
163 // copy the backslashes at beginning unchanged
164 const wxChar
*p
= fni
.fullname
;
165 while ( *p
== _T('\\') )
166 fullnameOrig
+= *p
++;
168 // replace consecutive slashes with single ones in the rest
169 for ( wxChar chPrev
= _T('\0'); *p
; p
++ )
171 if ( *p
== _T('\\') && chPrev
== _T('\\') )
175 fullnameOrig
+= chPrev
;
180 fullnameOrig
= fni
.fullname
;
183 fullnameOrig
.Replace(_T("//"), _T("/"));
186 wxString fullname
= fn
.GetFullPath(fni
.format
);
187 CPPUNIT_ASSERT_EQUAL( fullnameOrig
, fullname
);
189 // notice that we use a dummy working directory to ensure that paths
190 // with "../.." in them could be normalized, otherwise this would fail
191 // if the test is run from root directory or its direct subdirectory
192 CPPUNIT_ASSERT_MESSAGE
194 (const char *)wxString::Format(_T("Normalize(%s) failed"), fni
.fullname
).mb_str(),
195 fn
.Normalize(wxPATH_NORM_ALL
, _T("/foo/bar/baz"), fni
.format
)
198 if ( *fni
.volume
&& *fni
.path
)
200 // check that specifying the volume separately or as part of the
201 // path doesn't make any difference
202 wxString pathWithVolume
= fni
.volume
;
203 pathWithVolume
+= wxFileName::GetVolumeSeparator(fni
.format
);
204 pathWithVolume
+= fni
.path
;
206 CPPUNIT_ASSERT_EQUAL( wxFileName(pathWithVolume
,
216 fn
.AssignDir(wxEmptyString
);
217 CPPUNIT_ASSERT( !fn
.IsOk() );
219 fn
.Assign(wxEmptyString
);
220 CPPUNIT_ASSERT( !fn
.IsOk() );
222 fn
.Assign(wxEmptyString
, wxEmptyString
);
223 CPPUNIT_ASSERT( !fn
.IsOk() );
225 fn
.Assign(wxEmptyString
, wxEmptyString
, wxEmptyString
);
226 CPPUNIT_ASSERT( !fn
.IsOk() );
228 fn
.Assign(wxEmptyString
, wxEmptyString
, wxEmptyString
, wxEmptyString
);
229 CPPUNIT_ASSERT( !fn
.IsOk() );
232 void FileNameTestCase::TestComparison()
234 wxFileName
fn1(wxT("/tmp/file1"));
235 wxFileName
fn2(wxT("/tmp/dir2/../file2"));
238 CPPUNIT_ASSERT_EQUAL(fn1
.GetPath(), fn2
.GetPath());
241 void FileNameTestCase::TestSplit()
243 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
245 const TestFileNameInfo
& fni
= filenames
[n
];
246 wxString volume
, path
, name
, ext
;
247 wxFileName::SplitPath(fni
.fullname
,
248 &volume
, &path
, &name
, &ext
, fni
.format
);
250 CPPUNIT_ASSERT_EQUAL( wxString(fni
.volume
), volume
);
251 CPPUNIT_ASSERT_EQUAL( wxString(fni
.path
), path
);
252 CPPUNIT_ASSERT_EQUAL( wxString(fni
.name
), name
);
253 CPPUNIT_ASSERT_EQUAL( wxString(fni
.ext
), ext
);
256 // special case of empty extension
257 wxFileName
fn(_T("foo."));
258 CPPUNIT_ASSERT_EQUAL( wxString(_T("foo.")), fn
.GetFullPath() );
261 void FileNameTestCase::TestSetPath()
263 wxFileName
fn(_T("d:\\test\\foo.bar"), wxPATH_DOS
);
264 fn
.SetPath(_T("c:\\temp"), wxPATH_DOS
);
265 CPPUNIT_ASSERT( fn
.SameAs(wxFileName(_T("c:\\temp\\foo.bar"), wxPATH_DOS
)) );
267 fn
= wxFileName(_T("/usr/bin/ls"), wxPATH_UNIX
);
268 fn
.SetPath(_T("/usr/local/bin"), wxPATH_UNIX
);
269 CPPUNIT_ASSERT( fn
.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX
)) );
272 void FileNameTestCase::TestNormalize()
274 // prepare some data to be used later
275 wxString sep
= wxFileName::GetPathSeparator();
276 wxString cwd
= wxGetCwd();
277 wxString home
= wxGetUserHome();
279 cwd
.Replace(sep
, wxT("/"));
280 if (cwd
.Last() != wxT('/'))
282 home
.Replace(sep
, wxT("/"));
283 if (home
.Last() != wxT('/'))
286 // since we will always be testing paths using the wxPATH_UNIX
287 // format, we need to remove the volume, if present
288 if (home
.Contains(wxT(':')))
289 home
= home
.AfterFirst(wxT(':'));
290 if (cwd
.Contains(wxT(':')))
291 cwd
= cwd
.AfterFirst(wxT(':'));
293 static const struct FileNameTest
295 const char *original
;
297 const char *expected
;
301 // test wxPATH_NORM_ENV_VARS
303 { "%ABCDEF%/g/h/i", wxPATH_NORM_ENV_VARS
, "abcdef/g/h/i", wxPATH_UNIX
},
305 { "$(ABCDEF)/g/h/i", wxPATH_NORM_ENV_VARS
, "abcdef/g/h/i", wxPATH_UNIX
},
308 // test wxPATH_NORM_DOTS
309 { "a/.././b/c/../../", wxPATH_NORM_DOTS
, "", wxPATH_UNIX
},
311 // test wxPATH_NORM_TILDE
312 // NB: do the tilde expansion also under Windows to test if it works there too
313 { "/a/b/~", wxPATH_NORM_TILDE
, "/a/b/~", wxPATH_UNIX
},
314 { "/~/a/b", wxPATH_NORM_TILDE
, "HOME/a/b", wxPATH_UNIX
},
315 { "~/a/b", wxPATH_NORM_TILDE
, "HOME/a/b", wxPATH_UNIX
},
317 // test wxPATH_NORM_CASE
318 { "Foo", wxPATH_NORM_CASE
, "Foo", wxPATH_UNIX
},
319 { "Foo", wxPATH_NORM_CASE
, "foo", wxPATH_DOS
},
320 { "C:\\Program Files\\wx", wxPATH_NORM_CASE
,
321 "c:\\program files\\wx", wxPATH_DOS
},
322 { "C:/Program Files/wx", wxPATH_NORM_ALL
| wxPATH_NORM_CASE
,
323 "c:\\program files\\wx", wxPATH_DOS
},
324 { "C:\\Users\\zeitlin", wxPATH_NORM_ALL
| wxPATH_NORM_CASE
,
325 "c:\\users\\zeitlin", wxPATH_DOS
},
327 // test wxPATH_NORM_ABSOLUTE
328 { "a/b/", wxPATH_NORM_ABSOLUTE
, "CWD/a/b/", wxPATH_UNIX
},
329 { "a/b/c.ext", wxPATH_NORM_ABSOLUTE
, "CWD/a/b/c.ext", wxPATH_UNIX
},
330 { "/a", wxPATH_NORM_ABSOLUTE
, "/a", wxPATH_UNIX
},
332 // test giving no flags at all to Normalize()
333 { "a/b/", 0, "a/b/", wxPATH_UNIX
},
334 { "a/b/c.ext", 0, "a/b/c.ext", wxPATH_UNIX
},
335 { "/a", 0, "/a", wxPATH_UNIX
},
337 // test handling dots without wxPATH_NORM_DOTS and wxPATH_NORM_ABSOLUTE
338 // for both existing and non-existent files (this is important under
339 // MSW where GetLongPathName() works only for the former)
340 { "./foo", wxPATH_NORM_LONG
, "./foo", wxPATH_UNIX
},
341 { "../foo", wxPATH_NORM_LONG
, "../foo", wxPATH_UNIX
},
342 { ".\\test.bkl", wxPATH_NORM_LONG
, ".\\test.bkl", wxPATH_DOS
},
343 { ".\\foo", wxPATH_NORM_LONG
, ".\\foo", wxPATH_DOS
},
344 { "..\\Makefile.in", wxPATH_NORM_LONG
, "..\\Makefile.in", wxPATH_DOS
},
345 { "..\\foo", wxPATH_NORM_LONG
, "..\\foo", wxPATH_DOS
},
347 { "..\\MKINST~1", wxPATH_NORM_LONG
, "..\\mkinstalldirs", wxPATH_DOS
},
351 // set the env var ABCDEF
352 wxSetEnv(_T("ABCDEF"), _T("abcdef"));
354 for ( size_t i
= 0; i
< WXSIZEOF(tests
); i
++ )
356 const FileNameTest
& fnt
= tests
[i
];
357 wxFileName
fn(fnt
.original
, fnt
.fmt
);
359 // be sure this normalization does not fail
362 ("#%d: Normalize(%s) failed", (int)i
, fnt
.original
),
363 fn
.Normalize(fnt
.flags
, cwd
, fnt
.fmt
)
366 // compare result with expected string
367 wxString
expected(tests
[i
].expected
);
368 expected
.Replace(_T("HOME/"), home
);
369 expected
.Replace(_T("CWD/"), cwd
);
370 WX_ASSERT_EQUAL_MESSAGE
372 ("array element #%d", (int)i
),
373 expected
, fn
.GetFullPath(fnt
.fmt
)
378 wxString
wxTestStripExtension(wxString szFile
)
380 wxStripExtension(szFile
);
384 void FileNameTestCase::TestStrip()
387 CPPUNIT_ASSERT_EQUAL( wxString(_T("")), wxTestStripExtension(_T("")) );
390 CPPUNIT_ASSERT_EQUAL( wxString(_T("")), wxTestStripExtension(_T(".")) );
391 CPPUNIT_ASSERT_EQUAL( wxString(_T("")), wxTestStripExtension(_T(".wav")) );
392 CPPUNIT_ASSERT_EQUAL( wxString(_T("good")), wxTestStripExtension(_T("good.wav")) );
393 CPPUNIT_ASSERT_EQUAL( wxString(_T("good.wav")), wxTestStripExtension(_T("good.wav.wav")) );
398 void FileNameTestCase::TestShortLongPath()
400 wxFileName
fn(_T("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe"));
402 // incredibly enough, GetLongPath() used to return different results during
403 // the first and subsequent runs, test for this
404 CPPUNIT_ASSERT_EQUAL( fn
.GetLongPath(), fn
.GetLongPath() );
405 CPPUNIT_ASSERT_EQUAL( fn
.GetShortPath(), fn
.GetShortPath() );
408 #endif // __WINDOWS__