]>
git.saurik.com Git - wxWidgets.git/blob - tests/formatconverter/formatconverter.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/formatconverter/formatconverter.cpp
3 // Purpose: Test wxFormatConverter
4 // Author: Mike Wetherell
6 // Copyright: (c) 2004 Mike Wetherell
7 // Licence: wxWidgets licence
8 ///////////////////////////////////////////////////////////////////////////////
13 // The conversions wxFormatConverter currently does are as follows:
20 // %hs and %hc stay the same.
22 // %S and %C aren't actually in the ISO C or C++ standards, but they can be
23 // avoided when writing portable code.
25 // Nor are %hs or %hc in the standards, which means wxWidgets currently doesn't
26 // have a specifier for 'char' types that is ok for all builds and platforms.
28 // The effect of using %hs/%hc is undefined, though RTLs are quite likely
29 // to just ignore the 'h', so maybe it works as required even though it's
32 // I've put in some checks, such as this which will flag up any platforms
33 // where this is not the case:
35 // CPPUNIT_ASSERT(wxString::Format(_T("%hs"), "test") == _T("test"));
38 // For compilers that support precompilation, includes "wx/wx.h".
39 #include "wx/wxprec.h"
45 // for all others, include the necessary headers
50 #include "wx/cppunit.h"
52 // wxFormatConverter can only be tested in a Unicode non-Windows debug build
54 #if defined(wxNEED_PRINTF_CONVERSION) && defined(__WXDEBUG__)
56 extern wxString
wxConvertFormat(const wxChar
*format
);
60 using namespace CppUnit
;
63 ///////////////////////////////////////////////////////////////////////////////
66 // wxFormatConverter only changes %s, %c, %S and %C, all others are treated
67 // equally, therefore it is enough to choose just one other for testing, %d
70 class FormatConverterTestCase
: public TestCase
72 CPPUNIT_TEST_SUITE(FormatConverterTestCase
);
73 CPPUNIT_TEST(format_d
);
74 CPPUNIT_TEST(format_hd
);
75 CPPUNIT_TEST(format_ld
);
76 CPPUNIT_TEST(format_s
);
77 CPPUNIT_TEST(format_hs
);
78 CPPUNIT_TEST(format_ls
);
79 CPPUNIT_TEST(format_c
);
80 CPPUNIT_TEST(format_hc
);
81 CPPUNIT_TEST(format_lc
);
83 CPPUNIT_TEST(format_S
);
84 CPPUNIT_TEST(format_hS
);
85 CPPUNIT_TEST(format_lS
);
86 CPPUNIT_TEST(format_C
);
87 CPPUNIT_TEST(format_hC
);
88 CPPUNIT_TEST(format_lC
);
89 CPPUNIT_TEST(testLonger
);
91 CPPUNIT_TEST_SUITE_END();
112 void doTest(const wxChar
*input
, const wxChar
*expected
);
113 void check(const wxString
& input
, const wxString
& expected
);
117 void FormatConverterTestCase::format_d()
120 doTest(_T("d"), _T("d"));
122 CPPUNIT_ASSERT(wxString::Format(_T("%d"), 255) == _T("255"));
123 CPPUNIT_ASSERT(wxString::Format(_T("%05d"), 255) == _T("00255"));
124 CPPUNIT_ASSERT(wxString::Format(_T("% 5d"), 255) == _T(" 255"));
125 CPPUNIT_ASSERT(wxString::Format(_T("% 5d"), -255) == _T(" -255"));
126 CPPUNIT_ASSERT(wxString::Format(_T("%-5d"), -255) == _T("-255 "));
127 CPPUNIT_ASSERT(wxString::Format(_T("%+5d"), 255) == _T(" +255"));
128 CPPUNIT_ASSERT(wxString::Format(_T("%*d"), 5, 255) == _T(" 255"));
131 void FormatConverterTestCase::format_hd()
134 doTest(_T("hd"), _T("hd"));
137 CPPUNIT_ASSERT(wxString::Format(_T("%hd"), s
) == _T("32767"));
140 void FormatConverterTestCase::format_ld()
143 doTest(_T("ld"), _T("ld"));
145 long l
= 2147483647L;
146 CPPUNIT_ASSERT(wxString::Format(_T("%ld"), l
) == _T("2147483647"));
149 void FormatConverterTestCase::format_s()
152 doTest(_T("s"), _T("ls"));
154 CPPUNIT_ASSERT(wxString::Format(_T("%s!"), _T("test")) == _T("test!"));
155 CPPUNIT_ASSERT(wxString::Format(_T("%6s!"), _T("test")) == _T(" test!"));
156 CPPUNIT_ASSERT(wxString::Format(_T("%-6s!"), _T("test")) == _T("test !"));
157 CPPUNIT_ASSERT(wxString::Format(_T("%.6s!"), _T("test")) == _T("test!"));
158 CPPUNIT_ASSERT(wxString::Format(_T("%6.4s!"), _T("testing")) == _T(" test!"));
161 void FormatConverterTestCase::format_hs()
164 doTest(_T("hs"), _T("hs"));
166 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%hs!")), "test") == _T("test!"));
167 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%6hs!")), "test") == _T(" test!"));
168 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%-6hs!")), "test") == _T("test !"));
169 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%.6hs!")), "test") == _T("test!"));
170 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%6.4hs!")), "testing") == _T(" test!"));
173 void FormatConverterTestCase::format_ls()
176 doTest(_T("ls"), _T("ls"));
178 CPPUNIT_ASSERT(wxString::Format(_T("%ls!"), L
"test") == _T("test!"));
179 CPPUNIT_ASSERT(wxString::Format(_T("%6ls!"), L
"test") == _T(" test!"));
180 CPPUNIT_ASSERT(wxString::Format(_T("%-6ls!"), L
"test") == _T("test !"));
181 CPPUNIT_ASSERT(wxString::Format(_T("%.6ls!"), L
"test") == _T("test!"));
182 CPPUNIT_ASSERT(wxString::Format(_T("%6.4ls!"), L
"testing") == _T(" test!"));
185 void FormatConverterTestCase::format_c()
188 doTest(_T("c"), _T("lc"));
190 CPPUNIT_ASSERT(wxString::Format(_T("%c"), _T('x')) == _T("x"));
191 CPPUNIT_ASSERT(wxString::Format(_T("%2c"), _T('x')) == _T(" x"));
192 CPPUNIT_ASSERT(wxString::Format(_T("%-2c"), _T('x')) == _T("x "));
195 void FormatConverterTestCase::format_hc()
198 doTest(_T("hc"), _T("hc"));
200 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%hc")), 'x') == _T("x"));
201 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%2hc")), 'x') == _T(" x"));
202 CPPUNIT_ASSERT(wxString::Format(wxString(_T("%-2hc")), 'x') == _T("x "));
205 void FormatConverterTestCase::format_lc()
208 doTest(_T("lc"), _T("lc"));
210 CPPUNIT_ASSERT(wxString::Format(_T("%lc"), L
'x') == _T("x"));
211 CPPUNIT_ASSERT(wxString::Format(_T("%2lc"), L
'x') == _T(" x"));
212 CPPUNIT_ASSERT(wxString::Format(_T("%-2lc"), L
'x') == _T("x "));
217 void FormatConverterTestCase::format_S() { doTest(_T("S"), _T("s")); }
218 void FormatConverterTestCase::format_hS() { doTest(_T("hS"), _T("s")); }
219 void FormatConverterTestCase::format_lS() { doTest(_T("lS"), _T("ls")); }
221 void FormatConverterTestCase::format_C() { doTest(_T("C"), _T("c")); }
222 void FormatConverterTestCase::format_hC() { doTest(_T("hC"), _T("c")); }
223 void FormatConverterTestCase::format_lC() { doTest(_T("lC"), _T("lc")); }
225 // It's possible that although a format converts correctly alone, it leaves
226 // the converter in a bad state that will affect subsequent formats, so
227 // check with a selection of longer patterns.
229 void FormatConverterTestCase::testLonger()
233 const wxChar
*expected
;
235 { _T("%d"), _T("%d"), },
236 { _T("%*hd"), _T("%*hd") },
237 { _T("%.4ld"), _T("%.4ld") },
238 { _T("%-.*s"), _T("%-.*ls") },
239 { _T("%.*hs"), _T("%.*hs"), },
240 { _T("%-.9ls"), _T("%-.9ls") },
241 { _T("%-*c"), _T("%-*lc") },
242 { _T("%3hc"), _T("%3hc") },
243 { _T("%-5lc"), _T("%-5lc") }
247 // exclude patterns that don't translate correctly alone from the test
248 for (i
= 0; i
< WXSIZEOF(formats
); i
++)
249 if (wxConvertFormat(formats
[i
].input
) != formats
[i
].expected
)
250 formats
[i
].input
= NULL
;
252 // test all possible pairs of the above patterns
253 for (i
= 0; i
< WXSIZEOF(formats
); i
++) {
254 if (formats
[i
].input
) {
255 wxString
input(formats
[i
].input
);
256 wxString
expected(formats
[i
].expected
);
258 for (j
= 0; j
< WXSIZEOF(formats
); j
++)
259 if (formats
[j
].input
)
260 check(input
+ formats
[j
].input
,
261 expected
+ formats
[j
].expected
);
266 void FormatConverterTestCase::doTest(const wxChar
*input
,
267 const wxChar
*expected
)
269 static const wxChar
*flag_width
[] =
270 { _T(""), _T("*"), _T("10"), _T("-*"), _T("-10"), NULL
};
271 static const wxChar
*precision
[] =
272 { _T(""), _T(".*"), _T(".10"), NULL
};
273 static const wxChar
*empty
[] =
276 // no precision for %c or %C
277 const wxChar
**precs
= wxTolower(input
[wxStrlen(input
)-1]) == _T('c') ?
280 wxString
fmt(_T("%"));
282 // try the test for a variety of combinations of flag, width and precision
283 for (const wxChar
**prec
= precs
; *prec
; prec
++)
284 for (const wxChar
**width
= flag_width
; *width
; width
++)
285 check(fmt
+ *width
+ *prec
+ input
,
286 fmt
+ *width
+ *prec
+ expected
);
289 void FormatConverterTestCase::check(const wxString
& input
,
290 const wxString
& expected
)
292 wxString result
= wxConvertFormat(input
);
293 wxString msg
= _T("input: '") + input
+
294 _T("', result: '") + result
+
295 _T("', expected: '") + expected
+ _T("'");
296 CPPUNIT_ASSERT_MESSAGE(string(msg
.mb_str()), result
== expected
);
301 // register in the unnamed registry so that these tests are run by default
302 CPPUNIT_TEST_SUITE_REGISTRATION(FormatConverterTestCase
);
304 // also include in it's own registry so that these tests can be run alone
305 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(FormatConverterTestCase
,
306 "FormatConverterTestCase");