wiki.techinc.nl/tests/phpunit/includes/TimeAdjustTest.php
Max Semenik 48a323f702 tests: Add explicit return type void to setUp() and tearDown()
Bug: T192167
Depends-On: I581e54278ac5da3f4e399e33f2c7ad468bae6b43
Change-Id: I3a21fb55db76bac51afdd399cf40ed0760e4f343
2019-10-30 14:31:22 -07:00

40 lines
1.1 KiB
PHP

<?php
use MediaWiki\MediaWikiServices;
class TimeAdjustTest extends MediaWikiLangTestCase {
protected function setUp() : void {
parent::setUp();
}
/**
* Test offset usage for a given Language::userAdjust
* @dataProvider dataUserAdjust
* @covers Language::userAdjust
*/
public function testUserAdjust( $date, $localTZoffset, $expected ) {
$this->setMwGlobals( 'wgLocalTZoffset', $localTZoffset );
$this->assertEquals(
$expected,
strval( MediaWikiServices::getInstance()->getContentLanguage()->
userAdjust( $date, '' ) ),
"User adjust {$date} by {$localTZoffset} minutes should give {$expected}"
);
}
public static function dataUserAdjust() {
return [
[ '20061231235959', 0, '20061231235959' ],
[ '20061231235959', 5, '20070101000459' ],
[ '20061231235959', 15, '20070101001459' ],
[ '20061231235959', 60, '20070101005959' ],
[ '20061231235959', 90, '20070101012959' ],
[ '20061231235959', 120, '20070101015959' ],
[ '20061231235959', 540, '20070101085959' ],
[ '20061231235959', -5, '20061231235459' ],
[ '20061231235959', -30, '20061231232959' ],
[ '20061231235959', -60, '20061231225959' ],
];
}
}