MediaWiki  master
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 }
getImagePage($filename)
Class for viewing MediaWiki file description pages.
Definition: ImagePage.php:28
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:1816
testGetThumbSizes($filename, $expectedNumberThumbs)
providerGetThumbSizes
dataFile($name, $type=null)
Utility function: Get a new file object for a file on disk but not actually in db.
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:527
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
Definition: hooks.txt:312
const NS_FILE
Definition: Defines.php:75
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
For doing Image Page tests that rely on 404 thumb handling.
setMwGlobals($pairs, $value=null)
Specificly for testing Media handlers.