MediaWiki  1.30.0
ResourceLoaderImageTest.php
Go to the documentation of this file.
1 <?php
2 
7 
8  protected $imagesPath;
9 
10  protected function setUp() {
11  parent::setUp();
12  $this->imagesPath = __DIR__ . '/../../data/resourceloader';
13  }
14 
15  protected function getTestImage( $name ) {
17  $fileDescriptor = is_string( $options ) ? $options : $options['file'];
18  $allowedVariants = is_array( $options ) &&
19  isset( $options['variants'] ) ? $options['variants'] : [];
20  $variants = array_fill_keys( $allowedVariants, [ 'color' => 'red' ] );
21  return new ResourceLoaderImageTestable(
22  $name,
23  'test',
24  $fileDescriptor,
25  $this->imagesPath,
26  $variants
27  );
28  }
29 
30  public static function provideGetPath() {
31  return [
32  [ 'abc', 'en', 'abc.gif' ],
33  [ 'abc', 'he', 'abc.gif' ],
34  [ 'def', 'en', 'def.svg' ],
35  [ 'def', 'he', 'def.svg' ],
36  [ 'ghi', 'en', 'ghi.svg' ],
37  [ 'ghi', 'he', 'jkl.svg' ],
38  [ 'mno', 'en', 'mno-ltr.svg' ],
39  [ 'mno', 'ar', 'mno-rtl.svg' ],
40  [ 'mno', 'he', 'mno-ltr.svg' ],
41  [ 'pqr', 'en', 'pqr-b.svg' ],
42  [ 'pqr', 'de', 'pqr-f.svg' ],
43  [ 'pqr', 'ar', 'pqr-f.svg' ],
44  [ 'pqr', 'fr', 'pqr-a.svg' ],
45  [ 'pqr', 'he', 'pqr-a.svg' ],
46  ];
47  }
48 
53  public function testGetPath( $imageName, $languageCode, $path ) {
54  static $dirMap = [
55  'en' => 'ltr',
56  'de' => 'ltr',
57  'fr' => 'ltr',
58  'he' => 'rtl',
59  'ar' => 'rtl',
60  ];
61  static $contexts = [];
62 
63  $image = $this->getTestImage( $imageName );
65  'lang' => $languageCode,
66  'dir' => $dirMap[$languageCode],
67  ] );
68 
69  $this->assertEquals( $image->getPath( $context ), $this->imagesPath . '/' . $path );
70  }
71 
76  public function testGetExtension() {
77  $image = $this->getTestImage( 'def' );
78  $this->assertEquals( $image->getExtension(), 'svg' );
79  $this->assertEquals( $image->getExtension( 'original' ), 'svg' );
80  $this->assertEquals( $image->getExtension( 'rasterized' ), 'png' );
81  $image = $this->getTestImage( 'abc' );
82  $this->assertEquals( $image->getExtension(), 'gif' );
83  $this->assertEquals( $image->getExtension( 'original' ), 'gif' );
84  $this->assertEquals( $image->getExtension( 'rasterized' ), 'gif' );
85  }
86 
92  public function testGetImageData() {
94 
95  $image = $this->getTestImage( 'def' );
96  $data = file_get_contents( $this->imagesPath . '/def.svg' );
97  $dataConstructive = file_get_contents( $this->imagesPath . '/def_variantize.svg' );
98  $this->assertEquals( $image->getImageData( $context, null, 'original' ), $data );
99  $this->assertEquals(
100  $image->getImageData( $context, 'destructive', 'original' ),
101  $dataConstructive
102  );
103  // Stub, since we don't know if we even have a SVG handler, much less what exactly it'll output
104  $this->assertEquals( $image->getImageData( $context, null, 'rasterized' ), 'RASTERIZESTUB' );
105 
106  $image = $this->getTestImage( 'abc' );
107  $data = file_get_contents( $this->imagesPath . '/abc.gif' );
108  $this->assertEquals( $image->getImageData( $context, null, 'original' ), $data );
109  $this->assertEquals( $image->getImageData( $context, null, 'rasterized' ), $data );
110  }
111 
115  public function testMassageSvgPathdata() {
116  $image = $this->getTestImage( 'ghi' );
117  $data = file_get_contents( $this->imagesPath . '/ghi.svg' );
118  $dataMassaged = file_get_contents( $this->imagesPath . '/ghi_massage.svg' );
119  $this->assertEquals( $image->massageSvgPathdata( $data ), $dataMassaged );
120  }
121 }
122 
124  // Make some protected methods public
125  public function massageSvgPathdata( $svg ) {
126  return parent::massageSvgPathdata( $svg );
127  }
128  // Stub, since we don't know if we even have a SVG handler, much less what exactly it'll output
129  public function rasterize( $svg ) {
130  return 'RASTERIZESTUB';
131  }
132 }
ResourceLoaderImageTestable\rasterize
rasterize( $svg)
Convert passed image data, which is assumed to be SVG, to PNG.
Definition: ResourceLoaderImageTest.php:129
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2581
ResourceLoaderImageTest\testMassageSvgPathdata
testMassageSvgPathdata()
ResourceLoaderImage::massageSvgPathdata.
Definition: ResourceLoaderImageTest.php:115
ResourceLoaderImageTest\$imagesPath
$imagesPath
Definition: ResourceLoaderImageTest.php:8
ResourceLoaderImageTest\setUp
setUp()
Definition: ResourceLoaderImageTest.php:10
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
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
ResourceLoaderImageTestable
Definition: ResourceLoaderImageTest.php:123
ResourceLoaderImageTest\testGetPath
testGetPath( $imageName, $languageCode, $path)
ResourceLoaderImage::getPath provideGetPath.
Definition: ResourceLoaderImageTest.php:53
ResourceLoaderImageTest\testGetImageData
testGetImageData()
ResourceLoaderImage::getImageData ResourceLoaderImage::variantize ResourceLoaderImage::massageSvgPath...
Definition: ResourceLoaderImageTest.php:92
ResourceLoaderImageTestable\massageSvgPathdata
massageSvgPathdata( $svg)
Massage the SVG image data for converters which don't understand some path data syntax.
Definition: ResourceLoaderImageTest.php:125
ResourceLoaderImageTest\getTestImage
getTestImage( $name)
Definition: ResourceLoaderImageTest.php:15
$image
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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 $image
Definition: hooks.txt:781
ResourceLoaderImage
Class encapsulating an image used in a ResourceLoaderImageModule.
Definition: ResourceLoaderImage.php:28
ResourceLoaderImageModuleTest\$commonImageData
static $commonImageData
Definition: ResourceLoaderImageModuleTest.php:10
ResourceLoaderImageTest\provideGetPath
static provideGetPath()
Definition: ResourceLoaderImageTest.php:30
ResourceLoaderImageTest
ResourceLoader.
Definition: ResourceLoaderImageTest.php:6
$options
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 & $options
Definition: hooks.txt:1965
$path
$path
Definition: NoLocalSettings.php:26
ResourceLoaderTestCase\getResourceLoaderContext
getResourceLoaderContext( $options=[], ResourceLoader $rl=null)
Definition: ResourceLoaderTestCase.php:23
ResourceLoaderImageTest\testGetExtension
testGetExtension()
ResourceLoaderImage::getExtension ResourceLoaderImage::getMimeType.
Definition: ResourceLoaderImageTest.php:76
ResourceLoaderTestCase
Definition: ResourceLoaderTestCase.php:7