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 #if defined(__GNUG__) && !defined(__APPLE__)
11 #pragma implementation
15 // For compilers that support precompilation, includes "wx/wx.h".
16 #include "wx/wxprec.h"
22 // for all others, include the necessary headers
27 #include "wx/cppunit.h"
28 #include "wx/wfstream.h"
33 using namespace CppUnit
;
35 #define DATABUFFER_SIZE 1024
37 static const wxString FILENAME_FILEINSTREAM
= _T("fileinstream.test");
38 static const wxString FILENAME_FILEOUTSTREAM
= _T("fileoutstream.test");
40 ///////////////////////////////////////////////////////////////////////////////
43 // Try to fully test wxFileInputStream and wxFileOutputStream
45 class fileStream
: public BaseStreamTestCase
<wxFileInputStream
, wxFileOutputStream
>
49 virtual ~fileStream();
51 CPPUNIT_TEST_SUITE(fileStream
);
52 // Base class stream tests the fileStream supports.
53 CPPUNIT_TEST(Input_GetSize
);
54 CPPUNIT_TEST(Input_GetC
);
55 CPPUNIT_TEST(Input_Read
);
56 CPPUNIT_TEST(Input_Eof
);
57 CPPUNIT_TEST(Input_LastRead
);
58 CPPUNIT_TEST(Input_SeekI
);
59 CPPUNIT_TEST(Input_TellI
);
60 CPPUNIT_TEST(Input_Peek
);
61 CPPUNIT_TEST(Input_Ungetch
);
63 CPPUNIT_TEST(Output_PutC
);
64 CPPUNIT_TEST(Output_Write
);
65 CPPUNIT_TEST(Output_LastWrite
);
66 CPPUNIT_TEST(Output_SeekO
);
67 CPPUNIT_TEST(Output_TellO
);
69 // Other test specific for File stream test case.
70 CPPUNIT_TEST_SUITE_END();
76 // Implement base class functions.
77 virtual wxFileInputStream
*DoCreateInStream();
78 virtual wxFileOutputStream
*DoCreateOutStream();
79 virtual void DoDeleteOutStream();
82 wxString
GetInFileName() const;
85 fileStream::fileStream()
87 m_bSeekInvalidBeyondEnd
= false;
90 fileStream::~fileStream()
92 // Remove the temp test file...
93 ::wxRemoveFile(FILENAME_FILEINSTREAM
);
94 ::wxRemoveFile(FILENAME_FILEOUTSTREAM
);
97 wxFileInputStream
*fileStream::DoCreateInStream()
99 wxFileInputStream
*pFileInStream
= new wxFileInputStream(GetInFileName());
100 CPPUNIT_ASSERT(pFileInStream
->IsOk());
101 return pFileInStream
;
103 wxFileOutputStream
*fileStream::DoCreateOutStream()
105 wxFileOutputStream
*pFileOutStream
= new wxFileOutputStream(FILENAME_FILEOUTSTREAM
);
106 CPPUNIT_ASSERT(pFileOutStream
->IsOk());
107 return pFileOutStream
;
110 void fileStream::DoDeleteOutStream()
112 ::wxRemoveFile(FILENAME_FILEOUTSTREAM
);
115 wxString
fileStream::GetInFileName() const
117 static bool bFileCreated
= false;
120 // Create the file only once
123 // Make sure we have a input file...
124 char buf
[DATABUFFER_SIZE
];
125 wxFileOutputStream
out(FILENAME_FILEINSTREAM
);
127 // Init the data buffer.
128 for (size_t i
= 0; i
< DATABUFFER_SIZE
; i
++)
132 out
.Write(buf
, DATABUFFER_SIZE
);
135 return FILENAME_FILEINSTREAM
;
138 // Register the stream sub suite, by using some stream helper macro.
139 // Note: Don't forget to connect it to the base suite (See: bstream.cpp => StreamCase::suite())
140 STREAM_TEST_SUBSUITE_NAMED_REGISTRATION(fileStream
)