1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/strings/strings.cpp
3 // Purpose: wxString unit test
4 // Author: Vadim Zeitlin, Wlodzimierz ABX Skiba
7 // Copyright: (c) 2004 Vadim Zeitlin, Wlodzimierz Skiba
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 // ----------------------------------------------------------------------------
28 class StringTestCase
: public CppUnit::TestCase
34 CPPUNIT_TEST_SUITE( StringTestCase
);
35 CPPUNIT_TEST( String
);
36 CPPUNIT_TEST( PChar
);
37 CPPUNIT_TEST( Format
);
38 CPPUNIT_TEST( Constructors
);
39 CPPUNIT_TEST( StaticConstructors
);
40 CPPUNIT_TEST( Extraction
);
43 CPPUNIT_TEST( Replace
);
44 CPPUNIT_TEST( Match
);
45 CPPUNIT_TEST( CaseChanges
);
46 CPPUNIT_TEST( Compare
);
47 CPPUNIT_TEST( CompareNoCase
);
48 CPPUNIT_TEST( Contains
);
49 CPPUNIT_TEST( ToLong
);
50 CPPUNIT_TEST( ToULong
);
52 CPPUNIT_TEST( ToLongLong
);
53 CPPUNIT_TEST( ToULongLong
);
54 #endif // wxLongLong_t
55 CPPUNIT_TEST( ToDouble
);
56 CPPUNIT_TEST( StringBuf
);
57 CPPUNIT_TEST( UTF8Buf
);
58 CPPUNIT_TEST( CStrDataTernaryOperator
);
59 CPPUNIT_TEST( CStrDataOperators
);
60 CPPUNIT_TEST( CStrDataImplicitConversion
);
61 CPPUNIT_TEST( ExplicitConversion
);
62 CPPUNIT_TEST( IndexedAccess
);
63 CPPUNIT_TEST( BeforeAndAfter
);
64 CPPUNIT_TEST( ScopedBuffers
);
65 CPPUNIT_TEST_SUITE_END();
71 void StaticConstructors();
86 #endif // wxLongLong_t
90 void CStrDataTernaryOperator();
91 void DoCStrDataTernaryOperator(bool cond
);
92 void CStrDataOperators();
93 void CStrDataImplicitConversion();
94 void ExplicitConversion();
96 void BeforeAndAfter();
99 DECLARE_NO_COPY_CLASS(StringTestCase
)
102 // register in the unnamed registry so that these tests are run by default
103 CPPUNIT_TEST_SUITE_REGISTRATION( StringTestCase
);
105 // also include in it's own registry so that these tests can be run alone
106 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StringTestCase
, "StringTestCase" );
108 StringTestCase::StringTestCase()
112 void StringTestCase::String()
120 for (int i
= 0; i
< 2; ++i
)
124 c
= wxT("! How'ya doin'?");
127 c
= wxT("Hello world! What's up?");
128 CPPUNIT_ASSERT( c
!= a
);
132 void StringTestCase::PChar()
138 for (int i
= 0; i
< 2; ++i
)
140 wxStrcpy (a
, wxT("Hello"));
141 wxStrcpy (b
, wxT(" world"));
142 wxStrcpy (c
, wxT("! How'ya doin'?"));
145 wxStrcpy (c
, wxT("Hello world! What's up?"));
146 CPPUNIT_ASSERT( wxStrcmp (c
, a
) != 0 );
150 void StringTestCase::Format()
153 s1
.Printf(wxT("%03d"), 18);
154 CPPUNIT_ASSERT( s1
== wxString::Format(wxT("%03d"), 18) );
155 s2
.Printf(wxT("Number 18: %s\n"), s1
.c_str());
156 CPPUNIT_ASSERT( s2
== wxString::Format(wxT("Number 18: %s\n"), s1
.c_str()) );
158 static const size_t lengths
[] = { 1, 512, 1024, 1025, 2048, 4096, 4097 };
159 for ( size_t n
= 0; n
< WXSIZEOF(lengths
); n
++ )
161 const size_t len
= lengths
[n
];
163 wxString
s(wxT('Z'), len
);
164 CPPUNIT_ASSERT_EQUAL( len
, wxString::Format(wxT("%s"), s
.c_str()).length());
168 void StringTestCase::Constructors()
170 CPPUNIT_ASSERT_EQUAL( "", wxString('Z', 0) );
171 CPPUNIT_ASSERT_EQUAL( "Z", wxString('Z') );
172 CPPUNIT_ASSERT_EQUAL( "ZZZZ", wxString('Z', 4) );
173 CPPUNIT_ASSERT_EQUAL( "Hell", wxString("Hello", 4) );
174 CPPUNIT_ASSERT_EQUAL( "Hello", wxString("Hello", 5) );
177 CPPUNIT_ASSERT_EQUAL( L
"", wxString(L
'Z', 0) );
178 CPPUNIT_ASSERT_EQUAL( L
"Z", wxString(L
'Z') );
179 CPPUNIT_ASSERT_EQUAL( L
"ZZZZ", wxString(L
'Z', 4) );
180 CPPUNIT_ASSERT_EQUAL( L
"Hell", wxString(L
"Hello", 4) );
181 CPPUNIT_ASSERT_EQUAL( L
"Hello", wxString(L
"Hello", 5) );
182 #endif // wxUSE_UNICODE
184 static const char *s
= "?really!";
185 const char *start
= wxStrchr(s
, 'r');
186 const char *end
= wxStrchr(s
, '!');
187 CPPUNIT_ASSERT_EQUAL( "really", wxString(start
, end
) );
189 // test if creating string from NULL C pointer works:
190 CPPUNIT_ASSERT_EQUAL( "", wxString((const char *)NULL
) );
193 void StringTestCase::StaticConstructors()
195 CPPUNIT_ASSERT_EQUAL( "", wxString::FromAscii("") );
196 CPPUNIT_ASSERT_EQUAL( "", wxString::FromAscii("Hello", 0) );
197 CPPUNIT_ASSERT_EQUAL( "Hell", wxString::FromAscii("Hello", 4) );
198 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromAscii("Hello", 5) );
199 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromAscii("Hello") );
201 // FIXME: this doesn't work currently but should!
202 //CPPUNIT_ASSERT_EQUAL( 1, wxString::FromAscii("", 1).length() );
205 CPPUNIT_ASSERT_EQUAL( "", wxString::FromUTF8("") );
206 CPPUNIT_ASSERT_EQUAL( "", wxString::FromUTF8("Hello", 0) );
207 CPPUNIT_ASSERT_EQUAL( "Hell", wxString::FromUTF8("Hello", 4) );
208 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromUTF8("Hello", 5) );
209 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromUTF8("Hello") );
211 //CPPUNIT_ASSERT_EQUAL( 1, wxString::FromUTF8("", 1).length() );
214 void StringTestCase::Extraction()
216 wxString
s(wxT("Hello, world!"));
218 CPPUNIT_ASSERT( wxStrcmp( s
.c_str() , wxT("Hello, world!") ) == 0 );
219 CPPUNIT_ASSERT( wxStrcmp( s
.Left(5).c_str() , wxT("Hello") ) == 0 );
220 CPPUNIT_ASSERT( wxStrcmp( s
.Right(6).c_str() , wxT("world!") ) == 0 );
221 CPPUNIT_ASSERT( wxStrcmp( s(3, 5).c_str() , wxT("lo, w") ) == 0 );
222 CPPUNIT_ASSERT( wxStrcmp( s
.Mid(3).c_str() , wxT("lo, world!") ) == 0 );
223 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3, 5).c_str() , wxT("lo, w") ) == 0 );
224 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3).c_str() , wxT("lo, world!") ) == 0 );
227 static const char *germanUTF8
= "Oberfl\303\244che";
228 wxString
strUnicode(wxString::FromUTF8(germanUTF8
));
230 CPPUNIT_ASSERT( strUnicode
.Mid(0, 10) == strUnicode
);
231 CPPUNIT_ASSERT( strUnicode
.Mid(7, 2) == "ch" );
232 #endif // wxUSE_UNICODE
236 #define TEST_STARTS_WITH(prefix, correct_rest, result) \
237 CPPUNIT_ASSERT_EQUAL(result, s.StartsWith(prefix, &rest)); \
239 CPPUNIT_ASSERT_EQUAL(correct_rest, rest)
241 TEST_STARTS_WITH( wxT("Hello"), wxT(", world!"), true );
242 TEST_STARTS_WITH( wxT("Hello, "), wxT("world!"), true );
243 TEST_STARTS_WITH( wxT("Hello, world!"), wxT(""), true );
244 TEST_STARTS_WITH( wxT("Hello, world!!!"), wxT(""), false );
245 TEST_STARTS_WITH( wxT(""), wxT("Hello, world!"), true );
246 TEST_STARTS_WITH( wxT("Goodbye"), wxT(""), false );
247 TEST_STARTS_WITH( wxT("Hi"), wxT(""), false );
249 #undef TEST_STARTS_WITH
251 rest
= "Hello world";
252 CPPUNIT_ASSERT( rest
.StartsWith("Hello ", &rest
) );
253 CPPUNIT_ASSERT_EQUAL("world", rest
);
255 #define TEST_ENDS_WITH(suffix, correct_rest, result) \
256 CPPUNIT_ASSERT_EQUAL(result, s.EndsWith(suffix, &rest)); \
258 CPPUNIT_ASSERT_EQUAL(correct_rest, rest)
260 TEST_ENDS_WITH( wxT(""), wxT("Hello, world!"), true );
261 TEST_ENDS_WITH( wxT("!"), wxT("Hello, world"), true );
262 TEST_ENDS_WITH( wxT(", world!"), wxT("Hello"), true );
263 TEST_ENDS_WITH( wxT("ello, world!"), wxT("H"), true );
264 TEST_ENDS_WITH( wxT("Hello, world!"), wxT(""), true );
265 TEST_ENDS_WITH( wxT("very long string"), wxT(""), false );
266 TEST_ENDS_WITH( wxT("?"), wxT(""), false );
267 TEST_ENDS_WITH( wxT("Hello, world"), wxT(""), false );
268 TEST_ENDS_WITH( wxT("Gello, world!"), wxT(""), false );
270 #undef TEST_ENDS_WITH
273 void StringTestCase::Trim()
275 #define TEST_TRIM( str , dir , result ) \
276 CPPUNIT_ASSERT( wxString(str).Trim(dir) == result )
278 TEST_TRIM( wxT(" Test "), true, wxT(" Test") );
279 TEST_TRIM( wxT(" "), true, wxT("") );
280 TEST_TRIM( wxT(" "), true, wxT("") );
281 TEST_TRIM( wxT(""), true, wxT("") );
283 TEST_TRIM( wxT(" Test "), false, wxT("Test ") );
284 TEST_TRIM( wxT(" "), false, wxT("") );
285 TEST_TRIM( wxT(" "), false, wxT("") );
286 TEST_TRIM( wxT(""), false, wxT("") );
291 void StringTestCase::Find()
293 #define TEST_FIND( str , start , result ) \
294 CPPUNIT_ASSERT( wxString(str).find(wxT("ell"), start) == result );
296 TEST_FIND( wxT("Well, hello world"), 0, 1 );
297 TEST_FIND( wxT("Well, hello world"), 6, 7 );
298 TEST_FIND( wxT("Well, hello world"), 9, wxString::npos
);
303 void StringTestCase::Replace()
305 #define TEST_REPLACE( original , pos , len , replacement , result ) \
307 wxString s = original; \
308 s.replace( pos , len , replacement ); \
309 CPPUNIT_ASSERT_EQUAL( result, s ); \
312 TEST_REPLACE( wxT("012-AWORD-XYZ"), 4, 5, wxT("BWORD"), wxT("012-BWORD-XYZ") );
313 TEST_REPLACE( wxT("increase"), 0, 2, wxT("de"), wxT("decrease") );
314 TEST_REPLACE( wxT("wxWindow"), 8, 0, wxT("s"), wxT("wxWindows") );
315 TEST_REPLACE( wxT("foobar"), 3, 0, wxT("-"), wxT("foo-bar") );
316 TEST_REPLACE( wxT("barfoo"), 0, 6, wxT("foobar"), wxT("foobar") );
319 #define TEST_NULLCHARREPLACE( o , olen, pos , len , replacement , r, rlen ) \
321 wxString s(o,olen); \
322 s.replace( pos , len , replacement ); \
323 CPPUNIT_ASSERT_EQUAL( wxString(r,rlen), s ); \
326 TEST_NULLCHARREPLACE( wxT("null\0char"), 9, 5, 1, wxT("d"),
327 wxT("null\0dhar"), 9 );
329 #define TEST_WXREPLACE( o , olen, olds, news, all, r, rlen ) \
331 wxString s(o,olen); \
332 s.Replace( olds, news, all ); \
333 CPPUNIT_ASSERT_EQUAL( wxString(r,rlen), s ); \
336 TEST_WXREPLACE( wxT("null\0char"), 9, wxT("c"), wxT("de"), true,
337 wxT("null\0dehar"), 10 );
339 TEST_WXREPLACE( wxT("null\0dehar"), 10, wxT("de"), wxT("c"), true,
340 wxT("null\0char"), 9 );
342 TEST_WXREPLACE( "life", 4, "f", "", false, "lie", 3 );
343 TEST_WXREPLACE( "life", 4, "f", "", true, "lie", 3 );
344 TEST_WXREPLACE( "life", 4, "fe", "ve", true, "live", 4 );
345 TEST_WXREPLACE( "xx", 2, "x", "yy", true, "yyyy", 4 );
346 TEST_WXREPLACE( "xxx", 3, "xx", "z", true, "zx", 2 );
348 #undef TEST_WXREPLACE
349 #undef TEST_NULLCHARREPLACE
353 void StringTestCase::Match()
355 #define TEST_MATCH( s1 , s2 , result ) \
356 CPPUNIT_ASSERT( wxString(s1).Matches(s2) == result )
358 TEST_MATCH( wxT("foobar"), wxT("foo*"), true );
359 TEST_MATCH( wxT("foobar"), wxT("*oo*"), true );
360 TEST_MATCH( wxT("foobar"), wxT("*bar"), true );
361 TEST_MATCH( wxT("foobar"), wxT("??????"), true );
362 TEST_MATCH( wxT("foobar"), wxT("f??b*"), true );
363 TEST_MATCH( wxT("foobar"), wxT("f?b*"), false );
364 TEST_MATCH( wxT("foobar"), wxT("*goo*"), false );
365 TEST_MATCH( wxT("foobar"), wxT("*foo"), false );
366 TEST_MATCH( wxT("foobarfoo"), wxT("*foo"), true );
367 TEST_MATCH( wxT(""), wxT("*"), true );
368 TEST_MATCH( wxT(""), wxT("?"), false );
374 void StringTestCase::CaseChanges()
376 wxString
s1(wxT("Hello!"));
382 CPPUNIT_ASSERT_EQUAL( wxT("HELLO!"), s1u
);
383 CPPUNIT_ASSERT_EQUAL( wxT("hello!"), s1l
);
389 CPPUNIT_ASSERT_EQUAL( "", s2u
);
390 CPPUNIT_ASSERT_EQUAL( "", s2l
);
393 wxString
s3("good bye");
394 CPPUNIT_ASSERT_EQUAL( "Good bye", s3
.Capitalize() );
395 s3
.MakeCapitalized();
396 CPPUNIT_ASSERT_EQUAL( "Good bye", s3
);
398 CPPUNIT_ASSERT_EQUAL( "Abc", wxString("ABC").Capitalize() );
400 CPPUNIT_ASSERT_EQUAL( "", wxString().Capitalize() );
403 void StringTestCase::Compare()
405 wxString s1
= wxT("AHH");
406 wxString eq
= wxT("AHH");
407 wxString neq1
= wxT("HAH");
408 wxString neq2
= wxT("AH");
409 wxString neq3
= wxT("AHHH");
410 wxString neq4
= wxT("AhH");
412 CPPUNIT_ASSERT( s1
== eq
);
413 CPPUNIT_ASSERT( s1
!= neq1
);
414 CPPUNIT_ASSERT( s1
!= neq2
);
415 CPPUNIT_ASSERT( s1
!= neq3
);
416 CPPUNIT_ASSERT( s1
!= neq4
);
418 CPPUNIT_ASSERT( s1
== wxT("AHH") );
419 CPPUNIT_ASSERT( s1
!= wxT("no") );
420 CPPUNIT_ASSERT( s1
< wxT("AZ") );
421 CPPUNIT_ASSERT( s1
<= wxT("AZ") );
422 CPPUNIT_ASSERT( s1
<= wxT("AHH") );
423 CPPUNIT_ASSERT( s1
> wxT("AA") );
424 CPPUNIT_ASSERT( s1
>= wxT("AA") );
425 CPPUNIT_ASSERT( s1
>= wxT("AHH") );
427 // test comparison with C strings in Unicode build (must work in ANSI as
429 CPPUNIT_ASSERT( s1
== "AHH" );
430 CPPUNIT_ASSERT( s1
!= "no" );
431 CPPUNIT_ASSERT( s1
< "AZ" );
432 CPPUNIT_ASSERT( s1
<= "AZ" );
433 CPPUNIT_ASSERT( s1
<= "AHH" );
434 CPPUNIT_ASSERT( s1
> "AA" );
435 CPPUNIT_ASSERT( s1
>= "AA" );
436 CPPUNIT_ASSERT( s1
>= "AHH" );
438 // wxString _s1 = wxT("A\0HH");
439 // wxString _eq = wxT("A\0HH");
440 // wxString _neq1 = wxT("H\0AH");
441 // wxString _neq2 = wxT("A\0H");
442 // wxString _neq3 = wxT("A\0HHH");
443 // wxString _neq4 = wxT("A\0hH");
446 neq1
.insert(1,1,'\0');
447 neq2
.insert(1,1,'\0');
448 neq3
.insert(1,1,'\0');
449 neq4
.insert(1,1,'\0');
451 CPPUNIT_ASSERT( s1
== eq
);
452 CPPUNIT_ASSERT( s1
!= neq1
);
453 CPPUNIT_ASSERT( s1
!= neq2
);
454 CPPUNIT_ASSERT( s1
!= neq3
);
455 CPPUNIT_ASSERT( s1
!= neq4
);
458 void StringTestCase::CompareNoCase()
460 wxString s1
= wxT("AHH");
461 wxString eq
= wxT("AHH");
462 wxString eq2
= wxT("AhH");
463 wxString eq3
= wxT("ahh");
464 wxString neq
= wxT("HAH");
465 wxString neq2
= wxT("AH");
466 wxString neq3
= wxT("AHHH");
468 #define CPPUNIT_CNCEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) == 0)
469 #define CPPUNIT_CNCNEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) != 0)
471 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
472 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
473 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
475 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
476 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
477 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
480 // wxString _s1 = wxT("A\0HH");
481 // wxString _eq = wxT("A\0HH");
482 // wxString _eq2 = wxT("A\0hH");
483 // wxString _eq3 = wxT("a\0hh");
484 // wxString _neq = wxT("H\0AH");
485 // wxString _neq2 = wxT("A\0H");
486 // wxString _neq3 = wxT("A\0HHH");
490 eq2
.insert(1,1,'\0');
491 eq3
.insert(1,1,'\0');
492 neq
.insert(1,1,'\0');
493 neq2
.insert(1,1,'\0');
494 neq3
.insert(1,1,'\0');
496 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
497 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
498 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
500 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
501 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
502 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
505 void StringTestCase::Contains()
507 static const struct ContainsData
510 const wxChar
*needle
;
514 { wxT(""), wxT(""), true },
515 { wxT(""), wxT("foo"), false },
516 { wxT("foo"), wxT(""), true },
517 { wxT("foo"), wxT("f"), true },
518 { wxT("foo"), wxT("o"), true },
519 { wxT("foo"), wxT("oo"), true },
520 { wxT("foo"), wxT("ooo"), false },
521 { wxT("foo"), wxT("oooo"), false },
522 { wxT("foo"), wxT("fooo"), false },
525 for ( size_t n
= 0; n
< WXSIZEOF(containsData
); n
++ )
527 const ContainsData
& cd
= containsData
[n
];
528 CPPUNIT_ASSERT_EQUAL( cd
.contains
, wxString(cd
.hay
).Contains(cd
.needle
) );
532 // flags used in ToLongData.flags
537 Number_Unsigned
= 2, // if not specified, works for signed conversion
538 Number_Signed
= 4, // if not specified, works for unsigned
539 Number_LongLong
= 8, // only for long long tests
540 Number_Long
= 16 // only for long tests
543 static const struct ToLongData
550 #endif // wxLongLong_t
553 long LValue() const { return value
; }
554 unsigned long ULValue() const { return value
; }
556 wxLongLong_t
LLValue() const { return value
; }
557 wxULongLong_t
ULLValue() const { return (wxULongLong_t
)value
; }
558 #endif // wxLongLong_t
560 bool IsOk() const { return !(flags
& Number_Invalid
); }
563 { wxT("1"), 1, Number_Ok
},
564 { wxT("0"), 0, Number_Ok
},
565 { wxT("a"), 0, Number_Invalid
},
566 { wxT("12345"), 12345, Number_Ok
},
567 { wxT("--1"), 0, Number_Invalid
},
569 { wxT("-1"), -1, Number_Signed
| Number_Long
},
570 // this is surprizing but consistent with strtoul() behaviour
571 { wxT("-1"), ULONG_MAX
, Number_Unsigned
| Number_Long
},
573 // this must overflow, even with 64 bit long
574 { wxT("922337203685477580711"), 0, Number_Invalid
},
577 { wxT("2147483648"), wxLL(2147483648), Number_LongLong
},
578 { wxT("-2147483648"), wxLL(-2147483648), Number_LongLong
| Number_Signed
},
579 { wxT("9223372036854775808"), wxULL(9223372036854775808), Number_LongLong
|
581 #endif // wxLongLong_t
584 void StringTestCase::ToLong()
587 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
589 const ToLongData
& ld
= longData
[n
];
591 if ( ld
.flags
& (Number_LongLong
| Number_Unsigned
) )
594 // NOTE: unless you're using some exotic locale, ToCLong and ToLong
595 // should behave the same for our test data set:
597 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToCLong(&l
) );
599 CPPUNIT_ASSERT_EQUAL( ld
.LValue(), l
);
601 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLong(&l
) );
603 CPPUNIT_ASSERT_EQUAL( ld
.LValue(), l
);
606 // special case: check that the output is not modified if the parsing
609 CPPUNIT_ASSERT( !wxString("foo").ToLong(&l
) );
610 CPPUNIT_ASSERT_EQUAL( 17, l
);
612 // also check that it is modified if we did parse something successfully in
613 // the beginning of the string
614 CPPUNIT_ASSERT( !wxString("9 cats").ToLong(&l
) );
615 CPPUNIT_ASSERT_EQUAL( 9, l
);
618 void StringTestCase::ToULong()
621 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
623 const ToLongData
& ld
= longData
[n
];
625 if ( ld
.flags
& (Number_LongLong
| Number_Signed
) )
628 // NOTE: unless you're using some exotic locale, ToCLong and ToLong
629 // should behave the same for our test data set:
631 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToCULong(&ul
) );
633 CPPUNIT_ASSERT_EQUAL( ld
.ULValue(), ul
);
635 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULong(&ul
) );
637 CPPUNIT_ASSERT_EQUAL( ld
.ULValue(), ul
);
643 void StringTestCase::ToLongLong()
646 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
648 const ToLongData
& ld
= longData
[n
];
650 if ( ld
.flags
& (Number_Long
| Number_Unsigned
) )
653 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLongLong(&l
) );
655 CPPUNIT_ASSERT_EQUAL( ld
.LLValue(), l
);
659 void StringTestCase::ToULongLong()
662 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
664 const ToLongData
& ld
= longData
[n
];
666 if ( ld
.flags
& (Number_Long
| Number_Signed
) )
669 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULongLong(&ul
) );
671 CPPUNIT_ASSERT_EQUAL( ld
.ULLValue(), ul
);
675 #endif // wxLongLong_t
677 void StringTestCase::ToDouble()
680 static const struct ToDoubleData
687 { wxT("1"), 1, true },
688 { wxT("1.23"), 1.23, true },
689 { wxT(".1"), .1, true },
690 { wxT("1."), 1, true },
691 { wxT("1.."), 0, false },
692 { wxT("0"), 0, true },
693 { wxT("a"), 0, false },
694 { wxT("12345"), 12345, true },
695 { wxT("-1"), -1, true },
696 { wxT("--1"), 0, false },
697 { wxT("-3E-5"), -3E-5, true },
698 { wxT("-3E-abcde5"), 0, false },
701 // test ToCDouble() first:
704 for ( n
= 0; n
< WXSIZEOF(doubleData
); n
++ )
706 const ToDoubleData
& ld
= doubleData
[n
];
707 CPPUNIT_ASSERT_EQUAL( ld
.ok
, wxString(ld
.str
).ToCDouble(&d
) );
709 CPPUNIT_ASSERT_EQUAL( ld
.value
, d
);
713 // test ToDouble() now:
714 // NOTE: for the test to be reliable, we need to set the locale explicitely
715 // so that we know the decimal point character to use
717 if (!wxLocale::IsAvailable(wxLANGUAGE_FRENCH
))
718 return; // you should have french support installed to continue this test!
720 wxLocale
*locale
= new wxLocale
;
722 // don't load default catalog, it may be unavailable:
723 CPPUNIT_ASSERT( locale
->Init(wxLANGUAGE_FRENCH
, wxLOCALE_CONV_ENCODING
) );
725 static const struct ToDoubleData doubleData2
[] =
727 { wxT("1"), 1, true },
728 { wxT("1,23"), 1.23, true },
729 { wxT(",1"), .1, true },
730 { wxT("1,"), 1, true },
731 { wxT("1,,"), 0, false },
732 { wxT("0"), 0, true },
733 { wxT("a"), 0, false },
734 { wxT("12345"), 12345, true },
735 { wxT("-1"), -1, true },
736 { wxT("--1"), 0, false },
737 { wxT("-3E-5"), -3E-5, true },
738 { wxT("-3E-abcde5"), 0, false },
741 for ( n
= 0; n
< WXSIZEOF(doubleData2
); n
++ )
743 const ToDoubleData
& ld
= doubleData2
[n
];
744 CPPUNIT_ASSERT_EQUAL( ld
.ok
, wxString(ld
.str
).ToDouble(&d
) );
746 CPPUNIT_ASSERT_EQUAL( ld
.value
, d
);
752 void StringTestCase::StringBuf()
754 // check that buffer can be used to write into the string
756 wxStrcpy(wxStringBuffer(s
, 10), wxT("foo"));
758 CPPUNIT_ASSERT_EQUAL(3, s
.length());
759 CPPUNIT_ASSERT(wxT('f') == s
[0u]);
760 CPPUNIT_ASSERT(wxT('o') == s
[1]);
761 CPPUNIT_ASSERT(wxT('o') == s
[2]);
764 // also check that the buffer initially contains the original string
766 wxStringBuffer
buf(s
, 10);
767 CPPUNIT_ASSERT_EQUAL( wxT('f'), buf
[0] );
768 CPPUNIT_ASSERT_EQUAL( wxT('o'), buf
[1] );
769 CPPUNIT_ASSERT_EQUAL( wxT('o'), buf
[2] );
770 CPPUNIT_ASSERT_EQUAL( wxT('\0'), buf
[3] );
774 wxStringBufferLength
buf(s
, 10);
775 CPPUNIT_ASSERT_EQUAL( wxT('f'), buf
[0] );
776 CPPUNIT_ASSERT_EQUAL( wxT('o'), buf
[1] );
777 CPPUNIT_ASSERT_EQUAL( wxT('o'), buf
[2] );
778 CPPUNIT_ASSERT_EQUAL( wxT('\0'), buf
[3] );
780 // and check that it can be used to write only the specified number of
781 // characters to the string
782 wxStrcpy(buf
, wxT("barrbaz"));
786 CPPUNIT_ASSERT_EQUAL(4, s
.length());
787 CPPUNIT_ASSERT(wxT('b') == s
[0u]);
788 CPPUNIT_ASSERT(wxT('a') == s
[1]);
789 CPPUNIT_ASSERT(wxT('r') == s
[2]);
790 CPPUNIT_ASSERT(wxT('r') == s
[3]);
792 // check that creating buffer of length smaller than string works, i.e. at
793 // least doesn't crash (it would if we naively copied the entire original
794 // string contents in the buffer)
795 *wxStringBuffer(s
, 1) = '!';
798 void StringTestCase::UTF8Buf()
801 // "czech" in Czech ("cestina"):
802 static const char *textUTF8
= "\304\215e\305\241tina";
803 static const wchar_t textUTF16
[] = {0x10D, 0x65, 0x161, 0x74, 0x69, 0x6E, 0x61, 0};
806 wxStrcpy(wxUTF8StringBuffer(s
, 9), textUTF8
);
807 CPPUNIT_ASSERT(s
== textUTF16
);
810 wxUTF8StringBufferLength
buf(s
, 20);
811 wxStrcpy(buf
, textUTF8
);
814 CPPUNIT_ASSERT(s
== wxString(textUTF16
, 0, 3));
815 #endif // wxUSE_UNICODE
820 void StringTestCase::CStrDataTernaryOperator()
822 DoCStrDataTernaryOperator(true);
823 DoCStrDataTernaryOperator(false);
826 template<typename T
> bool CheckStr(const wxString
& expected
, T s
)
828 return expected
== wxString(s
);
831 void StringTestCase::DoCStrDataTernaryOperator(bool cond
)
833 // test compilation of wxCStrData when used with operator?: (the asserts
834 // are not very important, we're testing if the code compiles at all):
838 const wchar_t *wcStr
= L
"foo";
839 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : wcStr
)) );
840 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : L
"foo")) );
841 CPPUNIT_ASSERT( CheckStr(s
, (cond
? wcStr
: s
.c_str())) );
842 CPPUNIT_ASSERT( CheckStr(s
, (cond
? L
"foo" : s
.c_str())) );
844 const char *mbStr
= "foo";
845 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : mbStr
)) );
846 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : "foo")) );
847 CPPUNIT_ASSERT( CheckStr(s
, (cond
? mbStr
: s
.c_str())) );
848 CPPUNIT_ASSERT( CheckStr(s
, (cond
? "foo" : s
.c_str())) );
851 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? empty
.c_str() : wxEmptyString
)) );
852 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? wxEmptyString
: empty
.c_str())) );
855 void StringTestCase::CStrDataOperators()
859 CPPUNIT_ASSERT( s
.c_str()[0] == 'h' );
860 CPPUNIT_ASSERT( s
.c_str()[1] == 'e' );
862 // IMPORTANT: at least with the CRT coming with MSVC++ 2008 trying to access
863 // the final character results in an assert failure (with debug CRT)
864 //CPPUNIT_ASSERT( s.c_str()[5] == '\0' );
866 CPPUNIT_ASSERT( *s
.c_str() == 'h' );
867 CPPUNIT_ASSERT( *(s
.c_str() + 2) == 'l' );
868 //CPPUNIT_ASSERT( *(s.c_str() + 5) == '\0' );
871 bool CheckStrChar(const wxString
& expected
, char *s
)
872 { return CheckStr(expected
, s
); }
873 bool CheckStrWChar(const wxString
& expected
, wchar_t *s
)
874 { return CheckStr(expected
, s
); }
875 bool CheckStrConstChar(const wxString
& expected
, const char *s
)
876 { return CheckStr(expected
, s
); }
877 bool CheckStrConstWChar(const wxString
& expected
, const wchar_t *s
)
878 { return CheckStr(expected
, s
); }
880 void StringTestCase::CStrDataImplicitConversion()
884 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.c_str()) );
885 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.c_str()) );
887 // implicit conversion of wxString is not available in STL build
889 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
) );
890 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
) );
894 void StringTestCase::ExplicitConversion()
898 CPPUNIT_ASSERT( CheckStr(s
, s
.mb_str()) );
899 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.mb_str()) );
900 CPPUNIT_ASSERT( CheckStrChar(s
, s
.char_str()) );
902 CPPUNIT_ASSERT( CheckStr(s
, s
.wc_str()) );
903 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.wc_str()) );
904 CPPUNIT_ASSERT( CheckStrWChar(s
, s
.wchar_str()) );
907 void StringTestCase::IndexedAccess()
910 CPPUNIT_ASSERT_EQUAL( 'r', (char)s
[2] );
912 // this tests for a possible bug in UTF-8 based wxString implementation:
913 // the 3rd character of the underlying byte string is going to change, but
914 // the 3rd character of wxString should remain the same
916 CPPUNIT_ASSERT_EQUAL( 'r', (char)s
[2] );
919 void StringTestCase::BeforeAndAfter()
921 const wxString
s(L
"letter=\xe9;\xe7a=l\xe0");
923 CPPUNIT_ASSERT_EQUAL( "letter", s
.BeforeFirst('=') );
924 CPPUNIT_ASSERT_EQUAL( s
, s
.BeforeFirst('!') );
925 CPPUNIT_ASSERT_EQUAL( L
"letter=\xe9", s
.BeforeFirst(';') );
927 CPPUNIT_ASSERT_EQUAL( L
"letter=\xe9;\xe7a", s
.BeforeLast('=') );
928 CPPUNIT_ASSERT_EQUAL( "", s
.BeforeLast('!') );
929 CPPUNIT_ASSERT_EQUAL( L
"letter=\xe9", s
.BeforeLast(';') );
931 CPPUNIT_ASSERT_EQUAL( L
"\xe9;\xe7a=l\xe0", s
.AfterFirst('=') );
932 CPPUNIT_ASSERT_EQUAL( "", s
.AfterFirst('!') );
933 CPPUNIT_ASSERT_EQUAL( L
"\xe7a=l\xe0", s
.AfterFirst(';') );
935 CPPUNIT_ASSERT_EQUAL( L
"l\xe0", s
.AfterLast('=') );
936 CPPUNIT_ASSERT_EQUAL( s
, s
.AfterLast('!') );
937 CPPUNIT_ASSERT_EQUAL( L
"\xe7a=l\xe0", s
.AfterLast(';') );
940 void StringTestCase::ScopedBuffers()
942 // wxString relies on efficient buffers, verify they work as they should
944 const char *literal
= "Hello World!";
946 // non-owned buffer points to the string passed to it
947 wxScopedCharBuffer sbuf
= wxScopedCharBuffer::CreateNonOwned(literal
);
948 CPPUNIT_ASSERT( sbuf
.data() == literal
);
950 // a copy of scoped non-owned buffer still points to the same string
951 wxScopedCharBuffer
sbuf2(sbuf
);
952 CPPUNIT_ASSERT( sbuf
.data() == sbuf2
.data() );
954 // but assigning it to wxCharBuffer makes a full copy
955 wxCharBuffer
buf(sbuf
);
956 CPPUNIT_ASSERT( buf
.data() != literal
);
957 CPPUNIT_ASSERT_EQUAL( literal
, buf
.data() );
959 wxCharBuffer buf2
= sbuf
;
960 CPPUNIT_ASSERT( buf2
.data() != literal
);
961 CPPUNIT_ASSERT_EQUAL( literal
, buf
.data() );