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)
7 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
23 #include "wx/time.h" // wxGetTimeZone()
26 #include "wx/wxcrt.h" // for wxStrstr()
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
36 #undef CHANGE_SYSTEM_DATE
39 #ifdef CHANGE_SYSTEM_DATE
44 DateChanger(int year
, int month
, int day
, int hour
, int min
, int sec
)
55 ::GetSystemTime(&m_savedTime
);
56 ::GetTimeZoneInformation(&m_tzi
);
58 m_changed
= ::SetSystemTime(&st
) != 0;
65 ::SetSystemTime(&m_savedTime
);
66 ::SetTimeZoneInformation(&m_tzi
);
71 SYSTEMTIME m_savedTime
;
72 TIME_ZONE_INFORMATION m_tzi
;
76 #endif // CHANGE_SYSTEM_DATE
78 // helper function translating week day/month names from English to the current
80 static wxString
TranslateDate(const wxString
& str
)
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
)
96 for ( wxDateTime::WeekDay wd
= wxDateTime::Sun
;
97 wd
< wxDateTime::Inv_WeekDay
;
102 wxDateTime::GetEnglishWeekDayName(wd
, wxDateTime::Name_Abbr
),
103 wxDateTime::GetWeekDayName(wd
, wxDateTime::Name_Abbr
)
107 for ( wxDateTime::Month mon
= wxDateTime::Jan
;
108 mon
< wxDateTime::Inv_Month
;
113 wxDateTime::GetEnglishMonthName(mon
, wxDateTime::Name_Abbr
),
114 wxDateTime::GetMonthName(mon
, wxDateTime::Name_Abbr
)
121 // ----------------------------------------------------------------------------
122 // broken down date representation used for testing
123 // ----------------------------------------------------------------------------
127 wxDateTime::wxDateTime_t day
;
128 wxDateTime::Month month
;
130 wxDateTime::wxDateTime_t hour
, min
, sec
;
132 wxDateTime::WeekDay wday
;
135 void Init(const wxDateTime::Tm
& tm
)
147 wxDateTime
DT() const
148 { return wxDateTime(day
, month
, year
, hour
, min
, sec
); }
150 bool SameDay(const wxDateTime::Tm
& tm
) const
152 return day
== tm
.mday
&& month
== tm
.mon
&& year
== tm
.year
;
155 wxString
Format() const
158 s
.Printf(wxT("%02d:%02d:%02d %10s %02d, %4d%s"),
160 wxDateTime::GetMonthName(month
).c_str(),
162 abs(wxDateTime::ConvertYearToBC(year
)),
163 year
> 0 ? wxT("AD") : wxT("BC"));
167 wxString
FormatDate() const
170 s
.Printf(wxT("%02d-%s-%4d%s"),
172 wxDateTime::GetMonthName(month
, wxDateTime::Name_Abbr
).c_str(),
173 abs(wxDateTime::ConvertYearToBC(year
)),
174 year
> 0 ? wxT("AD") : wxT("BC"));
179 // ----------------------------------------------------------------------------
181 // ----------------------------------------------------------------------------
183 static const Date testDates
[] =
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 },
207 // ----------------------------------------------------------------------------
209 // ----------------------------------------------------------------------------
211 class DateTimeTestCase
: public CppUnit::TestCase
214 DateTimeTestCase() { }
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();
236 void TestLeapYears();
239 void TestTimeWNumber();
240 void TestTimeWDays();
242 void TestTimeFormat();
243 void TestTimeSpanFormat();
244 void TestTimeTicks();
245 void TestParceRFC822();
246 void TestDateParse();
247 void TestDateParseISO();
248 void TestDateTimeParse();
249 void TestTimeArithmetics();
253 DECLARE_NO_COPY_CLASS(DateTimeTestCase
)
256 // register in the unnamed registry so that these tests are run by default
257 CPPUNIT_TEST_SUITE_REGISTRATION( DateTimeTestCase
);
259 // also include in its own registry so that these tests can be run alone
260 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( DateTimeTestCase
, "DateTimeTestCase" );
262 // ============================================================================
264 // ============================================================================
266 // test leap years detection
267 void DateTimeTestCase::TestLeapYears()
269 static const struct LeapYearTestData
285 for ( size_t n
= 0; n
< WXSIZEOF(years
); n
++ )
287 const LeapYearTestData
& y
= years
[n
];
289 CPPUNIT_ASSERT_EQUAL( y
.isLeap
, wxDateTime::IsLeapYear(y
.year
) );
293 // test constructing wxDateTime objects
294 void DateTimeTestCase::TestTimeSet()
296 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
298 const Date
& d1
= testDates
[n
];
299 wxDateTime dt
= d1
.DT();
304 wxString s1
= d1
.Format(),
307 CPPUNIT_ASSERT_EQUAL( s1
, s2
);
311 // test conversions to JDN &c
312 void DateTimeTestCase::TestTimeJDN()
314 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
316 const Date
& d
= testDates
[n
];
317 wxDateTime
dt(d
.day
, d
.month
, d
.year
, d
.hour
, d
.min
, d
.sec
);
319 // JDNs must be computed for UTC times
320 double jdn
= dt
.FromUTC().GetJulianDayNumber();
322 CPPUNIT_ASSERT_EQUAL( d
.jdn
, jdn
);
325 CPPUNIT_ASSERT_EQUAL( jdn
, dt
.GetJulianDayNumber() );
329 // test week days computation
330 void DateTimeTestCase::TestTimeWDays()
334 for ( n
= 0; n
< WXSIZEOF(testDates
); n
++ )
336 const Date
& d
= testDates
[n
];
337 wxDateTime
dt(d
.day
, d
.month
, d
.year
, d
.hour
, d
.min
, d
.sec
);
339 wxDateTime::WeekDay wday
= dt
.GetWeekDay();
340 CPPUNIT_ASSERT_EQUAL( d
.wday
, wday
);
343 // test SetToWeekDay()
344 struct WeekDateTestData
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
352 wxString
Format() const
355 switch ( nWeek
< -1 ? -nWeek
: nWeek
)
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;
363 case -1: which
= wxT("last"); break;
368 which
+= wxT(" from end");
371 s
.Printf(wxT("The %s %s of %s in %d"),
373 wxDateTime::GetWeekDayName(wday
).c_str(),
374 wxDateTime::GetMonthName(month
).c_str(),
381 // the array data was generated by the following python program
383 from DateTime import *
384 from whrandom import *
387 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
388 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
390 week = DateTimeDelta(7)
393 year = randint(1900, 2100)
394 month = randint(1, 12)
396 dt = DateTime(year, month, day)
397 wday = dt.day_of_week
399 countFromEnd = choice([-1, 1])
402 while dt.month is month:
403 dt = dt - countFromEnd * week
404 weekNum = weekNum + countFromEnd
406 data = { 'day': rjust(`day`, 2), 'month': monthNames[month - 1], 'year': year, 'weekNum': rjust(`weekNum`, 2), 'wday': wdayNames[wday] }
408 print "{ { %(day)s, wxDateTime::%(month)s, %(year)d }, %(weekNum)d, "\
409 "wxDateTime::%(wday)s, wxDateTime::%(month)s, %(year)d }," % data
412 static const WeekDateTestData weekDatesTestData
[] =
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 }
437 for ( n
= 0; n
< WXSIZEOF(weekDatesTestData
); n
++ )
439 const WeekDateTestData
& wd
= weekDatesTestData
[n
];
441 dt
.SetToWeekDay(wd
.wday
, wd
.nWeek
, wd
.month
, wd
.year
);
443 const Date
& d
= wd
.date
;
444 CPPUNIT_ASSERT( d
.SameDay(dt
.GetTm()) );
448 // test the computation of (ISO) week numbers
449 void DateTimeTestCase::TestTimeWNumber()
451 struct WeekNumberTestData
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
460 // data generated with the following python script:
462 from DateTime import *
463 from whrandom import *
466 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
467 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
469 def GetMonthWeek(dt):
470 weekNumMonth = dt.iso_week[1] - DateTime(dt.year, dt.month, 1).iso_week[1] + 1
472 weekNumMonth = weekNumMonth + 53
475 def GetLastSundayBefore(dt):
476 if dt.iso_week[2] == 7:
479 return dt - DateTimeDelta(dt.iso_week[2])
482 year = randint(1900, 2100)
483 month = randint(1, 12)
485 dt = DateTime(year, month, day)
486 dayNum = dt.day_of_year
487 weekNum = dt.iso_week[1]
488 weekNumMonth = GetMonthWeek(dt)
491 dtSunday = GetLastSundayBefore(dt)
493 while dtSunday >= GetLastSundayBefore(DateTime(dt.year, dt.month, 1)):
494 weekNumMonth2 = weekNumMonth2 + 1
495 dtSunday = dtSunday - DateTimeDelta(7)
497 data = { 'day': rjust(`day`, 2), \
498 'month': monthNames[month - 1], \
500 'weekNum': rjust(`weekNum`, 2), \
501 'weekNumMonth': weekNumMonth, \
502 'weekNumMonth2': weekNumMonth2, \
503 'dayNum': rjust(`dayNum`, 3) }
505 print " { { %(day)s, "\
506 "wxDateTime::%(month)s, "\
509 "%(weekNumMonth)s, "\
510 "%(weekNumMonth2)s, "\
511 "%(dayNum)s }," % data
514 static const WeekNumberTestData weekNumberTestDates
[] =
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 },
542 for ( size_t n
= 0; n
< WXSIZEOF(weekNumberTestDates
); n
++ )
544 const WeekNumberTestData
& wn
= weekNumberTestDates
[n
];
545 const Date
& d
= wn
.date
;
547 wxDateTime dt
= d
.DT();
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();
555 WX_ASSERT_EQUAL_MESSAGE( ("day of year for %s", d
.Format()),
557 WX_ASSERT_EQUAL_MESSAGE( ("week of month (Monday) for %s", d
.Format()),
559 WX_ASSERT_EQUAL_MESSAGE( ("week of month (Sunday) for %s", d
.Format()),
561 WX_ASSERT_EQUAL_MESSAGE( ("week of year for %s", d
.Format()),
565 if ( week
== 1 && d
.month
!= wxDateTime::Jan
)
567 // this means we're in the first week of the next year
572 dt2
= wxDateTime::SetToWeekOfYear(year
, week
, dt
.GetWeekDay());
573 CPPUNIT_ASSERT_EQUAL( dt
, dt2
);
577 // test DST applicability
578 void DateTimeTestCase::TestTimeDST()
580 // taken from http://www.energy.ca.gov/daylightsaving.html
581 static const Date datesDST
[2][2009 - 1990 + 1] =
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 },
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 },
630 for ( size_t n
= 0; n
< WXSIZEOF(datesDST
[0]); n
++ )
632 const int year
= 1990 + n
;
633 wxDateTime dtBegin
= wxDateTime::GetBeginDST(year
, wxDateTime::USA
),
634 dtEnd
= wxDateTime::GetEndDST(year
, wxDateTime::USA
);
636 const Date
& dBegin
= datesDST
[0][n
];
637 const Date
& dEnd
= datesDST
[1][n
];
639 CPPUNIT_ASSERT_EQUAL( dBegin
.DT().FormatDate(), dtBegin
.FormatDate() );
640 CPPUNIT_ASSERT_EQUAL( dEnd
.DT().FormatDate(), dtEnd
.FormatDate() );
644 // test wxDateTime -> text conversion
645 void DateTimeTestCase::TestTimeFormat()
647 // some information may be lost during conversion, so store what kind
648 // of info should we recover after a round trip
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
660 CompareKind compareKind
;
662 } formatTestFormats
[] =
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" },
674 const long timeZonesOffsets
[] =
676 wxDateTime::TimeZone(wxDateTime::Local
).GetOffset(),
678 // Fictitious TimeZone offsets to ensure time zone formating and
679 // interpretation works
684 static const Date formatTestDates
[] =
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
},
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
},
697 // Need to add support for BCE dates.
698 { 01, wxDateTime::Jan
, -52, 03, 16, 47, 0.0, wxDateTime::Inv_WeekDay
},
702 for ( unsigned idxtz
= 0; idxtz
< WXSIZEOF(timeZonesOffsets
); ++idxtz
)
704 wxDateTime::TimeZone
tz(timeZonesOffsets
[idxtz
]);
705 const bool isLocalTz
= tz
.GetOffset() == -wxGetTimeZone();
707 for ( size_t d
= 0; d
< WXSIZEOF(formatTestDates
); d
++ )
709 wxDateTime dt
= formatTestDates
[d
].DT();
710 for ( unsigned n
= 0; n
< WXSIZEOF(formatTestFormats
); n
++ )
712 const char *fmt
= formatTestFormats
[n
].format
;
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...
717 wxDateTime::GetAmPmStrings(&am
, &pm
);
718 if (am
.empty() && pm
.empty() && wxStrstr(fmt
, "%p") != NULL
)
721 // what can we recover?
722 CompareKind kind
= formatTestFormats
[n
].compareKind
;
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.
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 )
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
)
743 // do convert date to string
744 wxString s
= dt
.Format(fmt
, tz
);
748 const char *result
= dt2
.ParseFormat(s
, fmt
);
751 // conversion failed - should it have?
753 ("Test #%u failed: failed to parse \"%s\"", n
, s
),
757 else // conversion succeeded
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') )
767 ("Test #%u failed: \"%s\" was left unparsed in \"%s\"",
772 // Without "%z" we can't recover the time zone used in the
773 // call to Format() so we need to call MakeFromTimezone()
775 if ( !strstr(fmt
, "%z") && !isLocalTz
)
776 dt2
.MakeFromTimezone(tz
);
781 if ( dt2
.GetCentury() != dt
.GetCentury() )
783 CPPUNIT_ASSERT_EQUAL(dt
.GetYear() % 100,
784 dt2
.GetYear() % 100);
786 dt2
.SetYear(dt
.GetYear());
788 // fall through and compare everything
791 CPPUNIT_ASSERT_EQUAL( dt
, dt2
);
795 CPPUNIT_ASSERT( dt
.IsSameDate(dt2
) );
799 CPPUNIT_ASSERT( dt
.IsSameTime(dt2
) );
803 wxFAIL_MSG( wxT("unexpected") );
814 // special case which was known to fail
815 CPPUNIT_ASSERT( dt
.ParseFormat("02/06/1856", "%x") );
816 CPPUNIT_ASSERT_EQUAL( 1856, dt
.GetYear() );
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() );
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() );
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() );
832 // test some degenerate cases
833 CPPUNIT_ASSERT( !dt
.ParseFormat("", "%z") );
834 CPPUNIT_ASSERT( !dt
.ParseFormat("", "%%") );
836 // test compilation of some calls which should compile (and not result in
837 // ambiguity because of char*<->wxCStrData<->wxString conversions)
839 CPPUNIT_ASSERT( !dt
.ParseFormat("foo") );
840 CPPUNIT_ASSERT( !dt
.ParseFormat(wxT("foo")) );
841 CPPUNIT_ASSERT( !dt
.ParseFormat(s
) );
842 dt
.ParseFormat(s
.c_str()); // Simply test compilation of this one.
844 CPPUNIT_ASSERT( !dt
.ParseFormat("foo", "%c") );
845 CPPUNIT_ASSERT( !dt
.ParseFormat(wxT("foo"), "%c") );
846 CPPUNIT_ASSERT( !dt
.ParseFormat(s
, "%c") );
847 dt
.ParseFormat(s
.c_str(), "%c");
849 CPPUNIT_ASSERT( !dt
.ParseFormat("foo", wxT("%c")) );
850 CPPUNIT_ASSERT( !dt
.ParseFormat(wxT("foo"), wxT("%c")) );
851 CPPUNIT_ASSERT( !dt
.ParseFormat(s
, "%c") );
852 dt
.ParseFormat(s
.c_str(), wxT("%c"));
855 CPPUNIT_ASSERT( !dt
.ParseFormat("foo", spec
) );
856 CPPUNIT_ASSERT( !dt
.ParseFormat(wxT("foo"), spec
) );
857 CPPUNIT_ASSERT( !dt
.ParseFormat(s
, spec
) );
858 dt
.ParseFormat(s
.c_str(), spec
);
861 void DateTimeTestCase::TestTimeSpanFormat()
863 static const struct TimeSpanFormatTestData
865 long h
, min
, sec
, msec
;
870 { 12, 34, 56, 789, "%H:%M:%S.%l", "12:34:56.789" },
871 { 1, 2, 3, 0, "%H:%M:%S", "01:02:03" },
872 { 1, 2, 3, 0, "%S", "3723" },
873 { -1, -2, -3, 0, "%S", "-3723" },
874 { -1, -2, -3, 0, "%H:%M:%S", "-01:02:03" },
875 { 26, 0, 0, 0, "%H", "26" },
876 { 26, 0, 0, 0, "%D, %H", "1, 02" },
877 { -26, 0, 0, 0, "%H", "-26" },
878 { -26, 0, 0, 0, "%D, %H", "-1, 02" },
879 { 219, 0, 0, 0, "%H", "219" },
880 { 219, 0, 0, 0, "%D, %H", "9, 03" },
881 { 219, 0, 0, 0, "%E, %D, %H", "1, 2, 03" },
882 { 0, -1, 0, 0, "%H:%M:%S", "-00:01:00" },
883 { 0, 0, -1, 0, "%H:%M:%S", "-00:00:01" },
886 for ( size_t n
= 0; n
< WXSIZEOF(testSpans
); n
++ )
888 const TimeSpanFormatTestData
& td
= testSpans
[n
];
889 wxTimeSpan
ts(td
.h
, td
.min
, td
.sec
, td
.msec
);
890 CPPUNIT_ASSERT_EQUAL( td
.result
, ts
.Format(td
.fmt
) );
894 void DateTimeTestCase::TestTimeTicks()
896 static const wxDateTime::TimeZone
TZ_LOCAL(wxDateTime::Local
);
897 static const wxDateTime::TimeZone
TZ_TEST(wxDateTime::NZST
);
899 // this offset is needed to make the test work in any time zone when we
900 // only have expected test results in UTC in testDates
901 static const long tzOffset
= TZ_LOCAL
.GetOffset() - TZ_TEST
.GetOffset();
903 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
905 const Date
& d
= testDates
[n
];
906 if ( d
.gmticks
== -1 )
909 wxDateTime dt
= d
.DT().MakeTimezone(TZ_TEST
, true /* no DST */);
911 // GetValue() returns internal UTC-based representation, we need to
912 // convert it to local TZ before comparing
913 time_t ticks
= (dt
.GetValue() / 1000).ToLong() + TZ_LOCAL
.GetOffset();
916 CPPUNIT_ASSERT_EQUAL( d
.gmticks
, ticks
+ tzOffset
);
918 dt
= d
.DT().FromTimezone(wxDateTime::UTC
);
919 ticks
= (dt
.GetValue() / 1000).ToLong();
920 CPPUNIT_ASSERT_EQUAL( d
.gmticks
, ticks
);
924 // test parsing dates in RFC822 format
925 void DateTimeTestCase::TestParceRFC822()
927 static const struct ParseTestData
930 Date date
; // NB: this should be in UTC
935 "Sat, 18 Dec 1999 00:46:40 +0100",
936 { 17, wxDateTime::Dec
, 1999, 23, 46, 40 },
940 "Wed, 1 Dec 1999 05:17:20 +0300",
941 { 1, wxDateTime::Dec
, 1999, 2, 17, 20 },
945 "Sun, 28 Aug 2005 03:31:30 +0200",
946 { 28, wxDateTime::Aug
, 2005, 1, 31, 30 },
951 "Sat, 18 Dec 1999 10:48:30 -0500",
952 { 18, wxDateTime::Dec
, 1999, 15, 48, 30 },
956 // seconds are optional according to the RFC
958 "Sun, 01 Jun 2008 16:30 +0200",
959 { 1, wxDateTime::Jun
, 2008, 14, 30, 00 },
963 // try some bogus ones too
965 "Sun, 01 Jun 2008 16:30: +0200",
971 for ( unsigned n
= 0; n
< WXSIZEOF(parseTestDates
); n
++ )
973 const char * const datestr
= parseTestDates
[n
].rfc822
;
976 if ( dt
.ParseRfc822Date(datestr
) )
979 ("Erroneously parsed \"%s\"", datestr
),
980 parseTestDates
[n
].good
983 wxDateTime dtReal
= parseTestDates
[n
].date
.DT().FromUTC();
984 CPPUNIT_ASSERT_EQUAL( dtReal
, dt
);
986 else // failed to parse
989 ("Failed to parse \"%s\"", datestr
),
990 !parseTestDates
[n
].good
996 // test parsing dates in free format
997 void DateTimeTestCase::TestDateParse()
999 static const struct ParseTestData
1002 Date date
; // NB: this should be in UTC
1004 } parseTestDates
[] =
1006 { "21 Mar 2006", { 21, wxDateTime::Mar
, 2006 }, true },
1007 { "29 Feb 1976", { 29, wxDateTime::Feb
, 1976 }, true },
1008 { "Feb 29 1976", { 29, wxDateTime::Feb
, 1976 }, true },
1009 { "31/03/06", { 31, wxDateTime::Mar
, 6 }, true },
1010 { "31/03/2006", { 31, wxDateTime::Mar
, 2006 }, true },
1012 // some invalid ones too
1021 CPPUNIT_ASSERT( dt
.ParseDate(wxT("today")) );
1022 CPPUNIT_ASSERT_EQUAL( wxDateTime::Today(), dt
);
1024 for ( size_t n
= 0; n
< WXSIZEOF(parseTestDates
); n
++ )
1026 const wxString datestr
= TranslateDate(parseTestDates
[n
].str
);
1028 const char * const end
= dt
.ParseDate(datestr
);
1032 ("Erroneously parsed \"%s\"", datestr
),
1033 parseTestDates
[n
].good
1036 CPPUNIT_ASSERT_EQUAL( parseTestDates
[n
].date
.DT(), dt
);
1038 else // failed to parse
1041 ("Failed to parse \"%s\"", datestr
),
1042 !parseTestDates
[n
].good
1047 // Check that incomplete parse works correctly.
1048 const char* p
= dt
.ParseFormat("2012-03-23 12:34:56", "%Y-%m-%d");
1049 CPPUNIT_ASSERT_EQUAL( " 12:34:56", wxString(p
) );
1052 void DateTimeTestCase::TestDateParseISO()
1057 Date date
; // NB: this should be in UTC
1059 } parseTestDates
[] =
1061 { "2006-03-21", { 21, wxDateTime::Mar
, 2006 }, true },
1062 { "1976-02-29", { 29, wxDateTime::Feb
, 1976 }, true },
1063 { "0006-03-31", { 31, wxDateTime::Mar
, 6 }, true },
1065 // some invalid ones too
1075 wxDateTime::wxDateTime_t hour
, min
, sec
;
1077 } parseTestTimes
[] =
1079 { "13:42:17", 13, 42, 17, true },
1080 { "02:17:01", 2, 17, 1, true },
1082 // some invalid ones too
1089 for ( size_t n
= 0; n
< WXSIZEOF(parseTestDates
); n
++ )
1092 if ( dt
.ParseISODate(parseTestDates
[n
].str
) )
1094 CPPUNIT_ASSERT( parseTestDates
[n
].good
);
1096 CPPUNIT_ASSERT_EQUAL( parseTestDates
[n
].date
.DT(), dt
);
1098 for ( size_t m
= 0; m
< WXSIZEOF(parseTestTimes
); m
++ )
1100 wxString dtCombined
;
1101 dtCombined
<< parseTestDates
[n
].str
1103 << parseTestTimes
[m
].str
;
1105 if ( dt
.ParseISOCombined(dtCombined
) )
1107 CPPUNIT_ASSERT( parseTestTimes
[m
].good
);
1109 CPPUNIT_ASSERT_EQUAL( parseTestTimes
[m
].hour
, dt
.GetHour()) ;
1110 CPPUNIT_ASSERT_EQUAL( parseTestTimes
[m
].min
, dt
.GetMinute()) ;
1111 CPPUNIT_ASSERT_EQUAL( parseTestTimes
[m
].sec
, dt
.GetSecond()) ;
1113 else // failed to parse combined date/time
1115 CPPUNIT_ASSERT( !parseTestTimes
[m
].good
);
1119 else // failed to parse
1121 CPPUNIT_ASSERT( !parseTestDates
[n
].good
);
1126 void DateTimeTestCase::TestDateTimeParse()
1128 static const struct ParseTestData
1131 Date date
; // NB: this should be in UTC
1133 } parseTestDates
[] =
1136 "Thu 22 Nov 2007 07:40:00 PM",
1137 { 22, wxDateTime::Nov
, 2007, 19, 40, 0 },
1143 { 4, wxDateTime::Jan
, 2010, 14, 30, 0 },
1149 { 1, wxDateTime::Jan
, 9999, 0, 0, 0},
1154 "2012-01-01 10:12:05 +0100",
1155 { 1, wxDateTime::Jan
, 2012, 10, 12, 5, -1 },
1156 false // ParseDateTime does know yet +0100
1160 // the test strings here use "PM" which is not available in all locales so
1161 // we need to use "C" locale for them
1165 for ( size_t n
= 0; n
< WXSIZEOF(parseTestDates
); n
++ )
1167 const wxString datestr
= TranslateDate(parseTestDates
[n
].str
);
1169 const char * const end
= dt
.ParseDateTime(datestr
);
1173 ("Erroneously parsed \"%s\"", datestr
),
1174 parseTestDates
[n
].good
1177 CPPUNIT_ASSERT_EQUAL( parseTestDates
[n
].date
.DT(), dt
);
1179 else // failed to parse
1182 ("Failed to parse \"%s\"", datestr
),
1183 !parseTestDates
[n
].good
1186 CPPUNIT_ASSERT( !parseTestDates
[n
].good
);
1191 void DateTimeTestCase::TestTimeArithmetics()
1193 static const wxDateSpan testArithmData
[] =
1197 wxDateSpan::Month(),
1201 // the test will *not* work with arbitrary date!
1202 wxDateTime
dt(2, wxDateTime::Dec
, 1999),
1206 for ( size_t n
= 0; n
< WXSIZEOF(testArithmData
); n
++ )
1208 const wxDateSpan
& span
= testArithmData
[n
];
1212 CPPUNIT_ASSERT_EQUAL( dt
, dt1
- span
);
1213 CPPUNIT_ASSERT_EQUAL( dt
, dt2
+ span
);
1214 CPPUNIT_ASSERT_EQUAL( dt1
, dt2
+ 2*span
);
1218 void DateTimeTestCase::TestDSTBug()
1220 /////////////////////////
1222 wxDateTime dt
= wxDateTime::GetEndDST(2004, wxDateTime::France
);
1223 CPPUNIT_ASSERT_EQUAL(31, (int)dt
.GetDay());
1224 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct
, dt
.GetMonth());
1225 CPPUNIT_ASSERT_EQUAL(2004, (int)dt
.GetYear());
1226 CPPUNIT_ASSERT_EQUAL(1, (int)dt
.GetHour());
1227 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMinute());
1228 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetSecond());
1229 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMillisecond());
1231 /////////////////////////
1234 CPPUNIT_ASSERT_EQUAL(5, (int)dt
.GetHour());
1236 CPPUNIT_ASSERT_EQUAL(31, (int)dt
.GetDay());
1237 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct
, dt
.GetMonth());
1238 CPPUNIT_ASSERT_EQUAL(2004, (int)dt
.GetYear());
1239 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetHour());
1240 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMinute());
1241 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetSecond());
1242 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMillisecond());
1245 CPPUNIT_ASSERT_EQUAL(1, (int)dt
.GetHour());
1247 /////////////////////////
1249 #ifdef CHANGE_SYSTEM_DATE
1251 DateChanger
change(2004, 10, 31, 5, 0, 0);
1252 dt
= wxDateTime::Today();
1255 CPPUNIT_ASSERT_EQUAL(31, (int)dt
.GetDay());
1256 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct
, dt
.GetMonth());
1257 CPPUNIT_ASSERT_EQUAL(2004, (int)dt
.GetYear());
1258 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetHour());
1259 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMinute());
1260 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetSecond());
1261 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMillisecond());
1263 /////////////////////////
1264 // Test Set(hour, minute, second, milli)
1267 DateChanger
change(2004, 10, 31, 5, 0, 0);
1268 dt
.Set(1, 30, 0, 0);
1269 dt2
.Set(5, 30, 0, 0);
1272 CPPUNIT_ASSERT_EQUAL(31, (int)dt
.GetDay());
1273 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct
, dt
.GetMonth());
1274 CPPUNIT_ASSERT_EQUAL(2004, (int)dt
.GetYear());
1275 CPPUNIT_ASSERT_EQUAL(1, (int)dt
.GetHour());
1276 CPPUNIT_ASSERT_EQUAL(30, (int)dt
.GetMinute());
1277 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetSecond());
1278 CPPUNIT_ASSERT_EQUAL(0, (int)dt
.GetMillisecond());
1280 CPPUNIT_ASSERT_EQUAL(31, (int)dt2
.GetDay());
1281 CPPUNIT_ASSERT_EQUAL(wxDateTime::Oct
, dt2
.GetMonth());
1282 CPPUNIT_ASSERT_EQUAL(2004, (int)dt2
.GetYear());
1283 CPPUNIT_ASSERT_EQUAL(5, (int)dt2
.GetHour());
1284 CPPUNIT_ASSERT_EQUAL(30, (int)dt2
.GetMinute());
1285 CPPUNIT_ASSERT_EQUAL(0, (int)dt2
.GetSecond());
1286 CPPUNIT_ASSERT_EQUAL(0, (int)dt2
.GetMillisecond());
1287 #endif // CHANGE_SYSTEM_DATE
1290 void DateTimeTestCase::TestDateOnly()
1292 wxDateTime
dt(19, wxDateTime::Jan
, 2007, 15, 01, 00);
1294 static const wxDateTime::wxDateTime_t DATE_ZERO
= 0;
1295 CPPUNIT_ASSERT_EQUAL( DATE_ZERO
, dt
.GetDateOnly().GetHour() );
1296 CPPUNIT_ASSERT_EQUAL( DATE_ZERO
, dt
.GetDateOnly().GetMinute() );
1297 CPPUNIT_ASSERT_EQUAL( DATE_ZERO
, dt
.GetDateOnly().GetSecond() );
1298 CPPUNIT_ASSERT_EQUAL( DATE_ZERO
, dt
.GetDateOnly().GetMillisecond() );
1301 CPPUNIT_ASSERT_EQUAL( wxDateTime(19, wxDateTime::Jan
, 2007), dt
);
1303 CPPUNIT_ASSERT_EQUAL( wxDateTime::Today(), wxDateTime::Now().GetDateOnly() );
1306 #endif // wxUSE_DATETIME