1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: Test program for wxWidgets
4 // Author: Mike Wetherell
6 // Copyright: (c) 2004 Mike Wetherell
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/beforestd.h"
25 #pragma warning(disable:4100)
27 #include <cppunit/TestListener.h>
29 #pragma warning(default:4100)
31 #include <cppunit/Test.h>
32 #include <cppunit/TestResult.h>
33 #include "wx/afterstd.h"
35 #include "wx/cmdline.h"
39 using CppUnit::TestSuite
;
40 using CppUnit::TestFactoryRegistry
;
43 // Displays the test name before starting to execute it: this helps with
44 // diagnosing where exactly does a test crash or hang when/if it does.
45 class DetailListener
: public CppUnit::TestListener
48 DetailListener(bool doTiming
= false):
49 CppUnit::TestListener(),
54 virtual void startTest(CppUnit::Test
*test
)
56 std::cout
<< test
->getName () << " ";
60 virtual void endTest(CppUnit::Test
* WXUNUSED(test
))
64 std::cout
<< " (in "<< m_watch
.Time() << " ms )";
76 typedef wxApp TestAppBase
;
78 typedef wxAppConsole TestAppBase
;
81 // The application class
83 class TestApp
: public TestAppBase
89 virtual void OnInitCmdLine(wxCmdLineParser
& parser
);
90 virtual bool OnCmdLineParsed(wxCmdLineParser
& parser
);
91 virtual bool OnInit();
95 // used by events propagation test
96 virtual int FilterEvent(wxEvent
& event
);
97 virtual bool ProcessEvent(wxEvent
& event
);
99 void SetFilterEventFunc(FilterEventFunc f
) { m_filterEventFunc
= f
; }
100 void SetProcessEventFunc(ProcessEventFunc f
) { m_processEventFunc
= f
; }
103 virtual void OnAssertFailure(const wxChar
*,
109 throw TestAssertFailure();
111 #endif // __WXDEBUG__
114 void List(Test
*test
, const string
& parent
= "") const;
116 // command lines options/parameters
121 vector
<string
> m_registries
;
123 // event handling hooks
124 FilterEventFunc m_filterEventFunc
;
125 ProcessEventFunc m_processEventFunc
;
128 IMPLEMENT_APP_CONSOLE(TestApp
)
134 m_filterEventFunc
= NULL
;
135 m_processEventFunc
= NULL
;
140 bool TestApp::OnInit()
142 if ( !TestAppBase::OnInit() )
145 cout
<< "Test program for wxWidgets\n"
146 << "build: " << WX_BUILD_OPTIONS_SIGNATURE
<< std::endl
;
149 // create a hidden parent window to be used as parent for the GUI controls
150 new wxFrame(NULL
, wxID_ANY
, "Hidden wx test frame");
156 // The table of command line options
158 void TestApp::OnInitCmdLine(wxCmdLineParser
& parser
)
160 TestAppBase::OnInitCmdLine(parser
);
162 static const wxCmdLineEntryDesc cmdLineDesc
[] = {
163 { wxCMD_LINE_SWITCH
, "l", "list",
164 "list the test suites, do not run them",
165 wxCMD_LINE_VAL_NONE
, 0 },
166 { wxCMD_LINE_SWITCH
, "L", "longlist",
167 "list the test cases, do not run them",
168 wxCMD_LINE_VAL_NONE
, 0 },
169 { wxCMD_LINE_SWITCH
, "d", "detail",
170 "print the test case names, run them",
171 wxCMD_LINE_VAL_NONE
, 0 },
172 { wxCMD_LINE_SWITCH
, "t", "timing",
173 "print names and mesure running time of individual test, run them",
174 wxCMD_LINE_VAL_NONE
, 0 },
175 { wxCMD_LINE_PARAM
, NULL
, NULL
, "REGISTRY", wxCMD_LINE_VAL_STRING
,
176 wxCMD_LINE_PARAM_OPTIONAL
| wxCMD_LINE_PARAM_MULTIPLE
},
180 parser
.SetDesc(cmdLineDesc
);
183 // Handle command line options
185 bool TestApp::OnCmdLineParsed(wxCmdLineParser
& parser
)
187 if (parser
.GetParamCount())
188 for (size_t i
= 0; i
< parser
.GetParamCount(); i
++)
189 m_registries
.push_back(string(parser
.GetParam(i
).mb_str()));
191 m_registries
.push_back("");
193 m_longlist
= parser
.Found(_T("longlist"));
194 m_list
= m_longlist
|| parser
.Found(_T("list"));
195 m_timing
= parser
.Found(_T("timing"));
196 m_detail
= !m_timing
&& parser
.Found(_T("detail"));
198 return TestAppBase::OnCmdLineParsed(parser
);
202 int TestApp::FilterEvent(wxEvent
& event
)
204 if ( m_filterEventFunc
)
205 return (*m_filterEventFunc
)(event
);
207 return TestAppBase::FilterEvent(event
);
210 bool TestApp::ProcessEvent(wxEvent
& event
)
212 if ( m_processEventFunc
)
213 return (*m_processEventFunc
)(event
);
215 return TestAppBase::ProcessEvent(event
);
218 extern void SetFilterEventFunc(FilterEventFunc func
)
220 wxGetApp().SetFilterEventFunc(func
);
223 extern void SetProcessEventFunc(ProcessEventFunc func
)
225 wxGetApp().SetProcessEventFunc(func
);
232 CppUnit::TextTestRunner runner
;
234 for (size_t i
= 0; i
< m_registries
.size(); i
++) {
235 auto_ptr
<Test
> test(m_registries
[i
].empty() ?
236 TestFactoryRegistry::getRegistry().makeTest() :
237 TestFactoryRegistry::getRegistry(m_registries
[i
]).makeTest());
239 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
.get());
241 if (suite
&& suite
->countTestCases() == 0)
242 wxLogError(_T("No such test suite: %s"),
243 wxString(m_registries
[i
].c_str(), wxConvUTF8
).c_str());
247 runner
.addTest(test
.release());
253 runner
.setOutputter(new CppUnit::CompilerOutputter(&runner
.result(), cout
));
256 // Switch off logging unless --verbose
257 bool verbose
= wxLog::GetVerbose();
258 wxLog::EnableLogging(verbose
);
260 bool verbose
= false;
264 // (http://sf.net/tracker/index.php?func=detail&aid=1649369&group_id=11795&atid=111795)
265 // in some versions of cppunit: they write progress dots to cout (and not
266 // cerr) and don't flush it so all the dots appear at once at the end which
267 // is not very useful so unbuffer cout to work around this
268 cout
.setf(ios::unitbuf
);
270 // add detail listener if needed
271 DetailListener
detailListener(m_timing
);
272 if ( m_detail
|| m_timing
)
273 runner
.eventManager().addListener(&detailListener
);
275 return runner
.run("", false, true, !verbose
) ? EXIT_SUCCESS
: EXIT_FAILURE
;
278 int TestApp::OnExit()
281 delete GetTopWindow();
289 void TestApp::List(Test
*test
, const string
& parent
/*=""*/) const
291 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
);
295 // take the last component of the name and append to the parent
296 name
= test
->getName();
297 string::size_type i
= name
.find_last_of(".:");
298 if (i
!= string::npos
)
299 name
= name
.substr(i
+ 1);
300 name
= parent
+ "." + name
;
302 // drop the 1st component from the display and indent
304 string::size_type j
= i
= name
.find('.', 1);
305 while ((j
= name
.find('.', j
+ 1)) != string::npos
)
307 cout
<< " " << name
.substr(i
+ 1) << "\n";
310 typedef vector
<Test
*> Tests
;
311 typedef Tests::const_iterator Iter
;
313 const Tests
& tests
= suite
->getTests();
315 for (Iter it
= tests
.begin(); it
!= tests
.end(); ++it
)
318 else if (m_longlist
) {
319 string::size_type i
= 0;
320 while ((i
= parent
.find('.', i
+ 1)) != string::npos
)
322 cout
<< " " << test
->getName() << "\n";