]> git.saurik.com Git - wxWidgets.git/blame - tests/test.cpp
allow using wxTaskBarIcon under Win95 by loading Shell_NotifyIcon() dynamically ...
[wxWidgets.git] / tests / test.cpp
CommitLineData
670ec357
VS
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: wxWidgets licence
8///////////////////////////////////////////////////////////////////////////////
9
8899b155
RN
10// For compilers that support precompilation, includes "wx/wx.h"
11// and "wx/cppunit.h"
12#include "testprec.h"
670ec357
VS
13
14#ifdef __BORLANDC__
15 #pragma hdrstop
16#endif
17
18// for all others, include the necessary headers
19#ifndef WX_PRECOMP
20 #include "wx/wx.h"
21#endif
22
23#include "wx/cmdline.h"
670ec357
VS
24#include <iostream>
25
3e5f6c1c
WS
26using CppUnit::Test;
27using CppUnit::TestSuite;
28using CppUnit::TestFactoryRegistry;
29using CppUnit::TextUi::TestRunner;
14dc53b2 30using CppUnit::CompilerOutputter;
3e5f6c1c
WS
31
32using std::string;
33using std::vector;
34using std::auto_ptr;
35using std::cout;
670ec357
VS
36
37// The application class
38//
39class TestApp : public wxAppConsole
40{
41public:
42 TestApp();
43
44 // standard overrides
45 void OnInitCmdLine(wxCmdLineParser& parser);
46 bool OnCmdLineParsed(wxCmdLineParser& parser);
47 bool OnInit();
48 int OnRun();
49
50private:
8dae9169 51 void List(Test *test, const string& parent = "") const;
670ec357
VS
52
53 // command lines options/parameters
54 bool m_list;
a81f3066
VS
55 bool m_longlist;
56 vector<string> m_registries;
670ec357
VS
57};
58
59IMPLEMENT_APP_CONSOLE(TestApp)
60
61TestApp::TestApp()
8dae9169
VS
62 : m_list(false),
63 m_longlist(false)
670ec357
VS
64{
65}
66
67// Init
68//
69bool TestApp::OnInit()
70{
71 cout << "Test program for wxWidgets\n"
3e5f6c1c 72 << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
9f7a07ab
VZ
73
74#if !wxUSE_WXVSNPRINTF
75 cout << "\n";
76 cout << "WARNING: VsnprintfTestCase will test the system vsnprintf() function\n";
77 cout << " instead of the wxWidgets wxVsnprintf_ implementation!" << std::endl;
78 cout << "\n";
79#endif
80
670ec357
VS
81 return wxAppConsole::OnInit();
82};
83
84// The table of command line options
85//
86void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
87{
88 wxAppConsole::OnInitCmdLine(parser);
89
90 static const wxCmdLineEntryDesc cmdLineDesc[] = {
aa3b041e
VZ
91 { wxCMD_LINE_SWITCH, "l", "list",
92 "list the test suites, do not run them",
a81f3066 93 wxCMD_LINE_VAL_NONE, 0 },
aa3b041e
VZ
94 { wxCMD_LINE_SWITCH, "L", "longlist",
95 "list the test cases, do not run them",
670ec357 96 wxCMD_LINE_VAL_NONE, 0 },
aa3b041e 97 { wxCMD_LINE_PARAM, NULL, NULL, "REGISTRY", wxCMD_LINE_VAL_STRING,
a81f3066 98 wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
aa3b041e 99 wxCMD_LINE_DESC_END
670ec357
VS
100 };
101
102 parser.SetDesc(cmdLineDesc);
103}
104
105// Handle command line options
106//
107bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser)
108{
a81f3066
VS
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()));
112 else
113 m_registries.push_back("");
3e5f6c1c 114
a81f3066
VS
115 m_longlist = parser.Found(_T("longlist"));
116 m_list = m_longlist || parser.Found(_T("list"));
670ec357
VS
117
118 return wxAppConsole::OnCmdLineParsed(parser);
119}
120
121// Run
122//
123int TestApp::OnRun()
124{
3e5f6c1c 125 TestRunner runner;
a81f3066
VS
126
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());
131
132 TestSuite *suite = dynamic_cast<TestSuite*>(test.get());
133
134 if (suite && suite->countTestCases() == 0)
135 wxLogError(_T("No such test suite: %s"),
136 wxString(m_registries[i].c_str(), wxConvUTF8).c_str());
137 else if (m_list)
138 List(test.get());
139 else
140 runner.addTest(test.release());
670ec357 141 }
a81f3066 142
14dc53b2
MW
143 runner.setOutputter(new CompilerOutputter(&runner.result(), cout));
144
86ca2b4c 145#if wxUSE_LOG
a81f3066 146 // Switch off logging unless --verbose
3e5f6c1c
WS
147 bool verbose = wxLog::GetVerbose();
148 wxLog::EnableLogging(verbose);
86ca2b4c 149#else
3e5f6c1c
WS
150 bool verbose = false;
151#endif
152
153 return ( m_list || runner.run("", false, true, !verbose) )
154 ? EXIT_SUCCESS
155 : EXIT_FAILURE;
670ec357
VS
156}
157
158// List the tests
159//
8dae9169 160void TestApp::List(Test *test, const string& parent /*=""*/) const
670ec357 161{
670ec357 162 TestSuite *suite = dynamic_cast<TestSuite*>(test);
8dae9169
VS
163 string name;
164
bc10103e 165 if (suite) {
8dae9169
VS
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(".:");
f44eaed6
RN
169 if (i != string::npos)
170 name = name.substr(i + 1);
171 name = parent + "." + name;
8dae9169
VS
172
173 // drop the 1st component from the display and indent
174 if (parent != "") {
175 string::size_type j = i = name.find('.', 1);
176 while ((j = name.find('.', j + 1)) != string::npos)
177 cout << " ";
178 cout << " " << name.substr(i + 1) << "\n";
179 }
a81f3066 180
f69577be 181 typedef vector<Test*> Tests;
670ec357
VS
182 typedef Tests::const_iterator Iter;
183
f69577be 184 const Tests& tests = suite->getTests();
670ec357
VS
185
186 for (Iter it = tests.begin(); it != tests.end(); ++it)
8dae9169 187 List(*it, name);
670ec357 188 }
bc10103e
VS
189 else if (m_longlist) {
190 string::size_type i = 0;
191 while ((i = parent.find('.', i + 1)) != string::npos)
192 cout << " ";
193 cout << " " << test->getName() << "\n";
194 }
670ec357 195}