]>
git.saurik.com Git - wxWidgets.git/blob - tests/intl/intltest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/intl/intltest.cpp
3 // Purpose: wxLocale unit test
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2007 Vaclav Slavik
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 class IntlTestCase
: public CppUnit::TestCase
38 virtual void tearDown();
41 CPPUNIT_TEST_SUITE( IntlTestCase
);
42 CPPUNIT_TEST( Domain
);
43 CPPUNIT_TEST( Headers
);
44 CPPUNIT_TEST_SUITE_END();
51 DECLARE_NO_COPY_CLASS(IntlTestCase
)
54 // register in the unnamed registry so that these tests are run by default
55 CPPUNIT_TEST_SUITE_REGISTRATION( IntlTestCase
);
57 // also include in it's own registry so that these tests can be run alone
58 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IntlTestCase
, "IntlTestCase" );
60 void IntlTestCase::setUp()
62 wxLocale::AddCatalogLookupPathPrefix("./intl");
64 m_locale
= new wxLocale
;
65 // don't load default catalog, it may be unavailable:
66 bool loaded
= m_locale
->Init(wxLANGUAGE_FRENCH
, wxLOCALE_CONV_ENCODING
);
67 CPPUNIT_ASSERT( loaded
);
69 m_locale
->AddCatalog("internat");
72 void IntlTestCase::tearDown()
78 void IntlTestCase::Domain()
80 // _() searches all domains by default:
81 CPPUNIT_ASSERT( _("&Open bogus file") == "&Ouvrir un fichier" );
83 // search in our domain only:
84 CPPUNIT_ASSERT( wxGetTranslation("&Open bogus file", "internat") ==
85 "&Ouvrir un fichier" );
87 // search in a domain that doesn't have this string:
88 CPPUNIT_ASSERT( wxGetTranslation("&Open bogus file", "BogusDomain") ==
92 void IntlTestCase::Headers()
94 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("Project-Id-Version") ==
95 "wxWindows 2.0 i18n sample" );
96 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("POT-Creation-Date") ==
97 "1999-01-13 18:19+0100" );
98 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("PO-Revision-Date") ==
99 "YEAR-MO-DA HO:MI+ZONE" );
100 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("Last-Translator") ==
101 "Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>" );
102 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("MIME-Version") ==
104 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("Content-Type") ==
105 "text/plain; charset=iso-8859-1" );
106 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("Content-Transfer-Encoding") ==
109 // check that it fails with a bogus domain:
110 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("POT-Creation-Date", "Bogus") ==
113 // and that it fails for nonexisting header:
114 CPPUNIT_ASSERT( m_locale
->GetHeaderValue("X-Not-Here") == "" );