MediaWiki  1.32.0
VersionCheckerTest.php
Go to the documentation of this file.
1 <?php
2 
6 class VersionCheckerTest extends PHPUnit\Framework\TestCase {
7 
8  use MediaWikiCoversValidator;
9  use PHPUnit4And6Compat;
10 
14  public function testMediaWikiCheck( $coreVersion, $constraint, $expected ) {
15  $checker = new VersionChecker( $coreVersion, '7.0.0', [] );
16  $this->assertEquals( $expected, !(bool)$checker->checkArray( [
17  'FakeExtension' => [
18  'MediaWiki' => $constraint,
19  ],
20  ] ) );
21  }
22 
23  public static function provideMediaWikiCheck() {
24  return [
25  // [ $wgVersion, constraint, expected ]
26  [ '1.25alpha', '>= 1.26', false ],
27  [ '1.25.0', '>= 1.26', false ],
28  [ '1.26alpha', '>= 1.26', true ],
29  [ '1.26alpha', '>= 1.26.0', true ],
30  [ '1.26alpha', '>= 1.26.0-stable', false ],
31  [ '1.26.0', '>= 1.26.0-stable', true ],
32  [ '1.26.1', '>= 1.26.0-stable', true ],
33  [ '1.27.1', '>= 1.26.0-stable', true ],
34  [ '1.26alpha', '>= 1.26.1', false ],
35  [ '1.26alpha', '>= 1.26alpha', true ],
36  [ '1.26alpha', '>= 1.25', true ],
37  [ '1.26.0-alpha.14', '>= 1.26.0-alpha.15', false ],
38  [ '1.26.0-alpha.14', '>= 1.26.0-alpha.10', true ],
39  [ '1.26.1', '>= 1.26.2, <=1.26.0', false ],
40  [ '1.26.1', '^1.26.2', false ],
41  // Accept anything for un-parsable version strings
42  [ '1.26mwf14', '== 1.25alpha', true ],
43  [ 'totallyinvalid', '== 1.0', true ],
44  ];
45  }
46 
50  public function testPhpValidCheck( $phpVersion, $constraint, $expected ) {
51  $checker = new VersionChecker( '1.0.0', $phpVersion, [] );
52  $this->assertEquals( $expected, !(bool)$checker->checkArray( [
53  'FakeExtension' => [
54  'platform' => [
55  'php' => $constraint,
56  ],
57  ],
58  ] ) );
59  }
60 
61  public static function providePhpValidCheck() {
62  return [
63  // [ phpVersion, constraint, expected ]
64  [ '7.0.23', '>= 7.0.0', true ],
65  [ '7.0.23', '^7.1.0', false ],
66  [ '7.0.23', '7.0.23', true ],
67  ];
68  }
69 
73  public function testPhpInvalidConstraint() {
74  $checker = new VersionChecker( '1.0.0', '7.0.0', [] );
75  $checker->checkArray( [
76  'FakeExtension' => [
77  'platform' => [
78  'php' => 'totallyinvalid',
79  ],
80  ],
81  ] );
82  }
83 
88  public function testPhpInvalidVersion( $phpVersion ) {
89  $checker = new VersionChecker( '1.0.0', $phpVersion, [] );
90  }
91 
92  public static function providePhpInvalidVersion() {
93  return [
94  // [ phpVersion ]
95  [ '7.abc' ],
96  [ '5.a.x' ],
97  ];
98  }
99 
103  public function testType( $given, $expected ) {
104  $checker = new VersionChecker( '1.0.0', '7.0.0', [ 'phpLoadedExtension' ] );
105  $checker->setLoadedExtensionsAndSkins( [
106  'FakeDependency' => [
107  'version' => '1.0.0',
108  ],
109  'NoVersionGiven' => [],
110  ] );
111  $this->assertEquals( $expected, $checker->checkArray( [
112  'FakeExtension' => $given,
113  ] ) );
114  }
115 
116  public static function provideType() {
117  return [
118  // valid type
119  [
120  [
121  'extensions' => [
122  'FakeDependency' => '1.0.0',
123  ],
124  ],
125  [],
126  ],
127  [
128  [
129  'MediaWiki' => '1.0.0',
130  ],
131  [],
132  ],
133  [
134  [
135  'extensions' => [
136  'NoVersionGiven' => '*',
137  ],
138  ],
139  [],
140  ],
141  [
142  [
143  'extensions' => [
144  'NoVersionGiven' => '1.0',
145  ],
146  ],
147  [
148  [
149  'incompatible' => 'FakeExtension',
150  'type' => 'incompatible-extensions',
151  'msg' => 'NoVersionGiven does not expose its version, but FakeExtension requires: 1.0.',
152  ],
153  ],
154  ],
155  [
156  [
157  'extensions' => [
158  'Missing' => '*',
159  ],
160  ],
161  [
162  [
163  'missing' => 'Missing',
164  'type' => 'missing-extensions',
165  'msg' => 'FakeExtension requires Missing to be installed.',
166  ],
167  ],
168  ],
169  [
170  [
171  'extensions' => [
172  'FakeDependency' => '2.0.0',
173  ],
174  ],
175  [
176  [
177  'incompatible' => 'FakeExtension',
178  'type' => 'incompatible-extensions',
179  // phpcs:ignore Generic.Files.LineLength.TooLong
180  'msg' => 'FakeExtension is not compatible with the current installed version of FakeDependency (1.0.0), it requires: 2.0.0.',
181  ],
182  ],
183  ],
184  [
185  [
186  'skins' => [
187  'FakeSkin' => '*',
188  ],
189  ],
190  [
191  [
192  'missing' => 'FakeSkin',
193  'type' => 'missing-skins',
194  'msg' => 'FakeExtension requires FakeSkin to be installed.',
195  ],
196  ],
197  ],
198  [
199  [
200  'platform' => [
201  'ext-phpLoadedExtension' => '*',
202  ],
203  ],
204  [],
205  ],
206  [
207  [
208  'platform' => [
209  'ext-phpMissingExtension' => '*',
210  ],
211  ],
212  [
213  [
214  'missing' => 'phpMissingExtension',
215  'type' => 'missing-phpExtension',
216  // phpcs:ignore Generic.Files.LineLength.TooLong
217  'msg' => 'FakeExtension requires phpMissingExtension PHP extension to be installed.',
218  ],
219  ],
220  ],
221  ];
222  }
223 
228  public function testInvalidConstraint() {
229  $checker = new VersionChecker( '1.0.0', '7.0.0', [] );
230  $checker->setLoadedExtensionsAndSkins( [
231  'FakeDependency' => [
232  'version' => 'not really valid',
233  ],
234  ] );
235  $this->assertEquals( [
236  [
237  'type' => 'invalid-version',
238  'msg' => "FakeDependency does not have a valid version string.",
239  ],
240  ], $checker->checkArray( [
241  'FakeExtension' => [
242  'extensions' => [
243  'FakeDependency' => '1.24.3',
244  ],
245  ],
246  ] ) );
247 
248  $checker = new VersionChecker( '1.0.0', '7.0.0', [] );
249  $checker->setLoadedExtensionsAndSkins( [
250  'FakeDependency' => [
251  'version' => '1.24.3',
252  ],
253  ] );
254 
255  $this->setExpectedException( UnexpectedValueException::class );
256  $checker->checkArray( [
257  'FakeExtension' => [
258  'FakeDependency' => 'not really valid',
259  ],
260  ] );
261  }
262 
263  public function provideInvalidDependency() {
264  return [
265  [
266  [
267  'FakeExtension' => [
268  'platform' => [
269  'undefinedPlatformDependency' => '*',
270  ],
271  ],
272  ],
273  'undefinedPlatformDependency',
274  ],
275  [
276  [
277  'FakeExtension' => [
278  'platform' => [
279  'phpLoadedExtension' => '*',
280  ],
281  ],
282  ],
283  'phpLoadedExtension',
284  ],
285  [
286  [
287  'FakeExtension' => [
288  'undefinedDependencyType' => '*',
289  ],
290  ],
291  'undefinedDependencyType',
292  ],
293  // T197478
294  [
295  [
296  'FakeExtension' => [
297  'skin' => [
298  'FakeSkin' => '*',
299  ],
300  ],
301  ],
302  'skin',
303  ],
304  ];
305  }
306 
310  public function testInvalidDependency( $depencency, $type ) {
311  $checker = new VersionChecker( '1.0.0', '7.0.0', [ 'phpLoadedExtension' ] );
312  $this->setExpectedException(
314  "Dependency type $type unknown in FakeExtension"
315  );
316  $checker->checkArray( $depencency );
317  }
318 
320  $checker = new VersionChecker( '1.0.0', '7.0.0', [ 'phpLoadedExtension' ] );
321  $this->setExpectedException(
323  'Version constraints for PHP extensions are not supported in FakeExtension'
324  );
325  $checker->checkArray( [
326  'FakeExtension' => [
327  'platform' => [
328  'ext-phpLoadedExtension' => '1.0.0',
329  ],
330  ],
331  ] );
332  }
333 }
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
VersionCheckerTest\testPhpInvalidConstraint
testPhpInvalidConstraint()
UnexpectedValueException.
Definition: VersionCheckerTest.php:73
VersionCheckerTest\testType
testType( $given, $expected)
provideType
Definition: VersionCheckerTest.php:103
VersionCheckerTest\provideInvalidDependency
provideInvalidDependency()
Definition: VersionCheckerTest.php:263
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
VersionCheckerTest\testMediaWikiCheck
testMediaWikiCheck( $coreVersion, $constraint, $expected)
provideMediaWikiCheck
Definition: VersionCheckerTest.php:14
VersionCheckerTest\provideType
static provideType()
Definition: VersionCheckerTest.php:116
VersionCheckerTest\providePhpInvalidVersion
static providePhpInvalidVersion()
Definition: VersionCheckerTest.php:92
VersionCheckerTest\testInvalidDependency
testInvalidDependency( $depencency, $type)
provideInvalidDependency
Definition: VersionCheckerTest.php:310
VersionCheckerTest
VersionChecker.
Definition: VersionCheckerTest.php:6
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
VersionCheckerTest\testPhpValidCheck
testPhpValidCheck( $phpVersion, $constraint, $expected)
providePhpValidCheck
Definition: VersionCheckerTest.php:50
VersionCheckerTest\testPhpInvalidVersion
testPhpInvalidVersion( $phpVersion)
providePhpInvalidVersion UnexpectedValueException
Definition: VersionCheckerTest.php:88
VersionChecker
Provides functions to check a set of extensions with dependencies against a set of loaded extensions ...
Definition: VersionChecker.php:32
VersionCheckerTest\providePhpValidCheck
static providePhpValidCheck()
Definition: VersionCheckerTest.php:61
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:2036
VersionCheckerTest\testInvalidConstraint
testInvalidConstraint()
Check, if a non-parsable version constraint does not throw an exception or returns any error message.
Definition: VersionCheckerTest.php:228
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
VersionCheckerTest\provideMediaWikiCheck
static provideMediaWikiCheck()
Definition: VersionCheckerTest.php:23
VersionCheckerTest\testInvalidPhpExtensionConstraint
testInvalidPhpExtensionConstraint()
Definition: VersionCheckerTest.php:319
$type
$type
Definition: testCompression.php:48