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( Extraction
);
42 CPPUNIT_TEST( Replace
);
43 CPPUNIT_TEST( Match
);
44 CPPUNIT_TEST( CaseChanges
);
45 CPPUNIT_TEST( Compare
);
46 CPPUNIT_TEST( CompareNoCase
);
47 CPPUNIT_TEST( Contains
);
48 CPPUNIT_TEST( ToLong
);
49 CPPUNIT_TEST( ToULong
);
51 CPPUNIT_TEST( ToLongLong
);
52 CPPUNIT_TEST( ToULongLong
);
53 #endif // wxLongLong_t
54 CPPUNIT_TEST( ToDouble
);
55 CPPUNIT_TEST( WriteBuf
);
56 CPPUNIT_TEST( CStrDataTernaryOperator
);
57 CPPUNIT_TEST( CStrDataOperators
);
58 CPPUNIT_TEST( CStrDataImplicitConversion
);
59 CPPUNIT_TEST( ExplicitConversion
);
60 CPPUNIT_TEST_SUITE_END();
80 #endif // wxLongLong_t
83 void CStrDataTernaryOperator();
84 void DoCStrDataTernaryOperator(bool cond
);
85 void CStrDataOperators();
86 void CStrDataImplicitConversion();
87 void ExplicitConversion();
89 DECLARE_NO_COPY_CLASS(StringTestCase
)
92 // register in the unnamed registry so that these tests are run by default
93 CPPUNIT_TEST_SUITE_REGISTRATION( StringTestCase
);
95 // also include in it's own registry so that these tests can be run alone
96 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StringTestCase
, "StringTestCase" );
98 StringTestCase::StringTestCase()
102 void StringTestCase::String()
110 for (int i
= 0; i
< 2; ++i
)
114 c
= _T("! How'ya doin'?");
117 c
= _T("Hello world! What's up?");
118 CPPUNIT_ASSERT( c
!= a
);
122 void StringTestCase::PChar()
128 for (int i
= 0; i
< 2; ++i
)
130 wxStrcpy (a
, _T("Hello"));
131 wxStrcpy (b
, _T(" world"));
132 wxStrcpy (c
, _T("! How'ya doin'?"));
135 wxStrcpy (c
, _T("Hello world! What's up?"));
136 CPPUNIT_ASSERT( wxStrcmp (c
, a
) != 0 );
140 void StringTestCase::Format()
143 s1
.Printf(_T("%03d"), 18);
144 CPPUNIT_ASSERT( s1
== wxString::Format(_T("%03d"), 18) );
145 s2
.Printf(_T("Number 18: %s\n"), s1
.c_str());
146 CPPUNIT_ASSERT( s2
== wxString::Format(_T("Number 18: %s\n"), s1
.c_str()) );
148 static const size_t lengths
[] = { 1, 512, 1024, 1025, 2048, 4096, 4097 };
149 for ( size_t n
= 0; n
< WXSIZEOF(lengths
); n
++ )
151 const size_t len
= lengths
[n
];
153 wxString
s(_T('Z'), len
);
154 CPPUNIT_ASSERT_EQUAL( len
, wxString::Format(_T("%s"), s
.c_str()).length());
158 void StringTestCase::Constructors()
160 #define TEST_CTOR(args, res) \
163 CPPUNIT_ASSERT( s == res ); \
166 TEST_CTOR((_T('Z'), 4), _T("ZZZZ"));
167 TEST_CTOR((_T("Hello"), 4), _T("Hell"));
168 TEST_CTOR((_T("Hello"), 5), _T("Hello"));
170 static const wxChar
*s
= _T("?really!");
171 const wxChar
*start
= wxStrchr(s
, _T('r'));
172 const wxChar
*end
= wxStrchr(s
, _T('!'));
173 TEST_CTOR((start
, end
), _T("really"));
175 // test if creating string from NULL C pointer works:
176 TEST_CTOR(((char*)NULL
), "");
180 void StringTestCase::Extraction()
182 wxString
s(_T("Hello, world!"));
184 CPPUNIT_ASSERT( wxStrcmp( s
.c_str() , _T("Hello, world!") ) == 0 );
185 CPPUNIT_ASSERT( wxStrcmp( s
.Left(5).c_str() , _T("Hello") ) == 0 );
186 CPPUNIT_ASSERT( wxStrcmp( s
.Right(6).c_str() , _T("world!") ) == 0 );
187 CPPUNIT_ASSERT( wxStrcmp( s(3, 5).c_str() , _T("lo, w") ) == 0 );
188 CPPUNIT_ASSERT( wxStrcmp( s
.Mid(3).c_str() , _T("lo, world!") ) == 0 );
189 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3, 5).c_str() , _T("lo, w") ) == 0 );
190 CPPUNIT_ASSERT( wxStrcmp( s
.substr(3).c_str() , _T("lo, world!") ) == 0 );
193 static const char *germanUTF8
= "Oberfl\303\244che";
194 wxString
strUnicode(wxString::FromUTF8(germanUTF8
));
196 CPPUNIT_ASSERT( strUnicode
.Mid(0, 10) == strUnicode
);
197 CPPUNIT_ASSERT( strUnicode
.Mid(7, 2) == "ch" );
198 #endif // wxUSE_UNICODE
202 #define TEST_STARTS_WITH(prefix, correct_rest, result) \
203 CPPUNIT_ASSERT_EQUAL(result, s.StartsWith(prefix, &rest)); \
205 CPPUNIT_ASSERT_EQUAL(wxString(correct_rest), rest)
207 TEST_STARTS_WITH( _T("Hello"), _T(", world!"), true );
208 TEST_STARTS_WITH( _T("Hello, "), _T("world!"), true );
209 TEST_STARTS_WITH( _T("Hello, world!"), _T(""), true );
210 TEST_STARTS_WITH( _T("Hello, world!!!"), _T(""), false );
211 TEST_STARTS_WITH( _T(""), _T("Hello, world!"), true );
212 TEST_STARTS_WITH( _T("Goodbye"), _T(""), false );
213 TEST_STARTS_WITH( _T("Hi"), _T(""), false );
215 #undef TEST_STARTS_WITH
217 #define TEST_ENDS_WITH(suffix, correct_rest, result) \
218 CPPUNIT_ASSERT_EQUAL(result, s.EndsWith(suffix, &rest)); \
220 CPPUNIT_ASSERT_EQUAL(wxString(correct_rest), rest)
222 TEST_ENDS_WITH( _T(""), _T("Hello, world!"), true );
223 TEST_ENDS_WITH( _T("!"), _T("Hello, world"), true );
224 TEST_ENDS_WITH( _T(", world!"), _T("Hello"), true );
225 TEST_ENDS_WITH( _T("ello, world!"), _T("H"), true );
226 TEST_ENDS_WITH( _T("Hello, world!"), _T(""), true );
227 TEST_ENDS_WITH( _T("very long string"), _T(""), false );
228 TEST_ENDS_WITH( _T("?"), _T(""), false );
229 TEST_ENDS_WITH( _T("Hello, world"), _T(""), false );
230 TEST_ENDS_WITH( _T("Gello, world!"), _T(""), false );
232 #undef TEST_ENDS_WITH
235 void StringTestCase::Trim()
237 #define TEST_TRIM( str , dir , result ) \
238 CPPUNIT_ASSERT( wxString(str).Trim(dir) == result )
240 TEST_TRIM( _T(" Test "), true, _T(" Test") );
241 TEST_TRIM( _T(" "), true, _T("") );
242 TEST_TRIM( _T(" "), true, _T("") );
243 TEST_TRIM( _T(""), true, _T("") );
245 TEST_TRIM( _T(" Test "), false, _T("Test ") );
246 TEST_TRIM( _T(" "), false, _T("") );
247 TEST_TRIM( _T(" "), false, _T("") );
248 TEST_TRIM( _T(""), false, _T("") );
253 void StringTestCase::Find()
255 #define TEST_FIND( str , start , result ) \
256 CPPUNIT_ASSERT( wxString(str).find(_T("ell"), start) == result );
258 TEST_FIND( _T("Well, hello world"), 0, 1 );
259 TEST_FIND( _T("Well, hello world"), 6, 7 );
260 TEST_FIND( _T("Well, hello world"), 9, wxString::npos
);
265 void StringTestCase::Replace()
267 #define TEST_REPLACE( original , pos , len , replacement , result ) \
269 wxString s = original; \
270 s.replace( pos , len , replacement ); \
271 CPPUNIT_ASSERT( s == result ); \
274 TEST_REPLACE( _T("012-AWORD-XYZ"), 4, 5, _T("BWORD"), _T("012-BWORD-XYZ") );
275 TEST_REPLACE( _T("increase"), 0, 2, _T("de"), _T("decrease") );
276 TEST_REPLACE( _T("wxWindow"), 8, 0, _T("s"), _T("wxWindows") );
277 TEST_REPLACE( _T("foobar"), 3, 0, _T("-"), _T("foo-bar") );
278 TEST_REPLACE( _T("barfoo"), 0, 6, _T("foobar"), _T("foobar") );
281 #define TEST_NULLCHARREPLACE( o , olen, pos , len , replacement , r, rlen ) \
283 wxString s(o,olen); \
284 s.replace( pos , len , replacement ); \
285 CPPUNIT_ASSERT( s == wxString(r,rlen) ); \
288 TEST_NULLCHARREPLACE( _T("null\0char"), 9, 5, 1, _T("d"),
289 _T("null\0dhar"), 9 );
291 #define TEST_WXREPLACE( o , olen, olds, news, all, r, rlen ) \
293 wxString s(o,olen); \
294 s.Replace( olds, news, all ); \
295 CPPUNIT_ASSERT( s == wxString(r,rlen) ); \
298 TEST_WXREPLACE( _T("null\0char"), 9, _T("c"), _T("de"), true,
299 _T("null\0dehar"), 10 );
301 TEST_WXREPLACE( _T("null\0dehar"), 10, _T("de"), _T("c"), true,
302 _T("null\0char"), 9 );
304 #undef TEST_WXREPLACE
305 #undef TEST_NULLCHARREPLACE
309 void StringTestCase::Match()
311 #define TEST_MATCH( s1 , s2 , result ) \
312 CPPUNIT_ASSERT( wxString(s1).Matches(s2) == result )
314 TEST_MATCH( _T("foobar"), _T("foo*"), true );
315 TEST_MATCH( _T("foobar"), _T("*oo*"), true );
316 TEST_MATCH( _T("foobar"), _T("*bar"), true );
317 TEST_MATCH( _T("foobar"), _T("??????"), true );
318 TEST_MATCH( _T("foobar"), _T("f??b*"), true );
319 TEST_MATCH( _T("foobar"), _T("f?b*"), false );
320 TEST_MATCH( _T("foobar"), _T("*goo*"), false );
321 TEST_MATCH( _T("foobar"), _T("*foo"), false );
322 TEST_MATCH( _T("foobarfoo"), _T("*foo"), true );
323 TEST_MATCH( _T(""), _T("*"), true );
324 TEST_MATCH( _T(""), _T("?"), false );
330 void StringTestCase::CaseChanges()
332 wxString
s1(_T("Hello!"));
341 CPPUNIT_ASSERT( s1u
== _T("HELLO!") );
342 CPPUNIT_ASSERT( s1l
== _T("hello!") );
343 CPPUNIT_ASSERT( s2u
== wxEmptyString
);
344 CPPUNIT_ASSERT( s2l
== wxEmptyString
);
347 wxLocale
locRu(wxLANGUAGE_RUSSIAN
, 0 /* flags */);
350 // try upper casing 8bit strings
351 const wchar_t capital_ya
[] = { 0x42f, 0 },
352 small_ya
[] = { 0x44f, 0 };
354 wxString
sUpper(wxConvLibc
.cWC2MB(capital_ya
)),
355 sLower(wxConvLibc
.cWC2MB(small_ya
));
357 CPPUNIT_ASSERT( sUpper
.Lower() == sLower
);
358 CPPUNIT_ASSERT( sLower
.Upper() == sUpper
);
360 #endif // !wxUSE_UNICODE
363 void StringTestCase::Compare()
365 wxString s1
= wxT("AHH");
366 wxString eq
= wxT("AHH");
367 wxString neq1
= wxT("HAH");
368 wxString neq2
= wxT("AH");
369 wxString neq3
= wxT("AHHH");
370 wxString neq4
= wxT("AhH");
372 CPPUNIT_ASSERT( s1
== eq
);
373 CPPUNIT_ASSERT( s1
!= neq1
);
374 CPPUNIT_ASSERT( s1
!= neq2
);
375 CPPUNIT_ASSERT( s1
!= neq3
);
376 CPPUNIT_ASSERT( s1
!= neq4
);
378 CPPUNIT_ASSERT( s1
== wxT("AHH") );
379 CPPUNIT_ASSERT( s1
!= wxT("no") );
380 CPPUNIT_ASSERT( s1
< wxT("AZ") );
381 CPPUNIT_ASSERT( s1
<= wxT("AZ") );
382 CPPUNIT_ASSERT( s1
<= wxT("AHH") );
383 CPPUNIT_ASSERT( s1
> wxT("AA") );
384 CPPUNIT_ASSERT( s1
>= wxT("AA") );
385 CPPUNIT_ASSERT( s1
>= wxT("AHH") );
387 // test comparison with C strings in Unicode build (must work in ANSI as
389 CPPUNIT_ASSERT( s1
== "AHH" );
390 CPPUNIT_ASSERT( s1
!= "no" );
391 CPPUNIT_ASSERT( s1
< "AZ" );
392 CPPUNIT_ASSERT( s1
<= "AZ" );
393 CPPUNIT_ASSERT( s1
<= "AHH" );
394 CPPUNIT_ASSERT( s1
> "AA" );
395 CPPUNIT_ASSERT( s1
>= "AA" );
396 CPPUNIT_ASSERT( s1
>= "AHH" );
398 // wxString _s1 = wxT("A\0HH");
399 // wxString _eq = wxT("A\0HH");
400 // wxString _neq1 = wxT("H\0AH");
401 // wxString _neq2 = wxT("A\0H");
402 // wxString _neq3 = wxT("A\0HHH");
403 // wxString _neq4 = wxT("A\0hH");
406 neq1
.insert(1,1,'\0');
407 neq2
.insert(1,1,'\0');
408 neq3
.insert(1,1,'\0');
409 neq4
.insert(1,1,'\0');
411 CPPUNIT_ASSERT( s1
== eq
);
412 CPPUNIT_ASSERT( s1
!= neq1
);
413 CPPUNIT_ASSERT( s1
!= neq2
);
414 CPPUNIT_ASSERT( s1
!= neq3
);
415 CPPUNIT_ASSERT( s1
!= neq4
);
418 void StringTestCase::CompareNoCase()
420 wxString s1
= wxT("AHH");
421 wxString eq
= wxT("AHH");
422 wxString eq2
= wxT("AhH");
423 wxString eq3
= wxT("ahh");
424 wxString neq
= wxT("HAH");
425 wxString neq2
= wxT("AH");
426 wxString neq3
= wxT("AHHH");
428 #define CPPUNIT_CNCEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) == 0)
429 #define CPPUNIT_CNCNEQ_ASSERT(s1, s2) CPPUNIT_ASSERT( s1.CmpNoCase(s2) != 0)
431 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
432 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
433 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
435 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
436 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
437 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
440 // wxString _s1 = wxT("A\0HH");
441 // wxString _eq = wxT("A\0HH");
442 // wxString _eq2 = wxT("A\0hH");
443 // wxString _eq3 = wxT("a\0hh");
444 // wxString _neq = wxT("H\0AH");
445 // wxString _neq2 = wxT("A\0H");
446 // wxString _neq3 = wxT("A\0HHH");
450 eq2
.insert(1,1,'\0');
451 eq3
.insert(1,1,'\0');
452 neq
.insert(1,1,'\0');
453 neq2
.insert(1,1,'\0');
454 neq3
.insert(1,1,'\0');
456 CPPUNIT_CNCEQ_ASSERT( s1
, eq
);
457 CPPUNIT_CNCEQ_ASSERT( s1
, eq2
);
458 CPPUNIT_CNCEQ_ASSERT( s1
, eq3
);
460 CPPUNIT_CNCNEQ_ASSERT( s1
, neq
);
461 CPPUNIT_CNCNEQ_ASSERT( s1
, neq2
);
462 CPPUNIT_CNCNEQ_ASSERT( s1
, neq3
);
465 void StringTestCase::Contains()
467 static const struct ContainsData
470 const wxChar
*needle
;
474 { _T(""), _T(""), true },
475 { _T(""), _T("foo"), false },
476 { _T("foo"), _T(""), true },
477 { _T("foo"), _T("f"), true },
478 { _T("foo"), _T("o"), true },
479 { _T("foo"), _T("oo"), true },
480 { _T("foo"), _T("ooo"), false },
481 { _T("foo"), _T("oooo"), false },
482 { _T("foo"), _T("fooo"), false },
485 for ( size_t n
= 0; n
< WXSIZEOF(containsData
); n
++ )
487 const ContainsData
& cd
= containsData
[n
];
488 CPPUNIT_ASSERT_EQUAL( cd
.contains
, wxString(cd
.hay
).Contains(cd
.needle
) );
492 // flags used in ToLongData.flags
497 Number_Unsigned
= 2, // if not specified, works for signed conversion
498 Number_Signed
= 4, // if not specified, works for unsigned
499 Number_LongLong
= 8, // only for long long tests
500 Number_Long
= 16, // only for long tests
503 static const struct ToLongData
510 #endif // wxLongLong_t
513 long LValue() const { return value
; }
514 unsigned long ULValue() const { return value
; }
516 wxLongLong_t
LLValue() const { return value
; }
517 wxULongLong_t
ULLValue() const { return (wxULongLong_t
)value
; }
518 #endif // wxLongLong_t
520 bool IsOk() const { return !(flags
& Number_Invalid
); }
523 { _T("1"), 1, Number_Ok
},
524 { _T("0"), 0, Number_Ok
},
525 { _T("a"), 0, Number_Invalid
},
526 { _T("12345"), 12345, Number_Ok
},
527 { _T("--1"), 0, Number_Invalid
},
529 { _T("-1"), -1, Number_Signed
| Number_Long
},
530 // this is surprizing but consistent with strtoul() behaviour
531 { _T("-1"), ULONG_MAX
, Number_Unsigned
| Number_Long
},
533 // this must overflow, even with 64 bit long
534 { _T("922337203685477580711"), 0, Number_Invalid
},
537 { _T("2147483648"), wxLL(2147483648), Number_LongLong
},
538 { _T("-2147483648"), wxLL(-2147483648), Number_LongLong
| Number_Signed
},
539 { _T("9223372036854775808"), wxULL(9223372036854775808), Number_LongLong
|
541 #endif // wxLongLong_t
544 void StringTestCase::ToLong()
547 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
549 const ToLongData
& ld
= longData
[n
];
551 if ( ld
.flags
& (Number_LongLong
| Number_Unsigned
) )
554 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLong(&l
) );
556 CPPUNIT_ASSERT_EQUAL( ld
.LValue(), l
);
560 void StringTestCase::ToULong()
563 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
565 const ToLongData
& ld
= longData
[n
];
567 if ( ld
.flags
& (Number_LongLong
| Number_Signed
) )
570 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULong(&ul
) );
572 CPPUNIT_ASSERT_EQUAL( ld
.ULValue(), ul
);
578 void StringTestCase::ToLongLong()
581 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
583 const ToLongData
& ld
= longData
[n
];
585 if ( ld
.flags
& (Number_Long
| Number_Unsigned
) )
588 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToLongLong(&l
) );
590 CPPUNIT_ASSERT_EQUAL( ld
.LLValue(), l
);
594 void StringTestCase::ToULongLong()
597 for ( size_t n
= 0; n
< WXSIZEOF(longData
); n
++ )
599 const ToLongData
& ld
= longData
[n
];
601 if ( ld
.flags
& (Number_Long
| Number_Signed
) )
604 CPPUNIT_ASSERT_EQUAL( ld
.IsOk(), wxString(ld
.str
).ToULongLong(&ul
) );
606 CPPUNIT_ASSERT_EQUAL( ld
.ULLValue(), ul
);
610 #endif // wxLongLong_t
612 void StringTestCase::ToDouble()
615 static const struct ToDoubleData
622 { _T("1"), 1, true },
623 { _T("1.23"), 1.23, true },
624 { _T(".1"), .1, true },
625 { _T("1."), 1, true },
626 { _T("1.."), 0, false },
627 { _T("0"), 0, true },
628 { _T("a"), 0, false },
629 { _T("12345"), 12345, true },
630 { _T("-1"), -1, true },
631 { _T("--1"), 0, false },
634 // we need to use decimal point, not comma or whatever is its value for the
636 wxSetlocale(LC_ALL
, _T("C"));
639 for ( n
= 0; n
< WXSIZEOF(doubleData
); n
++ )
641 const ToDoubleData
& ld
= doubleData
[n
];
642 CPPUNIT_ASSERT_EQUAL( ld
.ok
, wxString(ld
.str
).ToDouble(&d
) );
644 CPPUNIT_ASSERT_EQUAL( ld
.value
, d
);
648 void StringTestCase::WriteBuf()
651 wxStrcpy(wxStringBuffer(s
, 10), _T("foo"));
653 CPPUNIT_ASSERT(s
[0u] == _T('f') );
654 CPPUNIT_ASSERT(_T('f') == s
[0u]);
655 CPPUNIT_ASSERT(_T('o') == s
[1]);
656 CPPUNIT_ASSERT(_T('o') == s
[2]);
657 CPPUNIT_ASSERT_EQUAL((size_t)3, s
.length());
661 wxStringBufferLength
buf(s
, 10);
662 wxStrcpy(buf
, _T("barrbaz"));
666 CPPUNIT_ASSERT(_T('b') == s
[0u]);
667 CPPUNIT_ASSERT(_T('a') == s
[1]);
668 CPPUNIT_ASSERT(_T('r') == s
[2]);
669 CPPUNIT_ASSERT(_T('r') == s
[3]);
670 CPPUNIT_ASSERT_EQUAL((size_t)4, s
.length());
672 CPPUNIT_ASSERT_EQUAL( 0, wxStrcmp(_T("barr"), s
) );
677 void StringTestCase::CStrDataTernaryOperator()
679 DoCStrDataTernaryOperator(true);
680 DoCStrDataTernaryOperator(false);
683 template<typename T
> bool CheckStr(const wxString
& expected
, T s
)
685 return expected
== wxString(s
);
688 void StringTestCase::DoCStrDataTernaryOperator(bool cond
)
690 // test compilation of wxCStrData when used with operator?: (the asserts
691 // are not very important, we're testing if the code compiles at all):
695 const wchar_t *wcStr
= L
"foo";
696 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : wcStr
)) );
697 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : L
"foo")) );
698 CPPUNIT_ASSERT( CheckStr(s
, (cond
? wcStr
: s
.c_str())) );
699 CPPUNIT_ASSERT( CheckStr(s
, (cond
? L
"foo" : s
.c_str())) );
701 const char *mbStr
= "foo";
702 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : mbStr
)) );
703 CPPUNIT_ASSERT( CheckStr(s
, (cond
? s
.c_str() : "foo")) );
704 CPPUNIT_ASSERT( CheckStr(s
, (cond
? mbStr
: s
.c_str())) );
705 CPPUNIT_ASSERT( CheckStr(s
, (cond
? "foo" : s
.c_str())) );
708 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? empty
.c_str() : wxEmptyString
)) );
709 CPPUNIT_ASSERT( CheckStr(empty
, (cond
? wxEmptyString
: empty
.c_str())) );
712 void StringTestCase::CStrDataOperators()
716 CPPUNIT_ASSERT( s
.c_str()[0] == 'h' );
717 CPPUNIT_ASSERT( s
.c_str()[1] == 'e' );
718 CPPUNIT_ASSERT( s
.c_str()[5] == '\0' );
720 CPPUNIT_ASSERT( *s
.c_str() == 'h' );
721 CPPUNIT_ASSERT( *(s
.c_str() + 2) == 'l' );
722 CPPUNIT_ASSERT( *(s
.c_str() + 5) == '\0' );
725 bool CheckStrChar(const wxString
& expected
, char *s
)
726 { return CheckStr(expected
, s
); }
727 bool CheckStrWChar(const wxString
& expected
, wchar_t *s
)
728 { return CheckStr(expected
, s
); }
729 bool CheckStrConstChar(const wxString
& expected
, const char *s
)
730 { return CheckStr(expected
, s
); }
731 bool CheckStrConstWChar(const wxString
& expected
, const wchar_t *s
)
732 { return CheckStr(expected
, s
); }
734 void StringTestCase::CStrDataImplicitConversion()
738 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.c_str()) );
739 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
) );
741 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.c_str()) );
742 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
) );
745 void StringTestCase::ExplicitConversion()
749 CPPUNIT_ASSERT( CheckStr(s
, s
.mb_str()) );
750 CPPUNIT_ASSERT( CheckStrConstChar(s
, s
.mb_str()) );
751 CPPUNIT_ASSERT( CheckStrChar(s
, s
.char_str()) );
753 CPPUNIT_ASSERT( CheckStr(s
, s
.wc_str()) );
754 CPPUNIT_ASSERT( CheckStrConstWChar(s
, s
.wc_str()) );
755 CPPUNIT_ASSERT( CheckStrWChar(s
, s
.wchar_str()) );