mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/PageImages
synced 2024-11-15 12:00:40 +00:00
c24081b609
Remove the self creating of the handler and remove one deep from the caller stack Change-Id: Ie12ff77781f5ec6c74d9289a9812ec4f40c07d95
137 lines
3.8 KiB
PHP
137 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace PageImages\Tests;
|
|
|
|
use IContextSource;
|
|
use MediaWikiIntegrationTestCase;
|
|
use OutputPage;
|
|
use PageImages\PageImages;
|
|
use SkinTemplate;
|
|
use Title;
|
|
|
|
/**
|
|
* @covers \PageImages\PageImages
|
|
*
|
|
* @group PageImages
|
|
* @group Database
|
|
*
|
|
* @license WTFPL
|
|
* @author Thiemo Kreuz
|
|
*/
|
|
class PageImagesTest extends MediaWikiIntegrationTestCase {
|
|
|
|
public function testPagePropertyNames() {
|
|
$this->assertSame( 'page_image', PageImages::PROP_NAME );
|
|
$this->assertSame( 'page_image_free', PageImages::PROP_NAME_FREE );
|
|
}
|
|
|
|
public function testConstructor() {
|
|
$pageImages = new PageImages( $this->getServiceContainer()->getUserOptionsLookup() );
|
|
$this->assertInstanceOf( PageImages::class, $pageImages );
|
|
}
|
|
|
|
public function testGivenNonExistingPageGetPageImageReturnsFalse() {
|
|
$title = $this->newTitle();
|
|
$this->assertFalse( PageImages::getPageImage( $title ) );
|
|
}
|
|
|
|
public function testGetPropName() {
|
|
$this->assertSame( 'page_image', PageImages::getPropName( false ) );
|
|
$this->assertSame( 'page_image_free', PageImages::getPropName( true ) );
|
|
}
|
|
|
|
public function testGetPropNames() {
|
|
$this->assertSame(
|
|
[ PageImages::PROP_NAME_FREE, PageImages::PROP_NAME ],
|
|
PageImages::getPropNames( PageImages::LICENSE_ANY )
|
|
);
|
|
$this->assertSame(
|
|
PageImages::PROP_NAME_FREE,
|
|
PageImages::getPropNames( PageImages::LICENSE_FREE )
|
|
);
|
|
}
|
|
|
|
public function testGivenDeactivedOpenGraphOnBeforePageDisplayDoesNotAddMeta() {
|
|
$outputPage = $this->mockOutputPage( [
|
|
'PageImagesOpenGraph' => false,
|
|
] );
|
|
$outputPage->expects( $this->never() )
|
|
->method( 'addMeta' );
|
|
|
|
$skinTemplate = new SkinTemplate();
|
|
( new PageImages( $this->getServiceContainer()->getUserOptionsLookup() ) )
|
|
->onBeforePageDisplay( $outputPage, $skinTemplate );
|
|
}
|
|
|
|
public function testGivenNonExistingPageOnBeforePageDisplayDoesNotAddMeta() {
|
|
$outputPage = $this->mockOutputPage( [
|
|
'PageImagesOpenGraph' => true,
|
|
'PageImagesOpenGraphFallbackImage' => false
|
|
] );
|
|
$outputPage->expects( $this->never() )
|
|
->method( 'addMeta' );
|
|
|
|
$skinTemplate = new SkinTemplate();
|
|
( new PageImages( $this->getServiceContainer()->getUserOptionsLookup() ) )
|
|
->onBeforePageDisplay( $outputPage, $skinTemplate );
|
|
}
|
|
|
|
public static function provideFallbacks() {
|
|
return [
|
|
[ 'http://wiki.test/example.png', '/example.png' ],
|
|
[ 'http://wiki.test/img/default.png', '/img/default.png' ],
|
|
[ 'https://example.org/example.png', 'https://example.org/example.png' ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideFallbacks
|
|
*/
|
|
public function testGivenFallbackImageOnBeforePageDisplayAddMeta( $expected, $fallback ) {
|
|
$this->setMwGlobals( [ 'wgCanonicalServer' => 'http://wiki.test' ] );
|
|
$outputPage = $this->mockOutputPage( [
|
|
'PageImagesOpenGraph' => true,
|
|
'PageImagesOpenGraphFallbackImage' => $fallback
|
|
] );
|
|
$outputPage->expects( $this->once() )
|
|
->method( 'addMeta' )
|
|
->with( $this->equalTo( 'og:image' ), $this->equalTo( $expected ) );
|
|
|
|
$skinTemplate = new SkinTemplate();
|
|
( new PageImages( $this->getServiceContainer()->getUserOptionsLookup() ) )
|
|
->onBeforePageDisplay( $outputPage, $skinTemplate );
|
|
}
|
|
|
|
/**
|
|
* @param array $config
|
|
* @return OutputPage
|
|
*/
|
|
private function mockOutputPage( $config ) {
|
|
$context = $this->createMock( IContextSource::class );
|
|
$context->method( 'getTitle' )
|
|
->willReturn( $this->newTitle() );
|
|
$fauxRequest = new \FauxRequest();
|
|
$config = new \HashConfig( $config );
|
|
$context->method( 'getRequest' )
|
|
->willReturn( $fauxRequest );
|
|
$context->method( 'getConfig' )
|
|
->willReturn( $config );
|
|
|
|
$outputPage = $this->getMockBuilder( OutputPage::class )
|
|
->onlyMethods( [ 'addMeta' ] )
|
|
->setConstructorArgs( [ $context ] )
|
|
->getMock();
|
|
return $outputPage;
|
|
}
|
|
|
|
/**
|
|
* @return Title
|
|
*/
|
|
private function newTitle() {
|
|
$title = Title::newFromText( 'New' );
|
|
$title->resetArticleID( 0 );
|
|
return $title;
|
|
}
|
|
|
|
}
|