summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php118
1 files changed, 118 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php
new file mode 100644
index 00000000..08b99d24
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/ParserFunctions/SectionTagTest.php
@@ -0,0 +1,118 @@
+<?php
+
+namespace SMW\Tests\ParserFunctions;
+
+use SMW\ParserFunctions\SectionTag;
+
+/**
+ * @covers \SMW\ParserFunctions\SectionTag
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class SectionTagTest extends \PHPUnit_Framework_TestCase {
+
+ private $frame;
+ private $parser;
+
+ protected function setUp() {
+
+ $this->frame = $this->getMockBuilder( '\PPFrame' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->parser = $this->getMockBuilder( '\Parser' )
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ SectionTag::class,
+ new SectionTag( $this->parser, $this->frame )
+ );
+ }
+
+ public function testRegister_Enabled() {
+
+ $this->parser->expects( $this->once() )
+ ->method( 'setHook' );
+
+ $this->assertTrue(
+ SectionTag::register( $this->parser )
+ );
+ }
+
+ public function testRegister_Disabled() {
+
+ $this->parser->expects( $this->never() )
+ ->method( 'setHook' );
+
+ $this->assertFalse(
+ SectionTag::register( $this->parser, false )
+ );
+ }
+
+ public function testParse() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->parser->expects( $this->any() )
+ ->method( 'recursiveTagParse' )
+ ->will( $this->returnValue( 'Foo' ) );
+
+ $this->parser->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $instance = new SectionTag(
+ $this->parser,
+ $this->frame
+ );
+
+ $args = [];
+
+ $this->assertContains(
+ '<section>Foo</section>',
+ $instance->parse( 'Foo', $args )
+ );
+ }
+
+ public function testParse_PropertyNamespace() {
+
+ $title = $this->getMockBuilder( '\Title' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $title->expects( $this->any() )
+ ->method( 'getNamespace' )
+ ->will( $this->returnValue( SMW_NS_PROPERTY ) );
+
+ $this->parser->expects( $this->any() )
+ ->method( 'recursiveTagParse' )
+ ->will( $this->returnValue( 'Foo' ) );
+
+ $this->parser->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $instance = new SectionTag(
+ $this->parser,
+ $this->frame
+ );
+
+ $args = [];
+
+ $this->assertContains(
+ '<section class="smw-property-specification">Foo</section>',
+ $instance->parse( 'Foo', $args )
+ );
+ }
+
+}