+
+void StringTestCase::WriteBuf()
+{
+ wxString s;
+ wxStrcpy(wxStringBuffer(s, 10), _T("foo"));
+
+ CPPUNIT_ASSERT(s[0u] == _T('f') );
+ CPPUNIT_ASSERT(_T('f') == s[0u]);
+ CPPUNIT_ASSERT(_T('o') == s[1]);
+ CPPUNIT_ASSERT(_T('o') == s[2]);
+ CPPUNIT_ASSERT_EQUAL((size_t)3, s.length());
+
+
+ {
+ wxStringBufferLength buf(s, 10);
+ wxStrcpy(buf, _T("barrbaz"));
+ buf.SetLength(4);
+ }
+
+ CPPUNIT_ASSERT(_T('b') == s[0u]);
+ CPPUNIT_ASSERT(_T('a') == s[1]);
+ CPPUNIT_ASSERT(_T('r') == s[2]);
+ CPPUNIT_ASSERT(_T('r') == s[3]);
+ CPPUNIT_ASSERT_EQUAL((size_t)4, s.length());
+
+ CPPUNIT_ASSERT_EQUAL( 0, wxStrcmp(_T("barr"), s) );
+}
+
+
+
+void StringTestCase::CStrDataTernaryOperator()
+{
+ DoCStrDataTernaryOperator(true);
+ DoCStrDataTernaryOperator(false);
+}
+
+template<typename T> bool CheckStr(const wxString& expected, T s)
+{
+ return expected == wxString(s);
+}
+
+void StringTestCase::DoCStrDataTernaryOperator(bool cond)
+{
+ // test compilation of wxCStrData when used with operator?: (the asserts
+ // are not very important, we're testing if the code compiles at all):
+
+ wxString s("foo");
+
+ // FIXME-UTF8: when wxCStrData can handle both conversions, this should
+ // be changed to always test all versions, both MB and WC
+#if wxUSE_UNICODE
+ const wchar_t *wcStr = L"foo";
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? s.c_str() : wcStr)) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? s.c_str() : L"bar")) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? wcStr : s.c_str())) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? L"bar" : s.c_str())) );
+#else
+ const char *mbStr = "foo";
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? s.c_str() : mbStr)) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? s.c_str() : "foo")) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? mbStr : s.c_str())) );
+ CPPUNIT_ASSERT( CheckStr(s, (cond ? "foo" : s.c_str())) );
+#endif
+
+ wxString empty("");
+ CPPUNIT_ASSERT( CheckStr(empty, (cond ? empty.c_str() : wxEmptyString)) );
+ CPPUNIT_ASSERT( CheckStr(empty, (cond ? wxEmptyString : empty.c_str())) );
+}
+
+bool CheckStrChar(const wxString& expected, char *s)
+ { return CheckStr(expected, s); }
+bool CheckStrWChar(const wxString& expected, wchar_t *s)
+ { return CheckStr(expected, s); }
+bool CheckStrConstChar(const wxString& expected, const char *s)
+ { return CheckStr(expected, s); }
+bool CheckStrConstWChar(const wxString& expected, const wchar_t *s)
+ { return CheckStr(expected, s); }
+
+void StringTestCase::CStrDataImplicitConversion()
+{
+ wxString s("foo");
+
+ // FIXME-UTF8: when wxCStrData can handle both conversions, this should
+ // be changed to always test all versions, both MB and WC
+#if wxUSE_UNICODE
+ CPPUNIT_ASSERT( CheckStrConstWChar(s, s.c_str()) );
+ CPPUNIT_ASSERT( CheckStrConstWChar(s, s) );
+#else
+ CPPUNIT_ASSERT( CheckStrConstChar(s, s.c_str()) );
+ CPPUNIT_ASSERT( CheckStrConstChar(s, s) );
+#endif
+}
+
+void StringTestCase::ExplicitConversion()
+{
+ wxString s("foo");
+
+ CPPUNIT_ASSERT( CheckStr(s, s.mb_str()) );
+ CPPUNIT_ASSERT( CheckStrConstChar(s, s.mb_str()) );
+ CPPUNIT_ASSERT( CheckStrChar(s, s.char_str()) );
+
+ CPPUNIT_ASSERT( CheckStr(s, s.wc_str()) );
+ CPPUNIT_ASSERT( CheckStrConstWChar(s, s.wc_str()) );
+ CPPUNIT_ASSERT( CheckStrWChar(s, s.wchar_str()) );
+}