]> git.saurik.com Git - wxWidgets.git/blame - tests/misc/garbage.cpp
Fix install_name_tool calls in OS X "make install".
[wxWidgets.git] / tests / misc / garbage.cpp
CommitLineData
9e48b1f5
FM
1///////////////////////////////////////////////////////////////////////////////
2// Name: tests/misc/garbage.cpp
3// Purpose: test if loading garbage fails
4// Author: Francesco Montorsi
5// Created: 2009-01-10
9e48b1f5
FM
6// Copyright: (c) 2009 Francesco Montorsi
7///////////////////////////////////////////////////////////////////////////////
8
9// ----------------------------------------------------------------------------
10// headers
11// ----------------------------------------------------------------------------
12
13#include "testprec.h"
14
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
19#include "wx/filename.h"
20#include "wx/image.h"
21#include "wx/animate.h"
22#include "wx/mstream.h"
23#include "wx/dynlib.h"
24#include "wx/mediactrl.h"
25#include "wx/html/htmlwin.h"
26#include "wx/xrc/xmlres.h"
27
28#define GARBAGE_DATA_SIZE 1000000 // in bytes; ~ 1MB
29
30// ----------------------------------------------------------------------------
31// test class
32// ----------------------------------------------------------------------------
33
34class GarbageTestCase : public CppUnit::TestCase
35{
36public:
37 GarbageTestCase() { }
38
39private:
40 CPPUNIT_TEST_SUITE( GarbageTestCase );
41 CPPUNIT_TEST( LoadGarbage );
42 CPPUNIT_TEST_SUITE_END();
43
44 void LoadGarbage();
45 void DoLoadFile(const wxString& fullname);
46 void DoLoadStream(wxInputStream& stream);
47
48 DECLARE_NO_COPY_CLASS(GarbageTestCase)
49};
50
51// register in the unnamed registry so that these tests are run by default
52CPPUNIT_TEST_SUITE_REGISTRATION( GarbageTestCase );
53
e3778b4d 54// also include in its own registry so that these tests can be run alone
9e48b1f5
FM
55CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GarbageTestCase, "GarbageTestCase" );
56
57
58void GarbageTestCase::LoadGarbage()
59{
60 srand(1234);
61
62 wxInitAllImageHandlers();
63
64 for (size_t size = 1; size < GARBAGE_DATA_SIZE; size *= size+1)
65 {
66 // first, generate some garbage data
67 unsigned char *data = new unsigned char[size];
68 for (size_t i = 0; i < size; i++)
69 data[i] = rand();
70
71 // write it to a file
72 wxString garbagename = wxFileName::CreateTempFileName("garbage");
73 CPPUNIT_ASSERT( !garbagename.empty() );
74
75 wxFile garbage(garbagename, wxFile::write);
76 CPPUNIT_ASSERT( garbage.IsOpened() );
77
78 CPPUNIT_ASSERT( garbage.Write(data, size) == size );
79 garbage.Close();
80
81 // try to load it by name
82 DoLoadFile(garbagename);
83
84 // try to load it from a wxInputStream
85 wxMemoryInputStream stream(data, size);
86 DoLoadStream(stream);
87
88 wxDELETEA(data);
89 }
90}
91
92void GarbageTestCase::DoLoadFile(const wxString& fullname)
93{
ef57fb95
FM
94 int type;
95
9e48b1f5
FM
96 // test wxImage
97 wxImage img;
98 CPPUNIT_ASSERT( img.LoadFile(fullname) == false );
99 // test with the default wxBITMAP_TYPE_ANY
100
ef57fb95 101 for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
9e48b1f5
FM
102 CPPUNIT_ASSERT( img.LoadFile(fullname, (wxBitmapType)type) == false );
103 // test with all other possible wxBITMAP_TYPE_* flags
104
105 // test wxBitmap
106 wxBitmap bmp;
107 CPPUNIT_ASSERT( bmp.LoadFile(fullname) == false );
108 // test with the default wxBITMAP_TYPE_ANY
109
ef57fb95 110 for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
9e48b1f5
FM
111 CPPUNIT_ASSERT( bmp.LoadFile(fullname, (wxBitmapType)type) == false );
112 // test with all other possible wxBITMAP_TYPE_* flags
113
114 // test wxIcon
115 wxIcon icon;
116 CPPUNIT_ASSERT( icon.LoadFile(fullname) == false );
117 // test with the default wxICON_DEFAULT_TYPE
118
ef57fb95 119 for (type = wxBITMAP_TYPE_BMP; type < wxBITMAP_TYPE_ANY; type++)
9e48b1f5
FM
120 CPPUNIT_ASSERT( icon.LoadFile(fullname, (wxBitmapType)type) == false );
121 // test with all other possible wxBITMAP_TYPE_* flags
122
123
124 // test wxAnimation
125 wxAnimation anim;
126 CPPUNIT_ASSERT( anim.LoadFile(fullname) == false );
127 // test with the default wxANIMATION_TYPE_ANY
128
ef57fb95 129 for (type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
9e48b1f5
FM
130 CPPUNIT_ASSERT( anim.LoadFile(fullname, (wxAnimationType)type) == false );
131 // test with all other possible wxANIMATION_TYPE_* flags
132
133
134 // test wxDynamicLibrary
135 wxDynamicLibrary lib;
136 CPPUNIT_ASSERT( lib.Load(fullname) == false );
137 // test with the default wxANIMATION_TYPE_ANY
138/*
139#if wxUSE_MEDIACTRL
140 // test wxMediaCtrl
141 wxMediaCtrl *media = new wxMediaCtrl(wxTheApp->GetTopWindow());
142 CPPUNIT_ASSERT( media->Load(fullname) == false );
143#endif
144
145 // test wxHtmlWindow
146 wxHtmlWindow *htmlwin = new wxHtmlWindow(wxTheApp->GetTopWindow());
147 CPPUNIT_ASSERT( htmlwin->LoadFile(fullname) == false );
148 delete htmlwin;
149*/
150 // test wxXmlResource
f9ee3f47 151 CPPUNIT_ASSERT( wxXmlResource::Get()->Load(fullname) == false );
9e48b1f5
FM
152}
153
154void GarbageTestCase::DoLoadStream(wxInputStream& stream)
155{
ef57fb95
FM
156 int type;
157
9e48b1f5
FM
158 // NOTE: not all classes tested by DoLoadFile() supports loading
159 // from an input stream!
160
161 // test wxImage
162 wxImage img;
163 CPPUNIT_ASSERT( img.LoadFile(stream) == false );
164 // test with the default wxBITMAP_TYPE_ANY
165
ef57fb95 166 for (type = wxBITMAP_TYPE_INVALID+1; type < wxBITMAP_TYPE_ANY; type++)
9e48b1f5
FM
167 CPPUNIT_ASSERT( img.LoadFile(stream, (wxBitmapType)type) == false );
168 // test with all other possible wxBITMAP_TYPE_* flags
169
170
171 // test wxAnimation
172 wxAnimation anim;
173 CPPUNIT_ASSERT( anim.Load(stream) == false );
174 // test with the default wxANIMATION_TYPE_ANY
175
ef57fb95 176 for (type = wxANIMATION_TYPE_INVALID+1; type < wxANIMATION_TYPE_ANY; type++)
9e48b1f5
FM
177 CPPUNIT_ASSERT( anim.Load(stream, (wxAnimationType)type) == false );
178 // test with all other possible wxANIMATION_TYPE_* flags
179/*
180 // test wxHtmlWindow
181 wxHtmlWindow *htmlwin = new wxHtmlWindow(wxTheApp->GetTopWindow());
182 CPPUNIT_ASSERT( htmlwin->LoadFile(fullname) == false );
183 delete htmlwin;
184*/
185}
186