MediaWiki  1.29.2
ImagePage404Test.php
Go to the documentation of this file.
1 <?php
6 
7  protected function getRepoOptions() {
8  return parent::getRepoOptions() + [ 'transformVia404' => true ];
9  }
10 
11  function setUp() {
12  $this->setMwGlobals( 'wgImageLimits', [
13  [ 320, 240 ],
14  [ 640, 480 ],
15  [ 800, 600 ],
16  [ 1024, 768 ],
17  [ 1280, 1024 ]
18  ] );
19  parent::setUp();
20  }
21 
22  function getImagePage( $filename ) {
23  $title = Title::makeTitleSafe( NS_FILE, $filename );
24  $file = $this->dataFile( $filename );
25  $iPage = new ImagePage( $title );
26  $iPage->setFile( $file );
27  return $iPage;
28  }
29 
35  function testGetThumbSizes( $filename, $expectedNumberThumbs ) {
36  $iPage = $this->getImagePage( $filename );
37  $reflection = new ReflectionClass( $iPage );
38  $reflMethod = $reflection->getMethod( 'getThumbSizes' );
39  $reflMethod->setAccessible( true );
40 
41  $actual = $reflMethod->invoke( $iPage, 545, 700 );
42  $this->assertEquals( count( $actual ), $expectedNumberThumbs );
43  }
44 
45  function providerGetThumbSizes() {
46  return [
47  [ 'animated.gif', 6 ],
48  [ 'Toll_Texas_1.svg', 6 ],
49  [ '80x60-Greyscale.xcf', 6 ],
50  [ 'jpeg-comment-binary.jpg', 6 ],
51  ];
52  }
53 }
ImagePage404Test\getImagePage
getImagePage( $filename)
Definition: ImagePage404Test.php:22
captcha-old.count
count
Definition: captcha-old.py:225
ImagePage404Test\getRepoOptions
getRepoOptions()
Definition: ImagePage404Test.php:7
NS_FILE
const NS_FILE
Definition: Defines.php:68
ImagePage
Class for viewing MediaWiki file description pages.
Definition: ImagePage.php:30
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ImagePage404Test\testGetThumbSizes
testGetThumbSizes( $filename, $expectedNumberThumbs)
providerGetThumbSizes
Definition: ImagePage404Test.php:35
MediaWikiMediaTestCase
Specificly for testing Media handlers.
Definition: MediaWikiMediaTestCase.php:5
ImagePage404Test
For doing Image Page tests that rely on 404 thumb handling.
Definition: ImagePage404Test.php:5
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
MediaWikiMediaTestCase\dataFile
dataFile( $name, $type=null)
Utility function: Get a new file object for a file on disk but not actually in db.
Definition: MediaWikiMediaTestCase.php:76
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:538
ImagePage404Test\providerGetThumbSizes
providerGetThumbSizes()
Definition: ImagePage404Test.php:45
ImagePage404Test\setUp
setUp()
Definition: ImagePage404Test.php:11
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:1956