]> git.saurik.com Git - wxWidgets.git/blob - tests/streams/ffilestream.cpp
fixed wxBU_EXACTFIT handling in wxBitmapButton (closes 1056234)
[wxWidgets.git] / tests / streams / ffilestream.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/streams/ffilestream.cpp
3 // Purpose: Test wxFFileInputStream/wxFFileOutputStream
4 // Author: Hans Van Leemputten
5 // RCS-ID: $Id$
6 // Copyright: (c) 2004 Hans Van Leemputten
7 // Licence: wxWidgets licence
8 ///////////////////////////////////////////////////////////////////////////////
9
10 #if defined(__GNUG__) && !defined(__APPLE__)
11 #pragma implementation
12 #pragma interface
13 #endif
14
15 // For compilers that support precompilation, includes "wx/wx.h".
16 #include "wx/wxprec.h"
17
18 #ifdef __BORLANDC__
19 #pragma hdrstop
20 #endif
21
22 // for all others, include the necessary headers
23 #ifndef WX_PRECOMP
24 #include "wx/wx.h"
25 #endif
26
27 #include "wx/cppunit.h"
28 #include "wx/wfstream.h"
29
30 #include "bstream.h"
31
32 using namespace std;
33 using namespace CppUnit;
34
35 #define DATABUFFER_SIZE 1024
36
37 static const wxString FILENAME_FFILEINSTREAM = _T("ffileinstream.test");
38 static const wxString FILENAME_FFILEOUTSTREAM = _T("ffileoutstream.test");
39
40 ///////////////////////////////////////////////////////////////////////////////
41 // The test case
42 //
43 // Try to fully test wxFFileInputStream and wxFFileOutputStream
44
45 class ffileStream : public BaseStreamTestCase<wxFFileInputStream, wxFFileOutputStream>
46 {
47 public:
48 ffileStream();
49 virtual ~ffileStream();
50
51 CPPUNIT_TEST_SUITE(ffileStream);
52 // Base class stream tests the ffileStream 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);
62
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);
68
69 // Other test specific for File stream test case.
70 CPPUNIT_TEST_SUITE_END();
71
72 protected:
73 // Add own test here.
74
75 private:
76 // Implement base class functions.
77 virtual wxFFileInputStream *DoCreateInStream();
78 virtual wxFFileOutputStream *DoCreateOutStream();
79 virtual void DoDeleteOutStream();
80
81 private:
82 wxString GetInFileName() const;
83 };
84
85 ffileStream::ffileStream()
86 {
87 m_bSeekInvalidBeyondEnd = false;
88 m_bEofAtLastRead = false;
89 }
90
91 ffileStream::~ffileStream()
92 {
93 // Remove the temp test file...
94 ::wxRemoveFile(FILENAME_FFILEINSTREAM);
95 ::wxRemoveFile(FILENAME_FFILEOUTSTREAM);
96 }
97
98 wxFFileInputStream *ffileStream::DoCreateInStream()
99 {
100 wxFFileInputStream *pFileInStream = new wxFFileInputStream(GetInFileName());
101 CPPUNIT_ASSERT(pFileInStream->IsOk());
102 return pFileInStream;
103 }
104 wxFFileOutputStream *ffileStream::DoCreateOutStream()
105 {
106 wxFFileOutputStream *pFileOutStream = new wxFFileOutputStream(FILENAME_FFILEOUTSTREAM);
107 CPPUNIT_ASSERT(pFileOutStream->IsOk());
108 return pFileOutStream;
109 }
110
111 void ffileStream::DoDeleteOutStream()
112 {
113 ::wxRemoveFile(FILENAME_FFILEOUTSTREAM);
114 }
115
116 wxString ffileStream::GetInFileName() const
117 {
118 static bool bFileCreated = false;
119 if (!bFileCreated)
120 {
121 // Create the file only once
122 bFileCreated = true;
123
124 // Make sure we have a input file...
125 char buf[DATABUFFER_SIZE];
126 wxFFileOutputStream out(FILENAME_FFILEINSTREAM);
127
128 // Init the data buffer.
129 for (size_t i = 0; i < DATABUFFER_SIZE; i++)
130 buf[i] = (i % 0xFF);
131
132 // Save the data
133 out.Write(buf, DATABUFFER_SIZE);
134 }
135
136 return FILENAME_FFILEINSTREAM;
137 }
138
139 // Register the stream sub suite, by using some stream helper macro.
140 // Note: Don't forget to connect it to the base suite (See: bstream.cpp => StreamCase::suite())
141 STREAM_TEST_SUBSUITE_NAMED_REGISTRATION(ffileStream)