MediaWiki  1.33.0
XCFHandlerTest.php
Go to the documentation of this file.
1 <?php
2 
7 
9  protected $handler;
10 
11  protected function setUp() {
12  parent::setUp();
13  $this->handler = new XCFHandler();
14  }
15 
23  public function testGetImageSize( $filename, $expectedWidth, $expectedHeight ) {
24  $file = $this->dataFile( $filename, 'image/x-xcf' );
25  $actual = $this->handler->getImageSize( $file, $file->getLocalRefPath() );
26  $this->assertEquals( $expectedWidth, $actual[0] );
27  $this->assertEquals( $expectedHeight, $actual[1] );
28  }
29 
30  public static function provideGetImageSize() {
31  return [
32  [ '80x60-2layers.xcf', 80, 60 ],
33  [ '80x60-RGB.xcf', 80, 60 ],
34  [ '80x60-Greyscale.xcf', 80, 60 ],
35  ];
36  }
37 
44  public function testIsMetadataValid( $metadata, $expected ) {
45  $actual = $this->handler->isMetadataValid( null, $metadata );
46  $this->assertEquals( $expected, $actual );
47  }
48 
49  public static function provideIsMetadataValid() {
50  return [
52  [ serialize( [ 'error' => true ] ), XCFHandler::METADATA_GOOD ],
53  [ false, XCFHandler::METADATA_BAD ],
54  [ serialize( [ 'colorType' => 'greyscale-alpha' ] ), XCFHandler::METADATA_GOOD ],
55  ];
56  }
57 
64  public function testGetMetadata( $filename, $expected ) {
65  $file = $this->dataFile( $filename, 'image/png' );
66  $actual = $this->handler->getMetadata( $file, "$this->filePath/$filename" );
67  $this->assertEquals( $expected, $actual );
68  }
69 
70  public static function provideGetMetadata() {
71  return [
72  [ '80x60-2layers.xcf',
73  'a:1:{s:9:"colorType";s:16:"truecolour-alpha";}'
74  ],
75  [ '80x60-RGB.xcf',
76  'a:1:{s:9:"colorType";s:16:"truecolour-alpha";}'
77  ],
78  [ '80x60-Greyscale.xcf',
79  'a:1:{s:9:"colorType";s:15:"greyscale-alpha";}'
80  ],
81  ];
82  }
83 }
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition: router.php:42
XCFHandler
Handler for the Gimp's native file format; getimagesize() doesn't support these files.
Definition: XCFHandler.php:35
XCFHandlerTest\testIsMetadataValid
testIsMetadataValid( $metadata, $expected)
Definition: XCFHandlerTest.php:44
XCFHandlerTest\$handler
XCFHandler $handler
Definition: XCFHandlerTest.php:9
XCFHandlerTest\provideGetImageSize
static provideGetImageSize()
Definition: XCFHandlerTest.php:30
serialize
serialize()
Definition: ApiMessageTrait.php:134
MediaWikiMediaTestCase\dataFile
dataFile( $name, $type=false)
Utility function: Get a new file object for a file on disk but not actually in db.
Definition: MediaWikiMediaTestCase.php:76
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
XCFHandlerTest\testGetImageSize
testGetImageSize( $filename, $expectedWidth, $expectedHeight)
Definition: XCFHandlerTest.php:23
MediaWikiMediaTestCase
Specificly for testing Media handlers.
Definition: MediaWikiMediaTestCase.php:5
XCFHandlerTest\setUp
setUp()
Definition: XCFHandlerTest.php:11
XCFHandlerTest
Media.
Definition: XCFHandlerTest.php:6
handler
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
Definition: hooks.txt:780
XCFHandlerTest\testGetMetadata
testGetMetadata( $filename, $expected)
Definition: XCFHandlerTest.php:64
XCFHandlerTest\provideGetMetadata
static provideGetMetadata()
Definition: XCFHandlerTest.php:70
XCFHandlerTest\provideIsMetadataValid
static provideIsMetadataValid()
Definition: XCFHandlerTest.php:49
MediaHandler\METADATA_BAD
const METADATA_BAD
Definition: MediaHandler.php:33
MediaHandler\METADATA_GOOD
const METADATA_GOOD
Definition: MediaHandler.php:32