d8a696fb5f
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
181 lines
5.5 KiB
C++
181 lines
5.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: tests/intl/intltest.cpp
|
|
// Purpose: wxLocale unit test
|
|
// Author: Vaclav Slavik
|
|
// Created: 2007-03-26
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2007 Vaclav Slavik
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "testprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/wx.h"
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/intl.h"
|
|
|
|
#if wxUSE_INTL
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// test class
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class IntlTestCase : public CppUnit::TestCase
|
|
{
|
|
public:
|
|
IntlTestCase() { m_locale=NULL; }
|
|
|
|
virtual void setUp();
|
|
virtual void tearDown();
|
|
|
|
private:
|
|
CPPUNIT_TEST_SUITE( IntlTestCase );
|
|
CPPUNIT_TEST( Domain );
|
|
CPPUNIT_TEST( Headers );
|
|
CPPUNIT_TEST( DateTimeFmt );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
void Domain();
|
|
void Headers();
|
|
void DateTimeFmt();
|
|
|
|
wxLocale *m_locale;
|
|
|
|
DECLARE_NO_COPY_CLASS(IntlTestCase)
|
|
};
|
|
|
|
// 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
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IntlTestCase, "IntlTestCase" );
|
|
|
|
void IntlTestCase::setUp()
|
|
{
|
|
// Check that French locale is supported, this test doesn't work without it
|
|
// and all the other function need to check whether m_locale is non-NULL
|
|
// before continuing
|
|
if ( !wxLocale::IsAvailable(wxLANGUAGE_FRENCH) )
|
|
return;
|
|
|
|
wxLocale::AddCatalogLookupPathPrefix("./intl");
|
|
|
|
m_locale = new wxLocale;
|
|
CPPUNIT_ASSERT( m_locale );
|
|
|
|
// don't load default catalog, it may be unavailable:
|
|
bool loaded = m_locale->Init(wxLANGUAGE_FRENCH, wxLOCALE_CONV_ENCODING);
|
|
CPPUNIT_ASSERT( loaded );
|
|
|
|
m_locale->AddCatalog("internat");
|
|
}
|
|
|
|
void IntlTestCase::tearDown()
|
|
{
|
|
if (m_locale)
|
|
{
|
|
delete m_locale;
|
|
m_locale = NULL;
|
|
}
|
|
}
|
|
|
|
void IntlTestCase::Domain()
|
|
{
|
|
if (!m_locale)
|
|
return;
|
|
|
|
// _() searches all domains by default:
|
|
CPPUNIT_ASSERT_EQUAL( "&Ouvrir un fichier", _("&Open bogus file") );
|
|
|
|
// search in our domain only:
|
|
CPPUNIT_ASSERT_EQUAL( "&Ouvrir un fichier", wxGetTranslation("&Open bogus file", "internat") );
|
|
|
|
// search in a domain that doesn't have this string:
|
|
CPPUNIT_ASSERT_EQUAL( "&Open bogus file", wxGetTranslation("&Open bogus file", "BogusDomain") );
|
|
}
|
|
|
|
void IntlTestCase::Headers()
|
|
{
|
|
if ( !m_locale )
|
|
return;
|
|
|
|
CPPUNIT_ASSERT_EQUAL( "wxWindows 2.0 i18n sample", m_locale->GetHeaderValue("Project-Id-Version") );
|
|
CPPUNIT_ASSERT_EQUAL( "1999-01-13 18:19+0100", m_locale->GetHeaderValue("POT-Creation-Date") );
|
|
CPPUNIT_ASSERT_EQUAL( "YEAR-MO-DA HO:MI+ZONE", m_locale->GetHeaderValue("PO-Revision-Date") );
|
|
CPPUNIT_ASSERT_EQUAL( "Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>", 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( "8bit", m_locale->GetHeaderValue("Content-Transfer-Encoding") );
|
|
|
|
// check that it fails with a bogus domain:
|
|
CPPUNIT_ASSERT_EQUAL( "", m_locale->GetHeaderValue("POT-Creation-Date", "Bogus") );
|
|
|
|
// and that it fails for nonexisting header:
|
|
CPPUNIT_ASSERT_EQUAL( "", m_locale->GetHeaderValue("X-Not-Here") );
|
|
}
|
|
|
|
static void
|
|
CompareFormats(const char *msg, const wxString& expected, wxString actual)
|
|
{
|
|
if ( actual.empty() )
|
|
{
|
|
// this means that GetInfo() failed which can happen, just ignore
|
|
return;
|
|
}
|
|
|
|
#ifdef __GLIBC__
|
|
// glibc uses some extensions in its formats which we need to convert to
|
|
// standard form
|
|
actual.Replace("%T", "%H:%M:%S");
|
|
actual.Replace("%e", "%d");
|
|
#endif // __GLIBC__
|
|
|
|
CPPUNIT_ASSERT_EQUAL_MESSAGE( msg, expected, actual );
|
|
}
|
|
|
|
void IntlTestCase::DateTimeFmt()
|
|
{
|
|
if ( !m_locale )
|
|
return;
|
|
|
|
#ifdef __GLIBC__
|
|
// glibc also uses dots for French locale separator for some reason (the
|
|
// standard format uses slashes)
|
|
static const char *FRENCH_DATE_FMT = "%d.%m.%Y";
|
|
#else
|
|
static const char *FRENCH_DATE_FMT = "%d/%m/%y";
|
|
#endif
|
|
|
|
CompareFormats( "French short date", FRENCH_DATE_FMT,
|
|
m_locale->GetInfo(wxLOCALE_SHORT_DATE_FMT) );
|
|
CompareFormats( "French long date", "%a %d %b %Y",
|
|
m_locale->GetInfo(wxLOCALE_LONG_DATE_FMT) );
|
|
CompareFormats( "French date and time", "%a %d %b %Y %H:%M:%S %Z",
|
|
m_locale->GetInfo(wxLOCALE_DATE_TIME_FMT) );
|
|
CompareFormats( "French time", "%H:%M:%S",
|
|
m_locale->GetInfo(wxLOCALE_TIME_FMT) );
|
|
|
|
// also test for "C" locale
|
|
setlocale(LC_ALL, "C");
|
|
|
|
CompareFormats( "C short date", "%m/%d/%y",
|
|
m_locale->GetInfo(wxLOCALE_SHORT_DATE_FMT) );
|
|
CompareFormats( "C long date", "%a %b %d %Y",
|
|
m_locale->GetInfo(wxLOCALE_LONG_DATE_FMT) );
|
|
CompareFormats( "C date and time", "%a %b %d %H:%M:%S %Y",
|
|
m_locale->GetInfo(wxLOCALE_DATE_TIME_FMT) );
|
|
CompareFormats( "C time", "%H:%M:%S",
|
|
m_locale->GetInfo(wxLOCALE_TIME_FMT) );
|
|
}
|
|
|
|
#endif // wxUSE_INTL
|