2 * Unit test suite for ntdll time functions
4 * Copyright 2004 Rein Klazes
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "ntdll_test.h"
23 #ifdef __WINE_WINTERNL_H
25 #define TICKSPERSEC 10000000
26 #define TICKSPERMSEC 10000
27 #define SECSPERDAY 86400
29 static VOID (WINAPI
*pRtlTimeToTimeFields
)( const LARGE_INTEGER
*liTime
, PTIME_FIELDS TimeFields
) ;
30 static VOID (WINAPI
*pRtlTimeFieldsToTime
)( PTIME_FIELDS TimeFields
, PLARGE_INTEGER Time
) ;
32 static const int MonthLengths
[2][12] =
34 { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
35 { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
38 static inline int IsLeapYear(int Year
)
40 return Year
% 4 == 0 && (Year
% 100 != 0 || Year
% 400 == 0) ? 1 : 0;
43 /* start time of the tests */
44 TIME_FIELDS tftest
= {1889,12,31,23,59,59,0,0};
46 static void test_pRtlTimeToTimeFields(void)
48 LARGE_INTEGER litime
, liresult
;
51 litime
.QuadPart
= ((ULONGLONG
)0x0144017a << 32) | 0xf0b0a980;
52 while( tftest
.Year
< 2110 ) {
53 /* test at the last second of the month */
54 pRtlTimeToTimeFields( &litime
, &tfresult
);
55 ok( tfresult
.Year
== tftest
.Year
&& tfresult
.Month
== tftest
.Month
&&
56 tfresult
.Day
== tftest
.Day
&& tfresult
.Hour
== tftest
.Hour
&&
57 tfresult
.Minute
== tftest
.Minute
&& tfresult
.Second
== tftest
.Second
,
58 "#%d expected: %d-%d-%d %d:%d:%d got: %d-%d-%d %d:%d:%d\n", ++i
,
59 tftest
.Year
, tftest
.Month
, tftest
.Day
,
60 tftest
.Hour
, tftest
.Minute
,tftest
.Second
,
61 tfresult
.Year
, tfresult
.Month
, tfresult
.Day
,
62 tfresult
.Hour
, tfresult
.Minute
, tfresult
.Second
);
63 /* test the inverse */
64 pRtlTimeFieldsToTime( &tfresult
, &liresult
);
65 ok( liresult
.QuadPart
== litime
.QuadPart
," TimeFieldsToTime failed on %d-%d-%d %d:%d:%d. Error is %d ticks\n",
66 tfresult
.Year
, tfresult
.Month
, tfresult
.Day
,
67 tfresult
.Hour
, tfresult
.Minute
, tfresult
.Second
,
68 (int) (liresult
.QuadPart
- litime
.QuadPart
) );
69 /* one second later is beginning of next month */
70 litime
.QuadPart
+= TICKSPERSEC
;
71 pRtlTimeToTimeFields( &litime
, &tfresult
);
72 ok( tfresult
.Year
== tftest
.Year
+ (tftest
.Month
==12) &&
73 tfresult
.Month
== tftest
.Month
% 12 + 1 &&
74 tfresult
.Day
== 1 && tfresult
.Hour
== 0 &&
75 tfresult
.Minute
== 0 && tfresult
.Second
== 0,
76 "#%d expected: %d-%d-%d %d:%d:%d got: %d-%d-%d %d:%d:%d\n", ++i
,
77 tftest
.Year
+ (tftest
.Month
==12),
78 tftest
.Month
% 12 + 1, 1, 0, 0, 0,
79 tfresult
.Year
, tfresult
.Month
, tfresult
.Day
,
80 tfresult
.Hour
, tfresult
.Minute
, tfresult
.Second
);
81 /* test the inverse */
82 pRtlTimeFieldsToTime( &tfresult
, &liresult
);
83 ok( liresult
.QuadPart
== litime
.QuadPart
," TimeFieldsToTime failed on %d-%d-%d %d:%d:%d. Error is %d ticks\n",
84 tfresult
.Year
, tfresult
.Month
, tfresult
.Day
,
85 tfresult
.Hour
, tfresult
.Minute
, tfresult
.Second
,
86 (int) (liresult
.QuadPart
- litime
.QuadPart
) );
87 /* advance to the end of the month */
88 litime
.QuadPart
-= TICKSPERSEC
;
89 if( tftest
.Month
== 12) {
94 tftest
.Day
= MonthLengths
[IsLeapYear(tftest
.Year
)][tftest
.Month
- 1];
95 litime
.QuadPart
+= (LONGLONG
) tftest
.Day
* TICKSPERSEC
* SECSPERDAY
;
102 #ifdef __WINE_WINTERNL_H
103 HMODULE mod
= GetModuleHandleA("ntdll.dll");
104 pRtlTimeToTimeFields
= (void *)GetProcAddress(mod
,"RtlTimeToTimeFields");
105 pRtlTimeFieldsToTime
= (void *)GetProcAddress(mod
,"RtlTimeFieldsToTime");
106 if (pRtlTimeToTimeFields
&& pRtlTimeFieldsToTime
)
107 test_pRtlTimeToTimeFields();