Check for end of string when parsing "%z" in wxDateTime::Format().
[wxWidgets.git] / tests / datetime / datetimetest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/datetime/datetime.cpp
3 // Purpose: wxDateTime unit test
4 // Author: Vadim Zeitlin
5 // Created: 2004-06-23 (extracted from samples/console/console.cpp)
6 // RCS-ID: $Id$
7 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
8 ///////////////////////////////////////////////////////////////////////////////
9
10 // ----------------------------------------------------------------------------
11 // headers
12 // ----------------------------------------------------------------------------
13
14 #include "testprec.h"
15
16 #ifdef __BORLANDC__
17 #pragma hdrstop
18 #endif
19
20 #if wxUSE_DATETIME
21
22 #ifndef WX_PRECOMP
23 #include "wx/time.h" // wxGetTimeZone()
24 #endif // WX_PRECOMP
25
26 #include "wx/wxcrt.h" // for wxStrstr()
27
28 #include "testdate.h"
29
30 // to test Today() meaningfully we must be able to change the system date which
31 // is not usually the case, but if we're under Win32 we can try it -- define
32 // the macro below to do it
33 //#define CHANGE_SYSTEM_DATE
34
35 #ifndef __WINDOWS__
36 #undef CHANGE_SYSTEM_DATE
37 #endif
38
39 #ifdef CHANGE_SYSTEM_DATE
40
41 class DateChanger
42 {
43 public:
44 DateChanger(int year, int month, int day, int hour, int min, int sec)
45 {
46 SYSTEMTIME st;
47 st.wDay = day;
48 st.wMonth = month;
49 st.wYear = year;
50 st.wHour = hour;
51 st.wMinute = min;
52 st.wSecond = sec;
53 st.wMilliseconds = 0;
54
55 ::GetSystemTime(&m_savedTime);
56 ::GetTimeZoneInformation(&m_tzi);
57
58 m_changed = ::SetSystemTime(&st) != 0;
59 }
60
61 ~DateChanger()
62 {
63 if ( m_changed )
64 {
65 ::SetSystemTime(&m_savedTime);
66 ::SetTimeZoneInformation(&m_tzi);
67 }
68 }
69
70 private:
71 SYSTEMTIME m_savedTime;
72 TIME_ZONE_INFORMATION m_tzi;
73 bool m_changed;
74 };
75
76 #endif // CHANGE_SYSTEM_DATE
77
78 // helper function translating week day/month names from English to the current
79 // locale
80 static wxString TranslateDate(const wxString& str)
81 {
82 // small optimization: if there are no alphabetic characters in the string,
83 // there is nothing to translate
84 wxString::const_iterator i, end = str.end();
85 for ( i = str.begin(); i != end; ++i )
86 {
87 if ( isalpha(*i) )
88 break;
89 }
90
91 if ( i == end )
92 return str;
93
94 wxString trans(str);
95
96 for ( wxDateTime::WeekDay wd = wxDateTime::Sun;
97 wd < wxDateTime::Inv_WeekDay;
98 wxNextWDay(wd) )
99 {
100 trans.Replace
101 (
102 wxDateTime::GetEnglishWeekDayName(wd, wxDateTime::Name_Abbr),
103 wxDateTime::GetWeekDayName(wd, wxDateTime::Name_Abbr)
104 );
105 }
106
107 for ( wxDateTime::Month mon = wxDateTime::Jan;
108 mon < wxDateTime::Inv_Month;
109 wxNextMonth(mon) )
110 {
111 trans.Replace
112 (
113 wxDateTime::GetEnglishMonthName(mon, wxDateTime::Name_Abbr),
114 wxDateTime::GetMonthName(mon, wxDateTime::Name_Abbr)
115 );
116 }
117
118 return trans;
119 }
120
121 // ----------------------------------------------------------------------------
122 // broken down date representation used for testing
123 // ----------------------------------------------------------------------------
124
125 struct Date
126 {
127 wxDateTime::wxDateTime_t day;
128 wxDateTime::Month month;
129 int year;
130 wxDateTime::wxDateTime_t hour, min, sec;
131 double jdn;
132 wxDateTime::WeekDay wday;
133 time_t gmticks;
134
135 void Init(const wxDateTime::Tm& tm)
136 {
137 day = tm.mday;
138 month = tm.mon;
139 year = tm.year;
140 hour = tm.hour;
141 min = tm.min;
142 sec = tm.sec;
143 jdn = 0.0;
144 gmticks = -1;
145 }
146
147 wxDateTime DT() const
148 { return wxDateTime(day, month, year, hour, min, sec); }
149
150 bool SameDay(const wxDateTime::Tm& tm) const
151 {
152 return day == tm.mday && month == tm.mon && year == tm.year;
153 }
154
155 wxString Format() const
156 {
157 wxString s;
158 s.Printf(wxT("%02d:%02d:%02d %10s %02d, %4d%s"),
159 hour, min, sec,
160 wxDateTime::GetMonthName(month).c_str(),
161 day,
162 abs(wxDateTime::ConvertYearToBC(year)),
163 year > 0 ? wxT("AD") : wxT("BC"));
164 return s;
165 }
166
167 wxString FormatDate() const
168 {
169 wxString s;
170 s.Printf(wxT("%02d-%s-%4d%s"),
171 day,
172 wxDateTime::GetMonthName(month, wxDateTime::Name_Abbr).c_str(),
173 abs(wxDateTime::ConvertYearToBC(year)),
174 year > 0 ? wxT("AD") : wxT("BC"));
175 return s;
176 }
177 };
178
179 // ----------------------------------------------------------------------------
180 // test data
181 // ----------------------------------------------------------------------------
182
183 static const Date testDates[] =
184 {
185 { 1, wxDateTime::Jan, 1970, 00, 00, 00, 2440587.5, wxDateTime::Thu, 0 },
186 { 7, wxDateTime::Feb, 2036, 00, 00, 00, 2464730.5, wxDateTime::Thu, -1 },
187 { 8, wxDateTime::Feb, 2036, 00, 00, 00, 2464731.5, wxDateTime::Fri, -1 },
188 { 1, wxDateTime::Jan, 2037, 00, 00, 00, 2465059.5, wxDateTime::Thu, -1 },
189 { 1, wxDateTime::Jan, 2038, 00, 00, 00, 2465424.5, wxDateTime::Fri, -1 },
190 { 21, wxDateTime::Jan, 2222, 00, 00, 00, 2532648.5, wxDateTime::Mon, -1 },
191 { 29, wxDateTime::May, 1976, 12, 00, 00, 2442928.0, wxDateTime::Sat, 202219200 },
192 { 29, wxDateTime::Feb, 1976, 00, 00, 00, 2442837.5, wxDateTime::Sun, 194400000 },
193 { 1, wxDateTime::Jan, 1900, 12, 00, 00, 2415021.0, wxDateTime::Mon, -1 },
194 { 1, wxDateTime::Jan, 1900, 00, 00, 00, 2415020.5, wxDateTime::Mon, -1 },
195 { 15, wxDateTime::Oct, 1582, 00, 00, 00, 2299160.5, wxDateTime::Fri, -1 },
196 { 4, wxDateTime::Oct, 1582, 00, 00, 00, 2299149.5, wxDateTime::Mon, -1 },
197 { 1, wxDateTime::Mar, 1, 00, 00, 00, 1721484.5, wxDateTime::Thu, -1 },
198 { 1, wxDateTime::Jan, 1, 00, 00, 00, 1721425.5, wxDateTime::Mon, -1 },
199 { 31, wxDateTime::Dec, 0, 00, 00, 00, 1721424.5, wxDateTime::Sun, -1 },
200 { 1, wxDateTime::Jan, 0, 00, 00, 00, 1721059.5, wxDateTime::Sat, -1 },
201 { 12, wxDateTime::Aug, -1234, 00, 00, 00, 1270573.5, wxDateTime::Fri, -1 },
202 { 12, wxDateTime::Aug, -4000, 00, 00, 00, 260313.5, wxDateTime::Sat, -1 },
203 { 24, wxDateTime::Nov, -4713, 00, 00, 00, -0.5, wxDateTime::Mon, -1 },
204 };
205
206
207 // ----------------------------------------------------------------------------
208 // test class
209 // ----------------------------------------------------------------------------
210
211 class DateTimeTestCase : public CppUnit::TestCase
212 {
213 public:
214 DateTimeTestCase() { }
215
216 private:
217 CPPUNIT_TEST_SUITE( DateTimeTestCase );
218 CPPUNIT_TEST( TestLeapYears );
219 CPPUNIT_TEST( TestTimeSet );
220 CPPUNIT_TEST( TestTimeJDN );
221 CPPUNIT_TEST( TestTimeWNumber );
222 CPPUNIT_TEST( TestTimeWDays );
223 CPPUNIT_TEST( TestTimeDST );
224 CPPUNIT_TEST( TestTimeFormat );
225 CPPUNIT_TEST( TestTimeSpanFormat );
226 CPPUNIT_TEST( TestTimeTicks );
227 CPPUNIT_TEST( TestParceRFC822 );
228 CPPUNIT_TEST( TestDateParse );
229 CPPUNIT_TEST( TestDateParseISO );
230 CPPUNIT_TEST( TestDateTimeParse );
231 CPPUNIT_TEST( TestTimeArithmetics );
232 CPPUNIT_TEST( TestDSTBug );
233 CPPUNIT_TEST( TestDateOnly );
234 CPPUNIT_TEST_SUITE_END();
235
236 void TestLeapYears();
237 void TestTimeSet();
238 void TestTimeJDN();
239 void TestTimeWNumber();
240 void TestTimeWDays();
241 void TestTimeDST();
242 void TestTimeFormat();
243 void TestTimeSpanFormat();
244 void TestTimeTicks();
245 void TestParceRFC822();
246 void TestDateParse();
247 void TestDateParseISO();
248 void TestDateTimeParse();
249 void TestTimeArithmetics();
250 void TestDSTBug();
251 void TestDateOnly();
252
253 DECLARE_NO_COPY_CLASS(DateTimeTestCase)
254 };
255
256 // register in the unnamed registry so that these tests are run by default
257 CPPUNIT_TEST_SUITE_REGISTRATION( DateTimeTestCase );
258
259 // also include in its own registry so that these tests can be run alone
260 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( DateTimeTestCase, "DateTimeTestCase" );
261
262 // ============================================================================
263 // implementation
264 // ============================================================================
265
266 // test leap years detection
267 void DateTimeTestCase::TestLeapYears()
268 {
269 static const struct LeapYearTestData
270 {
271 int year;
272 bool isLeap;
273 } years[] =
274 {
275 { 1900, false },
276 { 1990, false },
277 { 1976, true },
278 { 2000, true },
279 { 2030, false },
280 { 1984, true },
281 { 2100, false },
282 { 2400, true },
283 };
284
285 for ( size_t n = 0; n < WXSIZEOF(years); n++ )
286 {
287 const LeapYearTestData& y = years[n];
288
289 CPPUNIT_ASSERT_EQUAL( y.isLeap, wxDateTime::IsLeapYear(y.year) );
290 }
291 }
292
293 // test constructing wxDateTime objects
294 void DateTimeTestCase::TestTimeSet()
295 {
296 for ( size_t n = 0; n < WXSIZEOF(testDates); n++ )
297 {
298 const Date& d1 = testDates[n];
299 wxDateTime dt = d1.DT();
300
301 Date d2;
302 d2.Init(dt.GetTm());
303
304 wxString s1 = d1.Format(),
305 s2 = d2.Format();
306
307 CPPUNIT_ASSERT_EQUAL( s1, s2 );
308 }
309 }
310
311 // test conversions to JDN &c
312 void DateTimeTestCase::TestTimeJDN()
313 {
314 for ( size_t n = 0; n < WXSIZEOF(testDates); n++ )
315 {
316 const Date& d = testDates[n];
317 wxDateTime dt(d.day, d.month, d.year, d.hour, d.min, d.sec);
318
319 // JDNs must be computed for UTC times
320 double jdn = dt.FromUTC().GetJulianDayNumber();
321
322 CPPUNIT_ASSERT_EQUAL( d.jdn, jdn );
323
324 dt.Set(jdn);
325 CPPUNIT_ASSERT_EQUAL( jdn, dt.GetJulianDayNumber() );
326 }
327 }
328
329 // test week days computation
330 void DateTimeTestCase::TestTimeWDays()
331 {
332 // test GetWeekDay()
333 size_t n;
334 for ( n = 0; n < WXSIZEOF(testDates); n++ )
335 {
336 const Date& d = testDates[n];
337 wxDateTime dt(d.day, d.month, d.year, d.hour, d.min, d.sec);
338
339 wxDateTime::WeekDay wday = dt.GetWeekDay();
340 CPPUNIT_ASSERT_EQUAL( d.wday, wday );
341 }
342
343 // test SetToWeekDay()
344 struct WeekDateTestData
345 {
346 Date date; // the real date (precomputed)
347 int nWeek; // its week index in the month
348 wxDateTime::WeekDay wday; // the weekday
349 wxDateTime::Month month; // the month
350 int year; // and the year
351
352 wxString Format() const
353 {
354 wxString s, which;
355 switch ( nWeek < -1 ? -nWeek : nWeek )
356 {
357 case 1: which = wxT("first"); break;
358 case 2: which = wxT("second"); break;
359 case 3: which = wxT("third"); break;
360 case 4: which = wxT("fourth"); break;
361 case 5: which = wxT("fifth"); break;
362
363 case -1: which = wxT("last"); break;
364 }
365
366 if ( nWeek < -1 )
367 {
368 which += wxT(" from end");
369 }
370
371 s.Printf(wxT("The %s %s of %s in %d"),
372 which.c_str(),
373 wxDateTime::GetWeekDayName(wday).c_str(),
374 wxDateTime::GetMonthName(month).c_str(),
375 year);
376
377 return s;
378 }
379 };
380
381 // the array data was generated by the following python program
382 /*
383 from DateTime import *
384 from whrandom import *
385 from string import *
386
387 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
388 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
389
390 week = DateTimeDelta(7)
391
392 for n in range(20):
393 year = randint(1900, 2100)
394 month = randint(1, 12)
395 day = randint(1, 28)
396 dt = DateTime(year, month, day)
397 wday = dt.day_of_week
398
399 countFromEnd = choice([-1, 1])
400 weekNum = 0;
401
402 while dt.month is month:
403 dt = dt - countFromEnd * week
404 weekNum = weekNum + countFromEnd
405
406 data = { 'day': rjust(`day`, 2), 'month': monthNames[month - 1], 'year': year, 'weekNum': rjust(`weekNum`, 2), 'wday': wdayNames[wday] }
407
408 print "{ { %(day)s, wxDateTime::%(month)s, %(year)d }, %(weekNum)d, "\
409 "wxDateTime::%(wday)s, wxDateTime::%(month)s, %(year)d }," % data
410 */
411
412 static const WeekDateTestData weekDatesTestData[] =
413 {
414 { { 20, wxDateTime::Mar, 2045, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 3, wxDateTime::Mon, wxDateTime::Mar, 2045 },
415 { { 5, wxDateTime::Jun, 1985, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -4, wxDateTime::Wed, wxDateTime::Jun, 1985 },
416 { { 12, wxDateTime::Nov, 1961, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -3, wxDateTime::Sun, wxDateTime::Nov, 1961 },
417 { { 27, wxDateTime::Feb, 2093, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -1, wxDateTime::Fri, wxDateTime::Feb, 2093 },
418 { { 4, wxDateTime::Jul, 2070, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -4, wxDateTime::Fri, wxDateTime::Jul, 2070 },
419 { { 2, wxDateTime::Apr, 1906, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -5, wxDateTime::Mon, wxDateTime::Apr, 1906 },
420 { { 19, wxDateTime::Jul, 2023, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -2, wxDateTime::Wed, wxDateTime::Jul, 2023 },
421 { { 5, wxDateTime::May, 1958, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -4, wxDateTime::Mon, wxDateTime::May, 1958 },
422 { { 11, wxDateTime::Aug, 1900, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 2, wxDateTime::Sat, wxDateTime::Aug, 1900 },
423 { { 14, wxDateTime::Feb, 1945, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 2, wxDateTime::Wed, wxDateTime::Feb, 1945 },
424 { { 25, wxDateTime::Jul, 1967, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -1, wxDateTime::Tue, wxDateTime::Jul, 1967 },
425 { { 9, wxDateTime::May, 1916, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -4, wxDateTime::Tue, wxDateTime::May, 1916 },
426 { { 20, wxDateTime::Jun, 1927, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 3, wxDateTime::Mon, wxDateTime::Jun, 1927 },
427 { { 2, wxDateTime::Aug, 2000, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, wxDateTime::Wed, wxDateTime::Aug, 2000 },
428 { { 20, wxDateTime::Apr, 2044, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 3, wxDateTime::Wed, wxDateTime::Apr, 2044 },
429 { { 20, wxDateTime::Feb, 1932, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -2, wxDateTime::Sat, wxDateTime::Feb, 1932 },
430 { { 25, wxDateTime::Jul, 2069, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 4, wxDateTime::Thu, wxDateTime::Jul, 2069 },
431 { { 3, wxDateTime::Apr, 1925, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, wxDateTime::Fri, wxDateTime::Apr, 1925 },
432 { { 21, wxDateTime::Mar, 2093, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 3, wxDateTime::Sat, wxDateTime::Mar, 2093 },
433 { { 3, wxDateTime::Dec, 2074, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, -5, wxDateTime::Mon, wxDateTime::Dec, 2074 }
434 };
435
436 wxDateTime dt;
437 for ( n = 0; n < WXSIZEOF(weekDatesTestData); n++ )
438 {
439 const WeekDateTestData& wd = weekDatesTestData[n];
440
441 dt.SetToWeekDay(wd.wday, wd.nWeek, wd.month, wd.year);
442
443 const Date& d = wd.date;
444 CPPUNIT_ASSERT( d.SameDay(dt.GetTm()) );
445 }
446 }
447
448 // test the computation of (ISO) week numbers
449 void DateTimeTestCase::TestTimeWNumber()
450 {
451 struct WeekNumberTestData
452 {
453 Date date; // the date
454 wxDateTime::wxDateTime_t week; // the week number in the year
455 wxDateTime::wxDateTime_t wmon; // the week number in the month
456 wxDateTime::wxDateTime_t wmon2; // same but week starts with Sun
457 wxDateTime::wxDateTime_t dnum; // day number in the year
458 };
459
460 // data generated with the following python script:
461 /*
462 from DateTime import *
463 from whrandom import *
464 from string import *
465
466 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
467 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
468
469 def GetMonthWeek(dt):
470 weekNumMonth = dt.iso_week[1] - DateTime(dt.year, dt.month, 1).iso_week[1] + 1
471 if weekNumMonth < 0:
472 weekNumMonth = weekNumMonth + 53
473 return weekNumMonth
474
475 def GetLastSundayBefore(dt):
476 if dt.iso_week[2] == 7:
477 return dt
478 else:
479 return dt - DateTimeDelta(dt.iso_week[2])
480
481 for n in range(20):
482 year = randint(1900, 2100)
483 month = randint(1, 12)
484 day = randint(1, 28)
485 dt = DateTime(year, month, day)
486 dayNum = dt.day_of_year
487 weekNum = dt.iso_week[1]
488 weekNumMonth = GetMonthWeek(dt)
489
490 weekNumMonth2 = 0
491 dtSunday = GetLastSundayBefore(dt)
492
493 while dtSunday >= GetLastSundayBefore(DateTime(dt.year, dt.month, 1)):
494 weekNumMonth2 = weekNumMonth2 + 1
495 dtSunday = dtSunday - DateTimeDelta(7)
496
497 data = { 'day': rjust(`day`, 2), \
498 'month': monthNames[month - 1], \
499 'year': year, \
500 'weekNum': rjust(`weekNum`, 2), \
501 'weekNumMonth': weekNumMonth, \
502 'weekNumMonth2': weekNumMonth2, \
503 'dayNum': rjust(`dayNum`, 3) }
504
505 print " { { %(day)s, "\
506 "wxDateTime::%(month)s, "\
507 "%(year)d }, "\
508 "%(weekNum)s, "\
509 "%(weekNumMonth)s, "\
510 "%(weekNumMonth2)s, "\
511 "%(dayNum)s }," % data
512
513 */
514 static const WeekNumberTestData weekNumberTestDates[] =
515 {
516 { { 27, wxDateTime::Dec, 1966, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 52, 5, 5, 361 },
517 { { 22, wxDateTime::Jul, 1926, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 29, 4, 4, 203 },
518 { { 22, wxDateTime::Oct, 2076, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 43, 4, 4, 296 },
519 { { 1, wxDateTime::Jul, 1967, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 26, 1, 1, 182 },
520 { { 8, wxDateTime::Nov, 2004, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 46, 2, 2, 313 },
521 { { 21, wxDateTime::Mar, 1920, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 12, 3, 4, 81 },
522 { { 7, wxDateTime::Jan, 1965, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 2, 2, 7 },
523 { { 19, wxDateTime::Oct, 1999, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 42, 4, 4, 292 },
524 { { 13, wxDateTime::Aug, 1955, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 32, 2, 2, 225 },
525 { { 18, wxDateTime::Jul, 2087, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 29, 3, 3, 199 },
526 { { 2, wxDateTime::Sep, 2028, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 35, 1, 1, 246 },
527 { { 28, wxDateTime::Jul, 1945, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 30, 5, 4, 209 },
528 { { 15, wxDateTime::Jun, 1901, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 24, 3, 3, 166 },
529 { { 10, wxDateTime::Oct, 1939, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 41, 3, 2, 283 },
530 { { 3, wxDateTime::Dec, 1965, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 48, 1, 1, 337 },
531 { { 23, wxDateTime::Feb, 1940, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 8, 4, 4, 54 },
532 { { 2, wxDateTime::Jan, 1987, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 1, 1, 2 },
533 { { 11, wxDateTime::Aug, 2079, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 32, 2, 2, 223 },
534 { { 2, wxDateTime::Feb, 2063, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 5, 1, 1, 33 },
535 { { 16, wxDateTime::Oct, 1942, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 42, 3, 3, 289 },
536 { { 30, wxDateTime::Dec, 2003, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 5, 5, 364 },
537 { { 2, wxDateTime::Jan, 2004, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 1, 1, 2 },
538 { { 5, wxDateTime::Jan, 2010, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 2, 2, 5 },
539 { { 3, wxDateTime::Jan, 2011, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 }, 1, 2, 2, 3 },
540 };
541
542 for ( size_t n = 0; n < WXSIZEOF(weekNumberTestDates); n++ )
543 {
544 const WeekNumberTestData& wn = weekNumberTestDates[n];
545 const Date& d = wn.date;
546
547 wxDateTime dt = d.DT();
548
549 wxDateTime::wxDateTime_t
550 week = dt.GetWeekOfYear(wxDateTime::Monday_First),
551 wmon = dt.GetWeekOfMonth(wxDateTime::Monday_First),
552 wmon2 = dt.GetWeekOfMonth(wxDateTime::Sunday_First),
553 dnum = dt.GetDayOfYear();
554
555 WX_ASSERT_EQUAL_MESSAGE( ("day of year for %s", d.Format()),
556 wn.dnum, dnum );
557 WX_ASSERT_EQUAL_MESSAGE( ("week of month (Monday) for %s", d.Format()),
558 wn.wmon, wmon );
559 WX_ASSERT_EQUAL_MESSAGE( ("week of month (Sunday) for %s", d.Format()),
560 wn.wmon2, wmon2 );
561 WX_ASSERT_EQUAL_MESSAGE( ("week of year for %s", d.Format()),
562 wn.week, week );
563
564 int year = d.year;
565 if ( week == 1 && d.month != wxDateTime::Jan )
566 {
567 // this means we're in the first week of the next year
568 year++;
569 }
570
571 wxDateTime
572 dt2 = wxDateTime::SetToWeekOfYear(year, week, dt.GetWeekDay());
573 CPPUNIT_ASSERT_EQUAL( dt, dt2 );
574 }
575 }
576
577 // test DST applicability
578 void DateTimeTestCase::TestTimeDST()
579 {
580 // taken from http://www.energy.ca.gov/daylightsaving.html
581 static const Date datesDST[2][2009 - 1990 + 1] =
582 {
583 {
584 { 1, wxDateTime::Apr, 1990, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
585 { 7, wxDateTime::Apr, 1991, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
586 { 5, wxDateTime::Apr, 1992, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
587 { 4, wxDateTime::Apr, 1993, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
588 { 3, wxDateTime::Apr, 1994, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
589 { 2, wxDateTime::Apr, 1995, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
590 { 7, wxDateTime::Apr, 1996, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
591 { 6, wxDateTime::Apr, 1997, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
592 { 5, wxDateTime::Apr, 1998, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
593 { 4, wxDateTime::Apr, 1999, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
594 { 2, wxDateTime::Apr, 2000, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
595 { 1, wxDateTime::Apr, 2001, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
596 { 7, wxDateTime::Apr, 2002, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
597 { 6, wxDateTime::Apr, 2003, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
598 { 4, wxDateTime::Apr, 2004, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
599 { 3, wxDateTime::Apr, 2005, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
600 { 2, wxDateTime::Apr, 2006, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
601 {11, wxDateTime::Mar, 2007, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
602 { 9, wxDateTime::Mar, 2008, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
603 { 8, wxDateTime::Mar, 2009, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
604 },
605 {
606 { 28, wxDateTime::Oct, 1990, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
607 { 27, wxDateTime::Oct, 1991, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
608 { 25, wxDateTime::Oct, 1992, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
609 { 31, wxDateTime::Oct, 1993, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
610 { 30, wxDateTime::Oct, 1994, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
611 { 29, wxDateTime::Oct, 1995, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
612 { 27, wxDateTime::Oct, 1996, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
613 { 26, wxDateTime::Oct, 1997, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
614 { 25, wxDateTime::Oct, 1998, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
615 { 31, wxDateTime::Oct, 1999, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
616 { 29, wxDateTime::Oct, 2000, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
617 { 28, wxDateTime::Oct, 2001, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
618 { 27, wxDateTime::Oct, 2002, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
619 { 26, wxDateTime::Oct, 2003, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
620 { 31, wxDateTime::Oct, 2004, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
621 { 30, wxDateTime::Oct, 2005, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
622 { 29, wxDateTime::Oct, 2006, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
623 { 4, wxDateTime::Nov, 2007, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
624 { 2, wxDateTime::Nov, 2008, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
625 { 1, wxDateTime::Nov, 2009, 0, 0, 0, 0.0, wxDateTime::Inv_WeekDay, 0 },
626
627 }
628 };
629
630 for ( size_t n = 0; n < WXSIZEOF(datesDST[0]); n++ )
631 {
632 const int year = 1990 + n;
633 wxDateTime dtBegin = wxDateTime::GetBeginDST(year, wxDateTime::USA),
634 dtEnd = wxDateTime::GetEndDST(year, wxDateTime::USA);
635
636 const Date& dBegin = datesDST[0][n];
637 const Date& dEnd = datesDST[1][n];
638
639 CPPUNIT_ASSERT_EQUAL( dBegin.DT().FormatDate(), dtBegin.FormatDate() );
640 CPPUNIT_ASSERT_EQUAL( dEnd.DT().FormatDate(), dtEnd.FormatDate() );
641 }
642 }
643
644 // test wxDateTime -> text conversion
645 void DateTimeTestCase::TestTimeFormat()
646 {
647 // some information may be lost during conversion, so store what kind
648 // of info should we recover after a round trip
649 enum CompareKind
650 {
651 CompareNone, // don't try comparing
652 CompareBoth, // dates and times should be identical
653 CompareYear, // don't compare centuries (fails for 2 digit years)
654 CompareDate, // dates only
655 CompareTime // time only
656 };
657
658 static const struct
659 {
660 CompareKind compareKind;
661 const char *format;
662 } formatTestFormats[] =
663 {
664 { CompareYear, "---> %c" }, // %c could use 2 digit years
665 { CompareDate, "Date is %A, %d of %B, in year %Y" },
666 { CompareYear, "Date is %x, time is %X" }, // %x could use 2 digits
667 { CompareTime, "Time is %H:%M:%S or %I:%M:%S %p" },
668 { CompareNone, "The day of year: %j, the week of year: %W" },
669 { CompareDate, "ISO date without separators: %Y%m%d" },
670 { CompareBoth, "RFC 2822 string: %Y-%m-%d %H:%M:%S.%l %z" },
671
672 };
673
674 const long timeZonesOffsets[] =
675 {
676 wxDateTime::TimeZone(wxDateTime::Local).GetOffset(),
677
678 // Fictitious TimeZone offsets to ensure time zone formating and
679 // interpretation works
680 -(3600 + 2*60),
681 3*3600 + 30*60
682 };
683
684 static const Date formatTestDates[] =
685 {
686 { 29, wxDateTime::May, 1976, 18, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
687 { 31, wxDateTime::Dec, 1999, 23, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
688 { 6, wxDateTime::Feb, 1937, 23, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
689 { 6, wxDateTime::Feb, 1856, 23, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
690 { 6, wxDateTime::Feb, 1857, 23, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
691 { 29, wxDateTime::May, 2076, 18, 30, 00, 0.0, wxDateTime::Inv_WeekDay },
692
693 // FIXME: the test with 02:15:25 time doesn't pass because of DST
694 // computation problems, we get back 03:15:25
695 { 29, wxDateTime::Feb, 2400, 04, 15, 25, 0.0, wxDateTime::Inv_WeekDay },
696 #if 0
697 // Need to add support for BCE dates.
698 { 01, wxDateTime::Jan, -52, 03, 16, 47, 0.0, wxDateTime::Inv_WeekDay },
699 #endif
700 };
701
702 for ( unsigned idxtz = 0; idxtz < WXSIZEOF(timeZonesOffsets); ++idxtz )
703 {
704 wxDateTime::TimeZone tz(timeZonesOffsets[idxtz]);
705 const bool isLocalTz = tz.GetOffset() == -wxGetTimeZone();
706
707 for ( size_t d = 0; d < WXSIZEOF(formatTestDates); d++ )
708 {
709 wxDateTime dt = formatTestDates[d].DT();
710 for ( unsigned n = 0; n < WXSIZEOF(formatTestFormats); n++ )
711 {
712 const char *fmt = formatTestFormats[n].format;
713
714 // skip the check with %p for those locales which have empty AM/PM strings:
715 // for those locales it's impossible to pass the test with %p...
716 wxString am, pm;
717 wxDateTime::GetAmPmStrings(&am, &pm);
718 if (am.empty() && pm.empty() && wxStrstr(fmt, "%p") != NULL)
719 continue;
720
721 // what can we recover?
722 CompareKind kind = formatTestFormats[n].compareKind;
723
724 // When using a different time zone we must perform a time zone
725 // conversion below which doesn't always work correctly, check
726 // for the cases when it doesn't.
727 if ( !isLocalTz )
728 {
729 // DST computation doesn't work correctly for dates above
730 // 2038 currently on the systems with 32 bit time_t.
731 if ( dt.GetYear() >= 2038 )
732 continue;
733
734 // We can't compare just dates nor just times when doing TZ
735 // conversion as both are affected by the DST: for the
736 // dates, the DST can switch midnight to 23:00 of the
737 // previous day while for the times DST can be different
738 // for the original date and today.
739 if ( kind == CompareDate || kind == CompareTime )
740 continue;
741 }
742
743 // do convert date to string
744 wxString s = dt.Format(fmt, tz);
745
746 // convert back
747 wxDateTime dt2;
748 const char *result = dt2.ParseFormat(s, fmt);
749 if ( !result )
750 {
751 // conversion failed - should it have?
752 WX_ASSERT_MESSAGE(
753 ("Test #%u failed: failed to parse \"%s\"", n, s),
754 kind == CompareNone
755 );
756 }
757 else // conversion succeeded
758 {
759 // currently ParseFormat() doesn't support "%Z" and so is
760 // incapable of parsing time zone part used at the end of date
761 // representations in many (but not "C") locales, compensate
762 // for it ourselves by simply consuming and ignoring it
763 while ( *result && (*result >= 'A' && *result <= 'Z') )
764 result++;
765
766 WX_ASSERT_MESSAGE(
767 ("Test #%u failed: \"%s\" was left unparsed in \"%s\"",
768 n, result, s),
769 !*result
770 );
771
772 // Without "%z" we can't recover the time zone used in the
773 // call to Format() so we need to call MakeFromTimezone()
774 // explicitly.
775 if ( !strstr(fmt, "%z") && !isLocalTz )
776 dt2.MakeFromTimezone(tz);
777
778 switch ( kind )
779 {
780 case CompareYear:
781 if ( dt2.GetCentury() != dt.GetCentury() )
782 {
783 CPPUNIT_ASSERT_EQUAL(dt.GetYear() % 100,
784 dt2.GetYear() % 100);
785
786 dt2.SetYear(dt.GetYear());
787 }
788 // fall through and compare everything
789
790 case CompareBoth:
791 CPPUNIT_ASSERT_EQUAL( dt, dt2 );
792 break;
793
794 case CompareDate:
795 CPPUNIT_ASSERT( dt.IsSameDate(dt2) );
796 break;
797
798 case CompareTime:
799 CPPUNIT_ASSERT( dt.IsSameTime(dt2) );
800 break;
801
802 case CompareNone:
803 wxFAIL_MSG( wxT("unexpected") );
804 break;
805 }
806 }
807 }
808 }
809 }
810
811 wxDateTime dt;
812
813 #if 0
814 // special case which was known to fail
815 CPPUNIT_ASSERT( dt.ParseFormat("02/06/1856", "%x") );
816 CPPUNIT_ASSERT_EQUAL( 1856, dt.GetYear() );
817 #endif
818
819 // also test %l separately
820 CPPUNIT_ASSERT( dt.ParseFormat("12:23:45.678", "%H:%M:%S.%l") );
821 CPPUNIT_ASSERT_EQUAL( 678, dt.GetMillisecond() );
822
823 // test special case of %l matching 0 milliseconds
824 CPPUNIT_ASSERT( dt.ParseFormat("12:23:45.000", "%H:%M:%S.%l") );
825 CPPUNIT_ASSERT_EQUAL( 0, dt.GetMillisecond() );
826
827 // test partially specified dates too
828 wxDateTime dtDef(26, wxDateTime::Sep, 2008);
829 CPPUNIT_ASSERT( dt.ParseFormat("17", "%d") );
830 CPPUNIT_ASSERT_EQUAL( 17, dt.GetDay() );
831
832 // test some degenerate cases
833 CPPUNIT_ASSERT( !dt.ParseFormat("", "%z") );
834
835 // test compilation of some calls which should compile (and not result in
836 // ambiguity because of char*<->wxCStrData<->wxString conversions)
837 wxString s("foo");
838 CPPUNIT_ASSERT( !dt.ParseFormat("foo") );
839 CPPUNIT_ASSERT( !dt.ParseFormat(wxT("foo")) );
840 CPPUNIT_ASSERT( !dt.ParseFormat(s) );
841 CPPUNIT_ASSERT( !dt.ParseFormat(s.c_str()) );
842
843 CPPUNIT_ASSERT( !dt.ParseFormat("foo", "%c") );
844 CPPUNIT_ASSERT( !dt.ParseFormat(wxT("foo"), "%c") );
845 CPPUNIT_ASSERT( !dt.ParseFormat(s, "%c") );
846 CPPUNIT_ASSERT( !dt.ParseFormat(s.c_str(), "%c") );
847
848 CPPUNIT_ASSERT( !dt.ParseFormat("foo", wxT("%c")) );
849 CPPUNIT_ASSERT( !dt.ParseFormat(wxT("foo"), wxT("%c")) );
850 CPPUNIT_ASSERT( !dt.ParseFormat(s, "%c") );
851 CPPUNIT_ASSERT( !dt.ParseFormat(s.c_str(), wxT("%c")) );
852
853 wxString spec("%c");
854 CPPUNIT_ASSERT( !dt.ParseFormat("foo", spec) );
855 CPPUNIT_ASSERT( !dt.ParseFormat(wxT("foo"), spec) );
856 CPPUNIT_ASSERT( !dt.ParseFormat(s, spec) );
857 CPPUNIT_ASSERT( !dt.ParseFormat(s.c_str(), spec) );
858 }
859
860 void DateTimeTestCase::TestTimeSpanFormat()
861 {
862 static const struct TimeSpanFormatTestData
863 {
864 long h, min, sec, msec;
865 const char *fmt;
866 const char *result;
867 } testSpans[] =
868 {
869 { 12, 34, 56, 789, "%H:%M:%S.%l", "12:34:56.789" },
870 { 1, 2, 3, 0, "%H:%M:%S", "01:02:03" },
871 { 1, 2, 3, 0, "%S", "3723" },
872 { -1, -2, -3, 0, "%S", "-3723" },
873 { -1, -2, -3, 0, "%H:%M:%S", "-01:02:03" },
874 { 26, 0, 0, 0, "%H", "26" },
875 { 26, 0, 0, 0, "%D, %H", "1, 02" },
876 { -26, 0, 0, 0, "%H", "-26" },
877 { -26, 0, 0, 0, "%D, %H", "-1, 02" },
878 { 219, 0, 0, 0, "%H", "219" },
879 { 219, 0, 0, 0, "%D, %H", "9, 03" },
880 { 219, 0, 0, 0, "%E, %D, %H", "1, 2, 03" },
881 { 0, -1, 0, 0, "%H:%M:%S", "-00:01:00" },
882 { 0, 0, -1, 0, "%H:%M:%S", "-00:00:01" },
883 };
884
885 for ( size_t n = 0; n < WXSIZEOF(testSpans); n++ )
886 {
887 const TimeSpanFormatTestData& td = testSpans[n];
888 wxTimeSpan ts(td.h, td.min, td.sec, td.msec);
889 CPPUNIT_ASSERT_EQUAL( td.result, ts.Format(td.fmt) );
890 }
891 }
892
893 void DateTimeTestCase::TestTimeTicks()
894 {
895 static const wxDateTime::TimeZone TZ_LOCAL(wxDateTime::Local);
896 static const wxDateTime::TimeZone TZ_TEST(wxDateTime::NZST);
897
898 // this offset is needed to make the test work in any time zone when we
899 // only have expected test results in UTC in testDates
900 static const long tzOffset = TZ_LOCAL.GetOffset() - TZ_TEST.GetOffset();
901
902 for ( size_t n = 0; n < WXSIZEOF(testDates); n++ )
903 {
904 const Date& d = testDates[n];
905 if ( d.gmticks == -1 )
906 continue;
907
908 wxDateTime dt = d.DT().MakeTimezone(TZ_TEST, true /* no DST */);
909
910 // GetValue() returns internal UTC-based representation, we need to
911 // convert it to local TZ before comparing
912 time_t ticks = (dt.GetValue() / 1000).ToLong() + TZ_LOCAL.GetOffset();
913 if ( dt.IsDST() )
914 ticks += 3600;
915 CPPUNIT_ASSERT_EQUAL( d.gmticks, ticks + tzOffset );
916
917 dt = d.DT().FromTimezone(wxDateTime::UTC);
918 ticks = (dt.GetValue() / 1000).ToLong();
919 CPPUNIT_ASSERT_EQUAL( d.gmticks, ticks );
920 }
921 }
922
923 // test parsing dates in RFC822 format
924 void DateTimeTestCase::TestParceRFC822()
925 {
926 static const struct ParseTestData
927 {
928 const char *rfc822;
929 Date date; // NB: this should be in UTC
930 bool good;
931 } parseTestDates[] =
932 {
933 {
934 "Sat, 18 Dec 1999 00:46:40 +0100",
935 { 17, wxDateTime::Dec, 1999, 23, 46, 40 },
936 true
937 },
938 {
939 "Wed, 1 Dec 1999 05:17:20 +0300",
940 { 1, wxDateTime::Dec, 1999, 2, 17, 20 },
941 true
942 },
943 {
944 "Sun, 28 Aug 2005 03:31:30 +0200",
945 { 28, wxDateTime::Aug, 2005, 1, 31, 30 },
946 true
947 },
948
949 {
950 "Sat, 18 Dec 1999 10:48:30 -0500",
951 { 18, wxDateTime::Dec, 1999, 15, 48, 30 },
952 true
953 },
954
955 // seconds are optional according to the RFC
956 {
957 "Sun, 01 Jun 2008 16:30 +0200",
958 { 1, wxDateTime::Jun, 2008, 14, 30, 00 },
959 true
960 },
961
962 // try some bogus ones too
963 {
964 "Sun, 01 Jun 2008 16:30: +0200",
965 { 0 },
966 false
967 },
968 };
969
970 for ( unsigned n = 0; n < WXSIZEOF(parseTestDates); n++ )
971 {
972 const char * const datestr = parseTestDates[n].rfc822;
973
974 wxDateTime dt;
975 if ( dt.ParseRfc822Date(datestr) )
976 {
977 WX_ASSERT_MESSAGE(
978 ("Erroneously parsed \"%s\"", datestr),
979 parseTestDates[n].good
980 );
981
982 wxDateTime dtReal = parseTestDates[n].date.DT().FromUTC();
983 CPPUNIT_ASSERT_EQUAL( dtReal, dt );
984 }
985 else // failed to parse
986 {
987 WX_ASSERT_MESSAGE(
988 ("Failed to parse \"%s\"", datestr),
989 !parseTestDates[n].good
990 );
991 }
992 }
993 }
994
995 // test parsing dates in free format
996 void DateTimeTestCase::TestDateParse()
997 {
998 static const struct ParseTestData
999 {
1000 const char *str;
1001 Date date; // NB: this should be in UTC
1002 bool good;
1003 } parseTestDates[] =
1004 {
1005 { "21 Mar 2006", { 21, wxDateTime::Mar, 2006 }, true },
1006 { "29 Feb 1976", { 29, wxDateTime::Feb, 1976 }, true },
1007 { "Feb 29 1976", { 29, wxDateTime::Feb, 1976 }, true },
1008 { "31/03/06", { 31, wxDateTime::Mar, 6 }, true },
1009 { "31/03/2006", { 31, wxDateTime::Mar, 2006 }, true },
1010
1011 // some invalid ones too
1012 { "29 Feb 2006" },
1013 { "31/04/06" },
1014 { "bloordyblop" },
1015 { "2 . . " },
1016 };
1017
1018 // special cases
1019 wxDateTime dt;
1020 CPPUNIT_ASSERT( dt.ParseDate(wxT("today")) );
1021 CPPUNIT_ASSERT_EQUAL( wxDateTime::Today(), dt );
1022
1023 for ( size_t n = 0; n < WXSIZEOF(parseTestDates); n++ )
1024 {
1025 const wxString datestr = TranslateDate(parseTestDates[n].str);
1026
1027 const char * const end = dt.ParseDate(datestr);
1028 if ( end && !*end )
1029 {
1030 WX_ASSERT_MESSAGE(
1031 ("Erroneously parsed \"%s\"", datestr),
1032 parseTestDates[n].good
1033 );
1034
1035 CPPUNIT_ASSERT_EQUAL( parseTestDates[n].date.DT(), dt );
1036 }
1037 else // failed to parse
1038 {
1039 WX_ASSERT_MESSAGE(
1040 ("Failed to parse \"%s\"", datestr),
1041 !parseTestDates[n].good
1042 );
1043 }
1044 }
1045 }
1046
1047 void DateTimeTestCase::TestDateParseISO()
1048 {
1049 static const struct
1050 {
1051 const char *str;
1052 Date date; // NB: this should be in UTC
1053 bool good;
1054 } parseTestDates[] =
1055 {
1056 { "2006-03-21", { 21, wxDateTime::Mar, 2006 }, true },
1057 { "1976-02-29", { 29, wxDateTime::Feb, 1976 }, true },
1058 { "0006-03-31", { 31, wxDateTime::Mar, 6 }, true },
1059
1060 // some invalid ones too
1061 { "2006:03:31" },
1062 { "31/04/06" },
1063 { "bloordyblop" },
1064 { "" },
1065 };
1066
1067 static const struct
1068 {
1069 const char *str;
1070 wxDateTime::wxDateTime_t hour, min, sec;
1071 bool good;
1072 } parseTestTimes[] =
1073 {
1074 { "13:42:17", 13, 42, 17, true },
1075 { "02:17:01", 2, 17, 1, true },
1076
1077 // some invalid ones too
1078 { "66:03:31" },
1079 { "31/04/06" },
1080 { "bloordyblop" },
1081 { "" },
1082 };
1083
1084 for ( size_t n = 0; n < WXSIZEOF(parseTestDates); n++ )
1085 {
1086 wxDateTime dt;
1087 if ( dt.ParseISODate(parseTestDates[n].str) )
1088 {
1089 CPPUNIT_ASSERT( parseTestDates[n].good );
1090
1091 CPPUNIT_ASSERT_EQUAL( parseTestDates[n].date.DT(), dt );
1092
1093 for ( size_t m = 0; m < WXSIZEOF(parseTestTimes); m++ )
1094 {
1095 wxString dtCombined;
1096 dtCombined << parseTestDates[n].str
1097 << 'T'
1098 << parseTestTimes[m].str;
1099
1100 if ( dt.ParseISOCombined(dtCombined) )
1101 {
1102 CPPUNIT_ASSERT( parseTestTimes[m].good );
1103
1104 CPPUNIT_ASSERT_EQUAL( parseTestTimes[m].hour, dt.GetHour()) ;
1105 CPPUNIT_ASSERT_EQUAL( parseTestTimes[m].min, dt.GetMinute()) ;
1106 CPPUNIT_ASSERT_EQUAL( parseTestTimes[m].sec, dt.GetSecond()) ;
1107 }
1108 else // failed to parse combined date/time
1109 {
1110 CPPUNIT_ASSERT( !parseTestTimes[m].good );
1111 }
1112 }
1113 }
1114 else // failed to parse
1115 {
1116 CPPUNIT_ASSERT( !parseTestDates[n].good );
1117 }
1118 }
1119 }
1120
1121 void DateTimeTestCase::TestDateTimeParse()
1122 {
1123 static const struct ParseTestData
1124 {
1125 const char *str;
1126 Date date; // NB: this should be in UTC
1127 bool good;
1128 } parseTestDates[] =
1129 {
1130 {
1131 "Thu 22 Nov 2007 07:40:00 PM",
1132 { 22, wxDateTime::Nov, 2007, 19, 40, 0 },
1133 true
1134 },
1135
1136 {
1137 "2010-01-04 14:30",
1138 { 4, wxDateTime::Jan, 2010, 14, 30, 0 },
1139 true
1140 },
1141
1142 {
1143 "bloordyblop",
1144 { 1, wxDateTime::Jan, 9999, 0, 0, 0},
1145 false
1146 },
1147
1148 {
1149 "2012-01-01 10:12:05 +0100",
1150 { 1, wxDateTime::Jan, 2012, 10, 12, 5, -1 },
1151 false // ParseDateTime does know yet +0100
1152 },
1153 };
1154
1155 // the test strings here use "PM" which is not available in all locales so
1156 // we need to use "C" locale for them
1157 CLocaleSetter cloc;
1158
1159 wxDateTime dt;
1160 for ( size_t n = 0; n < WXSIZEOF(parseTestDates); n++ )
1161 {
1162 const wxString datestr = TranslateDate(parseTestDates[n].str);
1163
1164 const char * const end = dt.ParseDateTime(datestr);
1165 if ( end && !*end )
1166 {
1167 WX_ASSERT_MESSAGE(
1168 ("Erroneously parsed \"%s\"", datestr),
1169 parseTestDates[n].good
1170 );
1171
1172 CPPUNIT_ASSERT_EQUAL( parseTestDates[n].date.DT(), dt );
1173 }
1174 else // failed to parse
1175 {
1176 WX_ASSERT_MESSAGE(
1177 ("Failed to parse \"%s\"", datestr),
1178 !parseTestDates[n].good
1179 );
1180
1181 CPPUNIT_ASSERT( !parseTestDates[n].good );
1182 }
1183 }
1184 }
1185
1186 void DateTimeTestCase::TestTimeArithmetics()
1187 {
1188 static const wxDateSpan testArithmData[] =
1189 {
1190 wxDateSpan::Day(),
1191 wxDateSpan::Week(),
1192 wxDateSpan::Month(),
1193 wxDateSpan::Year(),
1194 };
1195
1196 // the test will *not* work with arbitrary date!
1197 wxDateTime dt(2, wxDateTime::Dec, 1999),
1198 dt1,
1199 dt2;
1200
1201 for ( size_t n = 0; n < WXSIZEOF(testArithmData); n++ )
1202 {
1203 const wxDateSpan& span = testArithmData[n];
1204 dt1 = dt + span;
1205 dt2 = dt - span;
1206
1207 CPPUNIT_ASSERT_EQUAL( dt, dt1 - span );
1208 CPPUNIT_ASSERT_EQUAL( dt, dt2 + span );
1209 CPPUNIT_ASSERT_EQUAL( dt1, dt2 + 2*span );
1210 }
1211 }
1212
1213 void DateTimeTestCase::TestDSTBug()
1214 {
1215 /////////////////////////
1216 // Test GetEndDST()
1217 wxDateTime dt = wxDateTime::GetEndDST(2004, wxDateTime::France);
1218 CPPUNIT_ASSERT_EQUAL(31, (int)dt.GetDay());
1219 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct, dt.GetMonth());
1220 CPPUNIT_ASSERT_EQUAL(2004, (int)dt.GetYear());
1221 CPPUNIT_ASSERT_EQUAL(1, (int)dt.GetHour());
1222 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMinute());
1223 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetSecond());
1224 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMillisecond());
1225
1226 /////////////////////////
1227 // Test ResetTime()
1228 dt.SetHour(5);
1229 CPPUNIT_ASSERT_EQUAL(5, (int)dt.GetHour());
1230 dt.ResetTime();
1231 CPPUNIT_ASSERT_EQUAL(31, (int)dt.GetDay());
1232 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct, dt.GetMonth());
1233 CPPUNIT_ASSERT_EQUAL(2004, (int)dt.GetYear());
1234 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetHour());
1235 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMinute());
1236 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetSecond());
1237 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMillisecond());
1238
1239 dt.Set(1, 0, 0, 0);
1240 CPPUNIT_ASSERT_EQUAL(1, (int)dt.GetHour());
1241
1242 /////////////////////////
1243 // Test Today()
1244 #ifdef CHANGE_SYSTEM_DATE
1245 {
1246 DateChanger change(2004, 10, 31, 5, 0, 0);
1247 dt = wxDateTime::Today();
1248 }
1249
1250 CPPUNIT_ASSERT_EQUAL(31, (int)dt.GetDay());
1251 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct, dt.GetMonth());
1252 CPPUNIT_ASSERT_EQUAL(2004, (int)dt.GetYear());
1253 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetHour());
1254 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMinute());
1255 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetSecond());
1256 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMillisecond());
1257
1258 /////////////////////////
1259 // Test Set(hour, minute, second, milli)
1260 wxDateTime dt2;
1261 {
1262 DateChanger change(2004, 10, 31, 5, 0, 0);
1263 dt.Set(1, 30, 0, 0);
1264 dt2.Set(5, 30, 0, 0);
1265 }
1266
1267 CPPUNIT_ASSERT_EQUAL(31, (int)dt.GetDay());
1268 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct, dt.GetMonth());
1269 CPPUNIT_ASSERT_EQUAL(2004, (int)dt.GetYear());
1270 CPPUNIT_ASSERT_EQUAL(1, (int)dt.GetHour());
1271 CPPUNIT_ASSERT_EQUAL(30, (int)dt.GetMinute());
1272 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetSecond());
1273 CPPUNIT_ASSERT_EQUAL(0, (int)dt.GetMillisecond());
1274
1275 CPPUNIT_ASSERT_EQUAL(31, (int)dt2.GetDay());
1276 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct, dt2.GetMonth());
1277 CPPUNIT_ASSERT_EQUAL(2004, (int)dt2.GetYear());
1278 CPPUNIT_ASSERT_EQUAL(5, (int)dt2.GetHour());
1279 CPPUNIT_ASSERT_EQUAL(30, (int)dt2.GetMinute());
1280 CPPUNIT_ASSERT_EQUAL(0, (int)dt2.GetSecond());
1281 CPPUNIT_ASSERT_EQUAL(0, (int)dt2.GetMillisecond());
1282 #endif // CHANGE_SYSTEM_DATE
1283 }
1284
1285 void DateTimeTestCase::TestDateOnly()
1286 {
1287 wxDateTime dt(19, wxDateTime::Jan, 2007, 15, 01, 00);
1288
1289 static const wxDateTime::wxDateTime_t DATE_ZERO = 0;
1290 CPPUNIT_ASSERT_EQUAL( DATE_ZERO, dt.GetDateOnly().GetHour() );
1291 CPPUNIT_ASSERT_EQUAL( DATE_ZERO, dt.GetDateOnly().GetMinute() );
1292 CPPUNIT_ASSERT_EQUAL( DATE_ZERO, dt.GetDateOnly().GetSecond() );
1293 CPPUNIT_ASSERT_EQUAL( DATE_ZERO, dt.GetDateOnly().GetMillisecond() );
1294
1295 dt.ResetTime();
1296 CPPUNIT_ASSERT_EQUAL( wxDateTime(19, wxDateTime::Jan, 2007), dt );
1297
1298 CPPUNIT_ASSERT_EQUAL( wxDateTime::Today(), wxDateTime::Now().GetDateOnly() );
1299 }
1300
1301 #endif // wxUSE_DATETIME