1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/filesys/filesys.cpp
3 // Purpose: wxFileSystem unit test
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2004 Vaclav Slavik
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
24 #include "wx/filesys.h"
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 // a hack to let us use wxFileSystemHandler's protected methods:
33 class UrlTester
: public wxFileSystemHandler
36 UrlTester() : wxFileSystemHandler() {}
38 wxString
Protocol(const wxString
& p
) { return GetProtocol(p
); }
39 wxString
LeftLocation(const wxString
& p
) { return GetLeftLocation(p
); }
40 wxString
RightLocation(const wxString
& p
) { return GetRightLocation(p
); }
41 wxString
Anchor(const wxString
& p
) { return GetAnchor(p
); }
43 bool CanOpen(const wxString
& WXUNUSED(url
)) { return false; }
44 wxFSFile
*OpenFile(wxFileSystem
& WXUNUSED(fs
),
45 const wxString
& WXUNUSED(url
)) { return NULL
; }
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 class FileSystemTestCase
: public CppUnit::TestCase
58 FileSystemTestCase() { }
61 CPPUNIT_TEST_SUITE( FileSystemTestCase
);
62 CPPUNIT_TEST( UrlParsing
);
63 CPPUNIT_TEST( FileNameToUrlConversion
);
64 CPPUNIT_TEST( UnicodeFileNameToUrlConversion
);
65 CPPUNIT_TEST_SUITE_END();
68 void FileNameToUrlConversion();
69 void UnicodeFileNameToUrlConversion();
71 DECLARE_NO_COPY_CLASS(FileSystemTestCase
)
74 // register in the unnamed registry so that these tests are run by default
75 CPPUNIT_TEST_SUITE_REGISTRATION( FileSystemTestCase
);
77 // also include in its own registry so that these tests can be run alone
78 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileSystemTestCase
, "FileSystemTestCase" );
80 void FileSystemTestCase::UrlParsing()
82 static const struct Data
85 const wxChar
*protocol
, *left
, *right
, *anchor
;
89 { wxT("http://www.root.cz/index.html"),
90 wxT("http"), wxT(""), wxT("//www.root.cz/index.html"), wxT("")},
92 { wxT("http://www.root.cz/index.html#lbl"),
93 wxT("http"), wxT(""), wxT("//www.root.cz/index.html"), wxT("lbl")},
94 // file is default protocol:
95 { wxT("testfile.html"),
96 wxT("file"), wxT(""), wxT("testfile.html"), wxT("")},
98 { wxT("file:myzipfile.zip#zip:index.htm"),
99 wxT("zip"), wxT("file:myzipfile.zip"), wxT("index.htm"), wxT("")},
100 // changes to ':' parsing often break things:
101 { wxT("file:a#b:foo"),
102 wxT("b"), wxT("file:a"), wxT("foo"), wxT("")}
106 for ( size_t n
= 0; n
< WXSIZEOF(data
); n
++ )
108 const Data
& d
= data
[n
];
109 CPPUNIT_ASSERT( tst
.Protocol(d
.url
) == d
.protocol
);
110 CPPUNIT_ASSERT( tst
.LeftLocation(d
.url
) == d
.left
);
111 CPPUNIT_ASSERT( tst
.RightLocation(d
.url
) == d
.right
);
112 CPPUNIT_ASSERT( tst
.Anchor(d
.url
) == d
.anchor
);
116 void FileSystemTestCase::FileNameToUrlConversion()
119 wxFileName
fn1(wxT("\\\\server\\share\\path\\to\\file"));
120 wxString url1
= wxFileSystem::FileNameToURL(fn1
);
122 CPPUNIT_ASSERT( fn1
.SameAs(wxFileSystem::URLToFileName(url1
)) );
126 void FileSystemTestCase::UnicodeFileNameToUrlConversion()
128 const unsigned char filename_utf8
[] = {
129 0x4b, 0x72, 0xc3, 0xa1, 0x73, 0x79, 0x50, 0xc5,
130 0x99, 0xc3, 0xad, 0x72, 0x6f, 0x64, 0x79, 0x2e,
131 0x6a, 0x70, 0x67, 0x00
134 wxFileName
filename(wxString::FromUTF8((const char*)filename_utf8
));
136 wxString url
= wxFileSystem::FileNameToURL(filename
);
138 CPPUNIT_ASSERT( filename
.SameAs(wxFileSystem::URLToFileName(url
)) );
141 #endif // wxUSE_FILESYSTEM