Change the return code of the test program so that aborting a test with an
[wxWidgets.git] / tests / test.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: test.cpp
3 // Purpose: Test program for wxWidgets
4 // Author: Mike Wetherell
5 // RCS-ID: $Id$
6 // Copyright: (c) 2004 Mike Wetherell
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
9
10 // ----------------------------------------------------------------------------
11 // headers
12 // ----------------------------------------------------------------------------
13
14 // For compilers that support precompilation, includes "wx/wx.h"
15 // and "wx/cppunit.h"
16 #include "testprec.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/beforestd.h"
28 #ifdef __VISUALC__
29 #pragma warning(disable:4100)
30 #endif
31
32 #include <cppunit/TestListener.h>
33 #include <cppunit/Protector.h>
34 #include <cppunit/Test.h>
35 #include <cppunit/TestResult.h>
36 #include <cppunit/TestFailure.h>
37 #include <cppunit/TestResultCollector.h>
38
39 #ifdef __VISUALC__
40 #pragma warning(default:4100)
41 #endif
42 #include "wx/afterstd.h"
43
44 #include "wx/cmdline.h"
45 #include <exception>
46 #include <iostream>
47
48 #ifdef __WXMSW__
49 #include "wx/msw/msvcrt.h"
50 #endif
51
52 #ifdef __WXOSX__
53 #include "wx/osx/private.h"
54 #endif
55
56 #if wxUSE_GUI
57 #include "testableframe.h"
58 #endif
59
60 #include "wx/socket.h"
61 #include "wx/evtloop.h"
62
63 using namespace std;
64
65 using CppUnit::Test;
66 using CppUnit::TestSuite;
67 using CppUnit::TestFactoryRegistry;
68
69
70 // ----------------------------------------------------------------------------
71 // helper classes
72 // ----------------------------------------------------------------------------
73
74 // exception class for MSVC debug CRT assertion failures
75 #ifdef wxUSE_VC_CRTDBG
76
77 struct CrtAssertFailure
78 {
79 CrtAssertFailure(const char *message) : m_msg(message) { }
80
81 const wxString m_msg;
82
83 wxDECLARE_NO_ASSIGN_CLASS(CrtAssertFailure);
84 };
85
86 #endif // wxUSE_VC_CRTDBG
87
88 #if wxDEBUG_LEVEL
89
90 static wxString FormatAssertMessage(const wxString& file,
91 int line,
92 const wxString& func,
93 const wxString& cond,
94 const wxString& msg)
95 {
96 wxString str;
97 str << "wxWidgets assert: " << cond << " failed "
98 "at " << file << ":" << line << " in " << func
99 << " with message '" << msg << "'";
100 return str;
101 }
102
103 static void TestAssertHandler(const wxString& file,
104 int line,
105 const wxString& func,
106 const wxString& cond,
107 const wxString& msg)
108 {
109 // Determine whether we can safely throw an exception to just make the test
110 // fail or whether we need to abort (in this case "msg" will contain the
111 // explanation why did we decide to do it).
112 wxString abortReason;
113 if ( !wxIsMainThread() )
114 {
115 // Exceptions thrown from worker threads are not caught currently and
116 // so we'd just die without any useful information -- abort instead.
117 abortReason = "in a worker thread";
118 }
119 else if ( uncaught_exception() )
120 {
121 // Throwing while already handling an exception would result in
122 // terminate() being called and we wouldn't get any useful information
123 // about why the test failed then.
124 abortReason = "while handling an exception";
125 }
126 else // Can "safely" throw from here.
127 {
128 throw TestAssertFailure(file, line, func, cond, msg);
129 }
130
131 wxFprintf(stderr, "%s %s -- aborting.",
132 FormatAssertMessage(file, line, func, cond, msg),
133 abortReason);
134 fflush(stderr);
135 _exit(-1);
136 }
137
138 #endif // wxDEBUG_LEVEL
139
140 // this function should only be called from a catch clause
141 static string GetExceptionMessage()
142 {
143 wxString msg;
144
145 try
146 {
147 throw;
148 }
149 #if wxDEBUG_LEVEL
150 catch ( TestAssertFailure& e )
151 {
152 msg << FormatAssertMessage(e.m_file, e.m_line, e.m_func,
153 e.m_cond, e.m_msg);
154 }
155 #endif // wxDEBUG_LEVEL
156 #ifdef wxUSE_VC_CRTDBG
157 catch ( CrtAssertFailure& e )
158 {
159 msg << "CRT assert failure: " << e.m_msg;
160 }
161 #endif // wxUSE_VC_CRTDBG
162 catch ( std::exception& e )
163 {
164 msg << "std::exception: " << e.what();
165 }
166 catch ( ... )
167 {
168 msg = "Unknown exception caught.";
169 }
170
171 return string(msg.mb_str());
172 }
173
174 // Protector adding handling of wx-specific (this includes MSVC debug CRT in
175 // this context) exceptions
176 class wxUnitTestProtector : public CppUnit::Protector
177 {
178 public:
179 virtual bool protect(const CppUnit::Functor &functor,
180 const CppUnit::ProtectorContext& context)
181 {
182 try
183 {
184 return functor();
185 }
186 catch ( std::exception& )
187 {
188 // cppunit deals with the standard exceptions itself, let it do as
189 // it output more details (especially for std::exception-derived
190 // CppUnit::Exception) than we do
191 throw;
192 }
193 catch ( ... )
194 {
195 reportError(context, CppUnit::Message("Uncaught exception",
196 GetExceptionMessage()));
197 }
198
199 return false;
200 }
201 };
202
203 // Displays the test name before starting to execute it: this helps with
204 // diagnosing where exactly does a test crash or hang when/if it does.
205 class DetailListener : public CppUnit::TestListener
206 {
207 public:
208 DetailListener(bool doTiming = false):
209 CppUnit::TestListener(),
210 m_timing(doTiming)
211 {
212 }
213
214 virtual void startTest(CppUnit::Test *test)
215 {
216 wxPrintf(" %-60s ", test->getName());
217 m_result = RESULT_OK;
218 m_watch.Start();
219 }
220
221 virtual void addFailure(const CppUnit::TestFailure& failure)
222 {
223 m_result = failure.isError() ? RESULT_ERROR : RESULT_FAIL;
224 }
225
226 virtual void endTest(CppUnit::Test * WXUNUSED(test))
227 {
228 m_watch.Pause();
229 wxPrintf(GetResultStr(m_result));
230 if (m_timing)
231 wxPrintf(" %6ld ms", m_watch.Time());
232 wxPrintf("\n");
233 }
234
235 protected :
236 enum ResultType
237 {
238 RESULT_OK = 0,
239 RESULT_FAIL,
240 RESULT_ERROR,
241 RESULT_MAX
242 };
243
244 wxString GetResultStr(ResultType type) const
245 {
246 static const char *resultTypeNames[] =
247 {
248 " OK",
249 "FAIL",
250 " ERR"
251 };
252
253 wxCOMPILE_TIME_ASSERT( WXSIZEOF(resultTypeNames) == RESULT_MAX,
254 ResultTypeNamesMismatch );
255
256 return resultTypeNames[type];
257 }
258
259 bool m_timing;
260 wxStopWatch m_watch;
261 ResultType m_result;
262 };
263
264 #if wxUSE_GUI
265 typedef wxApp TestAppBase;
266 #else
267 typedef wxAppConsole TestAppBase;
268 #endif
269
270 // The application class
271 //
272 class TestApp : public TestAppBase
273 {
274 public:
275 TestApp();
276
277 // standard overrides
278 virtual void OnInitCmdLine(wxCmdLineParser& parser);
279 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
280 virtual bool OnInit();
281 virtual int OnRun();
282 virtual int OnExit();
283
284 // used by events propagation test
285 virtual int FilterEvent(wxEvent& event);
286 virtual bool ProcessEvent(wxEvent& event);
287
288 void SetFilterEventFunc(FilterEventFunc f) { m_filterEventFunc = f; }
289 void SetProcessEventFunc(ProcessEventFunc f) { m_processEventFunc = f; }
290
291 private:
292 void List(Test *test, const string& parent = "") const;
293
294 // call List() if m_list or runner.addTest() otherwise
295 void AddTest(CppUnit::TestRunner& runner, Test *test)
296 {
297 if (m_list)
298 List(test);
299 else
300 runner.addTest(test);
301 }
302
303 // command lines options/parameters
304 bool m_list;
305 bool m_longlist;
306 bool m_detail;
307 bool m_timing;
308 wxArrayString m_registries;
309 wxLocale *m_locale;
310
311 // event loop for GUI tests
312 wxEventLoop* m_eventloop;
313
314 // event handling hooks
315 FilterEventFunc m_filterEventFunc;
316 ProcessEventFunc m_processEventFunc;
317 };
318
319 IMPLEMENT_APP_NO_MAIN(TestApp)
320
321
322 // ----------------------------------------------------------------------------
323 // global functions
324 // ----------------------------------------------------------------------------
325
326 #ifdef wxUSE_VC_CRTDBG
327
328 static int TestCrtReportHook(int reportType, char *message, int *)
329 {
330 if ( reportType != _CRT_ASSERT )
331 return FALSE;
332
333 throw CrtAssertFailure(message);
334 }
335
336 #endif // wxUSE_VC_CRTDBG
337
338 int main(int argc, char **argv)
339 {
340 // tests can be ran non-interactively so make sure we don't show any assert
341 // dialog boxes -- neither our own nor from MSVC debug CRT -- which would
342 // prevent them from completing
343
344 #if wxDEBUG_LEVEL
345 wxSetAssertHandler(TestAssertHandler);
346 #endif // wxDEBUG_LEVEL
347
348 #ifdef wxUSE_VC_CRTDBG
349 _CrtSetReportHook(TestCrtReportHook);
350 #endif // wxUSE_VC_CRTDBG
351
352 try
353 {
354 return wxEntry(argc, argv);
355 }
356 catch ( ... )
357 {
358 cerr << "\n" << GetExceptionMessage() << endl;
359 }
360
361 return -1;
362 }
363
364 extern void SetFilterEventFunc(FilterEventFunc func)
365 {
366 wxGetApp().SetFilterEventFunc(func);
367 }
368
369 extern void SetProcessEventFunc(ProcessEventFunc func)
370 {
371 wxGetApp().SetProcessEventFunc(func);
372 }
373
374 extern bool IsNetworkAvailable()
375 {
376 // NOTE: we could use wxDialUpManager here if it was in wxNet; since it's in
377 // wxCore we use a simple rough test:
378
379 wxSocketBase::Initialize();
380
381 wxIPV4address addr;
382 if (!addr.Hostname("www.google.com") || !addr.Service("www"))
383 {
384 wxSocketBase::Shutdown();
385 return false;
386 }
387
388 wxSocketClient sock;
389 sock.SetTimeout(10); // 10 secs
390 bool online = sock.Connect(addr);
391
392 wxSocketBase::Shutdown();
393
394 return online;
395 }
396
397 // helper of OnRun(): gets the test with the given name, returning NULL (and
398 // not an empty test suite) if there is no such test
399 static Test *GetTestByName(const wxString& name)
400 {
401 Test *
402 test = TestFactoryRegistry::getRegistry(string(name.mb_str())).makeTest();
403 if ( test )
404 {
405 TestSuite * const suite = dynamic_cast<TestSuite *>(test);
406 if ( !suite || !suite->countTestCases() )
407 {
408 // it's a bogus test, don't use it
409 delete test;
410 test = NULL;
411 }
412 }
413
414 return test;
415 }
416
417
418 // ----------------------------------------------------------------------------
419 // TestApp
420 // ----------------------------------------------------------------------------
421
422 TestApp::TestApp()
423 : m_list(false),
424 m_longlist(false)
425 {
426 m_filterEventFunc = NULL;
427 m_processEventFunc = NULL;
428
429 m_locale = NULL;
430 m_eventloop = NULL;
431 }
432
433 // Init
434 //
435 bool TestApp::OnInit()
436 {
437 if ( !TestAppBase::OnInit() )
438 return false;
439
440 #if wxUSE_GUI
441 cout << "Test program for wxWidgets GUI features\n"
442 #else
443 cout << "Test program for wxWidgets non-GUI features\n"
444 #endif
445 << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
446
447 #if wxUSE_GUI
448 // create a hidden parent window to be used as parent for the GUI controls
449 wxTestableFrame* frame = new wxTestableFrame();
450 frame->Show();
451
452 m_eventloop = new wxEventLoop;
453 wxEventLoop::SetActive(m_eventloop);
454 #endif // wxUSE_GUI
455
456 return true;
457 }
458
459 // The table of command line options
460 //
461 void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
462 {
463 TestAppBase::OnInitCmdLine(parser);
464
465 static const wxCmdLineEntryDesc cmdLineDesc[] = {
466 { wxCMD_LINE_SWITCH, "l", "list",
467 "list the test suites, do not run them",
468 wxCMD_LINE_VAL_NONE, 0 },
469 { wxCMD_LINE_SWITCH, "L", "longlist",
470 "list the test cases, do not run them",
471 wxCMD_LINE_VAL_NONE, 0 },
472 { wxCMD_LINE_SWITCH, "d", "detail",
473 "print the test case names, run them",
474 wxCMD_LINE_VAL_NONE, 0 },
475 { wxCMD_LINE_SWITCH, "t", "timing",
476 "print names and measure running time of individual test, run them",
477 wxCMD_LINE_VAL_NONE, 0 },
478 { wxCMD_LINE_OPTION, "", "locale",
479 "locale to use when running the program",
480 wxCMD_LINE_VAL_STRING, 0 },
481 { wxCMD_LINE_PARAM, NULL, NULL, "REGISTRY", wxCMD_LINE_VAL_STRING,
482 wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
483 wxCMD_LINE_DESC_END
484 };
485
486 parser.SetDesc(cmdLineDesc);
487 }
488
489 // Handle command line options
490 //
491 bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser)
492 {
493 if (parser.GetParamCount())
494 {
495 for (size_t i = 0; i < parser.GetParamCount(); i++)
496 m_registries.push_back(parser.GetParam(i));
497 }
498
499 m_longlist = parser.Found("longlist");
500 m_list = m_longlist || parser.Found("list");
501 m_timing = parser.Found("timing");
502 m_detail = !m_timing && parser.Found("detail");
503
504 wxString loc;
505 if ( parser.Found("locale", &loc) )
506 {
507 const wxLanguageInfo * const info = wxLocale::FindLanguageInfo(loc);
508 if ( !info )
509 {
510 cerr << "Locale \"" << string(loc.mb_str()) << "\" is unknown.\n";
511 return false;
512 }
513
514 m_locale = new wxLocale(info->Language);
515 if ( !m_locale->IsOk() )
516 {
517 cerr << "Using locale \"" << string(loc.mb_str()) << "\" failed.\n";
518 return false;
519 }
520 }
521
522 return TestAppBase::OnCmdLineParsed(parser);
523 }
524
525 // Event handling
526 int TestApp::FilterEvent(wxEvent& event)
527 {
528 if ( m_filterEventFunc )
529 return (*m_filterEventFunc)(event);
530
531 return TestAppBase::FilterEvent(event);
532 }
533
534 bool TestApp::ProcessEvent(wxEvent& event)
535 {
536 if ( m_processEventFunc )
537 return (*m_processEventFunc)(event);
538
539 return TestAppBase::ProcessEvent(event);
540 }
541
542 // Run
543 //
544 int TestApp::OnRun()
545 {
546 #if wxUSE_GUI
547 #ifdef __WXOSX__
548 // make sure there's always an autorelease pool ready
549 wxMacAutoreleasePool autoreleasepool;
550 #endif
551 #endif
552
553 #if wxUSE_LOG
554 // Switch off logging unless --verbose
555 bool verbose = wxLog::GetVerbose();
556 wxLog::EnableLogging(verbose);
557 #else
558 bool verbose = false;
559 #endif
560
561 CppUnit::TextTestRunner runner;
562
563 if ( m_registries.empty() )
564 {
565 // run or list all tests which use the CPPUNIT_TEST_SUITE_REGISTRATION() macro
566 // (i.e. those registered in the "All tests" registry); if there are other
567 // tests not registered with the CPPUNIT_TEST_SUITE_REGISTRATION() macro
568 // then they won't be listed/run!
569 AddTest(runner, TestFactoryRegistry::getRegistry().makeTest());
570
571 if (m_list)
572 {
573 cout << "\nNote that the list above is not complete as it doesn't include the \n";
574 cout << "tests disabled by default.\n";
575 }
576 }
577 else // run only the selected tests
578 {
579 for (size_t i = 0; i < m_registries.size(); i++)
580 {
581 const wxString reg = m_registries[i];
582 Test *test = GetTestByName(reg);
583
584 if ( !test && !reg.EndsWith("TestCase") )
585 {
586 test = GetTestByName(reg + "TestCase");
587 }
588
589 if ( !test )
590 {
591 cerr << "No such test suite: " << string(reg.mb_str()) << endl;
592 return 2;
593 }
594
595 AddTest(runner, test);
596 }
597 }
598
599 if ( m_list )
600 return EXIT_SUCCESS;
601
602 runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), cout));
603
604 // there is a bug
605 // (http://sf.net/tracker/index.php?func=detail&aid=1649369&group_id=11795&atid=111795)
606 // in some versions of cppunit: they write progress dots to cout (and not
607 // cerr) and don't flush it so all the dots appear at once at the end which
608 // is not very useful so unbuffer cout to work around this
609 cout.setf(ios::unitbuf);
610
611 // add detail listener if needed
612 DetailListener detailListener(m_timing);
613 if ( m_detail || m_timing )
614 runner.eventManager().addListener(&detailListener);
615
616 // finally ensure that we report our own exceptions nicely instead of
617 // giving "uncaught exception of unknown type" messages
618 runner.eventManager().pushProtector(new wxUnitTestProtector);
619
620 bool printProgress = !(verbose || m_detail || m_timing);
621 runner.run("", false, true, printProgress);
622
623 return runner.result().testFailures() == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
624 }
625
626 int TestApp::OnExit()
627 {
628 delete m_locale;
629
630 #if wxUSE_GUI
631 delete GetTopWindow();
632 wxEventLoop::SetActive(NULL);
633 delete m_eventloop;
634 #endif // wxUSE_GUI
635
636 return 0;
637 }
638
639 // List the tests
640 //
641 void TestApp::List(Test *test, const string& parent /*=""*/) const
642 {
643 TestSuite *suite = dynamic_cast<TestSuite*>(test);
644 string name;
645
646 if (suite) {
647 // take the last component of the name and append to the parent
648 name = test->getName();
649 string::size_type i = name.find_last_of(".:");
650 if (i != string::npos)
651 name = name.substr(i + 1);
652 name = parent + "." + name;
653
654 // drop the 1st component from the display and indent
655 if (parent != "") {
656 string::size_type j = i = name.find('.', 1);
657 while ((j = name.find('.', j + 1)) != string::npos)
658 cout << " ";
659 cout << " " << name.substr(i + 1) << "\n";
660 }
661
662 typedef vector<Test*> Tests;
663 typedef Tests::const_iterator Iter;
664
665 const Tests& tests = suite->getTests();
666
667 for (Iter it = tests.begin(); it != tests.end(); ++it)
668 List(*it, name);
669 }
670 else if (m_longlist) {
671 string::size_type i = 0;
672 while ((i = parent.find('.', i + 1)) != string::npos)
673 cout << " ";
674 cout << " " << test->getName() << "\n";
675 }
676 }