summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/ParserOptionsTest.php
blob: 58c891462f570f4d8f3851666df8d75b1b41c8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

class ParserOptionsTest extends MediaWikiTestCase {

	private $popts;
	private $pcache;

	function setUp() {
		ParserTest::setUp(); //reuse setup from parser tests
		global $wgContLang, $wgUser, $wgLanguageCode;
		$wgContLang = Language::factory( $wgLanguageCode );
		$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 );
	}
}