2000-01-15 02:00:06 +00:00
/********************************************************************
* COPYRIGHT :
2013-02-07 19:48:29 +00:00
* Copyright ( c ) 1997 - 2013 , International Business Machines Corporation and
2000-01-15 02:00:06 +00:00
* others . All Rights Reserved .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-08-16 21:50:52 +00:00
1999-12-28 23:57:50 +00:00
# include "unicode/utypes.h"
2002-09-21 00:43:14 +00:00
# if !UCONFIG_NO_FORMATTING
1999-08-16 21:50:52 +00:00
# include "dcfmapts.h"
2013-09-04 01:07:35 +00:00
# include "unicode/currpinf.h"
1999-12-28 23:57:50 +00:00
# include "unicode/dcfmtsym.h"
2013-09-04 01:07:35 +00:00
# include "unicode/decimfmt.h"
# include "unicode/localpointer.h"
2003-06-12 18:02:40 +00:00
# include "unicode/parseerr.h"
2013-09-04 01:07:35 +00:00
2013-09-06 20:02:42 +00:00
# include "putilimp.h"
2013-09-04 01:07:35 +00:00
# include "plurrule_impl.h"
1999-08-16 21:50:52 +00:00
2013-03-21 01:42:01 +00:00
# define LENGTHOF(array) ((int32_t)(sizeof(array) / sizeof((array)[0])))
1999-08-16 21:50:52 +00:00
// This is an API test, not a unit test. It doesn't test very many cases, and doesn't
// try to test the full functionality. It just calls each function in the class and
// verifies that it works on a basic level.
2000-08-23 19:11:16 +00:00
void IntlTestDecimalFormatAPI : : runIndexedTest ( int32_t index , UBool exec , const char * & name , char * /*par*/ )
1999-08-16 21:50:52 +00:00
{
if ( exec ) logln ( ( UnicodeString ) " TestSuite DecimalFormatAPI " ) ;
switch ( index ) {
case 0 : name = " DecimalFormat API test " ;
if ( exec ) {
logln ( ( UnicodeString ) " DecimalFormat API test--- " ) ; logln ( ( UnicodeString ) " " ) ;
1999-10-07 00:07:53 +00:00
UErrorCode status = U_ZERO_ERROR ;
2004-12-22 19:28:42 +00:00
Locale saveLocale ;
2002-08-21 00:16:30 +00:00
Locale : : setDefault ( Locale : : getEnglish ( ) , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Could not set default locale, test may not give correct results " ) ;
}
2000-08-23 19:11:16 +00:00
testAPI ( /*par*/ ) ;
2004-12-22 19:28:42 +00:00
Locale : : setDefault ( saveLocale , status ) ;
1999-08-16 21:50:52 +00:00
}
break ;
2000-08-14 21:42:36 +00:00
case 1 : name = " Rounding test " ;
if ( exec ) {
logln ( ( UnicodeString ) " DecimalFormat Rounding test--- " ) ;
2000-08-23 19:11:16 +00:00
testRounding ( /*par*/ ) ;
2000-08-14 21:42:36 +00:00
}
break ;
2009-02-03 15:54:55 +00:00
case 2 : name = " Test6354 " ;
if ( exec ) {
logln ( ( UnicodeString ) " DecimalFormat Rounding Increment test--- " ) ;
testRoundingInc ( /*par*/ ) ;
}
break ;
2009-09-09 03:46:40 +00:00
case 3 : name = " TestCurrencyPluralInfo " ;
if ( exec ) {
logln ( ( UnicodeString ) " CurrencyPluralInfo API test--- " ) ;
TestCurrencyPluralInfo ( ) ;
}
break ;
2013-02-07 19:48:29 +00:00
case 4 : name = " TestScale " ;
if ( exec ) {
logln ( ( UnicodeString ) " Scale test--- " ) ;
TestScale ( ) ;
}
break ;
2013-09-04 01:07:35 +00:00
case 5 : name = " TestFixedDecimal " ;
if ( exec ) {
logln ( ( UnicodeString ) " TestFixedDecimal --- " ) ;
TestFixedDecimal ( ) ;
}
break ;
default : name = " " ; break ;
1999-08-16 21:50:52 +00:00
}
}
/**
* This test checks various generic API methods in DecimalFormat to achieve 100 %
* API coverage .
*/
2000-08-23 19:11:16 +00:00
void IntlTestDecimalFormatAPI : : testAPI ( /*char *par*/ )
1999-08-16 21:50:52 +00:00
{
1999-10-07 00:07:53 +00:00
UErrorCode status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
// ======= Test constructors
logln ( ( UnicodeString ) " Testing DecimalFormat constructors " ) ;
DecimalFormat def ( status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
2009-06-12 19:34:21 +00:00
errcheckln ( status , " ERROR: Could not create DecimalFormat (default) - %s " , u_errorName ( status ) ) ;
2003-06-04 23:59:30 +00:00
return ;
1999-08-16 21:50:52 +00:00
}
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
const UnicodeString pattern ( " #,##0.# FF " ) ;
DecimalFormat pat ( pattern , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Could not create DecimalFormat (pattern) " ) ;
2003-06-04 23:59:30 +00:00
return ;
1999-08-16 21:50:52 +00:00
}
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
2002-08-21 00:16:30 +00:00
DecimalFormatSymbols * symbols = new DecimalFormatSymbols ( Locale : : getFrench ( ) , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Could not create DecimalFormatSymbols (French) " ) ;
2003-06-04 23:59:30 +00:00
return ;
1999-08-16 21:50:52 +00:00
}
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
DecimalFormat cust1 ( pattern , symbols , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Could not create DecimalFormat (pattern, symbols*) " ) ;
}
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
DecimalFormat cust2 ( pattern , * symbols , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Could not create DecimalFormat (pattern, symbols) " ) ;
}
DecimalFormat copy ( pat ) ;
// ======= Test clone(), assignment, and equality
logln ( ( UnicodeString ) " Testing clone(), assignment and equality operators " ) ;
if ( ! ( copy = = pat ) | | copy ! = pat ) {
errln ( ( UnicodeString ) " ERROR: Copy constructor or == failed " ) ;
}
copy = cust1 ;
if ( copy ! = cust1 ) {
errln ( ( UnicodeString ) " ERROR: Assignment (or !=) failed " ) ;
}
Format * clone = def . clone ( ) ;
if ( ! ( * clone = = def ) ) {
errln ( ( UnicodeString ) " ERROR: Clone() failed " ) ;
}
delete clone ;
// ======= Test various format() methods
logln ( ( UnicodeString ) " Testing various format() methods " ) ;
double d = - 10456.0037 ;
int32_t l = 100000000 ;
Formattable fD ( d ) ;
Formattable fL ( l ) ;
UnicodeString res1 , res2 , res3 , res4 ;
FieldPosition pos1 ( 0 ) , pos2 ( 0 ) , pos3 ( 0 ) , pos4 ( 0 ) ;
res1 = def . format ( d , res1 , pos1 ) ;
logln ( ( UnicodeString ) " " + ( int32_t ) d + " formatted to " + res1 ) ;
res2 = pat . format ( l , res2 , pos2 ) ;
logln ( ( UnicodeString ) " " + ( int32_t ) l + " formatted to " + res2 ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
res3 = cust1 . format ( fD , res3 , pos3 , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: format(Formattable [double]) failed " ) ;
}
logln ( ( UnicodeString ) " " + ( int32_t ) fD . getDouble ( ) + " formatted to " + res3 ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
res4 = cust2 . format ( fL , res4 , pos4 , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: format(Formattable [long]) failed " ) ;
}
logln ( ( UnicodeString ) " " + fL . getLong ( ) + " formatted to " + res4 ) ;
// ======= Test parse()
logln ( ( UnicodeString ) " Testing parse() " ) ;
UnicodeString text ( " -10,456.0037 " ) ;
Formattable result1 , result2 ;
ParsePosition pos ( 0 ) ;
UnicodeString patt ( " #,##0.# " ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
pat . applyPattern ( patt , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: applyPattern() failed " ) ;
}
pat . parse ( text , result1 , pos ) ;
if ( result1 . getType ( ) ! = Formattable : : kDouble & & result1 . getDouble ( ) ! = d ) {
errln ( ( UnicodeString ) " ERROR: Roundtrip failed (via parse()) for " + text ) ;
}
logln ( text + " parsed into " + ( int32_t ) result1 . getDouble ( ) ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
pat . parse ( text , result2 , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: parse() failed " ) ;
}
if ( result2 . getType ( ) ! = Formattable : : kDouble & & result2 . getDouble ( ) ! = d ) {
errln ( ( UnicodeString ) " ERROR: Roundtrip failed (via parse()) for " + text ) ;
}
logln ( text + " parsed into " + ( int32_t ) result2 . getDouble ( ) ) ;
// ======= Test getters and setters
logln ( ( UnicodeString ) " Testing getters and setters " ) ;
const DecimalFormatSymbols * syms = pat . getDecimalFormatSymbols ( ) ;
DecimalFormatSymbols * newSyms = new DecimalFormatSymbols ( * syms ) ;
def . setDecimalFormatSymbols ( * newSyms ) ;
2000-03-25 02:49:30 +00:00
def . adoptDecimalFormatSymbols ( newSyms ) ; // don't use newSyms after this
1999-08-16 21:50:52 +00:00
if ( * ( pat . getDecimalFormatSymbols ( ) ) ! = * ( def . getDecimalFormatSymbols ( ) ) ) {
errln ( ( UnicodeString ) " ERROR: adopt or set DecimalFormatSymbols() failed " ) ;
}
UnicodeString posPrefix ;
pat . setPositivePrefix ( " + " ) ;
posPrefix = pat . getPositivePrefix ( posPrefix ) ;
logln ( ( UnicodeString ) " Positive prefix (should be +): " + posPrefix ) ;
if ( posPrefix ! = " + " ) {
errln ( ( UnicodeString ) " ERROR: setPositivePrefix() failed " ) ;
}
UnicodeString negPrefix ;
pat . setNegativePrefix ( " - " ) ;
negPrefix = pat . getNegativePrefix ( negPrefix ) ;
logln ( ( UnicodeString ) " Negative prefix (should be -): " + negPrefix ) ;
if ( negPrefix ! = " - " ) {
errln ( ( UnicodeString ) " ERROR: setNegativePrefix() failed " ) ;
}
UnicodeString posSuffix ;
pat . setPositiveSuffix ( " _ " ) ;
posSuffix = pat . getPositiveSuffix ( posSuffix ) ;
logln ( ( UnicodeString ) " Positive suffix (should be _): " + posSuffix ) ;
if ( posSuffix ! = " _ " ) {
errln ( ( UnicodeString ) " ERROR: setPositiveSuffix() failed " ) ;
}
UnicodeString negSuffix ;
pat . setNegativeSuffix ( " ~ " ) ;
negSuffix = pat . getNegativeSuffix ( negSuffix ) ;
logln ( ( UnicodeString ) " Negative suffix (should be ~): " + negSuffix ) ;
if ( negSuffix ! = " ~ " ) {
errln ( ( UnicodeString ) " ERROR: setNegativeSuffix() failed " ) ;
}
int32_t multiplier = 0 ;
pat . setMultiplier ( 8 ) ;
multiplier = pat . getMultiplier ( ) ;
logln ( ( UnicodeString ) " Multiplier (should be 8): " + multiplier ) ;
if ( multiplier ! = 8 ) {
errln ( ( UnicodeString ) " ERROR: setMultiplier() failed " ) ;
}
int32_t groupingSize = 0 ;
pat . setGroupingSize ( 2 ) ;
groupingSize = pat . getGroupingSize ( ) ;
logln ( ( UnicodeString ) " Grouping size (should be 2): " + ( int32_t ) groupingSize ) ;
if ( groupingSize ! = 2 ) {
errln ( ( UnicodeString ) " ERROR: setGroupingSize() failed " ) ;
}
pat . setDecimalSeparatorAlwaysShown ( TRUE ) ;
2001-09-18 17:32:33 +00:00
UBool tf = pat . isDecimalSeparatorAlwaysShown ( ) ;
1999-08-16 21:50:52 +00:00
logln ( ( UnicodeString ) " DecimalSeparatorIsAlwaysShown (should be TRUE) is " + ( UnicodeString ) ( tf ? " TRUE " : " FALSE " ) ) ;
if ( tf ! = TRUE ) {
errln ( ( UnicodeString ) " ERROR: setDecimalSeparatorAlwaysShown() failed " ) ;
}
2000-08-14 21:42:36 +00:00
// Added by Ken Liu testing set/isExponentSignAlwaysShown
pat . setExponentSignAlwaysShown ( TRUE ) ;
2001-09-18 17:32:33 +00:00
UBool esas = pat . isExponentSignAlwaysShown ( ) ;
2000-06-22 01:09:15 +00:00
logln ( ( UnicodeString ) " ExponentSignAlwaysShown (should be TRUE) is " + ( UnicodeString ) ( esas ? " TRUE " : " FALSE " ) ) ;
if ( esas ! = TRUE ) {
errln ( ( UnicodeString ) " ERROR: ExponentSignAlwaysShown() failed " ) ;
}
// Added by Ken Liu testing set/isScientificNotation
pat . setScientificNotation ( TRUE ) ;
UBool sn = pat . isScientificNotation ( ) ;
logln ( ( UnicodeString ) " isScientificNotation (should be TRUE) is " + ( UnicodeString ) ( sn ? " TRUE " : " FALSE " ) ) ;
if ( sn ! = TRUE ) {
errln ( ( UnicodeString ) " ERROR: setScientificNotation() failed " ) ;
}
2000-08-14 21:42:36 +00:00
// Added by Ken Liu testing set/getMinimumExponentDigits
int8_t MinimumExponentDigits = 0 ;
2000-06-22 01:09:15 +00:00
pat . setMinimumExponentDigits ( 2 ) ;
MinimumExponentDigits = pat . getMinimumExponentDigits ( ) ;
logln ( ( UnicodeString ) " MinimumExponentDigits (should be 2) is " + ( int8_t ) MinimumExponentDigits ) ;
if ( MinimumExponentDigits ! = 2 ) {
errln ( ( UnicodeString ) " ERROR: setMinimumExponentDigits() failed " ) ;
}
2000-08-14 21:42:36 +00:00
// Added by Ken Liu testing set/getRoundingIncrement
double RoundingIncrement = 0.0 ;
2000-06-22 01:09:15 +00:00
pat . setRoundingIncrement ( 2.0 ) ;
RoundingIncrement = pat . getRoundingIncrement ( ) ;
logln ( ( UnicodeString ) " RoundingIncrement (should be 2.0) is " + ( double ) RoundingIncrement ) ;
if ( RoundingIncrement ! = 2.0 ) {
errln ( ( UnicodeString ) " ERROR: setRoundingIncrement() failed " ) ;
}
//end of Ken's Adding
1999-08-16 21:50:52 +00:00
UnicodeString funkyPat ;
funkyPat = pat . toPattern ( funkyPat ) ;
logln ( ( UnicodeString ) " Pattern is " + funkyPat ) ;
UnicodeString locPat ;
locPat = pat . toLocalizedPattern ( locPat ) ;
logln ( ( UnicodeString ) " Localized pattern is " + locPat ) ;
// ======= Test applyPattern()
logln ( ( UnicodeString ) " Testing applyPattern() " ) ;
UnicodeString p1 ( " #,##0.0#;(#,##0.0#) " ) ;
logln ( ( UnicodeString ) " Applying pattern " + p1 ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
pat . applyPattern ( p1 , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: applyPattern() failed with " + ( int32_t ) status ) ;
}
UnicodeString s2 ;
s2 = pat . toPattern ( s2 ) ;
logln ( ( UnicodeString ) " Extracted pattern is " + s2 ) ;
if ( s2 ! = p1 ) {
errln ( ( UnicodeString ) " ERROR: toPattern() result did not match pattern applied " ) ;
}
2003-06-12 18:02:40 +00:00
if ( pat . getSecondaryGroupingSize ( ) ! = 0 ) {
errln ( " FAIL: Secondary Grouping Size should be 0, not %d \n " , pat . getSecondaryGroupingSize ( ) ) ;
}
if ( pat . getGroupingSize ( ) ! = 3 ) {
errln ( " FAIL: Primary Grouping Size should be 3, not %d \n " , pat . getGroupingSize ( ) ) ;
}
UnicodeString p2 ( " #,##,##0.0# FF;(#,##,##0.0# FF) " ) ;
1999-08-16 21:50:52 +00:00
logln ( ( UnicodeString ) " Applying pattern " + p2 ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
pat . applyLocalizedPattern ( p2 , status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: applyPattern() failed with " + ( int32_t ) status ) ;
}
UnicodeString s3 ;
s3 = pat . toLocalizedPattern ( s3 ) ;
logln ( ( UnicodeString ) " Extracted pattern is " + s3 ) ;
if ( s3 ! = p2 ) {
errln ( ( UnicodeString ) " ERROR: toLocalizedPattern() result did not match pattern applied " ) ;
}
2003-06-12 18:02:40 +00:00
status = U_ZERO_ERROR ;
UParseError pe ;
pat . applyLocalizedPattern ( p2 , pe , status ) ;
if ( U_FAILURE ( status ) ) {
errln ( ( UnicodeString ) " ERROR: applyPattern((with ParseError)) failed with " + ( int32_t ) status ) ;
}
UnicodeString s4 ;
s4 = pat . toLocalizedPattern ( s3 ) ;
logln ( ( UnicodeString ) " Extracted pattern is " + s4 ) ;
if ( s4 ! = p2 ) {
errln ( ( UnicodeString ) " ERROR: toLocalizedPattern(with ParseErr) result did not match pattern applied " ) ;
}
if ( pat . getSecondaryGroupingSize ( ) ! = 2 ) {
errln ( " FAIL: Secondary Grouping Size should be 2, not %d \n " , pat . getSecondaryGroupingSize ( ) ) ;
}
if ( pat . getGroupingSize ( ) ! = 3 ) {
errln ( " FAIL: Primary Grouping Size should be 3, not %d \n " , pat . getGroupingSize ( ) ) ;
}
1999-08-16 21:50:52 +00:00
// ======= Test getStaticClassID()
logln ( ( UnicodeString ) " Testing getStaticClassID() " ) ;
1999-10-07 00:07:53 +00:00
status = U_ZERO_ERROR ;
1999-08-16 21:50:52 +00:00
NumberFormat * test = new DecimalFormat ( status ) ;
1999-10-18 22:48:32 +00:00
if ( U_FAILURE ( status ) ) {
1999-08-16 21:50:52 +00:00
errln ( ( UnicodeString ) " ERROR: Couldn't create a DecimalFormat " ) ;
}
if ( test - > getDynamicClassID ( ) ! = DecimalFormat : : getStaticClassID ( ) ) {
errln ( ( UnicodeString ) " ERROR: getDynamicClassID() didn't return the expected value " ) ;
}
delete test ;
2009-09-08 22:29:54 +00:00
}
void IntlTestDecimalFormatAPI : : TestCurrencyPluralInfo ( ) {
UErrorCode status = U_ZERO_ERROR ;
2009-09-21 02:10:54 +00:00
2009-09-08 22:29:54 +00:00
CurrencyPluralInfo * cpi = new CurrencyPluralInfo ( status ) ;
if ( U_FAILURE ( status ) ) {
errln ( ( UnicodeString ) " ERROR: CurrencyPluralInfo(UErrorCode) could not be created " ) ;
}
2009-09-21 02:10:54 +00:00
CurrencyPluralInfo cpi1 = * cpi ;
2009-09-08 22:29:54 +00:00
if ( cpi - > getDynamicClassID ( ) ! = CurrencyPluralInfo : : getStaticClassID ( ) ) {
errln ( ( UnicodeString ) " ERROR: CurrencyPluralInfo::getDynamicClassID() didn't return the expected value " ) ;
}
cpi - > setCurrencyPluralPattern ( " " , " " , status ) ;
if ( U_FAILURE ( status ) ) {
errln ( ( UnicodeString ) " ERROR: CurrencyPluralInfo::setCurrencyPluralPattern " ) ;
}
2009-09-21 02:10:54 +00:00
cpi - > setLocale ( Locale : : getCanada ( ) , status ) ;
2009-09-08 22:29:54 +00:00
if ( U_FAILURE ( status ) ) {
errln ( ( UnicodeString ) " ERROR: CurrencyPluralInfo::setLocale " ) ;
}
cpi - > setPluralRules ( " " , status ) ;
if ( U_FAILURE ( status ) ) {
errln ( ( UnicodeString ) " ERROR: CurrencyPluralInfo::setPluralRules " ) ;
}
2009-09-21 02:10:54 +00:00
DecimalFormat * df = new DecimalFormat ( status ) ;
if ( U_FAILURE ( status ) ) {
2009-11-16 05:16:59 +00:00
errcheckln ( status , " ERROR: Could not create DecimalFormat - %s " , u_errorName ( status ) ) ;
2009-09-21 02:10:54 +00:00
}
df - > adoptCurrencyPluralInfo ( cpi ) ;
df - > getCurrencyPluralInfo ( ) ;
df - > setCurrencyPluralInfo ( cpi1 ) ;
delete df ;
1999-08-16 21:50:52 +00:00
}
2000-06-22 01:09:15 +00:00
2000-08-23 19:11:16 +00:00
void IntlTestDecimalFormatAPI : : testRounding ( /*char *par*/ )
2000-06-22 01:09:15 +00:00
{
UErrorCode status = U_ZERO_ERROR ;
2000-08-14 21:42:36 +00:00
double Roundingnumber = 2.55 ;
double Roundingnumber1 = - 2.55 ;
//+2.55 results -2.55 results
double result [ ] = { 3.0 , - 2.0 , // kRoundCeiling 0,
2000-06-22 01:09:15 +00:00
2.0 , - 3.0 , // kRoundFloor 1,
2000-08-14 21:42:36 +00:00
2.0 , - 2.0 , // kRoundDown 2,
3.0 , - 3.0 , // kRoundUp 3,
3.0 , - 3.0 , // kRoundHalfEven 4,
3.0 , - 3.0 , // kRoundHalfDown 5,
3.0 , - 3.0 // kRoundHalfUp 6
} ;
DecimalFormat pat ( status ) ;
2000-06-22 01:09:15 +00:00
if ( U_FAILURE ( status ) ) {
2009-06-12 19:34:21 +00:00
errcheckln ( status , " ERROR: Could not create DecimalFormat (default) - %s " , u_errorName ( status ) ) ;
2003-06-04 23:59:30 +00:00
return ;
2000-06-22 01:09:15 +00:00
}
2000-08-14 21:42:36 +00:00
uint16_t mode ;
uint16_t i = 0 ;
UnicodeString message ;
UnicodeString resultStr ;
for ( mode = 0 ; mode < 7 ; mode + + ) {
pat . setRoundingMode ( ( DecimalFormat : : ERoundingMode ) mode ) ;
if ( pat . getRoundingMode ( ) ! = ( DecimalFormat : : ERoundingMode ) mode ) {
errln ( ( UnicodeString ) " SetRoundingMode or GetRoundingMode failed for mode= " + mode ) ;
}
//for +2.55 with RoundingIncrement=1.0
pat . setRoundingIncrement ( 1.0 ) ;
pat . format ( Roundingnumber , resultStr ) ;
2013-02-07 19:48:29 +00:00
message = ( UnicodeString ) " Round() failed: round( " + ( double ) Roundingnumber + UnicodeString ( " , " ) + mode + UnicodeString ( " ,FALSE) with RoundingIncrement=1.0==> " ) ;
2000-08-14 21:42:36 +00:00
verify ( message , resultStr , result [ i + + ] ) ;
message . remove ( ) ;
resultStr . remove ( ) ;
//for -2.55 with RoundingIncrement=1.0
pat . format ( Roundingnumber1 , resultStr ) ;
2013-02-07 19:48:29 +00:00
message = ( UnicodeString ) " Round() failed: round( " + ( double ) Roundingnumber1 + UnicodeString ( " , " ) + mode + UnicodeString ( " ,FALSE) with RoundingIncrement=1.0==> " ) ;
2000-08-14 21:42:36 +00:00
verify ( message , resultStr , result [ i + + ] ) ;
message . remove ( ) ;
resultStr . remove ( ) ;
}
2000-06-22 01:09:15 +00:00
}
void IntlTestDecimalFormatAPI : : verify ( const UnicodeString & message , const UnicodeString & got , double expected ) {
2000-08-14 21:42:36 +00:00
logln ( ( UnicodeString ) message + got + ( UnicodeString ) " Expected : " + expected ) ;
UnicodeString expectedStr ( " " ) ;
expectedStr = expectedStr + expected ;
if ( got ! = expectedStr ) {
2013-02-07 19:48:29 +00:00
errln ( ( UnicodeString ) " ERROR: " + message + got + ( UnicodeString ) " Expected : " + expectedStr ) ;
}
}
void IntlTestDecimalFormatAPI : : verifyString ( const UnicodeString & message , const UnicodeString & got , UnicodeString & expected ) {
logln ( ( UnicodeString ) message + got + ( UnicodeString ) " Expected : " + expected ) ;
if ( got ! = expected ) {
errln ( ( UnicodeString ) " ERROR: " + message + got + ( UnicodeString ) " Expected : " + expected ) ;
2000-08-14 21:42:36 +00:00
}
2000-06-22 01:09:15 +00:00
}
2002-09-21 00:43:14 +00:00
2009-02-03 15:54:55 +00:00
void IntlTestDecimalFormatAPI : : testRoundingInc ( /*char *par*/ )
{
UErrorCode status = U_ZERO_ERROR ;
DecimalFormat pat ( UnicodeString ( " #,##0.00 " ) , status ) ;
if ( U_FAILURE ( status ) ) {
2009-06-12 19:34:21 +00:00
errcheckln ( status , " ERROR: Could not create DecimalFormat (default) - %s " , u_errorName ( status ) ) ;
2009-02-03 15:54:55 +00:00
return ;
}
// get default rounding increment
double roundingInc = pat . getRoundingIncrement ( ) ;
if ( roundingInc ! = 0.0 ) {
errln ( ( UnicodeString ) " ERROR: Rounding increment not zero " ) ;
return ;
}
2010-02-26 02:29:00 +00:00
// With rounding now being handled by decNumber, we no longer
// set a rounding increment to enable non-default mode rounding,
// checking of which was the original point of this test.
2009-02-03 15:54:55 +00:00
// set rounding mode with zero increment. Rounding
2010-02-26 02:29:00 +00:00
// increment should not be set by this operation
2009-02-03 18:43:45 +00:00
pat . setRoundingMode ( ( DecimalFormat : : ERoundingMode ) 0 ) ;
2009-02-03 15:54:55 +00:00
roundingInc = pat . getRoundingIncrement ( ) ;
2010-02-26 02:29:00 +00:00
if ( roundingInc ! = 0.0 ) {
2010-03-02 19:31:40 +00:00
errln ( ( UnicodeString ) " ERROR: Rounding increment not zero after setRoundingMode " ) ;
2009-02-03 15:54:55 +00:00
return ;
}
}
2013-02-07 19:48:29 +00:00
void IntlTestDecimalFormatAPI : : TestScale ( )
{
typedef struct TestData {
double inputValue ;
int inputScale ;
2013-03-21 01:42:01 +00:00
const char * expectedOutput ;
2013-02-07 19:48:29 +00:00
} TestData ;
static TestData testData [ ] = {
{ 100.0 , 3 , " 100,000 " } ,
{ 10034.0 , - 2 , " 100.34 " } ,
{ 0.86 , - 3 , " 0.0009 " } ,
{ - 0.000455 , 1 , " -0% " } ,
{ - 0.000555 , 1 , " -1% " } ,
{ 0.000455 , 1 , " 0% " } ,
{ 0.000555 , 1 , " 1% " } ,
} ;
UErrorCode status = U_ZERO_ERROR ;
DecimalFormat pat ( status ) ;
if ( U_FAILURE ( status ) ) {
errcheckln ( status , " ERROR: Could not create DecimalFormat (default) - %s " , u_errorName ( status ) ) ;
return ;
}
UnicodeString message ;
UnicodeString resultStr ;
UnicodeString exp ;
UnicodeString percentPattern ( " #,##0% " ) ;
pat . setMaximumFractionDigits ( 4 ) ;
2013-03-21 01:42:01 +00:00
for ( int32_t i = 0 ; i < LENGTHOF ( testData ) ; i + + ) {
2013-02-07 19:48:29 +00:00
if ( i > 2 ) {
pat . applyPattern ( percentPattern , status ) ;
}
pat . setAttribute ( UNUM_SCALE , testData [ i ] . inputScale , status ) ;
pat . format ( testData [ i ] . inputValue , resultStr ) ;
2013-09-04 01:07:35 +00:00
message = UnicodeString ( " Unexpected output for " ) + testData [ i ] . inputValue + UnicodeString ( " and scale " ) +
testData [ i ] . inputScale + UnicodeString ( " . Got: " ) ;
2013-02-07 19:48:29 +00:00
exp = testData [ i ] . expectedOutput ;
verifyString ( message , resultStr , exp ) ;
message . remove ( ) ;
resultStr . remove ( ) ;
exp . remove ( ) ;
}
}
2013-09-04 01:07:35 +00:00
# define ASSERT_SUCCESS(status) {if (U_FAILURE(status)) { \
errln ( " file %s, line %d: Error status is %s " , __FILE__ , __LINE__ , u_errorName ( status ) ) ; \
status = U_ZERO_ERROR ; } }
# define ASSERT_EQUAL(expect, actual) {if ((expect) != (actual)) { \
errln ( " file %s, line %d: Expected %g, got %g " , __FILE__ , __LINE__ , ( double ) ( expect ) , ( double ) ( actual ) ) ; } }
void IntlTestDecimalFormatAPI : : TestFixedDecimal ( ) {
UErrorCode status = U_ZERO_ERROR ;
LocalPointer < DecimalFormat > df ( new DecimalFormat ( " ### " , status ) ) ;
ASSERT_SUCCESS ( status ) ;
FixedDecimal fd = df - > getFixedDecimal ( 44 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 44 , fd . source ) ;
ASSERT_EQUAL ( 0 , fd . visibleDecimalDigitCount ) ;
df . adoptInstead ( new DecimalFormat ( " ###.00## " , status ) ) ;
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 123.456 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 3 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 456 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 456 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 123 , fd . intValue ) ;
ASSERT_EQUAL ( FALSE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
df . adoptInstead ( new DecimalFormat ( " ### " , status ) ) ;
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 123.456 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 0 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 123 , fd . intValue ) ;
ASSERT_EQUAL ( TRUE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
df . adoptInstead ( new DecimalFormat ( " ###.0 " , status ) ) ;
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 123.01 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 1 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 123 , fd . intValue ) ;
ASSERT_EQUAL ( TRUE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
df . adoptInstead ( new DecimalFormat ( " ###.0 " , status ) ) ;
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 123.06 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 1 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 1 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 1 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 123 , fd . intValue ) ;
ASSERT_EQUAL ( FALSE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
2013-09-05 23:28:28 +00:00
df . adoptInstead ( new DecimalFormat ( " @@@@@ " , status ) ) ; // Significant Digits
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 123 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 2 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 0 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 123 , fd . intValue ) ;
ASSERT_EQUAL ( TRUE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
df . adoptInstead ( new DecimalFormat ( " @@@@@ " , status ) ) ; // Significant Digits
ASSERT_SUCCESS ( status ) ;
fd = df - > getFixedDecimal ( 1.23 , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( 4 , fd . visibleDecimalDigitCount ) ;
ASSERT_EQUAL ( 2300 , fd . decimalDigits ) ;
ASSERT_EQUAL ( 23 , fd . decimalDigitsWithoutTrailingZeros ) ;
ASSERT_EQUAL ( 1 , fd . intValue ) ;
ASSERT_EQUAL ( FALSE , fd . hasIntegerValue ) ;
ASSERT_EQUAL ( FALSE , fd . isNegative ) ;
2013-09-06 20:02:42 +00:00
fd = df - > getFixedDecimal ( uprv_getInfinity ( ) , status ) ;
ASSERT_SUCCESS ( status ) ;
ASSERT_EQUAL ( TRUE , fd . isNanOrInfinity ) ;
fd = df - > getFixedDecimal ( 0.0 , status ) ;
ASSERT_EQUAL ( FALSE , fd . isNanOrInfinity ) ;
fd = df - > getFixedDecimal ( uprv_getNaN ( ) , status ) ;
ASSERT_EQUAL ( TRUE , fd . isNanOrInfinity ) ;
ASSERT_SUCCESS ( status ) ;
2013-09-04 01:07:35 +00:00
}
2002-09-21 00:43:14 +00:00
# endif /* #if !UCONFIG_NO_FORMATTING */