summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/TemplateParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/includes/TemplateParserTest.php')
-rw-r--r--www/wiki/tests/phpunit/includes/TemplateParserTest.php123
1 files changed, 123 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/TemplateParserTest.php b/www/wiki/tests/phpunit/includes/TemplateParserTest.php
new file mode 100644
index 00000000..ccccf0f9
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/TemplateParserTest.php
@@ -0,0 +1,123 @@
+<?php
+
+/**
+ * @group Templates
+ * @covers TemplateParser
+ */
+class TemplateParserTest extends MediaWikiTestCase {
+
+ protected $templateDir;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->setMwGlobals( [
+ 'wgSecretKey' => 'foo',
+ ] );
+
+ $this->templateDir = dirname( __DIR__ ) . '/data/templates/';
+ }
+
+ /**
+ * @dataProvider provideProcessTemplate
+ */
+ 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 [
+ [
+ 'foobar',
+ [],
+ "hello world!\n"
+ ],
+ [
+ 'foobar_args',
+ [
+ 'planet' => 'world',
+ ],
+ "hello world!\n",
+ ],
+ [
+ '../foobar',
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ "\000../foobar",
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ '/',
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ // Allegedly this can strip ext in windows.
+ 'baz<',
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ '\\foo',
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ 'C:\bar',
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ "foo\000bar",
+ [],
+ false,
+ 'UnexpectedValueException'
+ ],
+ [
+ 'nonexistenttemplate',
+ [],
+ false,
+ 'RuntimeException',
+ ],
+ [
+ 'has_partial',
+ [
+ 'planet' => 'world',
+ ],
+ "Partial hello world!\n in here\n",
+ ],
+ [
+ 'bad_partial',
+ [],
+ false,
+ 'Exception',
+ ],
+ ];
+ }
+
+ public function testEnableRecursivePartials() {
+ $tp = new TemplateParser( $this->templateDir );
+ $data = [ 'r' => [ 'r' => [ 'r' => [] ] ] ];
+
+ $tp->enableRecursivePartials( true );
+ $this->assertEquals( 'rrr', $tp->processTemplate( 'recurse', $data ) );
+
+ $tp->enableRecursivePartials( false );
+ $this->setExpectedException( Exception::class );
+ $tp->processTemplate( 'recurse', $data );
+ }
+
+}