2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1997-2006, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2000-01-15 02:00:06 +00:00
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#ifndef _DATEFORMATROUNDTRIPTEST_
|
|
|
|
#define _DATEFORMATROUNDTRIPTEST_
|
|
|
|
|
2002-09-21 00:43:14 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/unistr.h"
|
2001-10-08 23:26:58 +00:00
|
|
|
#include "unicode/datefmt.h"
|
|
|
|
#include "unicode/smpdtfmt.h"
|
|
|
|
#include "unicode/calendar.h"
|
|
|
|
#include "intltest.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs round-trip tests for DateFormat
|
|
|
|
**/
|
|
|
|
class DateFormatRoundTripTest : public IntlTest {
|
|
|
|
|
|
|
|
// IntlTest override
|
2000-08-14 21:42:36 +00:00
|
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
public:
|
2003-08-12 19:22:32 +00:00
|
|
|
DateFormatRoundTripTest();
|
|
|
|
virtual ~DateFormatRoundTripTest();
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
void TestDateFormatRoundTrip(void);
|
2006-07-18 22:14:29 +00:00
|
|
|
void TestCentury(void);
|
1999-08-16 21:50:52 +00:00
|
|
|
void test(const Locale& loc);
|
2002-04-11 02:44:53 +00:00
|
|
|
void test(DateFormat *fmt, const Locale &origLocale, UBool timeOnly = FALSE );
|
1999-08-16 21:50:52 +00:00
|
|
|
int32_t getField(UDate d, int32_t f);
|
|
|
|
UnicodeString& escape(const UnicodeString& src, UnicodeString& dst);
|
|
|
|
UDate generateDate(void);
|
2003-12-04 23:16:57 +00:00
|
|
|
UDate generateDate(UDate minDate);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
//============================================================
|
|
|
|
// statics
|
|
|
|
//============================================================
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a random uint32_t
|
|
|
|
**/
|
2003-08-12 19:57:57 +00:00
|
|
|
static uint32_t randLong() {
|
|
|
|
// The portable IntlTest::random() function has sufficient
|
|
|
|
// resolution for a 16-bit value, but not for 32 bits.
|
|
|
|
return ((uint32_t) (IntlTest::random() * (1<<16))) |
|
|
|
|
(((uint32_t) (IntlTest::random() * (1<<16))) << 16);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2003-08-12 19:57:57 +00:00
|
|
|
* Return a random double 0 <= x <= 1.0
|
1999-08-16 21:50:52 +00:00
|
|
|
**/
|
|
|
|
static double randFraction()
|
|
|
|
{
|
|
|
|
return (double)randLong() / (double)0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2003-08-12 19:57:57 +00:00
|
|
|
* Return a random value from -range..+range (closed).
|
1999-08-16 21:50:52 +00:00
|
|
|
**/
|
|
|
|
static double randDouble(double range)
|
|
|
|
{
|
|
|
|
double a = randFraction();
|
|
|
|
//while(TPlatformUtilities::isInfinite(a) || TPlatformUtilities::isNaN(a))
|
|
|
|
// a = randFraction();
|
|
|
|
return (2.0 * range * a) - range;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool failure(UErrorCode status, const char* msg);
|
2003-05-30 00:52:43 +00:00
|
|
|
UBool failure(UErrorCode status, const char* msg, const UnicodeString& str);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2003-08-12 19:22:32 +00:00
|
|
|
const UnicodeString& fullFormat(UDate d);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
static int32_t SPARSENESS;
|
|
|
|
static int32_t TRIALS;
|
|
|
|
static int32_t DEPTH;
|
|
|
|
|
2003-08-12 19:22:32 +00:00
|
|
|
UBool optionv; // TRUE if @v option is given on command line
|
1999-08-16 21:50:52 +00:00
|
|
|
SimpleDateFormat *dateFormat;
|
2003-08-12 19:22:32 +00:00
|
|
|
UnicodeString fgStr;
|
1999-08-16 21:50:52 +00:00
|
|
|
Calendar *getFieldCal;
|
|
|
|
};
|
2002-09-21 00:43:14 +00:00
|
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
#endif // _DATEFORMATROUNDTRIPTEST_
|
|
|
|
//eof
|