add wxXLocale class and wxIsxxx_l() and wxToxxx_l() functions (heavily modified and extended patch 1874287)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51632 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
182
tests/xlocale/xlocale.cpp
Normal file
182
tests/xlocale/xlocale.cpp
Normal file
@@ -0,0 +1,182 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tests/xlocale/xlocale.cpp
|
||||
// Purpose: wxXLocale & related unit test
|
||||
// Author: Brian Vanderburg II, Vadim Zeitlin
|
||||
// Created: 2008-01-16
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) 2008 Brian Vanderburg II
|
||||
// 2008 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// headers
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#include "testprec.h"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_XLOCALE
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif // WX_PRECOMP
|
||||
|
||||
#include "wx/xlocale.h"
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
// test class
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
class XLocaleTestCase : public CppUnit::TestCase
|
||||
{
|
||||
public:
|
||||
XLocaleTestCase() { }
|
||||
|
||||
private:
|
||||
CPPUNIT_TEST_SUITE( XLocaleTestCase );
|
||||
CPPUNIT_TEST( TestCtor );
|
||||
CPPUNIT_TEST( TestCtypeFunctions );
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
void TestCtor();
|
||||
void TestCtypeFunctions();
|
||||
|
||||
void TestCtypeFunctionsWith(const wxXLocale& loc);
|
||||
|
||||
DECLARE_NO_COPY_CLASS(XLocaleTestCase)
|
||||
};
|
||||
|
||||
// register in the unnamed registry so that these tests are run by default
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( XLocaleTestCase );
|
||||
|
||||
// also include in it's own registry so that these tests can be run alone
|
||||
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( XLocaleTestCase, "XLocaleTestCase" );
|
||||
|
||||
|
||||
// test the different wxXLocale ctors
|
||||
void XLocaleTestCase::TestCtor()
|
||||
{
|
||||
CPPUNIT_ASSERT( !wxXLocale().IsOk() );
|
||||
CPPUNIT_ASSERT( wxCLocale.IsOk() );
|
||||
CPPUNIT_ASSERT( wxXLocale("C").IsOk() );
|
||||
#ifdef wxHAS_XLOCALE_SUPPORT
|
||||
CPPUNIT_ASSERT( wxXLocale(wxLANGUAGE_FRENCH).IsOk() );
|
||||
CPPUNIT_ASSERT( wxXLocale("fr_FR").IsOk() );
|
||||
CPPUNIT_ASSERT( wxXLocale("french").IsOk() );
|
||||
#endif
|
||||
CPPUNIT_ASSERT( !wxXLocale("bloordyblop").IsOk() );
|
||||
}
|
||||
|
||||
// test the ctype functions with the given locale
|
||||
void XLocaleTestCase::TestCtypeFunctionsWith(const wxXLocale& loc)
|
||||
{
|
||||
// isalnum
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('0', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('9', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('A', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('a', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalnum_l('z', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalnum_l('*', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalnum_l('@', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalnum_l('+', loc) );
|
||||
|
||||
// isalpha
|
||||
CPPUNIT_ASSERT( !wxIsalpha_l('0', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalpha_l('9', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('A', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('a', loc) );
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('z', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalpha_l('*', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalpha_l('@', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsalpha_l('+', loc) );
|
||||
|
||||
// TODO: iscntrl
|
||||
|
||||
// isdigit
|
||||
CPPUNIT_ASSERT( wxIsdigit_l('0', loc) );
|
||||
CPPUNIT_ASSERT( wxIsdigit_l('9', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsdigit_l('A', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsdigit_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsdigit_l('a', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsdigit_l('z', loc) );
|
||||
|
||||
// TODO: isgraph
|
||||
|
||||
// islower
|
||||
CPPUNIT_ASSERT( !wxIslower_l('A', loc) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( wxIslower_l('a', loc) );
|
||||
CPPUNIT_ASSERT( wxIslower_l('z', loc) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('0', loc) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('9', loc) );
|
||||
|
||||
|
||||
// TODO: isprint
|
||||
// TODO: ispunct
|
||||
|
||||
// isspace
|
||||
CPPUNIT_ASSERT( wxIsspace_l(' ', loc) );
|
||||
CPPUNIT_ASSERT( wxIsspace_l('\t', loc) );
|
||||
CPPUNIT_ASSERT( wxIsspace_l('\r', loc) );
|
||||
CPPUNIT_ASSERT( wxIsspace_l('\n', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsspace_l('0', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsspace_l('a', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsspace_l('A', loc) );
|
||||
|
||||
// isupper
|
||||
CPPUNIT_ASSERT( !wxIsupper_l('0', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsupper_l('9', loc) );
|
||||
CPPUNIT_ASSERT( wxIsupper_l('A', loc) );
|
||||
CPPUNIT_ASSERT( wxIsupper_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsupper_l('a', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsupper_l('z', loc) );
|
||||
|
||||
// isxdigit
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('0', loc) );
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('9', loc) );
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('A', loc) );
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('F', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsxdigit_l('Z', loc) );
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('a', loc) );
|
||||
CPPUNIT_ASSERT( wxIsxdigit_l('f', loc) );
|
||||
CPPUNIT_ASSERT( !wxIsxdigit_l('z', loc) );
|
||||
|
||||
// tolower
|
||||
CPPUNIT_ASSERT_EQUAL( 'a', wxTolower_l('A', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'a', wxTolower_l('a', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'z', wxTolower_l('Z', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'z', wxTolower_l('z', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( '0', wxTolower_l('0', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( '9', wxTolower_l('9', loc) );
|
||||
|
||||
// toupper
|
||||
CPPUNIT_ASSERT_EQUAL( 'A', wxToupper_l('A', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'A', wxToupper_l('a', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'Z', wxToupper_l('Z', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( 'Z', wxToupper_l('z', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( '0', wxToupper_l('0', loc) );
|
||||
CPPUNIT_ASSERT_EQUAL( '9', wxToupper_l('9', loc) );
|
||||
}
|
||||
|
||||
void XLocaleTestCase::TestCtypeFunctions()
|
||||
{
|
||||
TestCtypeFunctionsWith(wxCLocale);
|
||||
|
||||
#ifdef wxHAS_XLOCALE_SUPPORT
|
||||
wxXLocale locFR("fr_FR");
|
||||
TestCtypeFunctionsWith(locFR);
|
||||
|
||||
CPPUNIT_ASSERT( wxIsalpha_l('<EFBFBD>', locFR) );
|
||||
CPPUNIT_ASSERT( wxIslower_l('<EFBFBD>', locFR) );
|
||||
CPPUNIT_ASSERT( !wxIslower_l('<EFBFBD>', locFR) );
|
||||
CPPUNIT_ASSERT( wxIsupper_l('<EFBFBD>', locFR) );
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif // wxUSE_XLOCALE
|
Reference in New Issue
Block a user