2009-09-12 18:40:42 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/file/filetest.cpp
|
|
|
|
// Purpose: wxFile unit test
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2009-09-12
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_FILE
|
|
|
|
|
|
|
|
#include "wx/file.h"
|
|
|
|
|
|
|
|
#include "testfile.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class FileTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FileTestCase() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( FileTestCase );
|
2010-10-16 19:05:20 -04:00
|
|
|
#if wxUSE_UNICODE
|
2009-09-12 18:40:42 -04:00
|
|
|
CPPUNIT_TEST( RoundTripUTF8 );
|
|
|
|
CPPUNIT_TEST( RoundTripUTF16 );
|
|
|
|
CPPUNIT_TEST( RoundTripUTF32 );
|
2010-10-16 19:05:20 -04:00
|
|
|
#endif // wxUSE_UNICODE
|
2010-06-13 10:30:55 -04:00
|
|
|
CPPUNIT_TEST( TempFile );
|
2009-09-12 18:40:42 -04:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
2010-10-16 19:05:20 -04:00
|
|
|
#if wxUSE_UNICODE
|
2009-09-12 18:40:42 -04:00
|
|
|
void RoundTripUTF8() { DoRoundTripTest(wxConvUTF8); }
|
|
|
|
void RoundTripUTF16() { DoRoundTripTest(wxMBConvUTF16()); }
|
|
|
|
void RoundTripUTF32() { DoRoundTripTest(wxMBConvUTF32()); }
|
2010-10-16 19:05:20 -04:00
|
|
|
#endif // wxUSE_UNICODE
|
2009-09-12 18:40:42 -04:00
|
|
|
|
|
|
|
void DoRoundTripTest(const wxMBConv& conv);
|
2010-06-13 10:30:55 -04:00
|
|
|
void TempFile();
|
2009-09-12 18:40:42 -04:00
|
|
|
|
|
|
|
wxDECLARE_NO_COPY_CLASS(FileTestCase);
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// CppUnit macros
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( FileTestCase );
|
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( FileTestCase, "FileTestCase" );
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// tests implementation
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2010-10-16 19:05:20 -04:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
|
2009-09-12 18:40:42 -04:00
|
|
|
void FileTestCase::DoRoundTripTest(const wxMBConv& conv)
|
|
|
|
{
|
|
|
|
TestFile tf;
|
|
|
|
|
2010-10-16 19:05:26 -04:00
|
|
|
// Explicit length is needed because of the embedded NUL.
|
|
|
|
const wxString data("Hello\0UTF!", 10);
|
2009-09-12 18:40:42 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
wxFile fout(tf.GetName(), wxFile::write);
|
|
|
|
CPPUNIT_ASSERT( fout.IsOpened() );
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT( fout.Write(data, conv) );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
wxFile fin(tf.GetName(), wxFile::read);
|
|
|
|
CPPUNIT_ASSERT( fin.IsOpened() );
|
|
|
|
|
2009-09-13 08:26:03 -04:00
|
|
|
const ssize_t len = fin.Length();
|
2009-09-12 18:40:42 -04:00
|
|
|
wxCharBuffer buf(len);
|
|
|
|
CPPUNIT_ASSERT_EQUAL( len, fin.Read(buf.data(), len) );
|
|
|
|
|
2010-10-16 19:05:26 -04:00
|
|
|
wxString dataReadBack(buf, conv, len);
|
|
|
|
CPPUNIT_ASSERT_EQUAL( data, dataReadBack );
|
2009-09-12 18:40:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-16 19:05:20 -04:00
|
|
|
#endif // wxUSE_UNICODE
|
|
|
|
|
2010-06-13 10:30:55 -04:00
|
|
|
void FileTestCase::TempFile()
|
|
|
|
{
|
|
|
|
wxTempFile tmpFile;
|
|
|
|
CPPUNIT_ASSERT( tmpFile.Open(wxT("test2")) && tmpFile.Write(wxT("the answer is 42")) );
|
|
|
|
CPPUNIT_ASSERT( tmpFile.Commit() );
|
|
|
|
CPPUNIT_ASSERT( wxRemoveFile(wxT("test2")) );
|
|
|
|
}
|
|
|
|
|
2009-09-12 18:40:42 -04:00
|
|
|
#endif // wxUSE_FILE
|