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_SUITE_END();
70 void StaticConstructors();
85 #endif // wxLongLong_t
89 void CStrDataTernaryOperator();
90 void DoCStrDataTernaryOperator(bool cond
);
91 void CStrDataOperators();
92 void CStrDataImplicitConversion();
93 void ExplicitConversion();
95 void BeforeAndAfter();
97 DECLARE_NO_COPY_CLASS(StringTestCase
)
100 // register in the unnamed registry so that these tests are run by default
101 CPPUNIT_TEST_SUITE_REGISTRATION( StringTestCase
);
103 // also include in it's own registry so that these tests can be run alone
104 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StringTestCase
, "StringTestCase" );
106 StringTestCase::StringTestCase()
110 void StringTestCase::String()
118 for (int i
= 0; i
< 2; ++i
)
122 c
= _T("! How'ya doin'?");
125 c
= _T("Hello world! What's up?");
126 CPPUNIT_ASSERT( c
!= a
);
130 void StringTestCase::PChar()
136 for (int i
= 0; i
< 2; ++i
)
138 wxStrcpy (a
, _T("Hello"));
139 wxStrcpy (b
, _T(" world"));
140 wxStrcpy (c
, _T("! How'ya doin'?"));
143 wxStrcpy (c
, _T("Hello world! What's up?"));
144 CPPUNIT_ASSERT( wxStrcmp (c
, a
) != 0 );
148 void StringTestCase::Format()
151 s1
.Printf(_T("%03d"), 18);
152 CPPUNIT_ASSERT( s1
== wxString::Format(_T("%03d"), 18) );
153 s2
.Printf(_T("Number 18: %s\n"), s1
.c_str());
154 CPPUNIT_ASSERT( s2
== wxString::Format(_T("Number 18: %s\n"), s1
.c_str()) );
156 static const size_t lengths
[] = { 1, 512, 1024, 1025, 2048, 4096, 4097 };
157 for ( size_t n
= 0; n
< WXSIZEOF(lengths
); n
++ )
159 const size_t len
= lengths
[n
];
161 wxString
s(_T('Z'), len
);
162 CPPUNIT_ASSERT_EQUAL( len
, wxString::Format(_T("%s"), s
.c_str()).length());
166 void StringTestCase::Constructors()
168 CPPUNIT_ASSERT_EQUAL( "", wxString('Z', 0) );
169 CPPUNIT_ASSERT_EQUAL( "Z", wxString('Z') );
170 CPPUNIT_ASSERT_EQUAL( "ZZZZ", wxString('Z', 4) );
171 CPPUNIT_ASSERT_EQUAL( "Hell", wxString("Hello", 4) );
172 CPPUNIT_ASSERT_EQUAL( "Hello", wxString("Hello", 5) );
175 CPPUNIT_ASSERT_EQUAL( L
"", wxString(L
'Z', 0) );
176 CPPUNIT_ASSERT_EQUAL( L
"Z", wxString(L
'Z') );
177 CPPUNIT_ASSERT_EQUAL( L
"ZZZZ", wxString(L
'Z', 4) );
178 CPPUNIT_ASSERT_EQUAL( L
"Hell", wxString(L
"Hello", 4) );
179 CPPUNIT_ASSERT_EQUAL( L
"Hello", wxString(L
"Hello", 5) );
180 #endif // wxUSE_UNICODE
182 static const char *s
= "?really!";
183 const char *start
= wxStrchr(s
, 'r');
184 const char *end
= wxStrchr(s
, '!');
185 CPPUNIT_ASSERT_EQUAL( "really", wxString(start
, end
) );
187 // test if creating string from NULL C pointer works:
188 CPPUNIT_ASSERT_EQUAL( "", wxString((const char *)NULL
) );
191 void StringTestCase::StaticConstructors()
193 CPPUNIT_ASSERT_EQUAL( "", wxString::FromAscii("") );
194 CPPUNIT_ASSERT_EQUAL( "", wxString::FromAscii("Hello", 0) );
195 CPPUNIT_ASSERT_EQUAL( "Hell", wxString::FromAscii("Hello", 4) );
196 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromAscii("Hello", 5) );
197 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromAscii("Hello") );
199 // FIXME: this doesn't work currently but should!
200 //CPPUNIT_ASSERT_EQUAL( 1, wxString::FromAscii("", 1).length() );
203 CPPUNIT_ASSERT_EQUAL( "", wxString::FromUTF8("") );
204 CPPUNIT_ASSERT_EQUAL( "", wxString::FromUTF8("Hello", 0) );
205 CPPUNIT_ASSERT_EQUAL( "Hell", wxString::FromUTF8("Hello", 4) );
206 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromUTF8("Hello", 5) );
207 CPPUNIT_ASSERT_EQUAL( "Hello", wxString::FromUTF8("Hello") );
209 //CPPUNIT_ASSERT_EQUAL( 1, wxString::FromUTF8("", 1).length() );
212 void StringTestCase::Extraction()
214 wxString
s(_T("Hello, world!"));
216 CPPUNIT_ASSERT( wxStrcmp( s
.c_str() , _T("Hello, world!") ) == 0 );
217 CPPUNIT_ASSERT( wxStrcmp( s
.Left(5).c_str() , _T("Hello") ) == 0 );
218 CPPUNIT_ASSERT( wxStrcmp( s
.Right(6).c_str() , _T("world!") ) == 0 );
219 CPPUNIT_ASSERT( wxStrcmp( s(3, 5).c_str() , _T("lo, w") ) == 0 );
220 CPPUNIT_ASSERT( wxStrcmp( s
.Mid(3).c_str() , _T("lo, world!") ) == 0 );
221 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3, 5).c_str() , _T("lo, w") ) == 0 );
222 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3).c_str() , _T("lo, world!") ) == 0 );
225 static const char *germanUTF8
= "Oberfl\303\244che";
226 wxString
strUnicode(wxString::FromUTF8(germanUTF8
));
228 CPPUNIT_ASSERT( strUnicode
.Mid(0, 10) == strUnicode
);
229 CPPUNIT_ASSERT( strUnicode
.Mid(7, 2) == "ch" );
230 #endif // wxUSE_UNICODE
234 #define TEST_STARTS_WITH(prefix, correct_rest, result) \
235 CPPUNIT_ASSERT_EQUAL(result, s.StartsWith(prefix, &rest)); \
237 CPPUNIT_ASSERT_EQUAL(correct_rest, rest)
239 TEST_STARTS_WITH( _T("Hello"), _T(", world!"), true );
240 TEST_STARTS_WITH( _T("Hello, "), _T("world!"), true );
241 TEST_STARTS_WITH( _T("Hello, world!"), _T(""), true );
242 TEST_STARTS_WITH( _T("Hello, world!!!"), _T(""), false );
243 TEST_STARTS_WITH( _T(""), _T("Hello, world!"), true );
244 TEST_STARTS_WITH( _T("Goodbye"), _T(""), false );
245 TEST_STARTS_WITH( _T("Hi"), _T(""), false );
247 #undef TEST_STARTS_WITH
249 rest
= "Hello world";
250 CPPUNIT_ASSERT( rest
.StartsWith("Hello ", &rest
) );
251 CPPUNIT_ASSERT_EQUAL("world", rest
);
253 #define TEST_ENDS_WITH(suffix, correct_rest, result) \
254 CPPUNIT_ASSERT_EQUAL(result, s.EndsWith(suffix, &rest)); \
256 CPPUNIT_ASSERT_EQUAL(correct_rest, rest)
258 TEST_ENDS_WITH( _T(""), _T("Hello, world!"), true );
259 TEST_ENDS_WITH( _T("!"), _T("Hello, world"), true );
260 TEST_ENDS_WITH( _T(", world!"), _T("Hello"), true );
261 TEST_ENDS_WITH( _T("ello, world!"), _T("H"), true );
262 TEST_ENDS_WITH( _T("Hello, world!"), _T(""), true );
263 TEST_ENDS_WITH( _T("very long string"), _T(""), false );
264 TEST_ENDS_WITH( _T("?"), _T(""), false );
265 TEST_ENDS_WITH( _T("Hello, world"), _T(""), false );
266 TEST_ENDS_WITH( _T("Gello, world!"), _T(""), false );
268 #undef TEST_ENDS_WITH
271 void StringTestCase::Trim()
273 #define TEST_TRIM( str , dir , result ) \
274 CPPUNIT_ASSERT( wxString(str).Trim(dir) == result )
276 TEST_TRIM( _T(" Test "), true, _T(" Test") );
277 TEST_TRIM( _T(" "), true, _T("") );
278 TEST_TRIM( _T(" "), true, _T("") );
279 TEST_TRIM( _T(""), true, _T("") );
281 TEST_TRIM( _T(" Test "), false, _T("Test ") );
282 TEST_TRIM( _T(" "), false, _T("") );
283 TEST_TRIM( _T(" "), false, _T("") );
284 TEST_TRIM( _T(""), false, _T("") );
289 void StringTestCase::Find()
291 #define TEST_FIND( str , start , result ) \
292 CPPUNIT_ASSERT( wxString(str).find(_T("ell"), start) == result );
294 TEST_FIND( _T("Well, hello world"), 0, 1 );
295 TEST_FIND( _T("Well, hello world"), 6, 7 );
296 TEST_FIND( _T("Well, hello world"), 9, wxString::npos
);
301 void StringTestCase::Replace()
303 #define TEST_REPLACE( original , pos , len , replacement , result ) \
305 wxString s = original; \
306 s.replace( pos , len , replacement ); \
307 CPPUNIT_ASSERT_EQUAL( result, s ); \
310 TEST_REPLACE( _T("012-AWORD-XYZ"), 4, 5, _T("BWORD"), _T("012-BWORD-XYZ") );
311 TEST_REPLACE( _T("increase"), 0, 2, _T("de"), _T("decrease") );
312 TEST_REPLACE( _T("wxWindow"), 8, 0, _T("s"), _T("wxWindows") );
313 TEST_REPLACE( _T("foobar"), 3, 0, _T("-"), _T("foo-bar") );
314 TEST_REPLACE( _T("barfoo"), 0, 6, _T("foobar"), _T("foobar") );
317 #define TEST_NULLCHARREPLACE( o , olen, pos , len , replacement , r, rlen ) \
319 wxString s(o,olen); \
320 s.replace( pos , len , replacement ); \
321 CPPUNIT_ASSERT( s == wxString(r,rlen) ); \
324 TEST_NULLCHARREPLACE( _T("null\0char"), 9, 5, 1, _T("d"),
325 _T("null\0dhar"), 9 );
327 #define TEST_WXREPLACE( o , olen, olds, news, all, r, rlen ) \
329 wxString s(o,olen); \
330 s.Replace( olds, news, all ); \
331 CPPUNIT_ASSERT( s == wxString(r,rlen) ); \
334 TEST_WXREPLACE( _T("null\0char"), 9, _T("c"), _T("de"), true,
335 _T("null\0dehar"), 10 );
337 TEST_WXREPLACE( _T("null\0dehar"), 10, _T("de"), _T("c"), true,
338 _T("null\0char"), 9 );
340 TEST_WXREPLACE( "life", 4, "f", "", false, "lie", 3 );
342 #undef TEST_WXREPLACE
343 #undef TEST_NULLCHARREPLACE
347 void StringTestCase::Match()
349 #define TEST_MATCH( s1 , s2 , result ) \
350 CPPUNIT_ASSERT( wxString(s1).Matches(s2) == result )
352 TEST_MATCH( _T("foobar"), _T("foo*"), true );
353 TEST_MATCH( _T("foobar"), _T("*oo*"), true );
354 TEST_MATCH( _T("foobar"), _T("*bar"), true );
355 TEST_MATCH( _T("foobar"), _T("??????"), true );
356 TEST_MATCH( _T("foobar"), _T("f??b*"), true );
357 TEST_MATCH( _T("foobar"), _T("f?b*"), false );
358 TEST_MATCH( _T("foobar"), _T("*goo*"), false );
359 TEST_MATCH( _T("foobar"), _T("*foo"), false );
360 TEST_MATCH( _T("foobarfoo"), _T("*foo"), true );
361 TEST_MATCH( _T(""), _T("*"), true );
362 TEST_MATCH( _T(""), _T("?"), false );
368 void StringTestCase::CaseChanges()
370 wxString
s1(_T("Hello!"));
376 CPPUNIT_ASSERT_EQUAL( _T("HELLO!"), s1u
);
377 CPPUNIT_ASSERT_EQUAL( _T("hello!"), s1l
);
383 CPPUNIT_ASSERT_EQUAL( "", s2u
);
384 CPPUNIT_ASSERT_EQUAL( "", s2l
);
387 wxString
s3("good bye");
388 CPPUNIT_ASSERT_EQUAL( "Good bye", s3
.Capitalize() );
389 s3
.MakeCapitalized();
390 CPPUNIT_ASSERT_EQUAL( "Good bye", s3
);
392 CPPUNIT_ASSERT_EQUAL( "Abc", wxString("ABC").Capitalize() );
394 CPPUNIT_ASSERT_EQUAL( "", wxString().Capitalize() );
397 void StringTestCase::Compare()
399 wxString s1
= wxT("AHH");
400 wxString eq
= wxT("AHH");
401 wxString neq1
= wxT("HAH");
402 wxString neq2
= wxT("AH");
403 wxString neq3
= wxT("AHHH");
404 wxString neq4
= wxT("AhH");
406 CPPUNIT_ASSERT( s1
== eq
);
407 CPPUNIT_ASSERT( s1
!= neq1
);
408 CPPUNIT_ASSERT( s1
!= neq2
);
409 CPPUNIT_ASSERT( s1
!= neq3
);
410 CPPUNIT_ASSERT( s1
!= neq4
);
412 CPPUNIT_ASSERT( s1
== wxT("AHH") );
413 CPPUNIT_ASSERT( s1
!= wxT("no") );
414 CPPUNIT_ASSERT( s1
< wxT("AZ") );
415 CPPUNIT_ASSERT( s1
<= wxT("AZ") );
416 CPPUNIT_ASSERT( s1
<= wxT("AHH") );
417 CPPUNIT_ASSERT( s1
> wxT("AA") );
418 CPPUNIT_ASSERT( s1
>= wxT("AA") );
419 CPPUNIT_ASSERT( s1
>= wxT("AHH") );
421 // test comparison with C strings in Unicode build (must work in ANSI as
423 CPPUNIT_ASSERT( s1
== "AHH" );
424 CPPUNIT_ASSERT( s1
!= "no" );
425 CPPUNIT_ASSERT( s1
< "AZ" );
426 CPPUNIT_ASSERT( s1
<= "AZ" );
427 CPPUNIT_ASSERT( s1
<= "AHH" );
428 CPPUNIT_ASSERT( s1
> "AA" );
429 CPPUNIT_ASSERT( s1
>= "AA" );
430 CPPUNIT_ASSERT( s1
>= "AHH" );
432 // wxString _s1 = wxT("A\0HH");
433 // wxString _eq = wxT("A\0HH");
434 // wxString _neq1 = wxT("H\0AH");
435 // wxString _neq2 = wxT("A\0H");
436 // wxString _neq3 = wxT("A\0HHH");
437 // wxString _neq4 = wxT("A\0hH");
440 neq1
.insert(1,1,'\0');
441 neq2
.insert(1,1,'\0');
442 neq3
.insert(1,1,'\0');
443 neq4
.insert(1,1,'\0');
445 CPPUNIT_ASSERT( s1
== eq
);
446 CPPUNIT_ASSERT( s1
!= neq1
);
447 CPPUNIT_ASSERT( s1
!= neq2
);
448 CPPUNIT_ASSERT( s1
!= neq3
);
449 CPPUNIT_ASSERT( s1
!= neq4
);
452 void StringTestCase::CompareNoCase()
454 wxString s1
= wxT("AHH");
455 wxString eq
= wxT("AHH");
456 wxString eq2
= wxT("AhH");
457 wxString eq3
= wxT("ahh");
458 wxString neq
= wxT("HAH");
459 wxString neq2
= wxT("AH");
460 wxString neq3
= wxT("AHHH");
462 #define CPPUNIT_CNCEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) == 0)
463 #define CPPUNIT_CNCNEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) != 0)
465 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
466 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
467 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
469 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
470 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
471 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
474 // wxString _s1 = wxT("A\0HH");
475 // wxString _eq = wxT("A\0HH");
476 // wxString _eq2 = wxT("A\0hH");
477 // wxString _eq3 = wxT("a\0hh");
478 // wxString _neq = wxT("H\0AH");
479 // wxString _neq2 = wxT("A\0H");
480 // wxString _neq3 = wxT("A\0HHH");
484 eq2
.insert(1,1,'\0');
485 eq3
.insert(1,1,'\0');
486 neq
.insert(1,1,'\0');
487 neq2
.insert(1,1,'\0');
488 neq3
.insert(1,1,'\0');
490 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
491 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
492 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
494 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
495 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
496 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
499 void StringTestCase::Contains()
501 static const struct ContainsData
504 const wxChar
*needle
;
508 { _T(""), _T(""), true },
509 { _T(""), _T("foo"), false },
510 { _T("foo"), _T(""), true },
511 { _T("foo"), _T("f"), true },
512 { _T("foo"), _T("o"), true },
513 { _T("foo"), _T("oo"), true },
514 { _T("foo"), _T("ooo"), false },
515 { _T("foo"), _T("oooo"), false },
516 { _T("foo"), _T("fooo"), false },
519 for ( size_t n
= 0; n
< WXSIZEOF(containsData
); n
++ )
521 const ContainsData
& cd
= containsData
[n
];
522 CPPUNIT_ASSERT_EQUAL( cd
.contains
, wxString(cd
.hay
).Contains(cd
.needle
) );
526 // flags used in ToLongData.flags
531 Number_Unsigned
= 2, // if not specified, works for signed conversion
532 Number_Signed
= 4, // if not specified, works for unsigned
533 Number_LongLong
= 8, // only for long long tests
534 Number_Long
= 16 // only for long tests
537 static const struct ToLongData
544 #endif // wxLongLong_t
547 long LValue() const { return value
; }
548 unsigned long ULValue() const { return value
; }
550 wxLongLong_t
LLValue() const { return value
; }
551 wxULongLong_t
ULLValue() const { return (wxULongLong_t
)value
; }
552 #endif // wxLongLong_t
554 bool IsOk() const { return !(flags
& Number_Invalid
); }
557 { _T("1"), 1, Number_Ok
},
558 { _T("0"), 0, Number_Ok
},
559 { _T("a"), 0, Number_Invalid
},
560 { _T("12345"), 12345, Number_Ok
},
561 { _T("--1"), 0, Number_Invalid
},
563 { _T("-1"), -1, Number_Signed
| Number_Long
},
564 // this is surprizing but consistent with strtoul() behaviour
565 { _T("-1"), ULONG_MAX
, Number_Unsigned
| Number_Long
},
567 // this must overflow, even with 64 bit long
568 { _T("922337203685477580711"), 0, Number_Invalid
},
571 { _T("2147483648"), wxLL(2147483648), Number_LongLong
},
572 { _T("-2147483648"), wxLL(-2147483648), Number_LongLong
| Number_Signed
},
573 { _T("9223372036854775808"), wxULL(9223372036854775808), Number_LongLong
|
575 #endif // wxLongLong_t
578 void StringTestCase::ToLong()
581 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
583 const ToLongData
& ld
= longData
[n
];
585 if ( ld
.flags
& (Number_LongLong
| Number_Unsigned
) )
588 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLong(&l
) );
590 CPPUNIT_ASSERT_EQUAL( ld
.LValue(), l
);
594 void StringTestCase::ToULong()
597 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
599 const ToLongData
& ld
= longData
[n
];
601 if ( ld
.flags
& (Number_LongLong
| Number_Signed
) )
604 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULong(&ul
) );
606 CPPUNIT_ASSERT_EQUAL( ld
.ULValue(), ul
);
612 void StringTestCase::ToLongLong()
615 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
617 const ToLongData
& ld
= longData
[n
];
619 if ( ld
.flags
& (Number_Long
| Number_Unsigned
) )
622 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLongLong(&l
) );
624 CPPUNIT_ASSERT_EQUAL( ld
.LLValue(), l
);
628 void StringTestCase::ToULongLong()
631 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
633 const ToLongData
& ld
= longData
[n
];
635 if ( ld
.flags
& (Number_Long
| Number_Signed
) )
638 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULongLong(&ul
) );
640 CPPUNIT_ASSERT_EQUAL( ld
.ULLValue(), ul
);
644 #endif // wxLongLong_t
646 void StringTestCase::ToDouble()
649 static const struct ToDoubleData
656 { _T("1"), 1, true },
657 { _T("1.23"), 1.23, true },
658 { _T(".1"), .1, true },
659 { _T("1."), 1, true },
660 { _T("1.."), 0, false },
661 { _T("0"), 0, true },
662 { _T("a"), 0, false },
663 { _T("12345"), 12345, true },
664 { _T("-1"), -1, true },
665 { _T("--1"), 0, false },
668 // we need to use decimal point, not comma or whatever is its value for the
670 wxSetlocale(LC_ALL
, "C");
673 for ( n
= 0; n
< WXSIZEOF(doubleData
); n
++ )
675 const ToDoubleData
& ld
= doubleData
[n
];
676 CPPUNIT_ASSERT_EQUAL( ld
.ok
, wxString(ld
.str
).ToDouble(&d
) );
678 CPPUNIT_ASSERT_EQUAL( ld
.value
, d
);
682 void StringTestCase::StringBuf()
684 // check that buffer can be used to write into the string
686 wxStrcpy(wxStringBuffer(s
, 10), _T("foo"));
688 CPPUNIT_ASSERT_EQUAL(3, s
.length());
689 CPPUNIT_ASSERT(_T('f') == s
[0u]);
690 CPPUNIT_ASSERT(_T('o') == s
[1]);
691 CPPUNIT_ASSERT(_T('o') == s
[2]);
694 // also check that the buffer initially contains the original string
696 wxStringBuffer
buf(s
, 10);
697 CPPUNIT_ASSERT_EQUAL( _T('f'), buf
[0] );
698 CPPUNIT_ASSERT_EQUAL( _T('o'), buf
[1] );
699 CPPUNIT_ASSERT_EQUAL( _T('o'), buf
[2] );
700 CPPUNIT_ASSERT_EQUAL( _T('\0'), buf
[3] );
704 wxStringBufferLength
buf(s
, 10);
705 CPPUNIT_ASSERT_EQUAL( _T('f'), buf
[0] );
706 CPPUNIT_ASSERT_EQUAL( _T('o'), buf
[1] );
707 CPPUNIT_ASSERT_EQUAL( _T('o'), buf
[2] );
708 CPPUNIT_ASSERT_EQUAL( _T('\0'), buf
[3] );
710 // and check that it can be used to write only the specified number of
711 // characters to the string
712 wxStrcpy(buf
, _T("barrbaz"));
716 CPPUNIT_ASSERT_EQUAL(4, s
.length());
717 CPPUNIT_ASSERT(_T('b') == s
[0u]);
718 CPPUNIT_ASSERT(_T('a') == s
[1]);
719 CPPUNIT_ASSERT(_T('r') == s
[2]);
720 CPPUNIT_ASSERT(_T('r') == s
[3]);
722 // check that creating buffer of length smaller than string works, i.e. at
723 // least doesn't crash (it would if we naively copied the entire original
724 // string contents in the buffer)
725 *wxStringBuffer(s
, 1) = '!';
728 void StringTestCase::UTF8Buf()
731 // "czech" in Czech ("cestina"):
732 static const char *textUTF8
= "\304\215e\305\241tina";
733 static const wchar_t textUTF16
[] = {0x10D, 0x65, 0x161, 0x74, 0x69, 0x6E, 0x61, 0};
736 wxStrcpy(wxUTF8StringBuffer(s
, 9), textUTF8
);
737 CPPUNIT_ASSERT(s
== textUTF16
);
740 wxUTF8StringBufferLength
buf(s
, 20);
741 wxStrcpy(buf
, textUTF8
);
744 CPPUNIT_ASSERT(s
== wxString(textUTF16
, 0, 3));
745 #endif // wxUSE_UNICODE
750 void StringTestCase::CStrDataTernaryOperator()
752 DoCStrDataTernaryOperator(true);
753 DoCStrDataTernaryOperator(false);
756 template<typename T
> bool CheckStr(const wxString
& expected
, T s
)
758 return expected
== wxString(s
);
761 void StringTestCase::DoCStrDataTernaryOperator(bool cond
)
763 // test compilation of wxCStrData when used with operator?: (the asserts
764 // are not very important, we're testing if the code compiles at all):
768 const wchar_t *wcStr
= L
"foo";
769 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : wcStr
)) );
770 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : L
"foo")) );
771 CPPUNIT_ASSERT( CheckStr(s
, (cond
? wcStr
: s
.c_str())) );
772 CPPUNIT_ASSERT( CheckStr(s
, (cond
? L
"foo" : s
.c_str())) );
774 const char *mbStr
= "foo";
775 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : mbStr
)) );
776 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : "foo")) );
777 CPPUNIT_ASSERT( CheckStr(s
, (cond
? mbStr
: s
.c_str())) );
778 CPPUNIT_ASSERT( CheckStr(s
, (cond
? "foo" : s
.c_str())) );
781 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? empty
.c_str() : wxEmptyString
)) );
782 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? wxEmptyString
: empty
.c_str())) );
785 void StringTestCase::CStrDataOperators()
789 CPPUNIT_ASSERT( s
.c_str()[0] == 'h' );
790 CPPUNIT_ASSERT( s
.c_str()[1] == 'e' );
791 CPPUNIT_ASSERT( s
.c_str()[5] == '\0' );
793 CPPUNIT_ASSERT( *s
.c_str() == 'h' );
794 CPPUNIT_ASSERT( *(s
.c_str() + 2) == 'l' );
795 CPPUNIT_ASSERT( *(s
.c_str() + 5) == '\0' );
798 bool CheckStrChar(const wxString
& expected
, char *s
)
799 { return CheckStr(expected
, s
); }
800 bool CheckStrWChar(const wxString
& expected
, wchar_t *s
)
801 { return CheckStr(expected
, s
); }
802 bool CheckStrConstChar(const wxString
& expected
, const char *s
)
803 { return CheckStr(expected
, s
); }
804 bool CheckStrConstWChar(const wxString
& expected
, const wchar_t *s
)
805 { return CheckStr(expected
, s
); }
807 void StringTestCase::CStrDataImplicitConversion()
811 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.c_str()) );
812 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.c_str()) );
814 // implicit conversion of wxString is not available in STL build
816 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
) );
817 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
) );
821 void StringTestCase::ExplicitConversion()
825 CPPUNIT_ASSERT( CheckStr(s
, s
.mb_str()) );
826 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.mb_str()) );
827 CPPUNIT_ASSERT( CheckStrChar(s
, s
.char_str()) );
829 CPPUNIT_ASSERT( CheckStr(s
, s
.wc_str()) );
830 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.wc_str()) );
831 CPPUNIT_ASSERT( CheckStrWChar(s
, s
.wchar_str()) );
834 void StringTestCase::IndexedAccess()
837 CPPUNIT_ASSERT_EQUAL( 'r', (char)s
[2] );
839 // this tests for a possible bug in UTF-8 based wxString implementation:
840 // the 3rd character of the underlying byte string is going to change, but
841 // the 3rd character of wxString should remain the same
843 CPPUNIT_ASSERT_EQUAL( 'r', (char)s
[2] );
846 void StringTestCase::BeforeAndAfter()
848 const wxString
s(L
"letter=\u00e9;\u00e7a=l\u00e0");
850 CPPUNIT_ASSERT_EQUAL( "letter", s
.BeforeFirst('=') );
851 CPPUNIT_ASSERT_EQUAL( s
, s
.BeforeFirst('!') );
852 CPPUNIT_ASSERT_EQUAL( L
"letter=\u00e9", s
.BeforeFirst(';') );
854 CPPUNIT_ASSERT_EQUAL( L
"letter=\u00e9;\u00e7a", s
.BeforeLast('=') );
855 CPPUNIT_ASSERT_EQUAL( "", s
.BeforeLast('!') );
856 CPPUNIT_ASSERT_EQUAL( L
"letter=\u00e9", s
.BeforeLast(';') );
858 CPPUNIT_ASSERT_EQUAL( L
"\u00e9;\u00e7a=l\u00e0", s
.AfterFirst('=') );
859 CPPUNIT_ASSERT_EQUAL( "", s
.AfterFirst('!') );
860 CPPUNIT_ASSERT_EQUAL( L
"\u00e7a=l\u00e0", s
.AfterFirst(';') );
862 CPPUNIT_ASSERT_EQUAL( L
"l\u00e0", s
.AfterLast('=') );
863 CPPUNIT_ASSERT_EQUAL( s
, s
.AfterLast('!') );
864 CPPUNIT_ASSERT_EQUAL( L
"\u00e7a=l\u00e0", s
.AfterLast(';') );