2006-03-31 13:46:38 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/textfile/textfile.cpp
|
|
|
|
// Purpose: wxTextFile unit test
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2006-03-31
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2006 Vadim Zeitlin
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_TEXTFILE
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
2008-05-11 17:43:56 +00:00
|
|
|
#include "wx/ffile.h"
|
2006-03-31 13:46:38 +00:00
|
|
|
#include "wx/textfile.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TextFileTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TextFileTestCase() { }
|
|
|
|
|
|
|
|
virtual void tearDown() { unlink(GetTestFileName()); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( TextFileTestCase );
|
|
|
|
CPPUNIT_TEST( ReadEmpty );
|
|
|
|
CPPUNIT_TEST( ReadDOS );
|
|
|
|
CPPUNIT_TEST( ReadUnix );
|
|
|
|
CPPUNIT_TEST( ReadMac );
|
|
|
|
CPPUNIT_TEST( ReadMixed );
|
2006-03-31 14:26:59 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
CPPUNIT_TEST( ReadUTF8 );
|
|
|
|
CPPUNIT_TEST( ReadUTF16 );
|
|
|
|
#endif // wxUSE_UNICODE
|
2008-05-11 17:43:56 +00:00
|
|
|
CPPUNIT_TEST( ReadBig );
|
2006-03-31 13:46:38 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void ReadEmpty();
|
|
|
|
void ReadDOS();
|
|
|
|
void ReadUnix();
|
|
|
|
void ReadMac();
|
|
|
|
void ReadMixed();
|
2006-03-31 14:26:59 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
void ReadUTF8();
|
|
|
|
void ReadUTF16();
|
|
|
|
#endif // wxUSE_UNICODE
|
2008-05-11 17:43:56 +00:00
|
|
|
void ReadBig();
|
2006-03-31 13:46:38 +00:00
|
|
|
|
|
|
|
// return the name of the test file we use
|
|
|
|
static const char *GetTestFileName() { return "textfiletest.txt"; }
|
|
|
|
|
|
|
|
// create the test file with the given contents
|
2006-03-31 14:26:59 +00:00
|
|
|
static void CreateTestFile(const char *contents)
|
|
|
|
{
|
2008-01-13 01:13:03 +00:00
|
|
|
CreateTestFile(strlen(contents), contents);
|
2006-03-31 14:26:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// create the test file with the given contents (version must be used if
|
|
|
|
// contents contains NULs)
|
|
|
|
static void CreateTestFile(size_t len, const char *contents);
|
2006-03-31 13:46:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(TextFileTestCase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( TextFileTestCase );
|
|
|
|
|
|
|
|
// also include in it's own registry so that these tests can be run alone
|
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( TextFileTestCase, "TextFileTestCase" );
|
|
|
|
|
2006-03-31 14:26:59 +00:00
|
|
|
void TextFileTestCase::CreateTestFile(size_t len, const char *contents)
|
2006-03-31 13:46:38 +00:00
|
|
|
{
|
|
|
|
FILE *f = fopen(GetTestFileName(), "wb");
|
|
|
|
CPPUNIT_ASSERT( f );
|
|
|
|
|
2008-11-19 09:55:27 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( len, fwrite(contents, 1, len, f) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( 0, fclose(f) );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadEmpty()
|
|
|
|
{
|
|
|
|
CreateTestFile("");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName())) );
|
2006-03-31 13:46:38 +00:00
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)0, f.GetLineCount() );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadDOS()
|
|
|
|
{
|
|
|
|
CreateTestFile("foo\r\nbar\r\nbaz");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName())) );
|
2006-03-31 13:46:38 +00:00
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)3, f.GetLineCount() );
|
2006-03-31 13:46:38 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Dos, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(2) );
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("bar")), f.GetLine(1) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("baz")), f.GetLastLine() );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadUnix()
|
|
|
|
{
|
|
|
|
CreateTestFile("foo\nbar\nbaz");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName())) );
|
2006-03-31 13:46:38 +00:00
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)3, f.GetLineCount() );
|
2006-03-31 13:46:38 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Unix, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(2) );
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("bar")), f.GetLine(1) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("baz")), f.GetLastLine() );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadMac()
|
|
|
|
{
|
|
|
|
CreateTestFile("foo\rbar\rbaz");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName())) );
|
2006-03-31 13:46:38 +00:00
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)3, f.GetLineCount() );
|
2006-03-31 13:46:38 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Mac, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(2) );
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("bar")), f.GetLine(1) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("baz")), f.GetLastLine() );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadMixed()
|
|
|
|
{
|
|
|
|
CreateTestFile("foo\rbar\r\nbaz\n");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName())) );
|
2006-03-31 13:46:38 +00:00
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)3, f.GetLineCount() );
|
2006-03-31 13:46:38 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Mac, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Dos, f.GetLineType(1) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Unix, f.GetLineType(2) );
|
2006-03-31 13:58:01 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("foo")), f.GetFirstLine() );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("bar")), f.GetLine(1) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(_T("baz")), f.GetLastLine() );
|
2006-03-31 13:46:38 +00:00
|
|
|
}
|
|
|
|
|
2006-03-31 14:26:59 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadUTF8()
|
|
|
|
{
|
|
|
|
CreateTestFile("\xd0\x9f\n"
|
|
|
|
"\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82");
|
|
|
|
|
|
|
|
wxTextFile f;
|
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName()), wxConvUTF8) );
|
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)2, f.GetLineCount() );
|
2006-03-31 14:26:59 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Unix, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
|
2006-03-31 19:15:46 +00:00
|
|
|
#ifdef wxHAVE_U_ESCAPE
|
2006-03-31 14:26:59 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
|
|
|
|
f.GetLastLine() );
|
2006-03-31 17:43:10 +00:00
|
|
|
#endif // wxHAVE_U_ESCAPE
|
2006-03-31 14:26:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextFileTestCase::ReadUTF16()
|
|
|
|
{
|
|
|
|
CreateTestFile(16,
|
|
|
|
"\x1f\x04\x0d\x00\x0a\x00"
|
|
|
|
"\x40\x04\x38\x04\x32\x04\x35\x04\x42\x04");
|
|
|
|
|
|
|
|
wxTextFile f;
|
2006-04-04 14:25:59 +00:00
|
|
|
wxMBConvUTF16LE conv;
|
2006-03-31 14:26:59 +00:00
|
|
|
CPPUNIT_ASSERT( f.Open(wxString::FromAscii(GetTestFileName()), conv) );
|
|
|
|
|
2006-04-02 20:18:33 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( (size_t)2, f.GetLineCount() );
|
2006-03-31 14:26:59 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_Dos, f.GetLineType(0) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxTextFileType_None, f.GetLineType(1) );
|
2006-03-31 17:43:10 +00:00
|
|
|
|
2006-03-31 19:15:46 +00:00
|
|
|
#ifdef wxHAVE_U_ESCAPE
|
2006-03-31 14:26:59 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(L"\u041f"), f.GetFirstLine() );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString(L"\u0440\u0438\u0432\u0435\u0442"),
|
|
|
|
f.GetLastLine() );
|
2006-03-31 17:43:10 +00:00
|
|
|
#endif // wxHAVE_U_ESCAPE
|
2006-03-31 14:26:59 +00:00
|
|
|
}
|
|
|
|
|
2008-06-01 16:59:10 +00:00
|
|
|
#endif // wxUSE_UNICODE
|
|
|
|
|
2008-05-11 17:43:56 +00:00
|
|
|
void TextFileTestCase::ReadBig()
|
|
|
|
{
|
|
|
|
static const size_t NUM_LINES = 10000;
|
|
|
|
|
|
|
|
{
|
|
|
|
wxFFile f(GetTestFileName(), "w");
|
|
|
|
for ( size_t n = 0; n < NUM_LINES; n++ )
|
|
|
|
{
|
|
|
|
fprintf(f.fp(), "Line %lu\n", (unsigned long)n + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wxTextFile f;
|
|
|
|
CPPUNIT_ASSERT( f.Open(GetTestFileName()) );
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT_EQUAL( NUM_LINES, f.GetLineCount() );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString("Line 1"), f[0] );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString("Line 999"), f[998] );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString("Line 1000"), f[999] );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString::Format("Line %lu", (unsigned long)NUM_LINES),
|
|
|
|
f[NUM_LINES - 1] );
|
|
|
|
}
|
|
|
|
|
2006-03-31 13:46:38 +00:00
|
|
|
#endif // wxUSE_TEXTFILE
|
|
|
|
|