summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/TemplateParserTest.php
blob: 81854ff3228186f0b2c5b85c4832c4df360e6730 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

/**
 * @group Templates
 */
class TemplateParserTest extends MediaWikiTestCase {

	protected $templateDir;

	protected function setUp() {
		parent::setUp();

		$this->setMwGlobals( array(
			'wgSecretKey' => 'foo',
			'wgMemc' => new EmptyBagOStuff(),
		) );

		$this->templateDir = dirname( __DIR__ ) . '/data/templates/';
	}

	/**
	 * @dataProvider provideProcessTemplate
	 * @covers TemplateParser::processTemplate
	 * @covers TemplateParser::getTemplate
	 * @covers TemplateParser::getTemplateFilename
	 */
	public function testProcessTemplate( $name, $args, $result, $exception = false ) {
		if ( $exception ) {
			$this->setExpectedException( $exception );
		}
		$tp = new TemplateParser( $this->templateDir );
		$this->assertEquals( $result, $tp->processTemplate( $name, $args ) );
	}

	public static function provideProcessTemplate() {
		return array(
			array(
				'foobar',
				array(),
				"hello world!\n"
			),
			array(
				'foobar_args',
				array(
					'planet' => 'world',
				),
				"hello world!\n",
			),
			array(
				'../foobar',
				array(),
				false,
				'UnexpectedValueException'
			),
			array(
				'nonexistenttemplate',
				array(),
				false,
				'RuntimeException',
			)
		);
	}
}