2 *******************************************************************************
3 * Copyright (C) 2007, International Business Machines Corporation and *
4 * others. All Rights Reserved. *
5 *******************************************************************************
7 #include "unicode/utypes.h"
9 #if !UCONFIG_NO_FORMATTING
13 #include "unicode/ucal.h"
14 #include "unicode/timezone.h"
15 #include "unicode/calendar.h"
16 #include "unicode/dtrule.h"
17 #include "unicode/tzrule.h"
18 #include "unicode/rbtz.h"
19 #include "unicode/simpletz.h"
20 #include "unicode/tzrule.h"
21 #include "unicode/smpdtfmt.h"
22 #include "unicode/gregocal.h"
25 TimeZoneOffsetLocalTest::runIndexedTest( int32_t index
, UBool exec
, const char* &name
, char* /*par*/ )
28 logln("TestSuite TimeZoneOffsetLocalTest");
31 TESTCASE(0, TestGetOffsetAroundTransition
);
32 default: name
= ""; break;
37 * Testing getOffset APIs around rule transition by local standard/wall time.
40 TimeZoneOffsetLocalTest::TestGetOffsetAroundTransition() {
41 const int32_t NUM_DATES
= 10;
42 const int32_t NUM_TIMEZONES
= 3;
44 const int32_t HOUR
= 60*60*1000;
45 const int32_t MINUTE
= 60*1000;
47 const int32_t DATES
[NUM_DATES
][6] = {
48 {2006, UCAL_APRIL
, 2, 1, 30, 1*HOUR
+30*MINUTE
},
49 {2006, UCAL_APRIL
, 2, 2, 00, 2*HOUR
},
50 {2006, UCAL_APRIL
, 2, 2, 30, 2*HOUR
+30*MINUTE
},
51 {2006, UCAL_APRIL
, 2, 3, 00, 3*HOUR
},
52 {2006, UCAL_APRIL
, 2, 3, 30, 3*HOUR
+30*MINUTE
},
53 {2006, UCAL_OCTOBER
, 29, 0, 30, 0*HOUR
+30*MINUTE
},
54 {2006, UCAL_OCTOBER
, 29, 1, 00, 1*HOUR
},
55 {2006, UCAL_OCTOBER
, 29, 1, 30, 1*HOUR
+30*MINUTE
},
56 {2006, UCAL_OCTOBER
, 29, 2, 00, 2*HOUR
},
57 {2006, UCAL_OCTOBER
, 29, 2, 30, 2*HOUR
+30*MINUTE
},
60 // Expected offsets by int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
61 // uint8_t dayOfWeek, int32_t millis, UErrorCode& status)
62 const int32_t OFFSETS1
[NUM_DATES
] = {
78 // Expected offsets by void getOffset(UDate date, UBool local, int32_t& rawOffset,
79 // int32_t& dstOffset, UErrorCode& ec) with local=TRUE
80 // or void getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
81 // int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
82 // nonExistingTimeOpt=kStandard/duplicatedTimeOpt=kStandard
83 const int32_t OFFSETS2
[NUM_DATES
][2] = {
99 // Expected offsets by void getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt,
100 // int32_t duplicatedTimeOpt, int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) with
101 // nonExistingTimeOpt=kDaylight/duplicatedTimeOpt=kDaylight
102 const int32_t OFFSETS3
[][2] = {
118 UErrorCode status
= U_ZERO_ERROR
;
120 int32_t rawOffset
, dstOffset
;
121 TimeZone
* utc
= TimeZone::createTimeZone("UTC");
122 Calendar
* cal
= Calendar::createInstance(*utc
, status
);
123 if (U_FAILURE(status
)) {
124 errln("Calendar::createInstance failed");
129 // Set up TimeZone objects - OlsonTimeZone, SimpleTimeZone and RuleBasedTimeZone
130 BasicTimeZone
*TESTZONES
[NUM_TIMEZONES
];
132 TESTZONES
[0] = (BasicTimeZone
*)TimeZone::createTimeZone("America/Los_Angeles");
133 TESTZONES
[1] = new SimpleTimeZone(-8*HOUR
, "Simple Pacific Time",
134 UCAL_APRIL
, 1, UCAL_SUNDAY
, 2*HOUR
,
135 UCAL_OCTOBER
, -1, UCAL_SUNDAY
, 2*HOUR
, status
);
136 if (U_FAILURE(status
)) {
137 errln("SimpleTimeZone constructor failed");
141 InitialTimeZoneRule
*ir
= new InitialTimeZoneRule(
142 "Pacific Standard Time", // Initial time Name
143 -8*HOUR
, // Raw offset
144 0*HOUR
); // DST saving amount
146 RuleBasedTimeZone
*rbPT
= new RuleBasedTimeZone("Rule based Pacific Time", ir
);
149 AnnualTimeZoneRule
*atzr
;
150 const int32_t STARTYEAR
= 2000;
152 dtr
= new DateTimeRule(UCAL_APRIL
, 1, UCAL_SUNDAY
,
153 2*HOUR
, DateTimeRule::WALL_TIME
); // 1st Sunday in April, at 2AM wall time
154 atzr
= new AnnualTimeZoneRule("Pacific Daylight Time",
155 -8*HOUR
/* rawOffset */, 1*HOUR
/* dstSavings */, dtr
,
156 STARTYEAR
, AnnualTimeZoneRule::MAX_YEAR
);
157 rbPT
->addTransitionRule(atzr
, status
);
158 if (U_FAILURE(status
)) {
159 errln("Could not add DST start rule to the RuleBasedTimeZone rbPT");
163 dtr
= new DateTimeRule(UCAL_OCTOBER
, -1, UCAL_SUNDAY
,
164 2*HOUR
, DateTimeRule::WALL_TIME
); // last Sunday in October, at 2AM wall time
165 atzr
= new AnnualTimeZoneRule("Pacific Standard Time",
166 -8*HOUR
/* rawOffset */, 0 /* dstSavings */, dtr
,
167 STARTYEAR
, AnnualTimeZoneRule::MAX_YEAR
);
168 rbPT
->addTransitionRule(atzr
, status
);
169 if (U_FAILURE(status
)) {
170 errln("Could not add STD start rule to the RuleBasedTimeZone rbPT");
174 rbPT
->complete(status
);
175 if (U_FAILURE(status
)) {
176 errln("complete() failed for RuleBasedTimeZone rbPT");
183 UDate MILLIS
[NUM_DATES
];
184 for (int32_t i
= 0; i
< NUM_DATES
; i
++) {
186 cal
->set(DATES
[i
][0], DATES
[i
][1], DATES
[i
][2], DATES
[i
][3], DATES
[i
][4]);
187 MILLIS
[i
] = cal
->getTime(status
);
188 if (U_FAILURE(status
)) {
189 errln("cal->getTime failed");
194 SimpleDateFormat
df(UnicodeString("yyyy-MM-dd HH:mm:ss"), status
);
195 if (U_FAILURE(status
)) {
196 errln("Failed to initialize a SimpleDateFormat");
198 df
.setTimeZone(*utc
);
199 UnicodeString dateStr
;
201 // Test getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
202 // uint8_t dayOfWeek, int32_t millis, UErrorCode& status)
203 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
204 for (int32_t d
= 0; d
< NUM_DATES
; d
++) {
205 status
= U_ZERO_ERROR
;
206 int32_t offset
= TESTZONES
[i
]->getOffset(GregorianCalendar::AD
, DATES
[d
][0], DATES
[d
][1], DATES
[d
][2],
207 UCAL_SUNDAY
, DATES
[d
][5], status
);
208 if (U_FAILURE(status
)) {
209 errln((UnicodeString
)"getOffset(era,year,month,day,dayOfWeek,millis,status) failed for TESTZONES[" + i
+ "]");
210 } else if (offset
!= OFFSETS1
[d
]) {
212 df
.format(MILLIS
[d
], dateStr
);
213 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
214 + dateStr
+ "(standard) - Got: " + offset
+ " Expected: " + OFFSETS1
[d
]);
219 // Test getOffset(UDate date, UBool local, int32_t& rawOffset,
220 // int32_t& dstOffset, UErrorCode& ec) with local = TRUE
221 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
222 for (int32_t m
= 0; m
< NUM_DATES
; m
++) {
223 status
= U_ZERO_ERROR
;
224 TESTZONES
[i
]->getOffset(MILLIS
[m
], TRUE
, rawOffset
, dstOffset
, status
);
225 if (U_FAILURE(status
)) {
226 errln((UnicodeString
)"getOffset(date,local,rawOfset,dstOffset,ec) failed for TESTZONES[" + i
+ "]");
227 } else if (rawOffset
!= OFFSETS2
[m
][0] || dstOffset
!= OFFSETS2
[m
][1]) {
229 df
.format(MILLIS
[m
], dateStr
);
230 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
231 + dateStr
+ "(wall) - Got: "
232 + rawOffset
+ "/" + dstOffset
233 + " Expected: " + OFFSETS2
[m
][0] + "/" + OFFSETS2
[m
][1]);
238 // Test getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
239 // int32_t& rawOffset, int32_t& dstOffset, UErroCode& status)
240 // with nonExistingTimeOpt=kStandard/duplicatedTimeOpt=kStandard
241 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
242 for (int m
= 0; m
< NUM_DATES
; m
++) {
243 status
= U_ZERO_ERROR
;
244 TESTZONES
[i
]->getOffsetFromLocal(MILLIS
[m
], BasicTimeZone::kStandard
, BasicTimeZone::kStandard
,
245 rawOffset
, dstOffset
, status
);
246 if (U_FAILURE(status
)) {
247 errln((UnicodeString
)"getOffsetFromLocal with kStandard/kStandard failed for TESTZONES[" + i
+ "]");
248 } else if (rawOffset
!= OFFSETS2
[m
][0] || dstOffset
!= OFFSETS2
[m
][1]) {
250 df
.format(MILLIS
[m
], dateStr
);
251 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
252 + dateStr
+ "(wall/kStandard/kStandard) - Got: "
253 + rawOffset
+ "/" + dstOffset
254 + " Expected: " + OFFSETS2
[m
][0] + "/" + OFFSETS2
[m
][1]);
259 // Test getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
260 // int32_t& rawOffset, int32_t& dstOffset, UErroCode& status)
261 // with nonExistingTimeOpt=kDaylight/duplicatedTimeOpt=kDaylight
262 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
263 for (int m
= 0; m
< NUM_DATES
; m
++) {
264 status
= U_ZERO_ERROR
;
265 TESTZONES
[i
]->getOffsetFromLocal(MILLIS
[m
], BasicTimeZone::kDaylight
, BasicTimeZone::kDaylight
,
266 rawOffset
, dstOffset
, status
);
267 if (U_FAILURE(status
)) {
268 errln((UnicodeString
)"getOffsetFromLocal with kDaylight/kDaylight failed for TESTZONES[" + i
+ "]");
269 } else if (rawOffset
!= OFFSETS3
[m
][0] || dstOffset
!= OFFSETS3
[m
][1]) {
271 df
.format(MILLIS
[m
], dateStr
);
272 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
273 + dateStr
+ "(wall/kDaylight/kDaylight) - Got: "
274 + rawOffset
+ "/" + dstOffset
275 + " Expected: " + OFFSETS3
[m
][0] + "/" + OFFSETS3
[m
][1]);
280 // Test getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
281 // int32_t& rawOffset, int32_t& dstOffset, UErroCode& status)
282 // with nonExistingTimeOpt=kFormer/duplicatedTimeOpt=kLatter
283 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
284 for (int m
= 0; m
< NUM_DATES
; m
++) {
285 status
= U_ZERO_ERROR
;
286 TESTZONES
[i
]->getOffsetFromLocal(MILLIS
[m
], BasicTimeZone::kFormer
, BasicTimeZone::kLatter
,
287 rawOffset
, dstOffset
, status
);
288 if (U_FAILURE(status
)) {
289 errln((UnicodeString
)"getOffsetFromLocal with kFormer/kLatter failed for TESTZONES[" + i
+ "]");
290 } else if (rawOffset
!= OFFSETS2
[m
][0] || dstOffset
!= OFFSETS2
[m
][1]) {
292 df
.format(MILLIS
[m
], dateStr
);
293 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
294 + dateStr
+ "(wall/kFormer/kLatter) - Got: "
295 + rawOffset
+ "/" + dstOffset
296 + " Expected: " + OFFSETS2
[m
][0] + "/" + OFFSETS2
[m
][1]);
301 // Test getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt,
302 // int32_t& rawOffset, int32_t& dstOffset, UErroCode& status)
303 // with nonExistingTimeOpt=kLatter/duplicatedTimeOpt=kFormer
304 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
305 for (int m
= 0; m
< NUM_DATES
; m
++) {
306 status
= U_ZERO_ERROR
;
307 TESTZONES
[i
]->getOffsetFromLocal(MILLIS
[m
], BasicTimeZone::kLatter
, BasicTimeZone::kFormer
,
308 rawOffset
, dstOffset
, status
);
309 if (U_FAILURE(status
)) {
310 errln((UnicodeString
)"getOffsetFromLocal with kLatter/kFormer failed for TESTZONES[" + i
+ "]");
311 } else if (rawOffset
!= OFFSETS3
[m
][0] || dstOffset
!= OFFSETS3
[m
][1]) {
313 df
.format(MILLIS
[m
], dateStr
);
314 errln((UnicodeString
)"Bad offset returned by TESTZONES[" + i
+ "] at "
315 + dateStr
+ "(wall/kLatter/kFormer) - Got: "
316 + rawOffset
+ "/" + dstOffset
317 + " Expected: " + OFFSETS3
[m
][0] + "/" + OFFSETS3
[m
][1]);
322 for (int32_t i
= 0; i
< NUM_TIMEZONES
; i
++) {
329 #endif /* #if !UCONFIG_NO_FORMATTING */