1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/file/dir.cpp
3 // Purpose: wxDir unit test
4 // Author: Francesco Montorsi (extracted from console sample)
7 // Copyright: (c) 2010 wxWidgets team
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
21 #include "wx/filename.h"
22 #include "wx/stdpaths.h"
24 #define DIRTEST_FOLDER wxString("dirTest_folder")
25 #define SEP wxFileName::GetPathSeparator()
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 class DirTestCase
: public CppUnit::TestCase
37 virtual void tearDown();
40 CPPUNIT_TEST_SUITE( DirTestCase
);
41 CPPUNIT_TEST( DirExists
);
42 CPPUNIT_TEST( Traverse
);
44 CPPUNIT_TEST( GetName
);
45 CPPUNIT_TEST_SUITE_END();
52 void CreateTempFile(const wxString
& path
);
53 wxArrayString
DirEnumHelper(wxDir
& dir
,
54 int flags
= wxDIR_DEFAULT
,
55 const wxString
& filespec
= wxEmptyString
);
57 wxDECLARE_NO_COPY_CLASS(DirTestCase
);
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 CPPUNIT_TEST_SUITE_REGISTRATION( DirTestCase
);
65 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( DirTestCase
, "DirTestCase" );
67 // ----------------------------------------------------------------------------
68 // tests implementation
69 // ----------------------------------------------------------------------------
71 void DirTestCase::CreateTempFile(const wxString
& path
)
73 wxFile
f(path
, wxFile::write
);
74 f
.Write("dummy test file");
78 void DirTestCase::setUp()
80 // create a test directory hierarchy
81 wxDir::Make(DIRTEST_FOLDER
+ SEP
+ "folder1" + SEP
+ "subfolder1", wxS_DIR_DEFAULT
, wxPATH_MKDIR_FULL
);
82 wxDir::Make(DIRTEST_FOLDER
+ SEP
+ "folder1" + SEP
+ "subfolder2", wxS_DIR_DEFAULT
, wxPATH_MKDIR_FULL
);
83 wxDir::Make(DIRTEST_FOLDER
+ SEP
+ "folder2", wxS_DIR_DEFAULT
, wxPATH_MKDIR_FULL
);
84 wxDir::Make(DIRTEST_FOLDER
+ SEP
+ "folder3" + SEP
+ "subfolder1", wxS_DIR_DEFAULT
, wxPATH_MKDIR_FULL
);
86 CreateTempFile(DIRTEST_FOLDER
+ SEP
+ "folder1" + SEP
+ "subfolder2" + SEP
+ "dummy");
87 CreateTempFile(DIRTEST_FOLDER
+ SEP
+ "dummy");
88 CreateTempFile(DIRTEST_FOLDER
+ SEP
+ "folder3" + SEP
+ "subfolder1" + SEP
+ "dummy.foo");
89 CreateTempFile(DIRTEST_FOLDER
+ SEP
+ "folder3" + SEP
+ "subfolder1" + SEP
+ "dummy.foo.bar");
92 void DirTestCase::tearDown()
94 wxRemove(DIRTEST_FOLDER
+ SEP
+ "folder1" + SEP
+ "subfolder2" + SEP
+ "dummy");
95 wxRemove(DIRTEST_FOLDER
+ SEP
+ "dummy");
96 wxRemove(DIRTEST_FOLDER
+ SEP
+ "folder3" + SEP
+ "subfolder1" + SEP
+ "dummy.foo");
97 wxRemove(DIRTEST_FOLDER
+ SEP
+ "folder3" + SEP
+ "subfolder1" + SEP
+ "dummy.foo.bar");
98 wxDir::Remove(DIRTEST_FOLDER
, wxPATH_RMDIR_RECURSIVE
);
101 wxArrayString
DirTestCase::DirEnumHelper(wxDir
& dir
,
103 const wxString
& filespec
)
106 CPPUNIT_ASSERT( dir
.IsOpened() );
109 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
112 ret
.push_back(filename
);
113 cont
= dir
.GetNext(&filename
);
119 void DirTestCase::Enum()
121 wxDir
dir(DIRTEST_FOLDER
);
122 CPPUNIT_ASSERT( dir
.IsOpened() );
124 // enumerating everything in test directory
125 CPPUNIT_ASSERT_EQUAL(4, DirEnumHelper(dir
).size());
127 // enumerating really everything in test directory recursively
128 CPPUNIT_ASSERT_EQUAL(6, DirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
).size());
130 // enumerating object files in test directory
131 CPPUNIT_ASSERT_EQUAL(0, DirEnumHelper(dir
, wxDIR_DEFAULT
, "*.o*").size());
133 // enumerating directories in test directory
134 CPPUNIT_ASSERT_EQUAL(3, DirEnumHelper(dir
, wxDIR_DIRS
).size());
136 // enumerating files in test directory
137 CPPUNIT_ASSERT_EQUAL(1, DirEnumHelper(dir
, wxDIR_FILES
).size());
139 // enumerating files including hidden in test directory
140 CPPUNIT_ASSERT_EQUAL(1, DirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
).size());
142 // enumerating files and folders in test directory
143 CPPUNIT_ASSERT_EQUAL(4, DirEnumHelper(dir
, wxDIR_FILES
| wxDIR_DIRS
).size());
146 class TestDirTraverser
: public wxDirTraverser
151 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
153 return wxDIR_CONTINUE
;
156 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
158 dirs
.push_back(dirname
);
159 return wxDIR_CONTINUE
;
163 void DirTestCase::Traverse()
167 CPPUNIT_ASSERT_EQUAL(4, wxDir::GetAllFiles(DIRTEST_FOLDER
, &files
));
169 // enum all files according to the filter
170 CPPUNIT_ASSERT_EQUAL(1, wxDir::GetAllFiles(DIRTEST_FOLDER
, &files
, "*.foo"));
172 // enum again with custom traverser
173 wxDir
dir(DIRTEST_FOLDER
);
174 TestDirTraverser traverser
;
175 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
176 CPPUNIT_ASSERT_EQUAL(6, traverser
.dirs
.size());
179 void DirTestCase::DirExists()
189 { "$USER_DOCS_DIR", true },
190 #if defined(__WINDOWS__)
191 { "$USER_DOCS_DIR\\", true },
192 { "$USER_DOCS_DIR\\\\", true },
194 { "$MSW_DRIVE", true },
195 { "$MSW_DRIVE\\", true },
196 { "$MSW_DRIVE\\\\", true },
197 { "\\\\non_existent_share\\file", false },
198 { "$MSW_DRIVE\\a\\directory\\which\\does\\not\\exist", false },
199 { "$MSW_DRIVE\\a\\directory\\which\\does\\not\\exist\\", false },
200 { "$MSW_DRIVE\\a\\directory\\which\\does\\not\\exist\\\\", false },
201 { "test.exe", false } // not a directory!
202 #elif defined(__UNIX__)
206 { "/usr/bin", true },
207 { "/usr//bin", true },
208 { "/usr///bin", true },
209 { "/tmp/a/directory/which/does/not/exist", false },
210 { "/bin/ls", false } // not a directory!
215 wxString homedrive
= wxGetenv("HOMEDRIVE");
216 if ( homedrive
.empty() )
218 #endif // __WINDOWS__
220 for ( size_t n
= 0; n
< WXSIZEOF(testData
); n
++ )
222 wxString dirname
= testData
[n
].dirname
;
223 dirname
.Replace("$USER_DOCS_DIR", wxStandardPaths::Get().GetDocumentsDir());
226 dirname
.Replace("$MSW_DRIVE", homedrive
);
227 #endif // __WINDOWS__
229 std::string errDesc
= wxString::Format("failed on directory '%s'", dirname
).ToStdString();
230 CPPUNIT_ASSERT_EQUAL_MESSAGE(errDesc
, testData
[n
].shouldExist
, wxDir::Exists(dirname
));
233 CPPUNIT_ASSERT_EQUAL(testData
[n
].shouldExist
, d
.IsOpened());
236 CPPUNIT_ASSERT( wxDir::Exists(wxGetCwd()) );
239 void DirTestCase::GetName()
243 CPPUNIT_ASSERT( d
.Open(".") );
244 CPPUNIT_ASSERT( d
.GetName().Last() != wxFILE_SEP_PATH
);
245 CPPUNIT_ASSERT( d
.GetNameWithSep().Last() == wxFILE_SEP_PATH
);
246 CPPUNIT_ASSERT_EQUAL( d
.GetName() + wxFILE_SEP_PATH
,
247 d
.GetNameWithSep() );
250 CPPUNIT_ASSERT( d
.Open("/") );
251 CPPUNIT_ASSERT_EQUAL( "/", d
.GetName() );
252 CPPUNIT_ASSERT_EQUAL( "/", d
.GetNameWithSep() );