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/cmdline.h"
27 using CppUnit::TestSuite
;
28 using CppUnit::TestFactoryRegistry
;
29 using CppUnit::TextUi::TestRunner
;
30 using CppUnit::CompilerOutputter
;
37 // The application class
39 class TestApp
: public wxAppConsole
45 void OnInitCmdLine(wxCmdLineParser
& parser
);
46 bool OnCmdLineParsed(wxCmdLineParser
& parser
);
51 void List(Test
*test
, const string
& parent
= "") const;
53 // command lines options/parameters
56 vector
<string
> m_registries
;
59 IMPLEMENT_APP_CONSOLE(TestApp
)
69 bool TestApp::OnInit()
71 cout
<< "Test program for wxWidgets\n"
72 << "build: " << WX_BUILD_OPTIONS_SIGNATURE
<< std::endl
;
74 #if !wxUSE_WXVSNPRINTF
76 cout
<< "WARNING: VsnprintfTestCase will test the system vsnprintf() function\n";
77 cout
<< " instead of the wxWidgets wxVsnprintf_ implementation!" << std::endl
;
81 return wxAppConsole::OnInit();
84 // The table of command line options
86 void TestApp::OnInitCmdLine(wxCmdLineParser
& parser
)
88 wxAppConsole::OnInitCmdLine(parser
);
90 static const wxCmdLineEntryDesc cmdLineDesc
[] = {
91 { wxCMD_LINE_SWITCH
, _T("l"), _T("list"),
92 _T("list the test suites, do not run them"),
93 wxCMD_LINE_VAL_NONE
, 0 },
94 { wxCMD_LINE_SWITCH
, _T("L"), _T("longlist"),
95 _T("list the test cases, do not run them"),
96 wxCMD_LINE_VAL_NONE
, 0 },
97 { wxCMD_LINE_PARAM
, 0, 0, _T("REGISTRY"), wxCMD_LINE_VAL_STRING
,
98 wxCMD_LINE_PARAM_OPTIONAL
| wxCMD_LINE_PARAM_MULTIPLE
},
99 { wxCMD_LINE_NONE
, 0, 0, 0, wxCMD_LINE_VAL_NONE
, 0 }
102 parser
.SetDesc(cmdLineDesc
);
105 // Handle command line options
107 bool TestApp::OnCmdLineParsed(wxCmdLineParser
& parser
)
109 if (parser
.GetParamCount())
110 for (size_t i
= 0; i
< parser
.GetParamCount(); i
++)
111 m_registries
.push_back(string(parser
.GetParam(i
).mb_str()));
113 m_registries
.push_back("");
115 m_longlist
= parser
.Found(_T("longlist"));
116 m_list
= m_longlist
|| parser
.Found(_T("list"));
118 return wxAppConsole::OnCmdLineParsed(parser
);
127 for (size_t i
= 0; i
< m_registries
.size(); i
++) {
128 auto_ptr
<Test
> test(m_registries
[i
].empty() ?
129 TestFactoryRegistry::getRegistry().makeTest() :
130 TestFactoryRegistry::getRegistry(m_registries
[i
]).makeTest());
132 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
.get());
134 if (suite
&& suite
->countTestCases() == 0)
135 wxLogError(_T("No such test suite: %s"),
136 wxString(m_registries
[i
].c_str(), wxConvUTF8
).c_str());
140 runner
.addTest(test
.release());
143 runner
.setOutputter(new CompilerOutputter(&runner
.result(), cout
));
146 // Switch off logging unless --verbose
147 bool verbose
= wxLog::GetVerbose();
148 wxLog::EnableLogging(verbose
);
150 bool verbose
= false;
153 return ( m_list
|| runner
.run("", false, true, !verbose
) )
160 void TestApp::List(Test
*test
, const string
& parent
/*=""*/) const
162 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
);
166 // take the last component of the name and append to the parent
167 name
= test
->getName();
168 string::size_type i
= name
.find_last_of(".:");
169 if (i
!= string::npos
)
170 name
= name
.substr(i
+ 1);
171 name
= parent
+ "." + name
;
173 // drop the 1st component from the display and indent
175 string::size_type j
= i
= name
.find('.', 1);
176 while ((j
= name
.find('.', j
+ 1)) != string::npos
)
178 cout
<< " " << name
.substr(i
+ 1) << "\n";
181 typedef vector
<Test
*> Tests
;
182 typedef Tests::const_iterator Iter
;
184 const Tests
& tests
= suite
->getTests();
186 for (Iter it
= tests
.begin(); it
!= tests
.end(); ++it
)
189 else if (m_longlist
) {
190 string::size_type i
= 0;
191 while ((i
= parent
.find('.', i
+ 1)) != string::npos
)
193 cout
<< " " << test
->getName() << "\n";