]>
Commit | Line | Data |
---|---|---|
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 | |
21 | #endif // WX_PRECOMP | |
22 | ||
23 | #include "wx/filename.h" | |
c08dd08b | 24 | #include "wx/filefn.h" |
f095b1fc | 25 | |
f095b1fc VZ |
26 | // ---------------------------------------------------------------------------- |
27 | // test data | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
30 | static struct FileNameInfo | |
31 | { | |
32 | const wxChar *fullname; | |
33 | const wxChar *volume; | |
34 | const wxChar *path; | |
35 | const wxChar *name; | |
36 | const wxChar *ext; | |
37 | bool isAbsolute; | |
38 | wxPathFormat format; | |
39 | } filenames[] = | |
40 | { | |
41 | // Unix file names | |
42 | { _T("/usr/bin/ls"), _T(""), _T("/usr/bin"), _T("ls"), _T(""), true, wxPATH_UNIX }, | |
43 | { _T("/usr/bin/"), _T(""), _T("/usr/bin"), _T(""), _T(""), true, wxPATH_UNIX }, | |
44 | { _T("~/.zshrc"), _T(""), _T("~"), _T(".zshrc"), _T(""), true, wxPATH_UNIX }, | |
45 | { _T("../../foo"), _T(""), _T("../.."), _T("foo"), _T(""), false, wxPATH_UNIX }, | |
46 | { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_UNIX }, | |
47 | { _T("~/foo.bar"), _T(""), _T("~"), _T("foo"), _T("bar"), true, wxPATH_UNIX }, | |
48 | { _T("/foo"), _T(""), _T("/"), _T("foo"), _T(""), true, wxPATH_UNIX }, | |
49 | { _T("Mahogany-0.60/foo.bar"), _T(""), _T("Mahogany-0.60"), _T("foo"), _T("bar"), false, wxPATH_UNIX }, | |
50 | { _T("/tmp/wxwin.tar.bz"), _T(""), _T("/tmp"), _T("wxwin.tar"), _T("bz"), true, wxPATH_UNIX }, | |
51 | ||
52 | // Windows file names | |
53 | { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS }, | |
54 | { _T("\\foo.bar"), _T(""), _T("\\"), _T("foo"), _T("bar"), false, wxPATH_DOS }, | |
55 | { _T("c:foo.bar"), _T("c"), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS }, | |
56 | { _T("c:\\foo.bar"), _T("c"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS }, | |
57 | { _T("c:\\Windows\\command.com"), _T("c"), _T("\\Windows"), _T("command"), _T("com"), true, wxPATH_DOS }, | |
58 | { _T("\\\\server\\foo.bar"), _T("server"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS }, | |
59 | { _T("\\\\server\\dir\\foo.bar"), _T("server"), _T("\\dir"), _T("foo"), _T("bar"), true, wxPATH_DOS }, | |
60 | ||
61 | // wxFileName support for Mac file names is broken currently | |
62 | #if 0 | |
63 | // Mac file names | |
64 | { _T("Volume:Dir:File"), _T("Volume"), _T("Dir"), _T("File"), _T(""), true, wxPATH_MAC }, | |
65 | { _T("Volume:Dir:Subdir:File"), _T("Volume"), _T("Dir:Subdir"), _T("File"), _T(""), true, wxPATH_MAC }, | |
66 | { _T("Volume:"), _T("Volume"), _T(""), _T(""), _T(""), true, wxPATH_MAC }, | |
67 | { _T(":Dir:File"), _T(""), _T("Dir"), _T("File"), _T(""), false, wxPATH_MAC }, | |
68 | { _T(":File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC }, | |
69 | { _T("File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC }, | |
70 | #endif // 0 | |
71 | ||
72 | // VMS file names | |
73 | { _T("device:[dir1.dir2.dir3]file.txt"), _T("device"), _T("dir1.dir2.dir3"), _T("file"), _T("txt"), true, wxPATH_VMS }, | |
74 | { _T("file.txt"), _T(""), _T(""), _T("file"), _T("txt"), false, wxPATH_VMS }, | |
75 | }; | |
76 | ||
77 | // ---------------------------------------------------------------------------- | |
78 | // test class | |
79 | // ---------------------------------------------------------------------------- | |
80 | ||
81 | class FileNameTestCase : public CppUnit::TestCase | |
82 | { | |
83 | public: | |
84 | FileNameTestCase() { } | |
85 | ||
86 | private: | |
87 | CPPUNIT_TEST_SUITE( FileNameTestCase ); | |
88 | CPPUNIT_TEST( TestConstruction ); | |
89 | CPPUNIT_TEST( TestSplit ); | |
4524a24b | 90 | CPPUNIT_TEST( TestSetPath ); |
c08dd08b | 91 | CPPUNIT_TEST( TestStrip ); |
f095b1fc VZ |
92 | CPPUNIT_TEST_SUITE_END(); |
93 | ||
94 | void TestConstruction(); | |
95 | void TestSplit(); | |
96 | void TestSetPath(); | |
c08dd08b | 97 | void TestStrip(); |
f095b1fc VZ |
98 | |
99 | DECLARE_NO_COPY_CLASS(FileNameTestCase) | |
100 | }; | |
101 | ||
102 | // register in the unnamed registry so that these tests are run by default | |
103 | CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase ); | |
104 | ||
105 | // also include in it's own registry so that these tests can be run alone | |
106 | CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase, "FileNameTestCase" ); | |
107 | ||
108 | void FileNameTestCase::TestConstruction() | |
109 | { | |
110 | for ( size_t n = 0; n < WXSIZEOF(filenames); n++ ) | |
111 | { | |
112 | const FileNameInfo& fni = filenames[n]; | |
113 | ||
114 | wxFileName fn(fni.fullname, fni.format); | |
115 | ||
116 | wxString fullname = fn.GetFullPath(fni.format); | |
117 | CPPUNIT_ASSERT( fullname == fni.fullname ); | |
118 | ||
119 | CPPUNIT_ASSERT( fn.Normalize(wxPATH_NORM_ALL, _T(""), fni.format) ); | |
4c2deb19 VZ |
120 | |
121 | if ( *fni.volume && *fni.path ) | |
122 | { | |
123 | // check that specifying the volume separately or as part of the | |
124 | // path doesn't make any difference | |
125 | wxString pathWithVolume = fni.volume; | |
126 | pathWithVolume += wxFileName::GetVolumeSeparator(fni.format); | |
127 | pathWithVolume += fni.path; | |
128 | ||
129 | CPPUNIT_ASSERT( fn == wxFileName(pathWithVolume, | |
130 | fni.name, | |
131 | fni.ext, | |
132 | fni.format) ); | |
133 | } | |
f095b1fc VZ |
134 | } |
135 | } | |
136 | ||
137 | void FileNameTestCase::TestSplit() | |
138 | { | |
139 | for ( size_t n = 0; n < WXSIZEOF(filenames); n++ ) | |
140 | { | |
141 | const FileNameInfo& fni = filenames[n]; | |
142 | wxString volume, path, name, ext; | |
143 | wxFileName::SplitPath(fni.fullname, | |
144 | &volume, &path, &name, &ext, fni.format); | |
145 | ||
146 | CPPUNIT_ASSERT( volume == fni.volume ); | |
147 | CPPUNIT_ASSERT( path == fni.path ); | |
148 | CPPUNIT_ASSERT( name == fni.name ); | |
149 | CPPUNIT_ASSERT( ext == fni.ext ); | |
150 | } | |
dfecbee5 VZ |
151 | |
152 | // special case of empty extension | |
153 | wxFileName fn(_T("foo.")); | |
154 | CPPUNIT_ASSERT( fn.GetFullPath() == _T("foo.") ); | |
f095b1fc VZ |
155 | } |
156 | ||
4524a24b VZ |
157 | void FileNameTestCase::TestSetPath() |
158 | { | |
159 | wxFileName fn(_T("d:\\test\\foo.bar"), wxPATH_DOS); | |
67050b6d VS |
160 | fn.SetPath(_T("c:\\temp"), wxPATH_DOS); |
161 | CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("c:\\temp\\foo.bar"), wxPATH_DOS)) ); | |
4524a24b | 162 | |
67050b6d VS |
163 | fn = wxFileName(_T("/usr/bin/ls"), wxPATH_UNIX); |
164 | fn.SetPath(_T("/usr/local/bin"), wxPATH_UNIX); | |
165 | CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX)) ); | |
4524a24b VZ |
166 | } |
167 | ||
ff3d9a35 | 168 | wxString wxTestStripExtension(wxString szFile) |
c08dd08b RN |
169 | { |
170 | wxStripExtension(szFile); | |
171 | return szFile; | |
172 | } | |
173 | ||
174 | void FileNameTestCase::TestStrip() | |
175 | { | |
176 | //test a crash | |
ff3d9a35 | 177 | CPPUNIT_ASSERT( wxTestStripExtension( _T("") ) == _T("") ); |
c08dd08b RN |
178 | |
179 | //others | |
ff3d9a35 RN |
180 | CPPUNIT_ASSERT( wxTestStripExtension( _T(".") ) == _T("") ); |
181 | CPPUNIT_ASSERT( wxTestStripExtension( _T(".wav") ) == _T("") ); | |
182 | CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav") ) == _T("good") ); | |
183 | CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav.wav") ) == _T("good.wav") ); | |
184 | } |