]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/datetime/datetimetest.cpp
fix the FontTestCase::GetSet unit so that it passes under wxMSW
[wxWidgets.git] / tests / datetime / datetimetest.cpp
index 1712c1f1c2954abe99dcec69924628d4958c4c0b..a9992e71bd9f8b81c16c39b07f939d380d30d3a8 100644 (file)
@@ -83,6 +83,61 @@ private:
 
 #endif // CHANGE_SYSTEM_DATE
 
+// helper class setting the locale to "C" for its lifetime
+class CLocaleSetter
+{
+public:
+    CLocaleSetter() : m_locOld(setlocale(LC_ALL, "C")) { }
+    ~CLocaleSetter() { setlocale(LC_ALL, m_locOld); }
+
+private:
+    const char * const m_locOld;
+    wxDECLARE_NO_COPY_CLASS(CLocaleSetter);
+};
+
+// helper function translating week day/month names from English to the current
+// locale
+static wxString TranslateDate(const wxString& str)
+{
+    // small optimization: if there are no alphabetic characters in the string,
+    // there is nothing to translate
+    wxString::const_iterator i, end = str.end();
+    for ( i = str.begin(); i != end; ++i )
+    {
+        if ( isalpha(*i) )
+            break;
+    }
+
+    if ( i == end )
+        return str;
+
+    wxString trans(str);
+
+    for ( wxDateTime::WeekDay wd = wxDateTime::Sun;
+          wd < wxDateTime::Inv_WeekDay;
+          wxNextWDay(wd) )
+    {
+        trans.Replace
+              (
+                wxDateTime::GetEnglishWeekDayName(wd, wxDateTime::Name_Abbr),
+                wxDateTime::GetWeekDayName(wd, wxDateTime::Name_Abbr)
+              );
+    }
+
+    for ( wxDateTime::Month mon = wxDateTime::Jan;
+          mon < wxDateTime::Inv_Month;
+          wxNextMonth(mon) )
+    {
+        trans.Replace
+              (
+                wxDateTime::GetEnglishMonthName(mon, wxDateTime::Name_Abbr),
+                wxDateTime::GetMonthName(mon, wxDateTime::Name_Abbr)
+              );
+    }
+
+    return trans;
+}
+
 // ----------------------------------------------------------------------------
 // broken down date representation used for testing
 // ----------------------------------------------------------------------------
@@ -672,12 +727,14 @@ void DateTimeTestCase::TestTimeFormat()
             }
             else // conversion succeeded
             {
-                // ParseFormat() should have parsed the entire string or left
-                // some final useless strings (e.g. with Italian locale the
-                // 's' string for the first test date looks like
-                //      "---> sab 29 mag 1976 18:30:00 CET"
-                // so we just need to ignore CET)
-                CPPUNIT_ASSERT( !*result || strcmp(result, "CET") == 0 );
+                // currently ParseFormat() doesn't support "%Z" and so is
+                // incapable of parsing time zone part used at the end of date
+                // representations in many (but not "C") locales, compensate
+                // for it ourselves by simply consuming and ignoring it
+                while ( *result && (*result >= 'A' && *result <= 'Z') )
+                    result++;
+
+                CPPUNIT_ASSERT( !*result );
 
                 switch ( kind )
                 {
@@ -907,7 +964,7 @@ void DateTimeTestCase::TestDateParse()
 
     for ( size_t n = 0; n < WXSIZEOF(parseTestDates); n++ )
     {
-        const char * const datestr = parseTestDates[n].str;
+        const wxString datestr = TranslateDate(parseTestDates[n].str);
 
         const char * const end = dt.ParseDate(datestr);
         if ( end && !*end )
@@ -1016,13 +1073,17 @@ void DateTimeTestCase::TestDateTimeParse()
          { 22, wxDateTime::Nov, 2007, 19, 40, 0}, true },
     };
 
-    // special cases
+    // the test strings here use "PM" which is not available in all locales so
+    // we need to use "C" locale for them
+    CLocaleSetter cloc;
+
     wxDateTime dt;
     for ( size_t n = 0; n < WXSIZEOF(parseTestDates); n++ )
     {
-        const char * const datestr = parseTestDates[n].str;
+        const wxString datestr = TranslateDate(parseTestDates[n].str);
 
-        if ( dt.ParseDateTime(datestr) )
+        const char * const end = dt.ParseDateTime(datestr);
+        if ( end && !*end )
         {
             WX_ASSERT_MESSAGE(
                 ("Erroneously parsed \"%s\"", datestr),