VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstTimeSpec.cpp@ 4953

Last change on this file since 4953 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.8 KB
Line 
1/* $Id: tstTimeSpec.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - RTTimeSpec and PRTTIME tests.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#include <iprt/time.h>
22#include <iprt/stream.h>
23#include <iprt/string.h>
24
25
26/**
27 * Format the time into a string using a static buffer.
28 */
29char *ToString(PRTTIME pTime)
30{
31 static char szBuf[128];
32 RTStrPrintf(szBuf, sizeof(szBuf), "%04d-%02d-%02dT%02u-%02u-%02u.%09u [YD%u WD%u F%#x]",
33 pTime->i32Year,
34 pTime->u8Month,
35 pTime->u8MonthDay,
36 pTime->u8Hour,
37 pTime->u8Minute,
38 pTime->u8Second,
39 pTime->u32Nanosecond,
40 pTime->u16YearDay,
41 pTime->u8WeekDay,
42 pTime->fFlags);
43 return szBuf;
44}
45
46#define CHECK_NZ(expr) do { if (!(expr)) { RTPrintf("tstTimeSpec: FAILURE at line %d: %#x\n", __LINE__, #expr); return 1; } } while (0)
47
48#define TEST_NS(ns) do {\
49 CHECK_NZ(RTTimeExplode(&T1, RTTimeSpecSetNano(&Ts1, ns))); \
50 RTPrintf("tstTimeSpec: %RI64 ns - %s\n", ns, ToString(&T1)); \
51 CHECK_NZ(RTTimeImplode(&Ts2, &T1)); \
52 if (!RTTimeSpecIsEqual(&Ts2, &Ts1)) \
53 { \
54 RTPrintf("tstTimeSpec: FAILURE - %RI64 != %RI64\n", RTTimeSpecGetNano(&Ts2), RTTimeSpecGetNano(&Ts1)); \
55 return 1; \
56 } \
57 } while (0)
58
59#define TEST_SEC(sec) do {\
60 CHECK_NZ(RTTimeExplode(&T1, RTTimeSpecSetSeconds(&Ts1, sec))); \
61 RTPrintf("tstTimeSpec: %RI64 sec - %s\n", sec, ToString(&T1)); \
62 CHECK_NZ(RTTimeImplode(&Ts2, &T1)); \
63 if (!RTTimeSpecIsEqual(&Ts2, &Ts1)) \
64 { \
65 RTPrintf("tstTimeSpec: FAILURE - %RI64 != %RI64\n", RTTimeSpecGetNano(&Ts2), RTTimeSpecGetNano(&Ts1)); \
66 return 1; \
67 } \
68 } while (0)
69
70#define CHECK_TIME(pTime, _i32Year, _u8Month, _u8MonthDay, _u8Hour, _u8Minute, _u8Second, _u32Nanosecond, _u16YearDay, _u8WeekDay, _fFlags)\
71 do { \
72 if ( (pTime)->i32Year != (_i32Year) \
73 || (pTime)->u8Month != (_u8Month) \
74 || (pTime)->u8WeekDay != (_u8WeekDay) \
75 || (pTime)->u16YearDay != (_u16YearDay) \
76 || (pTime)->u8MonthDay != (_u8MonthDay) \
77 || (pTime)->u8Hour != (_u8Hour) \
78 || (pTime)->u8Minute != (_u8Minute) \
79 || (pTime)->u8Second != (_u8Second) \
80 || (pTime)->u32Nanosecond != (_u32Nanosecond) \
81 || (pTime)->fFlags != (_fFlags) \
82 ) \
83 { \
84 RTPrintf("tstTimeSpec: FAILURE - %s\n" \
85 " != %04d-%02d-%02dT%02u-%02u-%02u.%09u [YD%u WD%u F%#x]\n", \
86 ToString(pTime), (_i32Year), (_u8Month), (_u8MonthDay), (_u8Hour), (_u8Minute), \
87 (_u8Second), (_u32Nanosecond), (_u16YearDay), (_u8WeekDay), (_fFlags)); \
88 return 1; \
89 } \
90 } while (0)
91
92
93int main()
94{
95 RTTIMESPEC Now;
96 RTTIMESPEC Ts1;
97 RTTIMESPEC Ts2;
98 RTTIME T1;
99 //RTTIME T2;
100
101 /*
102 * Simple test with current time.
103 */
104 CHECK_NZ(RTTimeNow(&Now));
105 CHECK_NZ(RTTimeExplode(&T1, &Now));
106 RTPrintf("tstTimeSpec: %RI64 ns - %s\n", RTTimeSpecGetNano(&Now), ToString(&T1));
107 CHECK_NZ(RTTimeImplode(&Ts1, &T1));
108 if (!RTTimeSpecIsEqual(&Ts1, &Now))
109 {
110 RTPrintf("tstTimeSpec: FAILURE - %RI64 != %RI64\n", RTTimeSpecGetNano(&Ts1), RTTimeSpecGetNano(&Now));
111 return 1;
112 }
113
114 /*
115 * Simple test with current local time.
116 */
117 CHECK_NZ(RTTimeLocalNow(&Now));
118 CHECK_NZ(RTTimeExplode(&T1, &Now));
119 RTPrintf("tstTimeSpec: %RI64 ns - %s\n", RTTimeSpecGetNano(&Now), ToString(&T1));
120 CHECK_NZ(RTTimeImplode(&Ts1, &T1));
121 if (!RTTimeSpecIsEqual(&Ts1, &Now))
122 {
123 RTPrintf("tstTimeSpec: FAILURE - %RI64 != %RI64\n", RTTimeSpecGetNano(&Ts1), RTTimeSpecGetNano(&Now));
124 return 1;
125 }
126
127 /*
128 * Some simple tests with fixed dates (just checking for smoke).
129 */
130 TEST_NS(INT64_C(0));
131 CHECK_TIME(&T1, 1970,01,01, 00,00,00, 0, 1, 3, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_COMMON_YEAR);
132 TEST_NS(INT64_C(86400000000000));
133 CHECK_TIME(&T1, 1970,01,02, 00,00,00, 0, 2, 4, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_COMMON_YEAR);
134
135 TEST_NS(INT64_C(1));
136 CHECK_TIME(&T1, 1970,01,01, 00,00,00, 1, 1, 3, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_COMMON_YEAR);
137 TEST_NS(INT64_C(-1));
138 CHECK_TIME(&T1, 1969,12,31, 23,59,59,999999999, 365, 2, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_COMMON_YEAR);
139
140 /*
141 * Test the limits.
142 */
143 TEST_NS(INT64_MAX);
144 TEST_NS(INT64_MIN);
145 TEST_SEC(1095379198);
146 CHECK_TIME(&T1, 2004, 9,16, 23,59,58, 0, 260, 3, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_LEAP_YEAR);
147 TEST_SEC(1095379199);
148 CHECK_TIME(&T1, 2004, 9,16, 23,59,59, 0, 260, 3, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_LEAP_YEAR);
149 TEST_SEC(1095379200);
150 CHECK_TIME(&T1, 2004, 9,17, 00,00,00, 0, 261, 4, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_LEAP_YEAR);
151 TEST_SEC(1095379201);
152 CHECK_TIME(&T1, 2004, 9,17, 00,00,01, 0, 261, 4, RTTIME_FLAGS_TYPE_UTC | RTTIME_FLAGS_LEAP_YEAR);
153
154
155
156 RTPrintf("tstTimeSpec: SUCCESS\n");
157 return 0;
158}
159
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette