]> git.saurik.com Git - wxWidgets.git/blame - tests/filename/filenametest.cpp
A slightly modified version of Patch #1197468. Keeps track of pending
[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
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
30static 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
81class FileNameTestCase : public CppUnit::TestCase
82{
83public:
84 FileNameTestCase() { }
85
86private:
87 CPPUNIT_TEST_SUITE( FileNameTestCase );
88 CPPUNIT_TEST( TestConstruction );
89 CPPUNIT_TEST( TestSplit );
4524a24b 90 CPPUNIT_TEST( TestSetPath );
c08dd08b 91 CPPUNIT_TEST( TestStrip );
60c0dfe5
VZ
92#ifdef __WINDOWS__
93 CPPUNIT_TEST( TestShortLongPath );
94#endif // __WINDOWS__
f095b1fc
VZ
95 CPPUNIT_TEST_SUITE_END();
96
97 void TestConstruction();
98 void TestSplit();
99 void TestSetPath();
c08dd08b 100 void TestStrip();
60c0dfe5
VZ
101#ifdef __WINDOWS__
102 void TestShortLongPath();
103#endif // __WINDOWS__
f095b1fc
VZ
104
105 DECLARE_NO_COPY_CLASS(FileNameTestCase)
106};
107
108// register in the unnamed registry so that these tests are run by default
109CPPUNIT_TEST_SUITE_REGISTRATION( FileNameTestCase );
110
111// also include in it's own registry so that these tests can be run alone
112CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileNameTestCase, "FileNameTestCase" );
113
114void FileNameTestCase::TestConstruction()
115{
116 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
117 {
118 const FileNameInfo& fni = filenames[n];
119
120 wxFileName fn(fni.fullname, fni.format);
121
122 wxString fullname = fn.GetFullPath(fni.format);
123 CPPUNIT_ASSERT( fullname == fni.fullname );
124
125 CPPUNIT_ASSERT( fn.Normalize(wxPATH_NORM_ALL, _T(""), fni.format) );
4c2deb19
VZ
126
127 if ( *fni.volume && *fni.path )
128 {
129 // check that specifying the volume separately or as part of the
130 // path doesn't make any difference
131 wxString pathWithVolume = fni.volume;
132 pathWithVolume += wxFileName::GetVolumeSeparator(fni.format);
133 pathWithVolume += fni.path;
134
135 CPPUNIT_ASSERT( fn == wxFileName(pathWithVolume,
136 fni.name,
137 fni.ext,
138 fni.format) );
139 }
f095b1fc
VZ
140 }
141}
142
143void FileNameTestCase::TestSplit()
144{
145 for ( size_t n = 0; n < WXSIZEOF(filenames); n++ )
146 {
147 const FileNameInfo& fni = filenames[n];
148 wxString volume, path, name, ext;
149 wxFileName::SplitPath(fni.fullname,
150 &volume, &path, &name, &ext, fni.format);
151
152 CPPUNIT_ASSERT( volume == fni.volume );
153 CPPUNIT_ASSERT( path == fni.path );
154 CPPUNIT_ASSERT( name == fni.name );
155 CPPUNIT_ASSERT( ext == fni.ext );
156 }
dfecbee5
VZ
157
158 // special case of empty extension
159 wxFileName fn(_T("foo."));
160 CPPUNIT_ASSERT( fn.GetFullPath() == _T("foo.") );
f095b1fc
VZ
161}
162
4524a24b
VZ
163void FileNameTestCase::TestSetPath()
164{
165 wxFileName fn(_T("d:\\test\\foo.bar"), wxPATH_DOS);
67050b6d
VS
166 fn.SetPath(_T("c:\\temp"), wxPATH_DOS);
167 CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("c:\\temp\\foo.bar"), wxPATH_DOS)) );
4524a24b 168
67050b6d
VS
169 fn = wxFileName(_T("/usr/bin/ls"), wxPATH_UNIX);
170 fn.SetPath(_T("/usr/local/bin"), wxPATH_UNIX);
171 CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX)) );
4524a24b
VZ
172}
173
ff3d9a35 174wxString wxTestStripExtension(wxString szFile)
c08dd08b
RN
175{
176 wxStripExtension(szFile);
177 return szFile;
178}
179
180void FileNameTestCase::TestStrip()
181{
182 //test a crash
ff3d9a35 183 CPPUNIT_ASSERT( wxTestStripExtension( _T("") ) == _T("") );
c08dd08b
RN
184
185 //others
ff3d9a35
RN
186 CPPUNIT_ASSERT( wxTestStripExtension( _T(".") ) == _T("") );
187 CPPUNIT_ASSERT( wxTestStripExtension( _T(".wav") ) == _T("") );
188 CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav") ) == _T("good") );
189 CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav.wav") ) == _T("good.wav") );
190}
60c0dfe5
VZ
191
192#ifdef __WINDOWS__
193
194void FileNameTestCase::TestShortLongPath()
195{
196 wxFileName fn("C:\\Program Files\\Windows NT\\Accessories\\wordpad.exe");
197
198 // incredibly enough, GetLongPath() used to return different results during
199 // the first and subsequent runs, test for this
200 CPPUNIT_ASSERT_EQUAL( fn.GetLongPath(), fn.GetLongPath() );
201 CPPUNIT_ASSERT_EQUAL( fn.GetShortPath(), fn.GetShortPath() );
202}
203
204#endif // __WINDOWS__