1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/streams/filestream.cpp
3 // Purpose: Test wxFileInputStream/wxFileOutputStream
4 // Author: Hans Van Leemputten
6 // Copyright: (c) 2004 Hans Van Leemputten
7 // Licence: wxWidgets licence
8 ///////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx/wx.h".
18 // for all others, include the necessary headers
23 #include "wx/wfstream.h"
27 #define DATABUFFER_SIZE 1024
29 static const wxString FILENAME_FILEINSTREAM
= _T("fileinstream.test");
30 static const wxString FILENAME_FILEOUTSTREAM
= _T("fileoutstream.test");
32 ///////////////////////////////////////////////////////////////////////////////
35 // Try to fully test wxFileInputStream and wxFileOutputStream
37 class fileStream
: public BaseStreamTestCase
<wxFileInputStream
, wxFileOutputStream
>
41 virtual ~fileStream();
43 CPPUNIT_TEST_SUITE(fileStream
);
44 // Base class stream tests the fileStream supports.
45 CPPUNIT_TEST(Input_GetSize
);
46 CPPUNIT_TEST(Input_GetC
);
47 CPPUNIT_TEST(Input_Read
);
48 CPPUNIT_TEST(Input_Eof
);
49 CPPUNIT_TEST(Input_LastRead
);
50 CPPUNIT_TEST(Input_CanRead
);
51 CPPUNIT_TEST(Input_SeekI
);
52 CPPUNIT_TEST(Input_TellI
);
53 CPPUNIT_TEST(Input_Peek
);
54 CPPUNIT_TEST(Input_Ungetch
);
56 CPPUNIT_TEST(Output_PutC
);
57 CPPUNIT_TEST(Output_Write
);
58 CPPUNIT_TEST(Output_LastWrite
);
59 CPPUNIT_TEST(Output_SeekO
);
60 CPPUNIT_TEST(Output_TellO
);
62 // Other test specific for File stream test case.
63 CPPUNIT_TEST_SUITE_END();
69 // Implement base class functions.
70 virtual wxFileInputStream
*DoCreateInStream();
71 virtual wxFileOutputStream
*DoCreateOutStream();
72 virtual void DoDeleteOutStream();
75 wxString
GetInFileName() const;
78 fileStream::fileStream()
80 m_bSeekInvalidBeyondEnd
= false;
83 fileStream::~fileStream()
85 // Remove the temp test file...
86 ::wxRemoveFile(FILENAME_FILEINSTREAM
);
87 ::wxRemoveFile(FILENAME_FILEOUTSTREAM
);
90 wxFileInputStream
*fileStream::DoCreateInStream()
92 wxFileInputStream
*pFileInStream
= new wxFileInputStream(GetInFileName());
93 CPPUNIT_ASSERT(pFileInStream
->IsOk());
96 wxFileOutputStream
*fileStream::DoCreateOutStream()
98 wxFileOutputStream
*pFileOutStream
= new wxFileOutputStream(FILENAME_FILEOUTSTREAM
);
99 CPPUNIT_ASSERT(pFileOutStream
->IsOk());
100 return pFileOutStream
;
103 void fileStream::DoDeleteOutStream()
105 ::wxRemoveFile(FILENAME_FILEOUTSTREAM
);
108 wxString
fileStream::GetInFileName() const
110 static bool bFileCreated
= false;
113 // Create the file only once
116 // Make sure we have a input file...
117 char buf
[DATABUFFER_SIZE
];
118 wxFileOutputStream
out(FILENAME_FILEINSTREAM
);
120 // Init the data buffer.
121 for (size_t i
= 0; i
< DATABUFFER_SIZE
; i
++)
125 out
.Write(buf
, DATABUFFER_SIZE
);
128 return FILENAME_FILEINSTREAM
;
131 // Register the stream sub suite, by using some stream helper macro.
132 // Note: Don't forget to connect it to the base suite (See: bstream.cpp => StreamCase::suite())
133 STREAM_TEST_SUBSUITE_NAMED_REGISTRATION(fileStream
)