MediaWiki  1.27.2
wfThumbIsStandardTest.php
Go to the documentation of this file.
1 <?php
2 
8 
9  protected function setUp() {
10  parent::setUp();
11 
12  $this->setMwGlobals( [
13  'wgThumbLimits' => [
14  100,
15  401
16  ],
17  'wgImageLimits' => [
18  [ 300, 225 ],
19  [ 800, 600 ],
20  ],
21  'wgMediaHandlers' => [
22  'unknown/unknown' => 'MockBitmapHandler',
23  ],
24  ] );
25  }
26 
27  public static function provideThumbParams() {
28  return [
29  // Thumb limits
30  [
31  'Standard thumb width',
32  true,
33  [ 'width' => 100 ],
34  ],
35  [
36  'Standard thumb width',
37  true,
38  [ 'width' => 401 ],
39  ],
40  // wfThumbIsStandard should match Linker::processResponsiveImages
41  // in its rounding behaviour.
42  [
43  'Standard thumb width (HiDPI 1.5x) - incorrect rounding',
44  false,
45  [ 'width' => 601 ],
46  ],
47  [
48  'Standard thumb width (HiDPI 1.5x)',
49  true,
50  [ 'width' => 602 ],
51  ],
52  [
53  'Standard thumb width (HiDPI 2x)',
54  true,
55  [ 'width' => 802 ],
56  ],
57  [
58  'Non-standard thumb width',
59  false,
60  [ 'width' => 300 ],
61  ],
62  // Image limits
63  // Note: Image limits are measured as pairs. Individual values
64  // may be non-standard based on the aspect ratio.
65  [
66  'Standard image width/height pair',
67  true,
68  [ 'width' => 250, 'height' => 225 ],
69  ],
70  [
71  'Standard image width/height pair',
72  true,
73  [ 'width' => 667, 'height' => 600 ],
74  ],
75  [
76  'Standard image width where image does not fit aspect ratio',
77  false,
78  [ 'width' => 300 ],
79  ],
80  [
81  'Implicit width from image width/height pair aspect ratio fit',
82  true,
83  // 2000x1800 fit inside 300x225 makes w=250
84  [ 'width' => 250 ],
85  ],
86  [
87  'Height-only is always non-standard',
88  false,
89  [ 'height' => 225 ],
90  ],
91  ];
92  }
93 
97  public function testIsStandard( $message, $expected, $params ) {
98  $this->assertSame(
99  $expected,
100  wfThumbIsStandard( new FakeDimensionFile( [ 2000, 1800 ] ), $params ),
101  $message
102  );
103  }
104 }
GlobalFunctions wfThumbIsStandard.
testIsStandard($message, $expected, $params)
provideThumbParams
$params
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
setMwGlobals($pairs, $value=null)
wfThumbIsStandard(File $file, array $params)
Returns true if these thumbnail parameters match one that MediaWiki requests from file description pa...