1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /********************************************************************
5 * Copyright (c) 1997-2016, International Business Machines Corporation and
6 * others. All Rights Reserved.
7 ********************************************************************/
9 #include "unicode/utypes.h"
11 #if !UCONFIG_NO_FORMATTING
14 //TODO: define it in compiler flag
15 //#define DTIFMTTS_DEBUG 1
27 #include "simplethread.h"
28 #include "unicode/gregocal.h"
29 #include "unicode/dtintrv.h"
30 #include "unicode/dtitvinf.h"
31 #include "unicode/dtitvfmt.h"
32 #include "unicode/localpointer.h"
33 #include "unicode/timezone.h"
38 //#define PRINTMESG(msg) { std::cout << "(" << __FILE__ << ":" << __LINE__ << ") " << msg << "\n"; }
39 #define PRINTMESG(msg) { std::cout << msg; }
45 void DateIntervalFormatTest::runIndexedTest( int32_t index
, UBool exec
, const char* &name
, char* /*par*/ ) {
46 if (exec
) logln("TestSuite DateIntervalFormat");
49 TESTCASE(1, testFormat
);
50 TESTCASE(2, testFormatUserDII
);
51 TESTCASE(3, testSetIntervalPatternNoSideEffect
);
52 TESTCASE(4, testYearFormats
);
53 TESTCASE(5, testStress
);
54 TESTCASE(6, testTicket11583_2
);
55 TESTCASE(7, testTicket11985
);
56 TESTCASE(8, testTicket11669
);
57 TESTCASE(9, testTicket12065
);
58 default: name
= ""; break;
63 * Test various generic API methods of DateIntervalFormat for API coverage.
65 void DateIntervalFormatTest::testAPI() {
67 /* ====== Test create interval instance with default locale and skeleton
69 UErrorCode status
= U_ZERO_ERROR
;
70 logln("Testing DateIntervalFormat create instance with default locale and skeleton");
72 DateIntervalFormat
* dtitvfmt
= DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY
, status
);
73 if(U_FAILURE(status
)) {
74 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + default locale) - exitting");
81 /* ====== Test create interval instance with given locale and skeleton
83 status
= U_ZERO_ERROR
;
84 logln("Testing DateIntervalFormat create instance with given locale and skeleton");
86 dtitvfmt
= DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY
, Locale::getJapanese(), status
);
87 if(U_FAILURE(status
)) {
88 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + locale) - exitting");
95 /* ====== Test create interval instance with dateIntervalInfo and skeleton
97 status
= U_ZERO_ERROR
;
98 logln("Testing DateIntervalFormat create instance with dateIntervalInfo and skeleton");
100 DateIntervalInfo
* dtitvinf
= new DateIntervalInfo(Locale::getSimplifiedChinese(), status
);
102 dtitvfmt
= DateIntervalFormat::createInstance("EEEdMMMyhms", *dtitvinf
, status
);
105 if(U_FAILURE(status
)) {
106 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + DateIntervalInfo + default locale) - exitting");
113 /* ====== Test create interval instance with dateIntervalInfo and skeleton
115 status
= U_ZERO_ERROR
;
116 logln("Testing DateIntervalFormat create instance with dateIntervalInfo and skeleton");
118 dtitvinf
= new DateIntervalInfo(Locale::getSimplifiedChinese(), status
);
120 dtitvfmt
= DateIntervalFormat::createInstance("EEEdMMMyhms", Locale::getSimplifiedChinese(), *dtitvinf
, status
);
122 if(U_FAILURE(status
)) {
123 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + DateIntervalInfo + locale) - exitting");
126 // not deleted, test clone
129 // ====== Test clone()
130 status
= U_ZERO_ERROR
;
131 logln("Testing DateIntervalFormat clone");
133 DateIntervalFormat
* another
= (DateIntervalFormat
*)dtitvfmt
->clone();
134 if ( (*another
) != (*dtitvfmt
) ) {
135 dataerrln("%s:%d ERROR: clone failed", __FILE__
, __LINE__
);
139 // ====== Test getDateIntervalInfo, setDateIntervalInfo, adoptDateIntervalInfo
140 status
= U_ZERO_ERROR
;
141 logln("Testing DateIntervalFormat getDateIntervalInfo");
142 const DateIntervalInfo
* inf
= another
->getDateIntervalInfo();
143 dtitvfmt
->setDateIntervalInfo(*inf
, status
);
144 const DateIntervalInfo
* anotherInf
= dtitvfmt
->getDateIntervalInfo();
145 if ( (*inf
) != (*anotherInf
) || U_FAILURE(status
) ) {
146 dataerrln("ERROR: getDateIntervalInfo/setDateIntervalInfo failed");
150 // We make sure that setDateIntervalInfo does not corrupt the cache. See ticket 9919.
151 status
= U_ZERO_ERROR
;
152 logln("Testing DateIntervalFormat setDateIntervalInfo");
153 const Locale
&enLocale
= Locale::getEnglish();
154 LocalPointer
<DateIntervalFormat
> dif(DateIntervalFormat::createInstance("yMd", enLocale
, status
));
155 if (U_FAILURE(status
)) {
156 errln("Failure encountered: %s", u_errorName(status
));
159 UnicodeString expected
;
160 LocalPointer
<Calendar
> fromTime(Calendar::createInstance(enLocale
, status
));
161 LocalPointer
<Calendar
> toTime(Calendar::createInstance(enLocale
, status
));
162 if (U_FAILURE(status
)) {
163 errln("Failure encountered: %s", u_errorName(status
));
166 FieldPosition
pos(FieldPosition::DONT_CARE
);
167 fromTime
->set(2013, 3, 26);
168 toTime
->set(2013, 3, 28);
169 dif
->format(*fromTime
, *toTime
, expected
, pos
, status
);
170 if (U_FAILURE(status
)) {
171 errln("Failure encountered: %s", u_errorName(status
));
174 LocalPointer
<DateIntervalInfo
> dii(new DateIntervalInfo(Locale::getEnglish(), status
), status
);
175 if (U_FAILURE(status
)) {
176 errln("Failure encountered: %s", u_errorName(status
));
179 dii
->setIntervalPattern(ctou("yMd"), UCAL_DATE
, ctou("M/d/y \\u2013 d"), status
);
180 dif
->setDateIntervalInfo(*dii
, status
);
181 if (U_FAILURE(status
)) {
182 errln("Failure encountered: %s", u_errorName(status
));
185 dif
.adoptInstead(DateIntervalFormat::createInstance("yMd", enLocale
, status
));
186 if (U_FAILURE(status
)) {
187 errln("Failure encountered: %s", u_errorName(status
));
190 UnicodeString actual
;
192 dif
->format(*fromTime
, *toTime
, actual
, pos
, status
);
193 if (U_FAILURE(status
)) {
194 errln("Failure encountered: %s", u_errorName(status
));
197 if (expected
!= actual
) {
198 errln("DateIntervalFormat.setIntervalInfo should have no side effects.");
203 status = U_ZERO_ERROR;
204 DateIntervalInfo* nonConstInf = inf->clone();
205 dtitvfmt->adoptDateIntervalInfo(nonConstInf, status);
206 anotherInf = dtitvfmt->getDateIntervalInfo();
207 if ( (*inf) != (*anotherInf) || U_FAILURE(status) ) {
208 dataerrln("ERROR: adoptDateIntervalInfo failed");
212 // ====== Test getDateFormat, setDateFormat, adoptDateFormat
214 status
= U_ZERO_ERROR
;
215 logln("Testing DateIntervalFormat getDateFormat");
217 const DateFormat* fmt = another->getDateFormat();
218 dtitvfmt->setDateFormat(*fmt, status);
219 const DateFormat* anotherFmt = dtitvfmt->getDateFormat();
220 if ( (*fmt) != (*anotherFmt) || U_FAILURE(status) ) {
221 dataerrln("ERROR: getDateFormat/setDateFormat failed");
224 status = U_ZERO_ERROR;
225 DateFormat* nonConstFmt = (DateFormat*)fmt->clone();
226 dtitvfmt->adoptDateFormat(nonConstFmt, status);
227 anotherFmt = dtitvfmt->getDateFormat();
228 if ( (*fmt) != (*anotherFmt) || U_FAILURE(status) ) {
229 dataerrln("ERROR: adoptDateFormat failed");
235 // ======= Test getStaticClassID()
237 logln("Testing getStaticClassID()");
240 if(dtitvfmt
->getDynamicClassID() != DateIntervalFormat::getStaticClassID()) {
241 errln("ERROR: getDynamicClassID() didn't return the expected value");
246 // ====== test constructor/copy constructor and assignment
247 /* they are protected, no test
248 logln("Testing DateIntervalFormat constructor and assigment operator");
249 status = U_ZERO_ERROR;
251 DateFormat* constFmt = (constFmt*)dtitvfmt->getDateFormat()->clone();
252 inf = dtitvfmt->getDateIntervalInfo()->clone();
255 DateIntervalFormat* dtifmt = new DateIntervalFormat(fmt, inf, status);
256 if(U_FAILURE(status)) {
257 dataerrln("ERROR: Could not create DateIntervalFormat (default) - exitting");
261 DateIntervalFormat* dtifmt2 = new(dtifmt);
262 if ( (*dtifmt) != (*dtifmt2) ) {
263 dataerrln("ERROR: Could not create DateIntervalFormat (default) - exitting");
267 DateIntervalFormat dtifmt3 = (*dtifmt);
268 if ( (*dtifmt) != dtifmt3 ) {
269 dataerrln("ERROR: Could not create DateIntervalFormat (default) - exitting");
279 //===== test format and parse ==================
280 Formattable formattable
;
281 formattable
.setInt64(10);
283 FieldPosition
pos(FieldPosition::DONT_CARE
);
284 status
= U_ZERO_ERROR
;
285 dtitvfmt
->format(formattable
, res
, pos
, status
);
286 if ( status
!= U_ILLEGAL_ARGUMENT_ERROR
) {
287 dataerrln("ERROR: format non-date-interval object should set U_ILLEGAL_ARGUMENT_ERROR - exitting");
291 DateInterval
* dtitv
= new DateInterval(3600*24*365, 3600*24*366);
292 formattable
.adoptObject(dtitv
);
295 status
= U_ZERO_ERROR
;
296 dtitvfmt
->format(formattable
, res
, pos
, status
);
297 if ( U_FAILURE(status
) ) {
298 dataerrln("ERROR: format date interval failed - exitting");
302 const DateFormat
* dfmt
= dtitvfmt
->getDateFormat();
303 Calendar
* fromCal
= dfmt
->getCalendar()->clone();
304 Calendar
* toCal
= dfmt
->getCalendar()->clone();
307 status
= U_ZERO_ERROR
;
308 dtitvfmt
->format(*fromCal
, *toCal
, res
, pos
, status
);
309 if ( U_FAILURE(status
) ) {
310 dataerrln("ERROR: format date interval failed - exitting");
317 Formattable fmttable
;
318 status
= U_ZERO_ERROR
;
319 // TODO: why do I need cast?
320 ((Format
*)dtitvfmt
)->parseObject(res
, fmttable
, status
);
321 if ( status
!= U_INVALID_FORMAT_ERROR
) {
322 dataerrln("ERROR: parse should set U_INVALID_FORMAT_ERROR - exitting");
328 //====== test setting time zone
329 logln("Testing DateIntervalFormat set & format with different time zones, get time zone");
330 status
= U_ZERO_ERROR
;
331 dtitvfmt
= DateIntervalFormat::createInstance("MMMdHHmm", Locale::getEnglish(), status
);
332 if ( U_SUCCESS(status
) ) {
333 UDate date1
= 1299090600000.0; // 2011-Mar-02 1030 in US/Pacific, 2011-Mar-03 0330 in Asia/Tokyo
334 UDate date2
= 1299115800000.0; // 2011-Mar-02 1730 in US/Pacific, 2011-Mar-03 1030 in Asia/Tokyo
336 DateInterval
* dtitv12
= new DateInterval(date1
, date2
);
337 TimeZone
* tzCalif
= TimeZone::createTimeZone("US/Pacific");
338 TimeZone
* tzTokyo
= TimeZone::createTimeZone("Asia/Tokyo");
339 UnicodeString fmtCalif
= UnicodeString(ctou("Mar 2, 10:30\\u2009\\u2013\\u200917:30"));
340 UnicodeString fmtTokyo
= UnicodeString(ctou("Mar 3, 03:30\\u2009\\u2013\\u200910:30"));
342 dtitvfmt
->adoptTimeZone(tzCalif
);
345 status
= U_ZERO_ERROR
;
346 dtitvfmt
->format(dtitv12
, res
, pos
, status
);
347 if ( U_SUCCESS(status
) ) {
348 if ( res
.compare(fmtCalif
) != 0 ) {
349 errln("ERROR: DateIntervalFormat::format for tzCalif, expect " + fmtCalif
+ ", get " + res
);
352 errln("ERROR: DateIntervalFormat::format for tzCalif, status %s", u_errorName(status
));
355 dtitvfmt
->setTimeZone(*tzTokyo
);
358 status
= U_ZERO_ERROR
;
359 dtitvfmt
->format(dtitv12
, res
, pos
, status
);
360 if ( U_SUCCESS(status
) ) {
361 if ( res
.compare(fmtTokyo
) != 0 ) {
362 errln("ERROR: DateIntervalFormat::format for tzTokyo, expect " + fmtTokyo
+ ", get " + res
);
365 errln("ERROR: DateIntervalFormat::format for tzTokyo, status %s", u_errorName(status
));
368 if ( dtitvfmt
->getTimeZone() != *tzTokyo
) {
369 errln("ERROR: DateIntervalFormat::getTimeZone returns mismatch.");
372 delete tzTokyo
; // tzCalif was owned by dtitvfmt which should have deleted it
376 errln("ERROR: DateIntervalFormat::createInstance(\"MdHH\", Locale::getEnglish(), ...), status %s", u_errorName(status
));
378 //====== test format in testFormat()
380 //====== test DateInterval class (better coverage)
381 DateInterval
dtitv1(3600*24*365, 3600*24*366);
382 DateInterval
dtitv2(dtitv1
);
384 if (!(dtitv1
== dtitv2
)) {
385 errln("ERROR: Copy constructor failed for DateInterval.");
388 DateInterval
dtitv3(3600*365, 3600*366);
390 if (!(dtitv3
== dtitv1
)) {
391 errln("ERROR: Equal operator failed for DateInterval.");
394 DateInterval
*dtitv4
= dtitv1
.clone();
395 if (*dtitv4
!= dtitv1
) {
396 errln("ERROR: Equal operator failed for DateInterval.");
405 void DateIntervalFormatTest::testFormat() {
406 // first item is date pattern
407 // followed by a group of locale/from_data/to_data/skeleton/interval_data
408 const char* DATA
[] = {
409 "yyyy MM dd HH:mm:ss",
411 "root", "2007 11 10 10:10:10", "2007 12 10 10:10:10", "yM", "2007-11 \\u2013 2007-12",
413 // test 'H' and 'h', using availableFormat in fallback
414 "en", "2007 11 10 10:10:10", "2007 11 10 15:10:10", "Hms", "10:10:10\\u2009\\u2013\\u200915:10:10",
415 "en", "2007 11 10 10:10:10", "2007 11 10 15:10:10", "hms", "10:10:10 AM\\u2009\\u2013\\u20093:10:10 PM",
417 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "MMMM", "October 2007\\u2009\\u2013\\u2009October 2008",
418 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "MMM", "Oct 2007\\u2009\\u2013\\u2009Oct 2008",
419 // test skeleton with both date and time
420 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMyhm", "Nov 10, 2007, 10:10 AM\\u2009\\u2013\\u2009Nov 20, 2007, 10:10 AM",
422 "en", "2007 11 10 10:10:10", "2007 11 10 11:10:10", "dMMMyhm", "Nov 10, 2007, 10:10\\u2009\\u2013\\u200911:10 AM",
424 "en", "2007 11 10 10:10:10", "2007 11 10 11:10:10", "hms", "10:10:10 AM\\u2009\\u2013\\u200911:10:10 AM",
425 "en", "2007 11 10 10:10:10", "2007 11 10 11:10:10", "Hms", "10:10:10\\u2009\\u2013\\u200911:10:10",
426 "en", "2007 11 10 20:10:10", "2007 11 10 21:10:10", "Hms", "20:10:10\\u2009\\u2013\\u200921:10:10",
428 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEEEdMMMMy", "Wednesday, October 10, 2007\\u2009\\u2013\\u2009Friday, October 10, 2008",
430 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMMMy", "October 10, 2007\\u2009\\u2013\\u2009October 10, 2008",
432 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMMM", "October 10, 2007\\u2009\\u2013\\u2009October 10, 2008",
434 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "MMMMy", "October 2007\\u2009\\u2013\\u2009October 2008",
436 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEEEdMMMM", "Wednesday, October 10, 2007\\u2009\\u2013\\u2009Friday, October 10, 2008",
438 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdMMMy", "Wed, Oct 10, 2007\\u2009\\u2013\\u2009Fri, Oct 10, 2008",
440 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMMy", "Oct 10, 2007\\u2009\\u2013\\u2009Oct 10, 2008",
442 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMM", "Oct 10, 2007\\u2009\\u2013\\u2009Oct 10, 2008",
444 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "MMMy", "Oct 2007\\u2009\\u2013\\u2009Oct 2008",
446 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdMMM", "Wed, Oct 10, 2007\\u2009\\u2013\\u2009Fri, Oct 10, 2008",
448 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdMy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Fri, 10/10/2008",
450 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMy", "10/10/2007\\u2009\\u2013\\u200910/10/2008",
452 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dM", "10/10/2007\\u2009\\u2013\\u200910/10/2008",
454 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "My", "10/2007\\u2009\\u2013\\u200910/2008",
456 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdM", "Wed, 10/10/2007\\u2009\\u2013\\u2009Fri, 10/10/2008",
458 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "d", "10/10/2007\\u2009\\u2013\\u200910/10/2008",
460 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "Ed", "10 Wed\\u2009\\u2013\\u200910 Fri",
462 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "y", "2007\\u2009\\u2013\\u20092008",
464 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "M", "10/2007\\u2009\\u2013\\u200910/2008",
468 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hm", "10/10/2007, 10:10 AM\\u2009\\u2013\\u200910/10/2008, 10:10 AM",
469 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "Hm", "10/10/2007, 10:10\\u2009\\u2013\\u200910/10/2008, 10:10",
470 "en", "2007 10 10 20:10:10", "2008 10 10 20:10:10", "Hm", "10/10/2007, 20:10\\u2009\\u2013\\u200910/10/2008, 20:10",
472 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hmv", "10/10/2007, 10:10 AM PT\\u2009\\u2013\\u200910/10/2008, 10:10 AM PT",
474 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hmz", "10/10/2007, 10:10 AM PDT\\u2009\\u2013\\u200910/10/2008, 10:10 AM PDT",
476 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "h", "10/10/2007, 10 AM\\u2009\\u2013\\u200910/10/2008, 10 AM",
478 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hv", "10/10/2007, 10 AM PT\\u2009\\u2013\\u200910/10/2008, 10 AM PT",
480 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hz", "10/10/2007, 10 AM PDT\\u2009\\u2013\\u200910/10/2008, 10 AM PDT",
482 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEddMMyyyy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Fri, 10/10/2008",
484 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EddMMy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Fri, 10/10/2008",
486 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hhmm", "10/10/2007, 10:10 AM\\u2009\\u2013\\u200910/10/2008, 10:10 AM",
488 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hhmmzz", "10/10/2007, 10:10 AM PDT\\u2009\\u2013\\u200910/10/2008, 10:10 AM PDT",
490 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hms", "10/10/2007, 10:10:10 AM\\u2009\\u2013\\u200910/10/2008, 10:10:10 AM",
492 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMMMMy", "O 10, 2007\\u2009\\u2013\\u2009O 10, 2008",
494 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEEEEdM", "W, 10/10/2007\\u2009\\u2013\\u2009F, 10/10/2008",
496 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEEEdMMMMy", "Wednesday, October 10\\u2009\\u2013\\u2009Saturday, November 10, 2007",
498 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMMMy", "October 10\\u2009\\u2013\\u2009November 10, 2007",
500 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMMM", "October 10\\u2009\\u2013\\u2009November 10",
502 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMMMy", "October\\u2009\\u2013\\u2009November 2007",
504 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEEEdMMMM", "Wednesday, October 10\\u2009\\u2013\\u2009Saturday, November 10",
506 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EdMMMy", "Wed, Oct 10\\u2009\\u2013\\u2009Sat, Nov 10, 2007",
508 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMMy", "Oct 10\\u2009\\u2013\\u2009Nov 10, 2007",
510 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMM", "Oct 10\\u2009\\u2013\\u2009Nov 10",
512 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMMy", "Oct\\u2009\\u2013\\u2009Nov 2007",
514 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EdMMM", "Wed, Oct 10\\u2009\\u2013\\u2009Sat, Nov 10",
516 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EdMy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Sat, 11/10/2007",
518 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMy", "10/10/2007\\u2009\\u2013\\u200911/10/2007",
521 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "My", "10/2007\\u2009\\u2013\\u200911/2007",
523 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EdM", "Wed, 10/10\\u2009\\u2013\\u2009Sat, 11/10",
525 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "d", "10/10\\u2009\\u2013\\u200911/10",
527 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "Ed", "10 Wed\\u2009\\u2013\\u200910 Sat",
529 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "y", "2007",
531 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "M", "10\\u2009\\u2013\\u200911",
533 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMM", "Oct\\u2009\\u2013\\u2009Nov",
535 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMMM", "October\\u2009\\u2013\\u2009November",
537 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hm", "10/10/2007, 10:10 AM\\u2009\\u2013\\u200911/10/2007, 10:10 AM",
538 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "Hm", "10/10/2007, 10:10\\u2009\\u2013\\u200911/10/2007, 10:10",
539 "en", "2007 10 10 20:10:10", "2007 11 10 20:10:10", "Hm", "10/10/2007, 20:10\\u2009\\u2013\\u200911/10/2007, 20:10",
541 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hmv", "10/10/2007, 10:10 AM PT\\u2009\\u2013\\u200911/10/2007, 10:10 AM PT",
543 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hmz", "10/10/2007, 10:10 AM PDT\\u2009\\u2013\\u200911/10/2007, 10:10 AM PST",
545 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "h", "10/10/2007, 10 AM\\u2009\\u2013\\u200911/10/2007, 10 AM",
547 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hv", "10/10/2007, 10 AM PT\\u2009\\u2013\\u200911/10/2007, 10 AM PT",
549 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hz", "10/10/2007, 10 AM PDT\\u2009\\u2013\\u200911/10/2007, 10 AM PST",
551 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEddMMyyyy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Sat, 11/10/2007",
553 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EddMMy", "Wed, 10/10/2007\\u2009\\u2013\\u2009Sat, 11/10/2007",
556 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hhmmzz", "10/10/2007, 10:10 AM PDT\\u2009\\u2013\\u200911/10/2007, 10:10 AM PST",
558 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hms", "10/10/2007, 10:10:10 AM\\u2009\\u2013\\u200911/10/2007, 10:10:10 AM",
560 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMMMMy", "O 10\\u2009\\u2013\\u2009N 10, 2007",
562 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEEEEdM", "W, 10/10\\u2009\\u2013\\u2009S, 11/10",
564 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMMMy", "Saturday, November 10\\u2009\\u2013\\u2009Tuesday, November 20, 2007",
566 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMMy", "November 10\\u2009\\u2013\\u200920, 2007",
568 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMM", "November 10\\u2009\\u2013\\u200920",
571 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMMM", "Saturday, November 10\\u2009\\u2013\\u2009Tuesday, November 20",
573 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdMMMy", "Sat, Nov 10\\u2009\\u2013\\u2009Tue, Nov 20, 2007",
575 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMy", "Nov 10\\u2009\\u2013\\u200920, 2007",
577 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMM", "Nov 10\\u2009\\u2013\\u200920",
579 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMMy", "Nov 2007",
581 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdMMM", "Sat, Nov 10\\u2009\\u2013\\u2009Tue, Nov 20",
583 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdMy", "Sat, 11/10/2007\\u2009\\u2013\\u2009Tue, 11/20/2007",
585 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMy", "11/10/2007\\u2009\\u2013\\u200911/20/2007",
587 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dM", "11/10\\u2009\\u2013\\u200911/20",
589 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "My", "11/2007",
591 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdM", "Sat, 11/10\\u2009\\u2013\\u2009Tue, 11/20",
593 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "d", "10\\u2009\\u2013\\u200920",
595 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "Ed", "10 Sat\\u2009\\u2013\\u200920 Tue",
597 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "y", "2007",
599 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "M", "11",
601 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMM", "Nov",
603 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMMM", "November",
605 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hm", "11/10/2007, 10:10 AM\\u2009\\u2013\\u200911/20/2007, 10:10 AM",
606 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "Hm", "11/10/2007, 10:10\\u2009\\u2013\\u200911/20/2007, 10:10",
607 "en", "2007 11 10 20:10:10", "2007 11 20 20:10:10", "Hm", "11/10/2007, 20:10\\u2009\\u2013\\u200911/20/2007, 20:10",
609 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hmv", "11/10/2007, 10:10 AM PT\\u2009\\u2013\\u200911/20/2007, 10:10 AM PT",
611 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hmz", "11/10/2007, 10:10 AM PST\\u2009\\u2013\\u200911/20/2007, 10:10 AM PST",
613 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "h", "11/10/2007, 10 AM\\u2009\\u2013\\u200911/20/2007, 10 AM",
615 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hv", "11/10/2007, 10 AM PT\\u2009\\u2013\\u200911/20/2007, 10 AM PT",
617 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hz", "11/10/2007, 10 AM PST\\u2009\\u2013\\u200911/20/2007, 10 AM PST",
619 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEddMMyyyy", "Sat, 11/10/2007\\u2009\\u2013\\u2009Tue, 11/20/2007",
621 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EddMMy", "Sat, 11/10/2007\\u2009\\u2013\\u2009Tue, 11/20/2007",
623 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hhmm", "11/10/2007, 10:10 AM\\u2009\\u2013\\u200911/20/2007, 10:10 AM",
625 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hhmmzz", "11/10/2007, 10:10 AM PST\\u2009\\u2013\\u200911/20/2007, 10:10 AM PST",
627 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hms", "11/10/2007, 10:10:10 AM\\u2009\\u2013\\u200911/20/2007, 10:10:10 AM",
628 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "Hms", "11/10/2007, 10:10:10\\u2009\\u2013\\u200911/20/2007, 10:10:10",
629 "en", "2007 11 10 20:10:10", "2007 11 20 20:10:10", "Hms", "11/10/2007, 20:10:10\\u2009\\u2013\\u200911/20/2007, 20:10:10",
631 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMMMy", "N 10\\u2009\\u2013\\u200920, 2007",
633 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEEdM", "S, 11/10\\u2009\\u2013\\u2009T, 11/20",
635 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEdMMMMy", "Wednesday, January 10, 2007",
637 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMMMy", "January 10, 2007",
639 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMMM", "January 10",
641 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "MMMMy", "January 2007",
643 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEdMMMM", "Wednesday, January 10",
645 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EdMMMy", "Wed, Jan 10, 2007",
647 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMMy", "Jan 10, 2007",
649 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMM", "Jan 10",
651 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "MMMy", "Jan 2007",
653 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EdMMM", "Wed, Jan 10",
656 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMy", "1/10/2007",
658 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dM", "1/10",
660 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "My", "1/2007",
662 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EdM", "Wed, 1/10",
664 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "d", "10",
666 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "Ed", "10 Wed",
668 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "y", "2007",
670 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "M", "1",
672 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "MMM", "Jan",
674 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "MMMM", "January",
676 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hm", "10:00 AM\\u2009\\u2013\\u20092:10 PM",
677 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "Hm", "10:00\\u2009\\u2013\\u200914:10",
679 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hmv", "10:00 AM\\u2009\\u2013\\u20092:10 PM PT",
681 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hmz", "10:00 AM\\u2009\\u2013\\u20092:10 PM PST",
683 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "h", "10 AM\\u2009\\u2013\\u20092 PM",
684 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "H", "10\\u2009\\u2013\\u200914",
687 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hz", "10 AM\\u2009\\u2013\\u20092 PM PST",
689 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEddMMyyyy", "Wed, 01/10/2007",
691 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EddMMy", "Wed, 01/10/2007",
693 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hhmm", "10:00 AM\\u2009\\u2013\\u20092:10 PM",
694 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "HHmm", "10:00\\u2009\\u2013\\u200914:10",
696 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hhmmzz", "10:00 AM\\u2009\\u2013\\u20092:10 PM PST",
698 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hms", "10:00:10 AM\\u2009\\u2013\\u20092:10:10 PM",
699 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "Hms", "10:00:10\\u2009\\u2013\\u200914:10:10",
701 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMMMMy", "J 10, 2007",
703 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEEdM", "W, 1/10",
704 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMMMMy", "January 10, 2007",
706 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMMMM", "January 10",
708 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "MMMMy", "January 2007",
710 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EEEEdMMMM", "Wednesday, January 10",
712 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EdMMMy", "Wed, Jan 10, 2007",
714 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMMMy", "Jan 10, 2007",
716 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMMM", "Jan 10",
719 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EdMMM", "Wed, Jan 10",
721 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EdMy", "Wed, 1/10/2007",
723 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMy", "1/10/2007",
726 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "My", "1/2007",
728 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EdM", "Wed, 1/10",
730 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "d", "10",
733 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "y", "2007",
735 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "M", "1",
739 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hm", "10:00\\u2009\\u2013\\u200910:20 AM",
740 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "Hm", "10:00\\u2009\\u2013\\u200910:20",
743 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hmz", "10:00\\u2009\\u2013\\u200910:20 AM PST",
746 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hv", "10 AM PT",
750 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EddMMy", "Wed, 01/10/2007",
752 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hhmm", "10:00\\u2009\\u2013\\u200910:20 AM",
753 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "HHmm", "10:00\\u2009\\u2013\\u200910:20",
755 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hhmmzz", "10:00\\u2009\\u2013\\u200910:20 AM PST",
758 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "dMMMMMy", "J 10, 2007",
761 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EEEEdMMMMy", "Wednesday, January 10, 2007",
763 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "dMMMMy", "January 10, 2007",
766 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "MMMMy", "January 2007",
768 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EEEEdMMMM", "Wednesday, January 10",
771 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "dMMMy", "Jan 10, 2007",
773 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "dMMM", "Jan 10",
776 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EdMMM", "Wed, Jan 10",
778 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EdMy", "Wed, 1/10/2007",
780 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "dMy", "1/10/2007",
783 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "My", "1/2007",
785 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EdM", "Wed, 1/10",
787 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "d", "10",
790 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "y", "2007",
792 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "M", "1",
795 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "MMMM", "January",
797 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hm", "10:10 AM",
798 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "Hm", "10:10",
801 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hmz", "10:10 AM PST",
803 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "h", "10 AM",
805 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hv", "10 AM PT",
808 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EEddMMyyyy", "Wed, 01/10/2007",
811 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hhmm", "10:10 AM",
812 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "HHmm", "10:10",
814 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hhmmzz", "10:10 AM PST",
817 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "dMMMMMy", "J 10, 2007",
819 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EEEEEdM", "W, 1/10",
821 "zh", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEEEdMMMMy", "2007\\u5e7410\\u670810\\u65e5\\u661f\\u671f\\u4e09\\u81f32008\\u5e7410\\u670810\\u65e5\\u661f\\u671f\\u4e94",
824 "zh", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMMMy", "2007\\u5e7410\\u670810\\u65e5\\u81f311\\u670810\\u65e5",
827 "zh", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMMMy", "2007\\u5e7410\\u6708\\u81f311\\u6708",
830 "zh", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hmv", "2007/10/10 \\u6D1B\\u6749\\u77F6\\u65F6\\u95F4 \\u4E0A\\u534810:10\\u2009\\u2013\\u20092007/11/10 \\u6D1B\\u6749\\u77F6\\u65F6\\u95F4 \\u4E0A\\u534810:10",
832 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMMMy", "2007\\u5e7411\\u670810\\u65e5\\u661f\\u671f\\u516d\\u81f320\\u65e5\\u661f\\u671f\\u4e8c",
835 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMM", "11\\u670810\\u65e5\\u81f320\\u65e5",
837 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMMMy", "2007\\u5E7411\\u6708", // (fixed expected result per ticket:6626:)
839 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMMM", "11\\u670810\\u65e5\\u661f\\u671f\\u516d\\u81f320\\u65e5\\u661f\\u671f\\u4e8c",
842 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdMy", "2007/11/10\\u5468\\u516d\\u81f32007/11/20\\u5468\\u4e8c",
845 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dM", "11/10\\u2009\\u2013\\u200911/20",
847 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "My", "2007\\u5E7411\\u6708",
849 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdM", "11/10\\u5468\\u516d\\u81f311/20\\u5468\\u4e8c",
852 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "y", "2007\\u5E74", // (fixed expected result per ticket:6626:)
854 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "M", "11\\u6708",
856 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMM", "11\\u6708", // (fixed expected result per ticket:6626: and others)
859 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hmz", "2007/11/10 GMT-8 \\u4e0a\\u534810:10\\u2009\\u2013\\u20092007/11/20 GMT-8 \\u4e0a\\u534810:10",
861 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "h", "2007/11/10 \\u4e0a\\u534810\\u65f6\\u2009\\u2013\\u20092007/11/20 \\u4e0a\\u534810\\u65f6",
863 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEdMMMMy", "2007\\u5e741\\u670810\\u65e5 \\u661f\\u671f\\u4e09", // (fixed expected result per ticket:6626:)
865 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hm", "\\u4e0a\\u534810:00\\u81f3\\u4e0b\\u53482:10",
868 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hmz", "GMT-8\\u4e0a\\u534810:00\\u81f3\\u4e0b\\u53482:10",
870 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "h", "\\u4e0a\\u534810\\u65F6\\u81f3\\u4e0b\\u53482\\u65f6",
872 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "hv", "\\u6D1B\\u6749\\u77F6\\u65F6\\u95F4\\u4E0A\\u534810\\u65F6\\u81F3\\u4E0B\\u53482\\u65F6",
874 "zh", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hm", "\\u4e0a\\u534810:00\\u81f310:20",
876 "zh", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hmv", "\\u6D1B\\u6749\\u77F6\\u65F6\\u95F4\\u4E0A\\u534810:00\\u81F310:20",
878 "zh", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hz", "GMT-8\\u4e0a\\u534810\\u65f6",
880 "zh", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hm", "\\u4e0a\\u534810:10",
882 "zh", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "h", "\\u4e0a\\u534810\\u65f6",
884 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EEEEdMMMy", "Mittwoch, 10. Okt. 2007\\u2009\\u2013\\u2009Freitag, 10. Okt. 2008",
887 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMMM", "10. Okt. 2007\\u2009\\u2013\\u200910. Okt. 2008",
889 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "MMMy", "Okt. 2007\\u2009\\u2013\\u2009Okt. 2008",
892 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdMy", "Mi. 10.10.2007\\u2009\\u2013\\u2009Fr. 10.10.2008",
894 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "dMy", "10.10.2007\\u2009\\u2013\\u200910.10.2008",
897 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "My", "10.2007\\u2009\\u2013\\u200910.2008",
899 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "EdM", "Mi. 10.10.2007\\u2009\\u2013\\u2009Fr. 10.10.2008",
902 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "y", "2007\\u20132008",
904 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "M", "10.2007\\u2009\\u2013\\u200910.2008",
907 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "hm", "10.10.2007, 10:10 AM\\u2009\\u2013\\u200910.10.2008, 10:10 AM",
908 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "Hm", "10.10.2007, 10:10\\u2009\\u2013\\u200910.10.2008, 10:10",
910 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEEEdMMMy", "Mittwoch, 10. Okt.\\u2009\\u2013\\u2009Samstag, 10. Nov. 2007",
913 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dMMM", "10. Okt.\\u2009\\u2013\\u200910. Nov.",
915 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMMy", "Okt.\\u2013Nov. 2007",
917 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "EEEEdMMM", "Mittwoch, 10. Okt.\\u2009\\u2013\\u2009Samstag, 10. Nov.",
920 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "dM", "10.10.\\u2009\\u2013\\u200910.11.",
922 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "My", "10.2007\\u2009\\u2013\\u200911.2007",
925 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "d", "10.10.\\u2009\\u2013\\u200910.11.",
927 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "y", "2007",
930 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "MMM", "Okt.\\u2013Nov.",
933 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "hms", "10.10.2007, 10:10:10 AM\\u2009\\u2013\\u200910.11.2007, 10:10:10 AM",
934 "de", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "Hms", "10.10.2007, 10:10:10\\u2009\\u2013\\u200910.11.2007, 10:10:10",
936 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMMy", "Samstag, 10.\\u2009\\u2013\\u2009Dienstag, 20. Nov. 2007",
938 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dMMMy", "10.\\u201320. Nov. 2007",
941 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "MMMy", "Nov. 2007",
943 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EEEEdMMM", "Samstag, 10.\\u2009\\u2013\\u2009Dienstag, 20. Nov.",
945 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "EdMy", "Sa. 10.11.2007\\u2009\\u2013\\u2009Di. 20.11.2007",
948 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "dM", "10.11.\\u2009\\u2013\\u200920.11.",
950 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "My", "11.2007",
953 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "d", "10.\\u201320.",
955 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "y", "2007",
958 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "hmv", "10.11.2007, 10:10 AM Los Angeles Zeit\\u2009\\u2013\\u200920.11.2007, 10:10 AM Los Angeles Zeit",
960 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEdMMMy", "Mittwoch, 10. Jan. 2007",
963 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "dMMM", "10. Jan.",
965 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "MMMy", "Jan. 2007",
967 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "EEEEdMMM", "Mittwoch, 10. Jan.",
970 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "h", "10 AM\\u2009\\u2013\\u20092 PM",
971 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "H", "10\\u201314 Uhr",
973 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "EEEEdMMM", "Mittwoch, 10. Jan.",
976 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hmv", "10:00\\u201310:20 AM Los Angeles Zeit",
978 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hmz", "10:00\\u201310:20 AM GMT-8",
980 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "h", "10 AM",
981 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "H", "10 Uhr",
984 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "hz", "10 AM GMT-8",
986 "de", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "EEEEdMMMy", "Mittwoch, 10. Jan. 2007",
989 "de", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hmv", "10:10 AM Los Angeles Zeit",
991 "de", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hmz", "10:10 AM GMT-8",
994 "de", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hv", "10 AM Los Angeles Zeit",
996 "de", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "hz", "10 AM GMT-8",
998 // Thai (default calendar buddhist)
1000 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "EEEEdMMMy", "\\u0E27\\u0E31\\u0E19\\u0E1E\\u0E38\\u0E18\\u0E17\\u0E35\\u0E48 10 \\u0E15.\\u0E04. 2550 \\u2013 \\u0E27\\u0E31\\u0E19\\u0E28\\u0E38\\u0E01\\u0E23\\u0E4C\\u0E17\\u0E35\\u0E48 10 \\u0E15.\\u0E04. 2551",
1003 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "dMMM", "10 \\u0E15.\\u0E04. 2550 \\u2013 10 \\u0E15.\\u0E04. 2551",
1005 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "MMMy", "\\u0E15.\\u0E04. 2550 \\u2013 \\u0E15.\\u0E04. 2551",
1008 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "EdMy", "\\u0E1E. 10/10/2550 \\u2013 \\u0E28. 10/10/2551",
1010 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "dMy", "10/10/2550 \\u2013 10/10/2551",
1013 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "My", "10/2550 \\u2013 10/2551",
1015 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "EdM", "\\u0E1E. 10/10/2550 \\u2013 \\u0E28. 10/10/2551",
1018 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "y", "2550\\u20132551",
1020 "th", "2550 10 10 10:10:10", "2551 10 10 10:10:10", "M", "10/2550 \\u2013 10/2551",
1023 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "EEEEdMMMy", "\\u0E27\\u0E31\\u0E19\\u0E1E\\u0E38\\u0E18\\u0E17\\u0E35\\u0E48 10 \\u0E15.\\u0E04. \\u2013 \\u0E27\\u0E31\\u0E19\\u0E40\\u0E2A\\u0E32\\u0E23\\u0E4C\\u0E17\\u0E35\\u0E48 10 \\u0E1E.\\u0E22. 2550",
1026 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "dMMM", "10 \\u0E15.\\u0E04. \\u2013 10 \\u0E1E.\\u0E22.",
1028 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "MMMy", "\\u0E15.\\u0E04.\\u2013\\u0E1E.\\u0E22. 2550",
1030 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "dM", "10/10 \\u2013 10/11",
1032 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "My", "10/2550 \\u2013 11/2550",
1035 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "d", "10/10 \\u2013 10/11",
1037 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "y", "\\u0E1E.\\u0E28. 2550",
1040 "th", "2550 10 10 10:10:10", "2550 11 10 10:10:10", "MMM", "\\u0E15.\\u0E04.\\u2013\\u0E1E.\\u0E22.",
1043 expect(DATA
, UPRV_LENGTHOF(DATA
));
1047 void DateIntervalFormatTest::expect(const char** data
, int32_t data_length
) {
1049 UErrorCode ec
= U_ZERO_ERROR
;
1050 UnicodeString str
, str2
;
1051 const char* pattern
= data
[0];
1054 while (i
<data_length
) {
1055 const char* locName
= data
[i
++];
1056 Locale
loc(locName
);
1057 SimpleDateFormat
ref(pattern
, loc
, ec
);
1058 logln( "case %d, locale: %s\n", (i
-1)/5, locName
);
1060 if (U_FAILURE(ec
)) {
1061 dataerrln("contruct SimpleDateFormat in expect failed: %s", u_errorName(ec
));
1065 const char* datestr
= data
[i
++];
1066 const char* datestr_2
= data
[i
++];
1067 logln("original date: %s - %s\n", datestr
, datestr_2
);
1068 UDate date
= ref
.parse(ctou(datestr
), ec
);
1069 if (!assertSuccess("parse 1st data in expect", ec
)) return;
1070 UDate date_2
= ref
.parse(ctou(datestr_2
), ec
);
1071 if (!assertSuccess("parse 2nd data in expect", ec
)) return;
1072 DateInterval
dtitv(date
, date_2
);
1074 const UnicodeString
& oneSkeleton(ctou(data
[i
++]));
1076 DateIntervalFormat
* dtitvfmt
= DateIntervalFormat::createInstance(oneSkeleton
, loc
, ec
);
1077 if (!assertSuccess("createInstance(skeleton) in expect", ec
)) return;
1078 FieldPosition
pos(FieldPosition::DONT_CARE
);
1079 dtitvfmt
->format(&dtitv
, str
.remove(), pos
, ec
);
1080 if (!assertSuccess("format in expect", ec
)) return;
1081 assertEquals((UnicodeString
)"\"" + locName
+ "\\" + oneSkeleton
+ "\\" + ctou(datestr
) + "\\" + ctou(datestr_2
) + "\"", ctou(data
[i
++]), str
);
1083 logln("interval date:" + str
+ "\"" + locName
+ "\", "
1084 + "\"" + datestr
+ "\", "
1085 + "\"" + datestr_2
+ "\", " + oneSkeleton
);
1092 * Test format using user defined DateIntervalInfo
1094 void DateIntervalFormatTest::testFormatUserDII() {
1095 // first item is date pattern
1096 const char* DATA
[] = {
1097 "yyyy MM dd HH:mm:ss",
1098 "en", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "Oct 10, 2007 --- Oct 10, 2008",
1100 "en", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "2007 Oct 10 - Nov 2007",
1102 "en", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "Nov 10, 2007 --- Nov 20, 2007",
1104 "en", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "Jan 10, 2007",
1106 "en", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "Jan 10, 2007",
1108 "en", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "Jan 10, 2007",
1110 "zh", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "2007\\u5e7410\\u670810\\u65e5 --- 2008\\u5e7410\\u670810\\u65e5",
1112 "zh", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "2007 10\\u6708 10 - 11\\u6708 2007",
1114 "zh", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "2007\\u5e7411\\u670810\\u65e5 --- 2007\\u5e7411\\u670820\\u65e5",
1116 "zh", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "2007\\u5e741\\u670810\\u65e5", // (fixed expected result per ticket:6626:)
1118 "zh", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "2007\\u5e741\\u670810\\u65e5", // (fixed expected result per ticket:6626:)
1120 "zh", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "2007\\u5e741\\u670810\\u65e5", // (fixed expected result per ticket:6626:)
1122 "de", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "10. Okt. 2007 --- 10. Okt. 2008",
1125 "de", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "10. Nov. 2007 --- 20. Nov. 2007",
1127 "de", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "10. Jan. 2007",
1129 "de", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "10. Jan. 2007",
1132 "es", "2007 10 10 10:10:10", "2008 10 10 10:10:10", "10 oct 2007 --- 10 oct 2008",
1134 "es", "2007 10 10 10:10:10", "2007 11 10 10:10:10", "2007 oct 10 - nov 2007",
1136 "es", "2007 11 10 10:10:10", "2007 11 20 10:10:10", "10 nov 2007 --- 20 nov 2007",
1138 "es", "2007 01 10 10:00:10", "2007 01 10 14:10:10", "10 ene 2007",
1140 "es", "2007 01 10 10:00:10", "2007 01 10 10:20:10", "10 ene 2007",
1142 "es", "2007 01 10 10:10:10", "2007 01 10 10:10:20", "10 ene 2007",
1144 expectUserDII(DATA
, UPRV_LENGTHOF(DATA
));
1148 void DateIntervalFormatTest::testSetIntervalPatternNoSideEffect() {
1149 UErrorCode ec
= U_ZERO_ERROR
;
1150 LocalPointer
<DateIntervalInfo
> dtitvinf(new DateIntervalInfo(ec
), ec
);
1151 if (U_FAILURE(ec
)) {
1152 errln("Failure encountered: %s", u_errorName(ec
));
1155 UnicodeString expected
;
1156 dtitvinf
->getIntervalPattern(ctou("yMd"), UCAL_DATE
, expected
, ec
);
1157 dtitvinf
->setIntervalPattern(ctou("yMd"), UCAL_DATE
, ctou("M/d/y \\u2013 d"), ec
);
1158 if (U_FAILURE(ec
)) {
1159 errln("Failure encountered: %s", u_errorName(ec
));
1162 dtitvinf
.adoptInsteadAndCheckErrorCode(new DateIntervalInfo(ec
), ec
);
1163 if (U_FAILURE(ec
)) {
1164 errln("Failure encountered: %s", u_errorName(ec
));
1167 UnicodeString actual
;
1168 dtitvinf
->getIntervalPattern(ctou("yMd"), UCAL_DATE
, actual
, ec
);
1169 if (U_FAILURE(ec
)) {
1170 errln("Failure encountered: %s", u_errorName(ec
));
1173 if (expected
!= actual
) {
1174 errln("DateIntervalInfo.setIntervalPattern should have no side effects.");
1178 void DateIntervalFormatTest::testYearFormats() {
1179 const Locale
&enLocale
= Locale::getEnglish();
1180 UErrorCode status
= U_ZERO_ERROR
;
1181 LocalPointer
<Calendar
> fromTime(Calendar::createInstance(enLocale
, status
));
1182 LocalPointer
<Calendar
> toTime(Calendar::createInstance(enLocale
, status
));
1183 if (U_FAILURE(status
)) {
1184 errln("Failure encountered: %s", u_errorName(status
));
1187 // April 26, 113. Three digit year so that we can test 2 digit years;
1188 // 4 digit years with padded 0's and full years.
1189 fromTime
->set(113, 3, 26);
1191 toTime
->set(113, 3, 28);
1193 LocalPointer
<DateIntervalFormat
> dif(DateIntervalFormat::createInstance("yyyyMd", enLocale
, status
));
1194 if (U_FAILURE(status
)) {
1195 dataerrln("Failure encountered: %s", u_errorName(status
));
1198 UnicodeString actual
;
1199 UnicodeString
expected(ctou("4/26/0113\\u2009\\u2013\\u20094/28/0113"));
1200 FieldPosition pos
= 0;
1201 dif
->format(*fromTime
, *toTime
, actual
, pos
, status
);
1202 if (U_FAILURE(status
)) {
1203 errln("Failure encountered: %s", u_errorName(status
));
1206 if (actual
!= expected
) {
1207 errln("Expected " + expected
+ ", got: " + actual
);
1211 LocalPointer
<DateIntervalFormat
> dif(DateIntervalFormat::createInstance("yyMd", enLocale
, status
));
1212 if (U_FAILURE(status
)) {
1213 errln("Failure encountered: %s", u_errorName(status
));
1216 UnicodeString actual
;
1217 UnicodeString
expected(ctou("4/26/13\\u2009\\u2013\\u20094/28/13"));
1218 FieldPosition
pos(FieldPosition::DONT_CARE
);
1219 dif
->format(*fromTime
, *toTime
, actual
, pos
, status
);
1220 if (U_FAILURE(status
)) {
1221 errln("Failure encountered: %s", u_errorName(status
));
1224 if (actual
!= expected
) {
1225 errln("Expected " + expected
+ ", got: " + actual
);
1229 LocalPointer
<DateIntervalFormat
> dif(DateIntervalFormat::createInstance("yMd", enLocale
, status
));
1230 if (U_FAILURE(status
)) {
1231 errln("Failure encountered: %s", u_errorName(status
));
1234 UnicodeString actual
;
1235 UnicodeString
expected(ctou("4/26/113\\u2009\\u2013\\u20094/28/113"));
1236 FieldPosition
pos(FieldPosition::DONT_CARE
);
1237 dif
->format(*fromTime
, *toTime
, actual
, pos
, status
);
1238 if (U_FAILURE(status
)) {
1239 errln("Failure encountered: %s", u_errorName(status
));
1242 if (actual
!= expected
) {
1243 errln("Expected " + expected
+ ", got: " + actual
);
1248 void DateIntervalFormatTest::expectUserDII(const char** data
,
1249 int32_t data_length
) {
1252 UErrorCode ec
= U_ZERO_ERROR
;
1253 const char* pattern
= data
[0];
1256 while ( i
< data_length
) {
1257 const char* locName
= data
[i
++];
1258 Locale
loc(locName
);
1259 SimpleDateFormat
ref(pattern
, loc
, ec
);
1260 if (U_FAILURE(ec
)) {
1261 dataerrln("contruct SimpleDateFormat in expectUserDII failed: %s", u_errorName(ec
));
1264 const char* datestr
= data
[i
++];
1265 const char* datestr_2
= data
[i
++];
1266 UDate date
= ref
.parse(ctou(datestr
), ec
);
1267 if (!assertSuccess("parse in expectUserDII", ec
)) return;
1268 UDate date_2
= ref
.parse(ctou(datestr_2
), ec
);
1269 if (!assertSuccess("parse in expectUserDII", ec
)) return;
1270 DateInterval
dtitv(date
, date_2
);
1273 // test user created DateIntervalInfo
1274 DateIntervalInfo
* dtitvinf
= new DateIntervalInfo(ec
);
1275 dtitvinf
->setFallbackIntervalPattern("{0} --- {1}", ec
);
1276 dtitvinf
->setIntervalPattern(UDAT_YEAR_ABBR_MONTH_DAY
, UCAL_MONTH
, "yyyy MMM d - MMM y",ec
);
1277 if (!assertSuccess("DateIntervalInfo::setIntervalPattern", ec
)) return;
1278 dtitvinf
->setIntervalPattern(UDAT_YEAR_ABBR_MONTH_DAY
, UCAL_HOUR_OF_DAY
, "yyyy MMM d HH:mm - HH:mm", ec
);
1279 if (!assertSuccess("DateIntervalInfo::setIntervalPattern", ec
)) return;
1280 DateIntervalFormat
* dtitvfmt
= DateIntervalFormat::createInstance(UDAT_YEAR_ABBR_MONTH_DAY
, loc
, *dtitvinf
, ec
);
1282 if (!assertSuccess("createInstance(skeleton,dtitvinf) in expectUserDII", ec
)) return;
1283 FieldPosition
pos(FieldPosition::DONT_CARE
);
1284 dtitvfmt
->format(&dtitv
, str
.remove(), pos
, ec
);
1285 if (!assertSuccess("format in expectUserDII", ec
)) return;
1286 assertEquals((UnicodeString
)"\"" + locName
+ "\\" + datestr
+ "\\" + datestr_2
+ "\"", ctou(data
[i
++]), str
);
1287 #ifdef DTIFMTTS_DEBUG
1290 PRINTMESG("interval format using user defined DateIntervalInfo\n");
1291 str
.extract(0, str
.length(), result
, "UTF-8");
1292 sprintf(mesg
, "interval date: %s\n", result
);
1300 void DateIntervalFormatTest::testStress() {
1302 logln("Quick mode: Skipping test");
1305 const char* DATA
[] = {
1306 "yyyy MM dd HH:mm:ss",
1307 "2007 10 10 10:10:10", "2008 10 10 10:10:10",
1308 "2007 10 10 10:10:10", "2007 11 10 10:10:10",
1309 "2007 11 10 10:10:10", "2007 11 20 10:10:10",
1310 "2007 01 10 10:00:10", "2007 01 10 14:10:10",
1311 "2007 01 10 10:00:10", "2007 01 10 10:20:10",
1312 "2007 01 10 10:10:10", "2007 01 10 10:10:20",
1315 const char* testLocale
[][3] = {
1357 uint32_t localeIndex
;
1358 for ( localeIndex
= 0; localeIndex
< UPRV_LENGTHOF(testLocale
); ++localeIndex
) {
1360 uprv_strcpy(locName
, testLocale
[localeIndex
][0]);
1361 uprv_strcat(locName
, testLocale
[localeIndex
][1]);
1362 stress(DATA
, UPRV_LENGTHOF(DATA
), Locale(testLocale
[localeIndex
][0], testLocale
[localeIndex
][1], testLocale
[localeIndex
][2]), locName
);
1367 void DateIntervalFormatTest::stress(const char** data
, int32_t data_length
,
1368 const Locale
& loc
, const char* locName
) {
1369 UnicodeString skeleton
[] = {
1397 "EEddMMyyyy", // following could be normalized
1401 "hms", // following could not be normalized
1407 UErrorCode ec
= U_ZERO_ERROR
;
1408 UnicodeString str
, str2
;
1409 SimpleDateFormat
ref(data
[i
++], loc
, ec
);
1410 if (!assertSuccess("construct SimpleDateFormat", ec
)) return;
1412 #ifdef DTIFMTTS_DEBUG
1415 sprintf(mesg
, "locale: %s\n", locName
);
1419 while (i
<data_length
) {
1422 const char* datestr
= data
[i
++];
1423 const char* datestr_2
= data
[i
++];
1424 #ifdef DTIFMTTS_DEBUG
1425 sprintf(mesg
, "original date: %s - %s\n", datestr
, datestr_2
);
1428 UDate date
= ref
.parse(ctou(datestr
), ec
);
1429 if (!assertSuccess("parse", ec
)) return;
1430 UDate date_2
= ref
.parse(ctou(datestr_2
), ec
);
1431 if (!assertSuccess("parse", ec
)) return;
1432 DateInterval
dtitv(date
, date_2
);
1434 for ( uint32_t skeletonIndex
= 0;
1435 skeletonIndex
< UPRV_LENGTHOF(skeleton
);
1437 const UnicodeString
& oneSkeleton
= skeleton
[skeletonIndex
];
1438 DateIntervalFormat
* dtitvfmt
= DateIntervalFormat::createInstance(oneSkeleton
, loc
, ec
);
1439 if (!assertSuccess("createInstance(skeleton)", ec
)) return;
1441 // reset the calendar to be Gregorian calendar for "th"
1442 if ( uprv_strcmp(locName, "th") == 0 ) {
1443 GregorianCalendar* gregCal = new GregorianCalendar(loc, ec);
1444 if (!assertSuccess("GregorianCalendar()", ec)) return;
1445 const DateFormat* dformat = dtitvfmt->getDateFormat();
1446 DateFormat* newOne = (DateFormat*)dformat->clone();
1447 newOne->adoptCalendar(gregCal);
1448 //dtitvfmt->adoptDateFormat(newOne, ec);
1449 dtitvfmt->setDateFormat(*newOne, ec);
1451 if (!assertSuccess("adoptDateFormat()", ec)) return;
1454 FieldPosition
pos(FieldPosition::DONT_CARE
);
1455 dtitvfmt
->format(&dtitv
, str
.remove(), pos
, ec
);
1456 if (!assertSuccess("format", ec
)) return;
1457 #ifdef DTIFMTTS_DEBUG
1458 oneSkeleton
.extract(0, oneSkeleton
.length(), result
, "UTF-8");
1459 sprintf(mesg
, "interval by skeleton: %s\n", result
);
1461 str
.extract(0, str
.length(), result
, "UTF-8");
1462 sprintf(mesg
, "interval date: %s\n", result
);
1468 // test user created DateIntervalInfo
1470 DateIntervalInfo
* dtitvinf
= new DateIntervalInfo(ec
);
1471 dtitvinf
->setFallbackIntervalPattern("{0} --- {1}", ec
);
1472 dtitvinf
->setIntervalPattern(UDAT_YEAR_ABBR_MONTH_DAY
, UCAL_MONTH
, "yyyy MMM d - MMM y",ec
);
1473 if (!assertSuccess("DateIntervalInfo::setIntervalPattern", ec
)) return;
1474 dtitvinf
->setIntervalPattern(UDAT_YEAR_ABBR_MONTH_DAY
, UCAL_HOUR_OF_DAY
, "yyyy MMM d HH:mm - HH:mm", ec
);
1475 if (!assertSuccess("DateIntervalInfo::setIntervalPattern", ec
)) return;
1476 DateIntervalFormat
* dtitvfmt
= DateIntervalFormat::createInstance(UDAT_YEAR_ABBR_MONTH_DAY
, loc
, *dtitvinf
, ec
);
1478 if (!assertSuccess("createInstance(skeleton,dtitvinf)", ec
)) return;
1479 FieldPosition
pos(FieldPosition::DONT_CARE
);
1480 dtitvfmt
->format(&dtitv
, str
.remove(), pos
, ec
);
1481 if ( uprv_strcmp(locName
, "th") ) {
1482 if (!assertSuccess("format", ec
)) return;
1483 #ifdef DTIFMTTS_DEBUG
1484 PRINTMESG("interval format using user defined DateIntervalInfo\n");
1485 str
.extract(0, str
.length(), result
, "UTF-8");
1486 sprintf(mesg
, "interval date: %s\n", result
);
1490 // for "th", the default calendar is Budhist,
1492 assertTrue("Default calendar for \"th\" is Budhist", ec
== U_ILLEGAL_ARGUMENT_ERROR
);
1499 void DateIntervalFormatTest::testTicket11583_2() {
1500 UErrorCode status
= U_ZERO_ERROR
;
1501 LocalPointer
<DateIntervalFormat
> fmt(
1502 DateIntervalFormat::createInstance("yMMM", "es-US", status
));
1503 if (!assertSuccess("Error create format object", status
)) {
1506 DateInterval
interval((UDate
) 1232364615000.0, (UDate
) 1328787015000.0);
1507 UnicodeString appendTo
;
1508 FieldPosition
fpos(FieldPosition::DONT_CARE
);
1509 UnicodeString
expected("ene. 2009\\u2009\\u2013\\u2009feb. 2012");
1512 expected
.unescape(),
1513 fmt
->format(&interval
, appendTo
, fpos
, status
));
1514 if (!assertSuccess("Error formatting", status
)) {
1520 void DateIntervalFormatTest::testTicket11985() {
1521 UErrorCode status
= U_ZERO_ERROR
;
1522 LocalPointer
<DateIntervalFormat
> fmt(
1523 DateIntervalFormat::createInstance(UDAT_HOUR_MINUTE
, Locale::getEnglish(), status
));
1524 if (!assertSuccess("createInstance", status
)) {
1527 UnicodeString pattern
;
1528 static_cast<const SimpleDateFormat
*>(fmt
->getDateFormat())->toPattern(pattern
);
1529 assertEquals("Format pattern", "h:mm a", pattern
);
1532 // Ticket 11669 - thread safety of DateIntervalFormat::format(). This test failed before
1533 // the implementation was fixed.
1535 static const DateIntervalFormat
*gIntervalFormatter
= NULL
; // The Formatter to be used concurrently by test threads.
1536 static const DateInterval
*gInterval
= NULL
; // The date interval to be formatted concurrently.
1537 static const UnicodeString
*gExpectedResult
= NULL
;
1539 void DateIntervalFormatTest::threadFunc11669(int32_t threadNum
) {
1541 for (int loop
=0; loop
<1000; ++loop
) {
1542 UErrorCode status
= U_ZERO_ERROR
;
1543 FieldPosition
pos(FieldPosition::DONT_CARE
);
1544 UnicodeString result
;
1545 gIntervalFormatter
->format(gInterval
, result
, pos
, status
);
1546 if (U_FAILURE(status
)) {
1547 errln("%s:%d %s", __FILE__
, __LINE__
, u_errorName(status
));
1550 if (result
!= *gExpectedResult
) {
1551 errln("%s:%d Expected \"%s\", got \"%s\"", __FILE__
, __LINE__
, CStr(*gExpectedResult
)(), CStr(result
)());
1557 void DateIntervalFormatTest::testTicket11669() {
1558 UErrorCode status
= U_ZERO_ERROR
;
1559 LocalPointer
<DateIntervalFormat
> formatter(DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY
, Locale::getEnglish(), status
), status
);
1560 LocalPointer
<TimeZone
> tz(TimeZone::createTimeZone("America/Los_Angleles"), status
);
1561 LocalPointer
<Calendar
> intervalStart(Calendar::createInstance(*tz
, Locale::getEnglish(), status
), status
);
1562 LocalPointer
<Calendar
> intervalEnd(Calendar::createInstance(*tz
, Locale::getEnglish(), status
), status
);
1563 if (U_FAILURE(status
)) {
1564 errcheckln(status
, "%s:%d %s", __FILE__
, __LINE__
, u_errorName(status
));
1568 intervalStart
->set(2009, 6, 1, 14, 0);
1569 intervalEnd
->set(2009, 6, 2, 14, 0);
1570 DateInterval
interval(intervalStart
->getTime(status
), intervalEnd
->getTime(status
));
1571 FieldPosition
pos(FieldPosition::DONT_CARE
);
1572 UnicodeString expectedResult
;
1573 formatter
->format(&interval
, expectedResult
, pos
, status
);
1574 if (U_FAILURE(status
)) {
1575 errln("%s:%d %s", __FILE__
, __LINE__
, u_errorName(status
));
1579 gInterval
= &interval
;
1580 gIntervalFormatter
= formatter
.getAlias();
1581 gExpectedResult
= &expectedResult
;
1583 ThreadPool
<DateIntervalFormatTest
> threads(this, 4, &DateIntervalFormatTest::threadFunc11669
);
1587 gInterval
= NULL
; // Don't leave dangling pointers lying around. Not strictly necessary.
1588 gIntervalFormatter
= NULL
;
1589 gExpectedResult
= NULL
;
1594 // Using a DateIntervalFormat to format shouldn't change its state in any way
1595 // that changes how the behavior of operator ==.
1596 void DateIntervalFormatTest::testTicket12065() {
1597 UErrorCode status
= U_ZERO_ERROR
;
1598 LocalPointer
<DateIntervalFormat
> formatter(DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY
, Locale::getEnglish(), status
), status
);
1599 if (formatter
.isNull()) {
1600 dataerrln("FAIL: DateIntervalFormat::createInstance failed for Locale::getEnglish()");
1603 LocalPointer
<DateIntervalFormat
> clone(dynamic_cast<DateIntervalFormat
*>(formatter
->clone()));
1604 if (*formatter
!= *clone
) {
1605 errln("%s:%d DateIntervalFormat and clone are not equal.", __FILE__
, __LINE__
);
1608 DateInterval
interval((UDate
) 1232364615000.0, (UDate
) 1328787015000.0);
1609 UnicodeString appendTo
;
1610 FieldPosition
fpos(FieldPosition::DONT_CARE
);
1611 formatter
->format(&interval
, appendTo
, fpos
, status
);
1612 if (*formatter
!= *clone
) {
1613 errln("%s:%d DateIntervalFormat and clone are not equal after formatting.", __FILE__
, __LINE__
);
1616 if (U_FAILURE(status
)) {
1617 errln("%s:%d %s", __FILE__
, __LINE__
, u_errorName(status
));
1622 #endif /* #if !UCONFIG_NO_FORMATTING */