Test Failed
Pull Request — master (#140)
by
unknown
12:01 queued 02:06
created

TimeValueCalculatorTest::simplePrecisionProvider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 19
rs 9.6333
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace DataValues\Tests;
4
5
use DataValues\TimeValue;
6
use DataValues\TimeValueCalculator;
7
8
/**
9
 * @covers DataValues\TimeValueCalculator
10
 *
11
 * @group DataValue
12
 * @group DataValueExtensions
13
 *
14
 * @license GPL-2.0+
15
 * @author Thiemo Kreuz
16
 */
17
class TimeValueCalculatorTest extends \PHPUnit_Framework_TestCase {
18
19
	/**
20
	 * @var TimeValueCalculator
21
	 */
22
	private $calculator;
23
24
	protected function setUp() {
25
		$this->calculator = new TimeValueCalculator();
26
	}
27
28
	/**
29
	 * @param string $time an ISO 8601 date and time
30
	 * @param int $timezone offset from UTC in minutes
31
	 *
32
	 * @return TimeValue
33
	 */
34
	private function getTimeValueMock( $time, $timezone = 0 ) {
35
		$timeValue = $this->getMockBuilder( TimeValue::class )
36
			->disableOriginalConstructor()
37
			->getMock();
38
39
		$timeValue->expects( $this->any() )
40
			->method( 'getTime' )
41
			->will( $this->returnValue( $time ) );
42
		$timeValue->expects( $this->any() )
43
			->method( 'getTimezone' )
44
			->will( $this->returnValue( $timezone ) );
45
		$timeValue->expects( $this->any() )
46
			->method( 'getPrecision' )
47
			->will( $this->returnValue( TimeValue::PRECISION_DAY ) );
48
		$timeValue->expects( $this->any() )
49
			->method( 'getCalendarModel' )
50
			->will( $this->returnValue( 'Stardate' ) );
51
52
		return $timeValue;
53
	}
54
55
	public function timestampProvider() {
56
		return array(
57
			// Make sure it's identical to the PHP/Unix time stamps in current years
58
			array( '+2004-02-29T00:00:00Z', strtotime( '2004-02-29T00:00:00+00:00' ) ),
59
			array( '+2038-00-00T00:00:00Z', strtotime( '2038-01-01T00:00:00+00:00' ) ),
60
61
			// Time zones
62
			array( '+2000-01-01T12:59:59', strtotime( '2000-01-01T12:59:59-02:00' ), -120 ),
63
			array( '+2000-01-01T12:59:59', strtotime( '2000-01-01T12:59:59+04:45' ), 285 ),
64
65
			array( '+0401-00-00T00:00:00Z', -49512816000 ),
66
			array( '+1902-00-00T00:00:00Z', -2145916800 ),
67
			array( '+1939-00-00T00:00:00Z', -978307200 ),
68
			array( '+1969-12-31T23:59:00Z', -60 ),
69
			array( '+1969-12-31T23:59:59Z', -1 ),
70
			array( '+1970-01-01T00:00:00Z', 0 ),
71
			array( '+1970-01-01T00:00:01Z', 1 ),
72
			array( '+1970-01-01T00:01:00Z', 60 ),
73
			array( '+1972-02-29T00:00:00Z', 68169600 ),
74
			array( '+1996-02-29T00:00:00Z', 825552000 ),
75
			array( '+1999-12-31T23:59:59Z', 946684799 ),
76
			array( '+2000-01-01T00:00:00Z', 946684800 ),
77
			array( '+2000-02-01T00:00:00Z', 949363200 ),
78
			array( '+2000-02-29T00:00:00Z', 951782400 ),
79
			array( '+2001-00-00T00:00:00Z', 978307200 ),
80
			array( '+2001-01-01T00:00:00Z', 978307200 ),
81
			array( '+2014-04-30T12:35:55Z', 1398861355 ),
82
			array( '+2401-00-00T00:00:00Z', 13601088000 ),
83
84
			// Make sure there is only 1 second between these two
85
			array( '-0001-12-31T23:59:59Z', -62135596801 ),
86
			array( '+0001-00-00T00:00:00Z', -62135596800 ),
87
88
			// No special calculation for leap seconds, just make sure they pass
89
			array( '+1970-10-11T12:13:61Z', 24495241 ),
90
			array( '+1970-10-11T12:14:01Z', 24495241 ),
91
92
			// Year 0 does not exist, but we do not complain, assume -1
93
			array( '-0000-12-31T23:59:59Z', -62135596801 ),
94
			array( '+0000-00-00T00:00:00Z', floor( ( -1 - 1969 ) * 365.2425 ) * 86400 ),
95
96
			// Since there is no year 0, negative leap years are -1, -5 and so on
97
			array( '-8001-00-00T00:00:00Z', floor( ( -8001 - 1969 ) * 365.2425 ) * 86400 ),
98
			array( '-0005-00-00T00:00:00Z', floor( ( -5 - 1969 ) * 365.2425 ) * 86400 ),
99
			array( '+0004-00-00T00:00:00Z', floor( ( 4 - 1970 ) * 365.2425 ) * 86400 ),
100
			array( '+8000-00-00T00:00:00Z', floor( ( 8000 - 1970 ) * 365.2425 ) * 86400 ),
101
102
			// PHP_INT_MIN is -2147483648
103
			array( '-2147484001-00-00T00:00:00Z', floor( ( -2147484001 - 1969 ) * 365.2425 ) * 86400 ),
104
			// PHP_INT_MAX is +2147483647
105
			array( '+2147484000-00-00T00:00:00Z', floor( ( 2147484000 - 1970 ) * 365.2425 ) * 86400 ),
106
		);
107
	}
108
109
	/**
110
	 * @dataProvider timestampProvider
111
	 */
112
	public function testGetTimestamp( $time, $expectedTimestamp = 0.0, $timezone = 0 ) {
113
		$timeValue = $this->getTimeValueMock( $time, $timezone );
114
		$timestamp = $this->calculator->getTimestamp( $timeValue );
115
116
		$this->assertEquals( $expectedTimestamp, $timestamp );
117
	}
118
119
	public function yearProvider() {
120
		return array(
121
			// Every 4 years
122
			array( 1895, 459 ),
123
			array( 1896, 460, true ),
124
			array( 1897, 460 ),
125
126
			// Not every 100 years but every 400 years
127
			array( 1900, 460 ),
128
			array( 2000, 485, true ),
129
			array( 2100, 509 ),
130
131
			// Extremes
132
			array( 1, 0 ),
133
			array( 9999, 2424 ),
134
			array( 2147483647, 520764784 ),
135
136
			// There is no year zero, assume -1
137
			array( -1, 0, true ),
138
			array( 0, 0, true ),
139
140
			// Off by 1 for negative years because zero is skipped
141
			array( -6, -2 ),
142
			array( -5, -1, true ),
143
			array( -4, -1 ),
144
			array( -3, -1 ),
145
			array( -2, -1 ),
146
			array( -1, 0, true ),
147
			array( 1, 0 ),
148
			array( 2, 0 ),
149
			array( 3, 0 ),
150
			array( 4, 1, true ),
151
			array( 5, 1 ),
152
153
			// Because we can
154
			array( -6.9, -2 ),
155
			array( -6.1, -2 ),
156
			array( -5.501, -1, true ),
157
			array( -5.499, -1, true ),
158
			array( -4.6, -1 ),
159
			array( -4.4, -1 ),
160
			array( 1995.01, 483 ),
161
			array( 1995.09, 483 ),
162
			array( 1996.001, 484, true ),
163
			array( 1996.009, 484, true ),
164
			array( 1997.1, 484 ),
165
			array( 1997.9, 484 ),
166
		);
167
	}
168
169
	/**
170
	 * @dataProvider yearProvider
171
	 */
172
	public function testIsLeapYear( $year, $numberOfLeapYears, $expected = false ) {
0 ignored issues
show
Unused Code introduced by
The parameter $numberOfLeapYears is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
173
		$isLeapYear = $this->calculator->isLeapYear( $year );
174
175
		$this->assertEquals( $expected, $isLeapYear );
176
	}
177
178
	/**
179
	 * @dataProvider yearProvider
180
	 */
181
	public function testGetNumberOfLeapYears( $year, $expected, $isLeapYear = false ) {
0 ignored issues
show
Unused Code introduced by
The parameter $isLeapYear is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
182
		$numberOfLeapYears = $this->calculator->getNumberOfLeapYears( $year );
183
184
		$this->assertEquals( $expected, $numberOfLeapYears );
185
	}
186
187
	public function precisionProvider() {
188
		$secondsPerDay = 60 * 60 * 24;
189
		$daysPerGregorianYear = 365 + 1 / 4 - 1 / 100 + 1 / 400;
190
191
		return array(
192
			array( TimeValue::PRECISION_SECOND, 1 ),
193
			array( TimeValue::PRECISION_MINUTE, 60 ),
194
			array( TimeValue::PRECISION_HOUR, 60 * 60 ),
195
			array( TimeValue::PRECISION_DAY, $secondsPerDay ),
196
			array( TimeValue::PRECISION_MONTH, $secondsPerDay * $daysPerGregorianYear / 12 ),
197
			array( TimeValue::PRECISION_YEAR, $secondsPerDay * $daysPerGregorianYear ),
198
			array( TimeValue::PRECISION_YEAR10, $secondsPerDay * $daysPerGregorianYear * 1e1 ),
199
			array( TimeValue::PRECISION_YEAR1G, $secondsPerDay * $daysPerGregorianYear * 1e9 ),
200
		);
201
	}
202
203
	/**
204
	 * @dataProvider precisionProvider
205
	 */
206
	public function testGetSecondsForPrecision( $precision, $expected ) {
207
		$seconds = $this->calculator->getSecondsForPrecision( $precision );
208
209
		$this->assertEquals( $expected, $seconds );
210
	}
211
212
	/**
213
	 * @return array
214
	 */
215
	private function timestampWithoutSignProvider() {
216
		return [
217
			'1054-02-11' . 'T' . '14:00:02' . 'Z',
218
			'16-11-11' . 'T' . '06:08:04' . 'Z',
219
			'2012-02-29' . 'T' . '23:59:59' . 'Z',
220
			'2012-03-01' . 'T' . '00:00:00' . 'Z',
221
			'2013-02-28' . 'T' . '23:59:59' . 'Z',
222
			'2013-03-01' . 'T' . '00:07:00' . 'Z',
223
			'9999999-12-31' . 'T' . '23:59:59' . 'Z',
224
			'0001-01-01' . 'T' . '00:00:00' . 'Z',
225
		];
226
	}
227
228
	/**
229
	 * @return array
230
	 */
231
	private function simplePrecisionProvider() {
232
		return [
233
			TimeValue::PRECISION_SECOND,
234
			TimeValue::PRECISION_MINUTE,
235
			TimeValue::PRECISION_HOUR,
236
			TimeValue::PRECISION_DAY,
237
			TimeValue::PRECISION_MONTH,
238
			TimeValue::PRECISION_YEAR,
239
			TimeValue::PRECISION_YEAR10,
240
			TimeValue::PRECISION_YEAR100,
241
			TimeValue::PRECISION_YEAR1K,
242
			TimeValue::PRECISION_YEAR10K,
243
			TimeValue::PRECISION_YEAR100K,
244
			TimeValue::PRECISION_YEAR1M,
245
			TimeValue::PRECISION_YEAR10M,
246
			TimeValue::PRECISION_YEAR100M,
247
			TimeValue::PRECISION_YEAR1G
248
		];
249
	}
250
251
	public function testGetLowerTimestamp() {
252
		$timestamps = $this->timestampWithoutSignProvider();
253
		$precisions = $this->simplePrecisionProvider();
254
		foreach ( $timestamps as &$timestamp ) {
255
			foreach ( $precisions as &$precision ) {
256
				$this->auxTestGetLowerTimestamp( '+' . $timestamp );
0 ignored issues
show
Bug introduced by
The call to auxTestGetLowerTimestamp() misses a required argument $precision.

This check looks for function calls that miss required arguments.

Loading history...
257
				$this->auxTestGetLowerTimestamp( '-' . $timestamp );
0 ignored issues
show
Bug introduced by
The call to auxTestGetLowerTimestamp() misses a required argument $precision.

This check looks for function calls that miss required arguments.

Loading history...
258
			}
259
		}
260
		$timeValue = new TimeValue(
261
			'+' . '2013-03-14' . 'T' . '12:51:02' . 'Z',
262
			0, 0, 0,
263
			TimeValue::PRECISION_MONTH,
264
			TimeValue::CALENDAR_GREGORIAN
265
		);
266
		$timeValueCalculator = new TimeValueCalculator();
267
		$timestampValue = $timeValueCalculator->getLowerTimestamp( $timeValue );
268
		$this->assertEquals( 1362096000, $timestampValue );
269
	}
270
271
	public function testGetHigherTimestamp() {
272
		$timestamps = $this->timestampWithoutSignProvider();
273
		$precisions = $this->simplePrecisionProvider();
274
		foreach ( $timestamps as &$timestamp ) {
275
			foreach ( $precisions as &$precision ) {
276
				$this->auxTestGetHigherTimestamp( '+' . $timestamp, $precision );
277
				$this->auxTestGetHigherTimestamp( '-' . $timestamp, $precision );
278
			}
279
		}
280
		$timeValue = new TimeValue(
281
			'+' . '2013-02-14' . 'T' . '12:51:02' . 'Z',
282
			0, 0, 0,
283
			TimeValue::PRECISION_MONTH,
284
			TimeValue::CALENDAR_GREGORIAN
285
		);
286
		$timeValueCalculator = new TimeValueCalculator();
287
		$timestampValue = $timeValueCalculator->getHigherTimestamp( $timeValue );
288
		$this->assertEquals( 1362095999, $timestampValue );
289
	}
290
291
	/**
292
	 * @param string $timestamp
293
	 * @param int $precision
294
	 */
295
	private function auxTestGetLowerTimestamp( $timestamp, $precision ) {
296
		$timeValueCalculator = new TimeValueCalculator();
297
		$timeValue = new TimeValue(
298
			$timestamp,
299
			0, 0, 0,
300
			$precision,
301
			TimeValue::CALENDAR_GREGORIAN
302
		);
303
		$unixTimestampAsIs = $timeValueCalculator->getTimestamp( $timeValue );
304
		$unixLowerTimestamp = $timeValueCalculator->getLowerTimestamp( $timeValue );
305
		$this->assertGreaterThanOrEqual( $unixLowerTimestamp, $unixTimestampAsIs );
306
307
		$timeValueBefore1 = new TimeValue(
308
			$timestamp,
309
			0, 1, 1,
310
			$precision,
311
			TimeValue::CALENDAR_GREGORIAN
312
		);
313
		$unixLowerTimestampBefore1 = $timeValueCalculator->getLowerTimestamp( $timeValueBefore1 );
314
		$this->assertGreaterThan( $unixLowerTimestampBefore1, $unixLowerTimestamp );
315
316
		$timeValueBefore2 = new TimeValue(
317
			$timestamp,
318
			0, 2, 2,
319
			$precision,
320
			TimeValue::CALENDAR_GREGORIAN
321
		);
322
		$unixLowerTimestampBefore2 = $timeValueCalculator->getLowerTimestamp( $timeValueBefore2 );
323
		$this->assertGreaterThan( $unixLowerTimestampBefore2, $unixLowerTimestampBefore1 );
324
	}
325
326
	/**
327
	 * @param string $timestamp
328
	 * @param int $precision
329
	 */
330
	private function auxTestGetHigherTimestamp( $timestamp, $precision ) {
331
		$timeValueCalculator = new TimeValueCalculator();
332
		$timeValue = new TimeValue(
333
			$timestamp,
334
			0, 0, 0,
335
			$precision,
336
			TimeValue::CALENDAR_GREGORIAN
337
		);
338
		$unixTimestampAsIs = $timeValueCalculator->getTimestamp( $timeValue );
339
		$unixHigherTimestamp = $timeValueCalculator->getHigherTimestamp( $timeValue );
340
		$this->assertLessThanOrEqual( $unixHigherTimestamp, $unixTimestampAsIs );
341
342
		$timeValueAfter1 = new TimeValue(
343
			$timestamp,
344
			0, 1, 1,
345
			$precision,
346
			TimeValue::CALENDAR_GREGORIAN
347
		);
348
		$unixHigherTimestampAfter1 = $timeValueCalculator->getHigherTimestamp( $timeValueAfter1 );
349
		$this->assertLessThan( $unixHigherTimestampAfter1, $unixHigherTimestamp );
350
351
		$timeValueAfter2 = new TimeValue(
352
			$timestamp,
353
			0, 2, 2,
354
			$precision,
355
			TimeValue::CALENDAR_GREGORIAN
356
		);
357
		$unixHigherTimestampAfter2 = $timeValueCalculator->getHigherTimestamp( $timeValueAfter2 );
358
		$this->assertLessThan( $unixHigherTimestampAfter2, $unixHigherTimestampAfter1 );
359
	}
360
361
}
362