Merge "resourceloader: Add minified version of mw.loader.implement() wrapper"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / composer / ComposerJsonTest.php
1 <?php
2
3 class ComposerJsonTest extends MediaWikiTestCase {
4
5 private $json, $json2;
6
7 public function setUp() {
8 parent::setUp();
9 global $IP;
10 $this->json = "$IP/tests/phpunit/data/composer/composer.json";
11 $this->json2 = "$IP/tests/phpunit/data/composer/new-composer.json";
12 }
13
14 /**
15 * @covers ComposerJson::__construct
16 * @covers ComposerJson::getRequiredDependencies
17 */
18 public function testGetRequiredDependencies() {
19 $json = new ComposerJson( $this->json );
20 $this->assertArrayEquals( [
21 'cdb/cdb' => '1.0.0',
22 'cssjanus/cssjanus' => '1.1.1',
23 'leafo/lessphp' => '0.5.0',
24 'psr/log' => '1.0.0',
25 ], $json->getRequiredDependencies(), false, true );
26 }
27
28 public static function provideNormalizeVersion() {
29 return [
30 [ 'v1.0.0', '1.0.0' ],
31 [ '0.0.5', '0.0.5' ],
32 ];
33 }
34
35 /**
36 * @dataProvider provideNormalizeVersion
37 * @covers ComposerJson::normalizeVersion
38 */
39 public function testNormalizeVersion( $input, $expected ) {
40 $this->assertEquals( $expected, ComposerJson::normalizeVersion( $input ) );
41 }
42 }