Upstream composer has replaced the 'hash' with a smarter 'content-hash', but instead of re-implementing (or copy-pasting) all of that in MediaWiki we can just compare the dependencies themselves, since that's all we care about. Bug: T147189 Change-Id: Ic2f22a82699e2b707b6ccb355605999a183a56a0
42 lines
1 KiB
PHP
42 lines
1 KiB
PHP
<?php
|
|
|
|
class ComposerJsonTest extends MediaWikiTestCase {
|
|
|
|
private $json, $json2;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
global $IP;
|
|
$this->json = "$IP/tests/phpunit/data/composer/composer.json";
|
|
$this->json2 = "$IP/tests/phpunit/data/composer/new-composer.json";
|
|
}
|
|
|
|
/**
|
|
* @covers ComposerJson::__construct
|
|
* @covers ComposerJson::getRequiredDependencies
|
|
*/
|
|
public function testGetRequiredDependencies() {
|
|
$json = new ComposerJson( $this->json );
|
|
$this->assertArrayEquals( [
|
|
'cdb/cdb' => '1.0.0',
|
|
'cssjanus/cssjanus' => '1.1.1',
|
|
'leafo/lessphp' => '0.5.0',
|
|
'psr/log' => '1.0.0',
|
|
], $json->getRequiredDependencies(), false, true );
|
|
}
|
|
|
|
public static function provideNormalizeVersion() {
|
|
return [
|
|
[ 'v1.0.0', '1.0.0' ],
|
|
[ '0.0.5', '0.0.5' ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideNormalizeVersion
|
|
* @covers ComposerJson::normalizeVersion
|
|
*/
|
|
public function testNormalizeVersion( $input, $expected ) {
|
|
$this->assertEquals( $expected, ComposerJson::normalizeVersion( $input ) );
|
|
}
|
|
}
|