Merge "Fixup contenttype stuff in UserMailer"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / composer / ComposerLockTest.php
index 5b09cdb..75eb62c 100644 (file)
@@ -10,22 +10,119 @@ class ComposerLockTest extends MediaWikiTestCase {
                $this->lock = "$IP/tests/phpunit/data/composer/composer.lock";
        }
 
+       /**
+        * @covers ComposerLock::getHash
+        */
        public function testGetHash() {
                $lock = new ComposerLock( $this->lock );
-               $this->assertEquals( 'cc6e7fc565b246cb30b0cac103a2b31e', $lock->getHash() );
+               $this->assertEquals( 'a3bb80b0ac4c4a31e52574d48c032923', $lock->getHash() );
        }
 
        /**
-        * @covers ComposerLockParser::getInstalledDependencies
+        * @covers ComposerLock::getInstalledDependencies
         */
        public function testGetInstalledDependencies() {
                $lock = new ComposerLock( $this->lock );
-               $this->assertArrayEquals( array(
-                       'cdb/cdb' => '1.0.0',
-                       'cssjanus/cssjanus' => '1.1.1',
-                       'leafo/lessphp' => '0.5.0',
-                       'psr/log' => '1.0.0',
-               ), $lock->getInstalledDependencies(), false, true );
+               $this->assertArrayEquals( [
+                       'wikimedia/cdb' => [
+                               'version' => '1.0.1',
+                               'type' => 'library',
+                               'licenses' => [ 'GPL-2.0' ],
+                               'authors' => [
+                                       [
+                                               'name' => 'Tim Starling',
+                                               'email' => 'tstarling@wikimedia.org',
+                                       ],
+                                       [
+                                               'name' => 'Chad Horohoe',
+                                               'email' => 'chad@wikimedia.org',
+                                       ],
+                               ],
+                               'description' => 'Constant Database (CDB) wrapper library for PHP. '.
+                                       'Provides pure-PHP fallback when dba_* functions are absent.',
+                       ],
+                       'cssjanus/cssjanus' => [
+                               'version' => '1.1.1',
+                               'type' => 'library',
+                               'licenses' => [ 'Apache-2.0' ],
+                               'authors' => [],
+                               'description' => 'Convert CSS stylesheets between left-to-right and right-to-left.',
+                       ],
+                       'leafo/lessphp' => [
+                               'version' => '0.5.0',
+                               'type' => 'library',
+                               'licenses' => [ 'MIT', 'GPL-3.0' ],
+                               'authors' => [
+                                       [
+                                               'name' => 'Leaf Corcoran',
+                                               'email' => 'leafot@gmail.com',
+                                               'homepage' => 'http://leafo.net',
+                                       ],
+                               ],
+                               'description' => 'lessphp is a compiler for LESS written in PHP.',
+                       ],
+                       'psr/log' => [
+                               'version' => '1.0.0',
+                               'type' => 'library',
+                               'licenses' => [ 'MIT' ],
+                               'authors' => [
+                                       [
+                                               'name' => 'PHP-FIG',
+                                               'homepage' => 'http://www.php-fig.org/',
+                                       ],
+                               ],
+                               'description' => 'Common interface for logging libraries',
+                       ],
+                       'oojs/oojs-ui' => [
+                               'version' => '0.6.0',
+                               'type' => 'library',
+                               'licenses' => [ 'MIT' ],
+                               'authors' => [],
+                               'description' => '',
+                       ],
+                       'composer/installers' => [
+                               'version' => '1.0.19',
+                               'type' => 'composer-installer',
+                               'licenses' => [ 'MIT' ],
+                               'authors' => [
+                                       [
+                                               'name' => 'Kyle Robinson Young',
+                                               'email' => 'kyle@dontkry.com',
+                                               'homepage' => 'https://github.com/shama',
+                                       ],
+                               ],
+                               'description' => 'A multi-framework Composer library installer',
+                       ],
+                       'mediawiki/translate' => [
+                               'version' => '2014.12',
+                               'type' => 'mediawiki-extension',
+                               'licenses' => [ 'GPL-2.0+' ],
+                               'authors' => [
+                                       [
+                                               'name' => 'Niklas Laxström',
+                                               'email' => 'niklas.laxstrom@gmail.com',
+                                               'role' => 'Lead nitpicker',
+                                       ],
+                                       [
+                                               'name' => 'Siebrand Mazeland',
+                                               'email' => 's.mazeland@xs4all.nl',
+                                               'role' => 'Developer',
+                                       ],
+                               ],
+                               'description' => 'The only standard solution to translate any kind ' .
+                                       'of text with an avant-garde web interface within MediaWiki, ' .
+                                       'including your documentation and software',
+                       ],
+                       'mediawiki/universal-language-selector' => [
+                               'version' => '2014.12',
+                               'type' => 'mediawiki-extension',
+                               'licenses' => [ 'GPL-2.0+', 'MIT' ],
+                               'authors' => [],
+                               'description' => 'The primary aim is to allow users to select a language ' .
+                                       'and configure its support in an easy way. ' .
+                                       'Main features are language selection, input methods and web fonts.',
+                       ],
+               ], $lock->getInstalledDependencies(), false, true );
        }
 
 }