2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2010-12-28 18:17:16 +00:00
|
|
|
class ParserOptionsTest extends MediaWikiTestCase {
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
|
|
|
private $popts;
|
|
|
|
|
private $pcache;
|
|
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
|
ParserTest::setUp(); //reuse setup from parser tests
|
|
|
|
|
global $wgContLang, $wgUser;
|
|
|
|
|
$wgContLang = new StubContLang;
|
|
|
|
|
$this->popts = new ParserOptions( $wgUser );
|
|
|
|
|
$this->pcache = ParserCache::singleton();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function tearDown() {
|
|
|
|
|
parent::tearDown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ParserOptions::optionsHash was not giving consistent results when $wgUseDynamicDates was set
|
|
|
|
|
* @group Database
|
|
|
|
|
*/
|
|
|
|
|
function testGetParserCacheKeyWithDynamicDates() {
|
|
|
|
|
global $wgUseDynamicDates;
|
|
|
|
|
$wgUseDynamicDates = true;
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( "Some test article" );
|
|
|
|
|
$article = new Article( $title );
|
|
|
|
|
|
|
|
|
|
$pcacheKeyBefore = $this->pcache->getKey( $article, $this->popts );
|
|
|
|
|
$this->assertNotNull( $this->popts->getDateFormat() );
|
|
|
|
|
$pcacheKeyAfter = $this->pcache->getKey( $article, $this->popts );
|
|
|
|
|
$this->assertEquals( $pcacheKeyBefore, $pcacheKeyAfter );
|
|
|
|
|
}
|
|
|
|
|
}
|