]> git.saurik.com Git - wxWidgets.git/blame - tests/test.cpp
comment/explain a lot
[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
10#if defined(__GNUG__) && !defined(__APPLE__)
11 #pragma implementation
12 #pragma interface
13#endif
14
15// For compilers that support precompilation, includes "wx/wx.h".
16#include "wx/wxprec.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/cmdline.h"
28#include "wx/cppunit.h"
29#include <iostream>
30
3e5f6c1c
WS
31using CppUnit::Test;
32using CppUnit::TestSuite;
33using CppUnit::TestFactoryRegistry;
34using CppUnit::TextUi::TestRunner;
35
36using std::string;
37using std::vector;
38using std::auto_ptr;
39using std::cout;
670ec357
VS
40
41// The application class
42//
43class TestApp : public wxAppConsole
44{
45public:
46 TestApp();
47
48 // standard overrides
49 void OnInitCmdLine(wxCmdLineParser& parser);
50 bool OnCmdLineParsed(wxCmdLineParser& parser);
51 bool OnInit();
52 int OnRun();
53
54private:
8dae9169 55 void List(Test *test, const string& parent = "") const;
670ec357
VS
56
57 // command lines options/parameters
58 bool m_list;
a81f3066
VS
59 bool m_longlist;
60 vector<string> m_registries;
670ec357
VS
61};
62
63IMPLEMENT_APP_CONSOLE(TestApp)
64
65TestApp::TestApp()
8dae9169
VS
66 : m_list(false),
67 m_longlist(false)
670ec357
VS
68{
69}
70
71// Init
72//
73bool TestApp::OnInit()
74{
75 cout << "Test program for wxWidgets\n"
3e5f6c1c 76 << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
670ec357
VS
77 return wxAppConsole::OnInit();
78};
79
80// The table of command line options
81//
82void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
83{
84 wxAppConsole::OnInitCmdLine(parser);
85
86 static const wxCmdLineEntryDesc cmdLineDesc[] = {
87 { wxCMD_LINE_SWITCH, _T("l"), _T("list"),
a81f3066
VS
88 _T("list the test suites, do not run them"),
89 wxCMD_LINE_VAL_NONE, 0 },
90 { wxCMD_LINE_SWITCH, _T("L"), _T("longlist"),
91 _T("list the test cases, do not run them"),
670ec357
VS
92 wxCMD_LINE_VAL_NONE, 0 },
93 { wxCMD_LINE_PARAM, 0, 0, _T("REGISTRY"), wxCMD_LINE_VAL_STRING,
a81f3066 94 wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
670ec357
VS
95 { wxCMD_LINE_NONE , 0, 0, 0, wxCMD_LINE_VAL_NONE, 0 }
96 };
97
98 parser.SetDesc(cmdLineDesc);
99}
100
101// Handle command line options
102//
103bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser)
104{
a81f3066
VS
105 if (parser.GetParamCount())
106 for (size_t i = 0; i < parser.GetParamCount(); i++)
107 m_registries.push_back(string(parser.GetParam(i).mb_str()));
108 else
109 m_registries.push_back("");
3e5f6c1c 110
a81f3066
VS
111 m_longlist = parser.Found(_T("longlist"));
112 m_list = m_longlist || parser.Found(_T("list"));
670ec357
VS
113
114 return wxAppConsole::OnCmdLineParsed(parser);
115}
116
dd65d8c8 117#include "wx/uri.h"
670ec357
VS
118// Run
119//
120int TestApp::OnRun()
121{
3e5f6c1c 122 TestRunner runner;
a81f3066
VS
123
124 for (size_t i = 0; i < m_registries.size(); i++) {
125 auto_ptr<Test> test(m_registries[i].empty() ?
126 TestFactoryRegistry::getRegistry().makeTest() :
127 TestFactoryRegistry::getRegistry(m_registries[i]).makeTest());
128
129 TestSuite *suite = dynamic_cast<TestSuite*>(test.get());
130
131 if (suite && suite->countTestCases() == 0)
132 wxLogError(_T("No such test suite: %s"),
133 wxString(m_registries[i].c_str(), wxConvUTF8).c_str());
134 else if (m_list)
135 List(test.get());
136 else
137 runner.addTest(test.release());
670ec357 138 }
a81f3066 139
86ca2b4c 140#if wxUSE_LOG
a81f3066 141 // Switch off logging unless --verbose
3e5f6c1c
WS
142 bool verbose = wxLog::GetVerbose();
143 wxLog::EnableLogging(verbose);
86ca2b4c 144#else
3e5f6c1c
WS
145 bool verbose = false;
146#endif
147
148 return ( m_list || runner.run("", false, true, !verbose) )
149 ? EXIT_SUCCESS
150 : EXIT_FAILURE;
670ec357
VS
151}
152
153// List the tests
154//
8dae9169 155void TestApp::List(Test *test, const string& parent /*=""*/) const
670ec357 156{
670ec357 157 TestSuite *suite = dynamic_cast<TestSuite*>(test);
8dae9169
VS
158 string name;
159
bc10103e 160 if (suite) {
8dae9169
VS
161 // take the last component of the name and append to the parent
162 name = test->getName();
163 string::size_type i = name.find_last_of(".:");
164 name = parent + "." + (i != string::npos ? name.substr(i + 1) : name);
165
166 // drop the 1st component from the display and indent
167 if (parent != "") {
168 string::size_type j = i = name.find('.', 1);
169 while ((j = name.find('.', j + 1)) != string::npos)
170 cout << " ";
171 cout << " " << name.substr(i + 1) << "\n";
172 }
a81f3066 173
f69577be 174 typedef vector<Test*> Tests;
670ec357
VS
175 typedef Tests::const_iterator Iter;
176
f69577be 177 const Tests& tests = suite->getTests();
670ec357
VS
178
179 for (Iter it = tests.begin(); it != tests.end(); ++it)
8dae9169 180 List(*it, name);
670ec357 181 }
bc10103e
VS
182 else if (m_longlist) {
183 string::size_type i = 0;
184 while ((i = parent.find('.', i + 1)) != string::npos)
185 cout << " ";
186 cout << " " << test->getName() << "\n";
187 }
670ec357 188}