]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cppunit.h
3f74a8af746cd3e26366018f83af5cb5a9b9bd9c
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wrapper header for CppUnit headers
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2004 Vadim Zeitlin
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_CPPUNIT_H_
12 #define _WX_CPPUNIT_H_
14 ///////////////////////////////////////////////////////////////////////////////
15 // using CPPUNIT_TEST() macro results in this warning, disable it as there is
16 // no other way to get rid of it and it's not very useful anyhow
18 // typedef-name 'foo' used as synonym for class-name 'bar'
19 #pragma warning(disable:4097)
21 // unreachable code: we don't care about warnings in CppUnit headers
22 #pragma warning(disable:4702)
24 // 'id': identifier was truncated to 'num' characters in the debug info
25 #pragma warning(disable:4786)
32 #ifndef CPPUNIT_STD_NEED_ALLOCATOR
33 #define CPPUNIT_STD_NEED_ALLOCATOR 0
36 ///////////////////////////////////////////////////////////////////////////////
37 // Set the default format for the errors, which can be used by an IDE to jump
38 // to the error location. This default gets overridden by the cppunit headers
39 // for some compilers (e.g. VC++).
41 #ifndef CPPUNIT_COMPILER_LOCATION_FORMAT
42 #define CPPUNIT_COMPILER_LOCATION_FORMAT "%p:%l:"
46 ///////////////////////////////////////////////////////////////////////////////
47 // Include all needed cppunit headers.
50 #include "wx/beforestd.h"
51 #include <cppunit/extensions/TestFactoryRegistry.h>
52 #include <cppunit/ui/text/TestRunner.h>
53 #include <cppunit/TestCase.h>
54 #include <cppunit/extensions/HelperMacros.h>
55 #include <cppunit/CompilerOutputter.h>
56 #include "wx/afterstd.h"
58 #include "wx/string.h"
61 ///////////////////////////////////////////////////////////////////////////////
62 // Set of helpful test macros.
65 // Base macro for wrapping CPPUNIT_TEST macros and so making them conditional
66 // tests, meaning that the test only get registered and thus run when a given
67 // runtime condition is true.
68 // In case the condition is evaluated as false a skip message is logged
69 // (the message will only be shown in verbose mode).
70 #define WXTEST_ANY_WITH_CONDITION(suiteName, Condition, testMethod, anyTest) \
74 wxLogInfo(wxString::Format(_T("skipping: %s.%s\n reason: %s equals false\n"), \
75 wxString(suiteName, wxConvUTF8).c_str(), \
76 wxString(#testMethod, wxConvUTF8).c_str(), \
77 wxString(#Condition, wxConvUTF8).c_str()))
79 // Conditional CPPUNIT_TEST macro.
80 #define WXTEST_WITH_CONDITION(suiteName, Condition, testMethod) \
81 WXTEST_ANY_WITH_CONDITION(suiteName, Condition, testMethod, CPPUNIT_TEST(testMethod))
82 // Conditional CPPUNIT_TEST_FAIL macro.
83 #define WXTEST_FAIL_WITH_CONDITION(suiteName, Condition, testMethod) \
84 WXTEST_ANY_WITH_CONDITION(suiteName, Condition, testMethod, CPPUNIT_TEST_FAIL(testMethod))
88 // provide an overload of cppunit assertEquals(T, T) which can be used to
89 // compare wxStrings directly with C strings
91 assertEquals(const char *expected
,
92 const wxString
& actual
,
93 CppUnit::SourceLine sourceLine
,
94 const std::string
& message
)
96 assertEquals(wxString(expected
), actual
, sourceLine
, message
);
100 assertEquals(const wxString
& expected
,
102 CppUnit::SourceLine sourceLine
,
103 const std::string
& message
)
105 assertEquals(expected
, wxString(actual
), sourceLine
, message
);
109 assertEquals(const wchar_t *expected
,
110 const wxString
& actual
,
111 CppUnit::SourceLine sourceLine
,
112 const std::string
& message
)
114 assertEquals(wxString(expected
), actual
, sourceLine
, message
);
118 assertEquals(const wxString
& expected
,
119 const wchar_t *actual
,
120 CppUnit::SourceLine sourceLine
,
121 const std::string
& message
)
123 assertEquals(expected
, wxString(actual
), sourceLine
, message
);
128 // define an assertEquals() overload for the given types, this is a helper and
129 // shouldn't be used directly because of VC6 complications, see below
130 #define WX_CPPUNIT_ASSERT_EQUALS(T1, T2) \
132 assertEquals(T1 expected, \
134 CppUnit::SourceLine sourceLine, \
135 const std::string& message) \
137 if ( !assertion_traits<T1>::equal(expected,actual) ) \
139 Asserter::failNotEqual( assertion_traits<T1>::toString(expected), \
140 assertion_traits<T2>::toString(actual), \
146 // this macro allows us to specify (usually literal) ints as expected values
147 // for functions returning integral types different from "int"
149 // FIXME-VC6: due to incorrect resolution of overloaded/template functions in
150 // this compiler (it basically doesn't use the template version at
151 // all if any overloaded function matches partially even if none of
152 // them matches fully) we also need to provide extra overloads
155 #define WX_CPPUNIT_ALLOW_EQUALS_TO_INT(T) \
157 WX_CPPUNIT_ASSERT_EQUALS(int, T) \
158 WX_CPPUNIT_ASSERT_EQUALS(T, int) \
159 WX_CPPUNIT_ASSERT_EQUALS(T, T) \
163 WX_CPPUNIT_ASSERT_EQUALS(int, int)
166 #define WX_CPPUNIT_ALLOW_EQUALS_TO_INT(T) \
168 WX_CPPUNIT_ASSERT_EQUALS(int, T) \
169 WX_CPPUNIT_ASSERT_EQUALS(T, int) \
173 WX_CPPUNIT_ALLOW_EQUALS_TO_INT(long)
174 WX_CPPUNIT_ALLOW_EQUALS_TO_INT(short)
175 WX_CPPUNIT_ALLOW_EQUALS_TO_INT(unsigned)
176 WX_CPPUNIT_ALLOW_EQUALS_TO_INT(unsigned long)
178 // Use this macro to compare a wxArrayString with the pipe-separated elements
179 // of the given string
181 // NB: it's a macro and not a function to have the correct line numbers in the
182 // test failure messages
183 #define WX_ASSERT_STRARRAY_EQUAL(s, a) \
185 wxArrayString expected(wxSplit(s, '|', '\0')); \
187 CPPUNIT_ASSERT_EQUAL( expected.size(), a.size() ); \
189 for ( size_t n = 0; n < a.size(); n++ ) \
191 CPPUNIT_ASSERT_EQUAL( expected[n], a[n] ); \
195 // Use this macro to assert with the given formatted message (it should contain
196 // the format string and arguments in a separate pair of parentheses)
197 #define WX_ASSERT_MESSAGE(msg, cond) \
198 CPPUNIT_ASSERT_MESSAGE(std::string(wxString::Format msg .mb_str()), (cond))
200 #define WX_ASSERT_EQUAL_MESSAGE(msg, expected, actual) \
201 CPPUNIT_ASSERT_EQUAL_MESSAGE(std::string(wxString::Format msg .mb_str()), \
202 (expected), (actual))
204 ///////////////////////////////////////////////////////////////////////////////
205 // define stream inserter for wxString if it's not defined in the main library,
206 // we need it to output the test failures involving wxString
207 #if !wxUSE_STD_IOSTREAM
209 #include "wx/string.h"
213 inline std::ostream
& operator<<(std::ostream
& o
, const wxString
& s
)
216 return o
<< (const char *)wxSafeConvertWX2MB(s
.wc_str());
218 return o
<< s
.c_str();
222 #endif // !wxUSE_STD_IOSTREAM
224 // VC6 doesn't provide overloads for operator<<(__int64) in its stream classes
225 // so do it ourselves
226 #if defined(__VISUALC6__) && defined(wxLongLong_t)
228 #include "wx/longlong.h"
230 inline std::ostream
& operator<<(std::ostream
& ostr
, wxLongLong_t ll
)
232 ostr
<< wxLongLong(ll
).ToString();
237 inline std::ostream
& operator<<(std::ostream
& ostr
, unsigned wxLongLong_t llu
)
239 ostr
<< wxULongLong(llu
).ToString();
244 #endif // VC6 && wxLongLong_t
246 ///////////////////////////////////////////////////////////////////////////////
247 // Some more compiler warning tweaking and auto linking.
255 #pragma warning(default:4702)
258 // for VC++ automatically link in cppunit library
261 #pragma comment(lib, "cppunit.lib")
263 #pragma comment(lib, "cppunitd.lib")
264 #endif // Release/Debug
267 #endif // _WX_CPPUNIT_H_