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
;
73 return wxAppConsole::OnInit();
76 // The table of command line options
78 void TestApp::OnInitCmdLine(wxCmdLineParser
& parser
)
80 wxAppConsole::OnInitCmdLine(parser
);
82 static const wxCmdLineEntryDesc cmdLineDesc
[] = {
83 { wxCMD_LINE_SWITCH
, _T("l"), _T("list"),
84 _T("list the test suites, do not run them"),
85 wxCMD_LINE_VAL_NONE
, 0 },
86 { wxCMD_LINE_SWITCH
, _T("L"), _T("longlist"),
87 _T("list the test cases, do not run them"),
88 wxCMD_LINE_VAL_NONE
, 0 },
89 { wxCMD_LINE_PARAM
, 0, 0, _T("REGISTRY"), wxCMD_LINE_VAL_STRING
,
90 wxCMD_LINE_PARAM_OPTIONAL
| wxCMD_LINE_PARAM_MULTIPLE
},
91 { wxCMD_LINE_NONE
, 0, 0, 0, wxCMD_LINE_VAL_NONE
, 0 }
94 parser
.SetDesc(cmdLineDesc
);
97 // Handle command line options
99 bool TestApp::OnCmdLineParsed(wxCmdLineParser
& parser
)
101 if (parser
.GetParamCount())
102 for (size_t i
= 0; i
< parser
.GetParamCount(); i
++)
103 m_registries
.push_back(string(parser
.GetParam(i
).mb_str()));
105 m_registries
.push_back("");
107 m_longlist
= parser
.Found(_T("longlist"));
108 m_list
= m_longlist
|| parser
.Found(_T("list"));
110 return wxAppConsole::OnCmdLineParsed(parser
);
119 for (size_t i
= 0; i
< m_registries
.size(); i
++) {
120 auto_ptr
<Test
> test(m_registries
[i
].empty() ?
121 TestFactoryRegistry::getRegistry().makeTest() :
122 TestFactoryRegistry::getRegistry(m_registries
[i
]).makeTest());
124 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
.get());
126 if (suite
&& suite
->countTestCases() == 0)
127 wxLogError(_T("No such test suite: %s"),
128 wxString(m_registries
[i
].c_str(), wxConvUTF8
).c_str());
132 runner
.addTest(test
.release());
135 runner
.setOutputter(new CompilerOutputter(&runner
.result(), cout
));
138 // Switch off logging unless --verbose
139 bool verbose
= wxLog::GetVerbose();
140 wxLog::EnableLogging(verbose
);
142 bool verbose
= false;
145 return ( m_list
|| runner
.run("", false, true, !verbose
) )
152 void TestApp::List(Test
*test
, const string
& parent
/*=""*/) const
154 TestSuite
*suite
= dynamic_cast<TestSuite
*>(test
);
158 // take the last component of the name and append to the parent
159 name
= test
->getName();
160 string::size_type i
= name
.find_last_of(".:");
161 if (i
!= string::npos
)
162 name
= name
.substr(i
+ 1);
163 name
= parent
+ "." + name
;
165 // drop the 1st component from the display and indent
167 string::size_type j
= i
= name
.find('.', 1);
168 while ((j
= name
.find('.', j
+ 1)) != string::npos
)
170 cout
<< " " << name
.substr(i
+ 1) << "\n";
173 typedef vector
<Test
*> Tests
;
174 typedef Tests::const_iterator Iter
;
176 const Tests
& tests
= suite
->getTests();
178 for (Iter it
= tests
.begin(); it
!= tests
.end(); ++it
)
181 else if (m_longlist
) {
182 string::size_type i
= 0;
183 while ((i
= parent
.find('.', i
+ 1)) != string::npos
)
185 cout
<< " " << test
->getName() << "\n";