]>
Commit | Line | Data |
---|---|---|
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 |
26 | using CppUnit::Test; |
27 | using CppUnit::TestSuite; | |
28 | using CppUnit::TestFactoryRegistry; | |
29 | using CppUnit::TextUi::TestRunner; | |
14dc53b2 | 30 | using CppUnit::CompilerOutputter; |
3e5f6c1c WS |
31 | |
32 | using std::string; | |
33 | using std::vector; | |
34 | using std::auto_ptr; | |
35 | using std::cout; | |
670ec357 VS |
36 | |
37 | // The application class | |
38 | // | |
39 | class TestApp : public wxAppConsole | |
40 | { | |
41 | public: | |
42 | TestApp(); | |
43 | ||
44 | // standard overrides | |
45 | void OnInitCmdLine(wxCmdLineParser& parser); | |
46 | bool OnCmdLineParsed(wxCmdLineParser& parser); | |
47 | bool OnInit(); | |
48 | int OnRun(); | |
49 | ||
50 | private: | |
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 | ||
59 | IMPLEMENT_APP_CONSOLE(TestApp) | |
60 | ||
61 | TestApp::TestApp() | |
8dae9169 VS |
62 | : m_list(false), |
63 | m_longlist(false) | |
670ec357 VS |
64 | { |
65 | } | |
66 | ||
67 | // Init | |
68 | // | |
69 | bool TestApp::OnInit() | |
70 | { | |
71 | cout << "Test program for wxWidgets\n" | |
3e5f6c1c | 72 | << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl; |
670ec357 VS |
73 | return wxAppConsole::OnInit(); |
74 | }; | |
75 | ||
76 | // The table of command line options | |
77 | // | |
78 | void TestApp::OnInitCmdLine(wxCmdLineParser& parser) | |
79 | { | |
80 | wxAppConsole::OnInitCmdLine(parser); | |
81 | ||
82 | static const wxCmdLineEntryDesc cmdLineDesc[] = { | |
83 | { wxCMD_LINE_SWITCH, _T("l"), _T("list"), | |
a81f3066 VS |
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"), | |
670ec357 VS |
88 | wxCMD_LINE_VAL_NONE, 0 }, |
89 | { wxCMD_LINE_PARAM, 0, 0, _T("REGISTRY"), wxCMD_LINE_VAL_STRING, | |
a81f3066 | 90 | wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE }, |
670ec357 VS |
91 | { wxCMD_LINE_NONE , 0, 0, 0, wxCMD_LINE_VAL_NONE, 0 } |
92 | }; | |
93 | ||
94 | parser.SetDesc(cmdLineDesc); | |
95 | } | |
96 | ||
97 | // Handle command line options | |
98 | // | |
99 | bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser) | |
100 | { | |
a81f3066 VS |
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())); | |
104 | else | |
105 | m_registries.push_back(""); | |
3e5f6c1c | 106 | |
a81f3066 VS |
107 | m_longlist = parser.Found(_T("longlist")); |
108 | m_list = m_longlist || parser.Found(_T("list")); | |
670ec357 VS |
109 | |
110 | return wxAppConsole::OnCmdLineParsed(parser); | |
111 | } | |
112 | ||
113 | // Run | |
114 | // | |
115 | int TestApp::OnRun() | |
116 | { | |
3e5f6c1c | 117 | TestRunner runner; |
a81f3066 VS |
118 | |
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()); | |
123 | ||
124 | TestSuite *suite = dynamic_cast<TestSuite*>(test.get()); | |
125 | ||
126 | if (suite && suite->countTestCases() == 0) | |
127 | wxLogError(_T("No such test suite: %s"), | |
128 | wxString(m_registries[i].c_str(), wxConvUTF8).c_str()); | |
129 | else if (m_list) | |
130 | List(test.get()); | |
131 | else | |
132 | runner.addTest(test.release()); | |
670ec357 | 133 | } |
a81f3066 | 134 | |
14dc53b2 MW |
135 | runner.setOutputter(new CompilerOutputter(&runner.result(), cout)); |
136 | ||
86ca2b4c | 137 | #if wxUSE_LOG |
a81f3066 | 138 | // Switch off logging unless --verbose |
3e5f6c1c WS |
139 | bool verbose = wxLog::GetVerbose(); |
140 | wxLog::EnableLogging(verbose); | |
86ca2b4c | 141 | #else |
3e5f6c1c WS |
142 | bool verbose = false; |
143 | #endif | |
144 | ||
145 | return ( m_list || runner.run("", false, true, !verbose) ) | |
146 | ? EXIT_SUCCESS | |
147 | : EXIT_FAILURE; | |
670ec357 VS |
148 | } |
149 | ||
150 | // List the tests | |
151 | // | |
8dae9169 | 152 | void TestApp::List(Test *test, const string& parent /*=""*/) const |
670ec357 | 153 | { |
670ec357 | 154 | TestSuite *suite = dynamic_cast<TestSuite*>(test); |
8dae9169 VS |
155 | string name; |
156 | ||
bc10103e | 157 | if (suite) { |
8dae9169 VS |
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(".:"); | |
f44eaed6 RN |
161 | if (i != string::npos) |
162 | name = name.substr(i + 1); | |
163 | name = parent + "." + name; | |
8dae9169 VS |
164 | |
165 | // drop the 1st component from the display and indent | |
166 | if (parent != "") { | |
167 | string::size_type j = i = name.find('.', 1); | |
168 | while ((j = name.find('.', j + 1)) != string::npos) | |
169 | cout << " "; | |
170 | cout << " " << name.substr(i + 1) << "\n"; | |
171 | } | |
a81f3066 | 172 | |
f69577be | 173 | typedef vector<Test*> Tests; |
670ec357 VS |
174 | typedef Tests::const_iterator Iter; |
175 | ||
f69577be | 176 | const Tests& tests = suite->getTests(); |
670ec357 VS |
177 | |
178 | for (Iter it = tests.begin(); it != tests.end(); ++it) | |
8dae9169 | 179 | List(*it, name); |
670ec357 | 180 | } |
bc10103e VS |
181 | else if (m_longlist) { |
182 | string::size_type i = 0; | |
183 | while ((i = parent.find('.', i + 1)) != string::npos) | |
184 | cout << " "; | |
185 | cout << " " << test->getName() << "\n"; | |
186 | } | |
670ec357 | 187 | } |