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