summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php357
1 files changed, 357 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php
new file mode 100644
index 00000000..eda42991
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/MediaWiki/Hooks/SkinAfterContentTest.php
@@ -0,0 +1,357 @@
+<?php
+
+namespace SMW\Tests\MediaWiki\Hooks;
+
+use SMW\ApplicationFactory;
+use SMW\MediaWiki\Hooks\SkinAfterContent;
+use SMW\Settings;
+use SMW\Tests\Utils\Mock\MockTitle;
+
+/**
+ * @covers \SMW\MediaWiki\Hooks\SkinAfterContent
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 1.9
+ *
+ * @author mwjames
+ */
+class SkinAfterContentTest extends \PHPUnit_Framework_TestCase {
+
+ private $applicationFactory;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->applicationFactory = ApplicationFactory::getInstance();
+
+ $settings = Settings::newFromArray( [
+ 'smwgFactboxFeatures' => SMW_FACTBOX_CACHE,
+ 'smwgMainCacheType' => 'hash',
+ 'smwgSemanticsEnabled' => true
+ ] );
+
+ $this->applicationFactory->registerObject( 'Settings', $settings );
+ }
+
+ protected function tearDown() {
+ $this->applicationFactory->clear();
+
+ parent::tearDown();
+ }
+
+ public function testCanConstruct() {
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->assertInstanceOf(
+ '\SMW\MediaWiki\Hooks\SkinAfterContent',
+ new SkinAfterContent( $skin )
+ );
+ }
+
+ public function testTryToPerformUpdateOnNullSkin() {
+
+ $data = '';
+ $instance = new SkinAfterContent( null );
+
+ $this->assertTrue(
+ $instance->performUpdate( $data )
+ );
+ }
+
+ /**
+ * @dataProvider outputDataProvider
+ */
+ public function testperformUpdateFactboxPresenterIntegration( $parameters, $expected ) {
+
+ $data = '';
+
+ $instance = new SkinAfterContent( $parameters['skin'] );
+
+ // Replace CachedFactbox instance
+ if ( isset( $parameters['title'] ) ) {
+
+ $cachedFactbox = $this->applicationFactory->create( 'FactboxFactory' )->newCachedFactbox();
+
+ $cachedFactbox->addContentToCache(
+ $cachedFactbox->makeCacheKey( $parameters['title'] ),
+ $parameters['text']
+ );
+
+ $factboxFactory = $this->getMockBuilder( '\SMW\Factbox\FactboxFactory' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $factboxFactory->expects( $this->once() )
+ ->method( 'newCachedFactbox' )
+ ->will( $this->returnValue( $cachedFactbox ) );
+
+ $this->applicationFactory->registerObject( 'FactboxFactory', $factboxFactory );
+ }
+
+ $this->assertTrue(
+ $instance->performUpdate( $data )
+ );
+
+ $this->assertEquals(
+ $expected['text'],
+ $data
+ );
+ }
+
+ public function outputDataProvider() {
+
+ $text = __METHOD__ . 'text-0';
+
+ #0 Retrieve content from outputPage property
+ $title = MockTitle::buildMock( __METHOD__ . 'from-property' );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'exists' )
+ ->will( $this->returnValue( true ) );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'getArticleID' )
+ ->will( $this->returnValue( 10001 ) );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $outputPage->mSMWFactboxText = $text;
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( null ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( new \RequestContext() ) );
+
+ $provider[] = [
+ [ 'skin' => $skin ],
+ [ 'text' => $text ]
+ ];
+
+ #1 Retrieve content from cache
+ $title = MockTitle::buildMock( __METHOD__ . 'from-cache' );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'exists' )
+ ->will( $this->returnValue( true ) );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'getArticleID' )
+ ->will( $this->returnValue( 10002 ) );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->atLeastOnce() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $text = __METHOD__ . 'text-1';
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( new \RequestContext() ) );
+
+ $provider[] = [
+ [ 'skin' => $skin, 'text' => $text, 'title' => $outputPage->getTitle() ],
+ [ 'text' => $text ]
+ ];
+
+ // #2 Special page
+ $text = __METHOD__ . 'text-2';
+
+ $title = MockTitle::buildMock( __METHOD__ . 'specialpage' );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'isSpecialPage' )
+ ->will( $this->returnValue( true ) );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->atLeastOnce() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $outputPage->mSMWFactboxText = $text;
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( new \RequestContext() ) );
+
+ $provider[] = [
+ [ 'skin' => $skin, 'text' => $text ],
+ [ 'text' => '' ]
+ ];
+
+ // #3 "edit" request
+ $text = __METHOD__ . 'text-3';
+
+ $title = MockTitle::buildMock( __METHOD__ . 'edit-request' );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'exists' )
+ ->will( $this->returnValue( true ) );
+
+ $title->expects( $this->atLeastOnce() )
+ ->method( 'getArticleID' )
+ ->will( $this->returnValue( 10003 ) );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->atLeastOnce() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $outputPage->mSMWFactboxText = $text;
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $context = new \RequestContext( );
+ $context->setRequest( new \FauxRequest( [ 'action' => 'edit' ], true ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( $context ) );
+
+ $provider[] = [
+ [ 'skin' => $skin, 'text' => $text ],
+ [ 'text' => $text ]
+ ];
+
+ // #4 "delete" request
+ $text = __METHOD__ . 'text-4';
+
+ $title = MockTitle::buildMock( __METHOD__ . 'delete-request' );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->atLeastOnce() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin->expects( $this->any() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $context = new \RequestContext( );
+ $context->setRequest( new \FauxRequest( [ 'action' => 'delete' ], true ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( $context ) );
+
+ $provider[] = [
+ [ 'skin' => $skin, 'text' => $text ],
+ [ 'text' => '' ]
+ ];
+
+ // #5 "purge" request
+ $text = __METHOD__ . 'text-purge';
+
+ $title = MockTitle::buildMock( __METHOD__ . 'purge-request' );
+
+ $outputPage = $this->getMockBuilder( '\OutputPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $outputPage->expects( $this->atLeastOnce() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin = $this->getMockBuilder( '\Skin' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $skin->expects( $this->any() )
+ ->method( 'getTitle' )
+ ->will( $this->returnValue( $title ) );
+
+ $skin->expects( $this->any() )
+ ->method( 'getOutput' )
+ ->will( $this->returnValue( $outputPage ) );
+
+ $context = new \RequestContext( );
+ $context->setRequest( new \FauxRequest( [ 'action' => 'purge' ], true ) );
+
+ $skin->expects( $this->atLeastOnce() )
+ ->method( 'getContext' )
+ ->will( $this->returnValue( $context ) );
+
+ $provider[] = [
+ [ 'skin' => $skin, 'text' => $text ],
+ [ 'text' => '' ]
+ ];
+
+ return $provider;
+ }
+
+}