88SCENARIO(
"adding time to a timespec",
"[timeutils]" )
92 WHEN(
"adding less than 1e9 nanoseconds" )
99 REQUIRE( ts.tv_sec == 1 );
100 REQUIRE( ts.tv_nsec == 10 );
103 REQUIRE( ts.tv_sec == 1 );
104 REQUIRE( ts.tv_nsec == 110 );
107 REQUIRE( ts.tv_sec == 1 );
108 REQUIRE( ts.tv_nsec == 1110 );
111 REQUIRE( ts.tv_sec == 1 );
112 REQUIRE( ts.tv_nsec == 11110 );
115 REQUIRE( ts.tv_sec == 1 );
116 REQUIRE( ts.tv_nsec == 111110 );
119 REQUIRE( ts.tv_sec == 1 );
120 REQUIRE( ts.tv_nsec == 1111110 );
123 REQUIRE( ts.tv_sec == 1 );
124 REQUIRE( ts.tv_nsec == 11111110 );
127 REQUIRE( ts.tv_sec == 1 );
128 REQUIRE( ts.tv_nsec == 111111110 );
131 WHEN(
"adding more than 1e9 nanoseconds but less than 2e9" )
138 REQUIRE( ts.tv_sec == 2 );
139 REQUIRE( ts.tv_nsec == 0 );
142 REQUIRE( ts.tv_sec == 3 );
143 REQUIRE( ts.tv_nsec == 10 );
146 REQUIRE( ts.tv_sec == 4 );
147 REQUIRE( ts.tv_nsec == 110 );
150 REQUIRE( ts.tv_sec == 5 );
151 REQUIRE( ts.tv_nsec == 1110 );
154 REQUIRE( ts.tv_sec == 6 );
155 REQUIRE( ts.tv_nsec == 11110 );
158 REQUIRE( ts.tv_sec == 7 );
159 REQUIRE( ts.tv_nsec == 111110 );
162 REQUIRE( ts.tv_sec == 8 );
163 REQUIRE( ts.tv_nsec == 1111110 );
166 REQUIRE( ts.tv_sec == 9 );
167 REQUIRE( ts.tv_nsec == 11111110 );
170 REQUIRE( ts.tv_sec == 10 );
171 REQUIRE( ts.tv_nsec == 111111110 );
174 WHEN(
"adding more than 2e9" )
181 REQUIRE( ts.tv_sec == 3 );
182 REQUIRE( ts.tv_nsec == 10 );
254SCENARIO(
"calculating MJD from a Gregorian date",
"[timeutils]" )
256 GIVEN(
"a valid Gregorian date" )
258 WHEN(
"integer seconds" )
261 REQUIRE( mjd == 59214.0 );
265 GIVEN(
"a valid Gregorian date" )
267 WHEN(
"floating seconds" )
270 REQUIRE( fabs( mjd - 59214.00011846875 ) < 1e-14 );
279SCENARIO(
"parsing an ISO 8601 time string",
"[timeutils]" )
281 GIVEN(
"a valid ISO 8601 time string" )
283 WHEN(
"integer seconds" )
285 int yr, mon, day, hr, min;
291 REQUIRE( yr == 2020 );
292 REQUIRE( mon == 12 );
293 REQUIRE( day == 31 );
299 WHEN(
"fractional seconds" )
301 int yr, mon, day, hr, min;
307 REQUIRE( yr == 2020 );
308 REQUIRE( mon == 12 );
309 REQUIRE( day == 31 );
312 REQUIRE( fabs( sec - 10.2357 ) < 1e-14 );
316 GIVEN(
"an invalid ISO 8601 time string" )
318 WHEN(
"string too short" )
320 int yr, mon, day, hr, min;
int ISO8601dateBreakdown(int &yr, int &mon, int &day, int &hr, int &min, double &sec, const std::string &fdate)
Parse an ISO8601 date of the form "YYYY-MM-DDTHH:MM:SS.S" into the individual components.
double Cal2mjd(int yr, int mon, int day, int hr, int min, double sec)
Converts a Gregorian calendar date into modified Julian date (MJD).