]>
git.saurik.com Git - wxWidgets.git/blob - tests/formatconverter/formatconverter.cpp
db20c22098d9d2a47513db0032f2e492f16cb3db
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 #if defined(__GNUG__) && !defined(__APPLE__)
39 #pragma implementation
43 // For compilers that support precompilation, includes "wx/wx.h".
44 #include "wx/wxprec.h"
50 // for all others, include the necessary headers
55 #include "wx/cppunit.h"
57 // wxFormatConverter can only be tested in a Unicode non-Windows debug build
59 #if defined(wxNEED_PRINTF_CONVERSION) && defined(__WXDEBUG__)
61 extern wxString
wxConvertFormat(const wxChar
*format
);
65 using namespace CppUnit
;
68 ///////////////////////////////////////////////////////////////////////////////
71 // wxFormatConverter only changes %s, %c, %S and %C, all others are treated
72 // equally, therefore it is enough to choose just one other for testing, %d
75 class FormatConverterTestCase
: public TestCase
77 CPPUNIT_TEST_SUITE(FormatConverterTestCase
);
78 CPPUNIT_TEST(format_d
);
79 CPPUNIT_TEST(format_hd
);
80 CPPUNIT_TEST(format_ld
);
81 CPPUNIT_TEST(format_s
);
82 CPPUNIT_TEST(format_hs
);
83 CPPUNIT_TEST(format_ls
);
84 CPPUNIT_TEST(format_c
);
85 CPPUNIT_TEST(format_hc
);
86 CPPUNIT_TEST(format_lc
);
88 CPPUNIT_TEST(format_S
);
89 CPPUNIT_TEST(format_hS
);
90 CPPUNIT_TEST(format_lS
);
91 CPPUNIT_TEST(format_C
);
92 CPPUNIT_TEST(format_hC
);
93 CPPUNIT_TEST(format_lC
);
94 CPPUNIT_TEST(testLonger
);
96 CPPUNIT_TEST_SUITE_END();
118 void doTest(const wxChar
*input
, const wxChar
*expected
);
119 void check(const wxString
& input
, const wxString
& expected
);
123 void FormatConverterTestCase::format_d()
126 doTest(_T("d"), _T("d"));
128 CPPUNIT_ASSERT(wxString::Format(_T("%d"), 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"));
157 void FormatConverterTestCase::format_hs()
160 doTest(_T("hs"), _T("hs"));
162 CPPUNIT_ASSERT(wxString::Format(_T("%hs"), "test") == _T("test"));
165 void FormatConverterTestCase::format_ls()
168 doTest(_T("ls"), _T("ls"));
170 CPPUNIT_ASSERT(wxString::Format(_T("%ls"), L
"test") == _T("test"));
173 void FormatConverterTestCase::format_c()
176 doTest(_T("c"), _T("lc"));
178 CPPUNIT_ASSERT(wxString::Format(_T("%c"), _T('x')) == _T("x"));
181 void FormatConverterTestCase::format_hc()
184 doTest(_T("hc"), _T("hc"));
186 CPPUNIT_ASSERT(wxString::Format(_T("%hc"), 'x') == _T("x"));
189 void FormatConverterTestCase::format_lc()
192 doTest(_T("lc"), _T("lc"));
194 CPPUNIT_ASSERT(wxString::Format(_T("%lc"), L
'x') == _T("x"));
199 void FormatConverterTestCase::format_S() { doTest(_T("S"), _T("s")); }
200 void FormatConverterTestCase::format_hS() { doTest(_T("hS"), _T("s")); }
201 void FormatConverterTestCase::format_lS() { doTest(_T("lS"), _T("ls")); }
203 void FormatConverterTestCase::format_C() { doTest(_T("C"), _T("c")); }
204 void FormatConverterTestCase::format_hC() { doTest(_T("hC"), _T("c")); }
205 void FormatConverterTestCase::format_lC() { doTest(_T("lC"), _T("lc")); }
207 // It's possible that although a format converts correctly alone, it leaves
208 // the converter in a bad state that will affect subsequent formats, so
209 // check with a selection of longer patterns.
211 void FormatConverterTestCase::testLonger()
215 const wxChar
*expected
;
217 { _T("%d"), _T("%d"), },
218 { _T("%*hd"), _T("%*hd") },
219 { _T("%.4ld"), _T("%.4ld") },
220 { _T("%-.*s"), _T("%-.*ls") },
221 { _T("%.*hs"), _T("%.*hs"), },
222 { _T("%-.9ls"), _T("%-.9ls") },
223 { _T("%-*c"), _T("%-*lc") },
224 { _T("%3hc"), _T("%3hc") },
225 { _T("%-5lc"), _T("%-5lc") }
229 // exclude patterns that don't translate correctly alone from the test
230 for (i
= 0; i
< WXSIZEOF(formats
); i
++)
231 if (wxConvertFormat(formats
[i
].input
) != formats
[i
].expected
)
232 formats
[i
].input
= NULL
;
234 // test all possible pairs of the above patterns
235 for (i
= 0; i
< WXSIZEOF(formats
); i
++) {
236 if (formats
[i
].input
) {
237 wxString
input(formats
[i
].input
);
238 wxString
expected(formats
[i
].expected
);
240 for (j
= 0; j
< WXSIZEOF(formats
); j
++)
241 if (formats
[j
].input
)
242 check(input
+ formats
[j
].input
,
243 expected
+ formats
[j
].expected
);
248 void FormatConverterTestCase::doTest(const wxChar
*input
,
249 const wxChar
*expected
)
251 static const wxChar
*flag_width
[] =
252 { _T(""), _T("*"), _T("10"), _T("-*"), _T("-10"), NULL
};
253 static const wxChar
*precision
[] =
254 { _T(""), _T(".*"), _T(".10"), NULL
};
255 static const wxChar
*empty
[] =
258 // no precision for %c or %C
259 const wxChar
**precs
= wxTolower(input
[wxStrlen(input
)-1]) == _T('c') ?
262 wxString
fmt(_T("%"));
264 // try the test for a variety of combinations of flag, width and precision
265 for (const wxChar
**prec
= precs
; *prec
; prec
++)
266 for (const wxChar
**width
= flag_width
; *width
; width
++)
267 check(fmt
+ *width
+ *prec
+ input
,
268 fmt
+ *width
+ *prec
+ expected
);
271 void FormatConverterTestCase::check(const wxString
& input
,
272 const wxString
& expected
)
274 wxString result
= wxConvertFormat(input
);
275 wxString msg
= _T("input: '") + input
+
276 _T("', result: '") + result
+
277 _T("', expected: '") + expected
+ _T("'");
278 CPPUNIT_ASSERT_MESSAGE(string(msg
.mb_str()), result
== expected
);
283 // register in the unnamed registry so that these tests are run by default
284 CPPUNIT_TEST_SUITE_REGISTRATION(FormatConverterTestCase
);
286 // also include in it's own registry so that these tests can be run alone
287 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(FormatConverterTestCase
,
288 "FormatConverterTestCase");