#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
// ----------------------------------------------------------------------------
}
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 )
{
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 )
{ 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),