X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fd1c361c33b5fc259d9c62e7c816e753cc1b1dd3..92a98ecc5369edfebf13151dc9e9d4acaf326342:/tests/intl/intltest.cpp?ds=sidebyside diff --git a/tests/intl/intltest.cpp b/tests/intl/intltest.cpp index 3308e4e210..11f6451afe 100644 --- a/tests/intl/intltest.cpp +++ b/tests/intl/intltest.cpp @@ -3,7 +3,6 @@ // Purpose: wxLocale unit test // Author: Vaclav Slavik // Created: 2007-03-26 -// RCS-ID: $Id$ // Copyright: (c) 2007 Vaclav Slavik /////////////////////////////////////////////////////////////////////////////// @@ -39,6 +38,7 @@ public: private: CPPUNIT_TEST_SUITE( IntlTestCase ); + CPPUNIT_TEST( RestoreLocale ); CPPUNIT_TEST( Domain ); CPPUNIT_TEST( Headers ); CPPUNIT_TEST( DateTimeFmtFrench ); @@ -46,12 +46,18 @@ private: CPPUNIT_TEST( IsAvailable ); CPPUNIT_TEST_SUITE_END(); + void RestoreLocale(); void Domain(); void Headers(); void DateTimeFmtFrench(); void DateTimeFmtC(); void IsAvailable(); + static wxString GetDecimalPoint() + { + return wxLocale::GetInfo(wxLOCALE_DECIMAL_POINT, wxLOCALE_CAT_NUMBER); + } + wxLocale *m_locale; DECLARE_NO_COPY_CLASS(IntlTestCase) @@ -60,7 +66,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( IntlTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IntlTestCase, "IntlTestCase" ); void IntlTestCase::setUp() @@ -92,6 +98,25 @@ void IntlTestCase::tearDown() } } +void IntlTestCase::RestoreLocale() +{ + if ( !m_locale ) + return; + + // We must be using the French locale now, it was changed in setUp(). + CPPUNIT_ASSERT_EQUAL( ",", GetDecimalPoint() ); + + // Switch to the English locale. + { + wxLocale locEn(wxLANGUAGE_ENGLISH); + CPPUNIT_ASSERT_EQUAL( ".", GetDecimalPoint() ); + } + + // Verify that after destroying the English locale object, French locale is + // restored. + CPPUNIT_ASSERT_EQUAL( ",", GetDecimalPoint() ); +} + void IntlTestCase::Domain() { if (!m_locale) @@ -117,7 +142,7 @@ void IntlTestCase::Headers() CPPUNIT_ASSERT_EQUAL( "YEAR-MO-DA HO:MI+ZONE", m_locale->GetHeaderValue("PO-Revision-Date") ); CPPUNIT_ASSERT_EQUAL( "Vadim Zeitlin ", m_locale->GetHeaderValue("Last-Translator") ); CPPUNIT_ASSERT_EQUAL( "1.0", m_locale->GetHeaderValue("MIME-Version") ); - CPPUNIT_ASSERT_EQUAL( "text/plain; charset=iso-8859-1", m_locale->GetHeaderValue("Content-Type") ); + CPPUNIT_ASSERT_EQUAL( "text/plain; charset=utf-8", m_locale->GetHeaderValue("Content-Type") ); CPPUNIT_ASSERT_EQUAL( "8bit", m_locale->GetHeaderValue("Content-Transfer-Encoding") ); // check that it fails with a bogus domain: @@ -152,9 +177,13 @@ void IntlTestCase::DateTimeFmtFrench() return; #ifdef __GLIBC__ - // glibc also uses dots for French locale separator for some reason (the - // standard format uses slashes) + // Versions of glibc up to 2.7 wrongly used periods for French locale + // separator. +#if __GLIBC__ > 2 || __GLIBC_MINOR__ >= 8 + static const char *FRENCH_DATE_FMT = "%d/%m/%Y"; +#else static const char *FRENCH_DATE_FMT = "%d.%m.%Y"; +#endif static const char *FRENCH_LONG_DATE_FMT = "%a %d %b %Y"; static const char *FRENCH_DATE_TIME_FMT = "%a %d %b %Y %H:%M:%S %Z"; #else