2010-12-14 16:26:35 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
2011-06-14 21:21:26 +00:00
|
|
|
|
class TimeAdjustTest extends MediaWikiLangTestCase {
|
2012-10-08 10:56:20 +00:00
|
|
|
|
protected function setUp() {
|
2011-06-15 20:51:17 +00:00
|
|
|
|
parent::setUp();
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
|
$this->setMwGlobals( array(
|
|
|
|
|
|
'wgLocalTZoffset' => null,
|
|
|
|
|
|
'wgContLang' => Language::factory( 'en' ),
|
2012-11-05 10:10:42 +00:00
|
|
|
|
'wgLanguageCode' => 'en',
|
2012-10-08 10:56:20 +00:00
|
|
|
|
) );
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
|
$this->iniSet( 'precision', 15 );
|
2010-12-14 16:26:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2012-07-02 11:11:01 +00:00
|
|
|
|
# Test offset usage for a given language::userAdjust
|
|
|
|
|
|
function testUserAdjust() {
|
|
|
|
|
|
global $wgLocalTZoffset, $wgContLang;
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
|
|
|
|
|
# Collection of parameters for Language_t_Offset.
|
|
|
|
|
|
# Format: date to be formatted, localTZoffset value, expected date
|
2012-07-02 11:11:01 +00:00
|
|
|
|
$userAdjust_tests = array(
|
2010-12-14 16:26:35 +00:00
|
|
|
|
array( 20061231235959, 0, 20061231235959 ),
|
|
|
|
|
|
array( 20061231235959, 5, 20070101000459 ),
|
|
|
|
|
|
array( 20061231235959, 15, 20070101001459 ),
|
|
|
|
|
|
array( 20061231235959, 60, 20070101005959 ),
|
|
|
|
|
|
array( 20061231235959, 90, 20070101012959 ),
|
|
|
|
|
|
array( 20061231235959, 120, 20070101015959 ),
|
|
|
|
|
|
array( 20061231235959, 540, 20070101085959 ),
|
|
|
|
|
|
array( 20061231235959, -5, 20061231235459 ),
|
|
|
|
|
|
array( 20061231235959, -30, 20061231232959 ),
|
|
|
|
|
|
array( 20061231235959, -60, 20061231225959 ),
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2012-07-02 11:11:01 +00:00
|
|
|
|
foreach ( $userAdjust_tests as $data ) {
|
|
|
|
|
|
$wgLocalTZoffset = $data[1];
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
2012-07-02 11:11:01 +00:00
|
|
|
|
$this->assertEquals(
|
|
|
|
|
|
strval( $data[2] ),
|
2012-10-08 10:56:20 +00:00
|
|
|
|
strval( $wgContLang->userAdjust( $data[0], '' ) ),
|
2012-07-02 11:11:01 +00:00
|
|
|
|
"User adjust {$data[0]} by {$data[1]} minutes should give {$data[2]}"
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|