123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Test\Installer;
- use Composer\Composer;
- use Composer\Config;
- use Composer\Installer\PluginInstaller;
- use Composer\Package\Loader\JsonLoader;
- use Composer\Package\Loader\ArrayLoader;
- use Composer\Plugin\PluginManager;
- use Composer\Autoload\AutoloadGenerator;
- use Composer\Util\Filesystem;
- class PluginInstallerTest extends \PHPUnit_Framework_TestCase
- {
- protected $composer;
- protected $packages;
- protected $im;
- protected $pm;
- protected $repository;
- protected $io;
- protected $autoloadGenerator;
- protected $directory;
- protected function setUp()
- {
- $loader = new JsonLoader(new ArrayLoader());
- $this->packages = array();
- $this->directory = sys_get_temp_dir() . '/' . uniqid();
- for ($i = 1; $i <= 4; $i++) {
- $filename = '/Fixtures/plugin-v'.$i.'/composer.json';
- mkdir(dirname($this->directory . $filename), 0777, TRUE);
- $this->packages[] = $loader->load(__DIR__ . $filename);
- }
- $dm = $this->getMockBuilder('Composer\Downloader\DownloadManager')
- ->disableOriginalConstructor()
- ->getMock();
- $this->repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
- $rm = $this->getMockBuilder('Composer\Repository\RepositoryManager')
- ->disableOriginalConstructor()
- ->getMock();
- $rm->expects($this->any())
- ->method('getLocalRepository')
- ->will($this->returnValue($this->repository));
- $im = $this->getMock('Composer\Installer\InstallationManager');
- $im->expects($this->any())
- ->method('getInstallPath')
- ->will($this->returnCallback(function ($package) {
- return __DIR__.'/Fixtures/'.$package->getPrettyName();
- }));
- $this->io = $this->getMock('Composer\IO\IOInterface');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')->disableOriginalConstructor()->getMock();
- $this->autoloadGenerator = new AutoloadGenerator($dispatcher);
- $this->composer = new Composer();
- $config = new Config();
- $this->composer->setConfig($config);
- $this->composer->setDownloadManager($dm);
- $this->composer->setRepositoryManager($rm);
- $this->composer->setInstallationManager($im);
- $this->composer->setAutoloadGenerator($this->autoloadGenerator);
- $this->pm = new PluginManager($this->composer, $this->io);
- $this->composer->setPluginManager($this->pm);
- $config->merge(array(
- 'config' => array(
- 'vendor-dir' => $this->directory.'/Fixtures/',
- 'home' => $this->directory.'/Fixtures',
- 'bin-dir' => $this->directory.'/Fixtures/bin',
- ),
- ));
- }
- protected function tearDown()
- {
- $filesystem = new Filesystem();
- $filesystem->removeDirectory($this->directory);
- }
- public function testInstallNewPlugin()
- {
- $this->repository
- ->expects($this->exactly(2))
- ->method('getPackages')
- ->will($this->returnValue(array()));
- $installer = new PluginInstaller($this->io, $this->composer);
- $this->pm->loadInstalledPlugins();
- $installer->install($this->repository, $this->packages[0]);
- $plugins = $this->pm->getPlugins();
- $this->assertEquals('installer-v1', $plugins[0]->version);
- }
- public function testInstallMultiplePlugins()
- {
- $this->repository
- ->expects($this->exactly(2))
- ->method('getPackages')
- ->will($this->returnValue(array()));
- $installer = new PluginInstaller($this->io, $this->composer);
- $this->pm->loadInstalledPlugins();
- $installer->install($this->repository, $this->packages[3]);
- $plugins = $this->pm->getPlugins();
- $this->assertEquals('plugin1', $plugins[0]->name);
- $this->assertEquals('installer-v4', $plugins[0]->version);
- $this->assertEquals('plugin2', $plugins[1]->name);
- $this->assertEquals('installer-v4', $plugins[1]->version);
- }
- public function testUpgradeWithNewClassName()
- {
- $this->repository
- ->expects($this->exactly(3))
- ->method('getPackages')
- ->will($this->returnValue(array($this->packages[0])));
- $this->repository
- ->expects($this->exactly(2))
- ->method('hasPackage')
- ->will($this->onConsecutiveCalls(true, false));
- $installer = new PluginInstaller($this->io, $this->composer);
- $this->pm->loadInstalledPlugins();
- $installer->update($this->repository, $this->packages[0], $this->packages[1]);
- $plugins = $this->pm->getPlugins();
- $this->assertEquals('installer-v2', $plugins[1]->version);
- }
- public function testUpgradeWithSameClassName()
- {
- $this->repository
- ->expects($this->exactly(3))
- ->method('getPackages')
- ->will($this->returnValue(array($this->packages[1])));
- $this->repository
- ->expects($this->exactly(2))
- ->method('hasPackage')
- ->will($this->onConsecutiveCalls(true, false));
- $installer = new PluginInstaller($this->io, $this->composer);
- $this->pm->loadInstalledPlugins();
- $installer->update($this->repository, $this->packages[1], $this->packages[2]);
- $plugins = $this->pm->getPlugins();
- $this->assertEquals('installer-v3', $plugins[1]->version);
- }
- public function testRegisterPluginOnlyOneTime()
- {
- $this->repository
- ->expects($this->exactly(2))
- ->method('getPackages')
- ->will($this->returnValue(array()));
- $installer = new PluginInstaller($this->io, $this->composer);
- $this->pm->loadInstalledPlugins();
- $installer->install($this->repository, $this->packages[0]);
- $installer->install($this->repository, clone $this->packages[0]);
- $plugins = $this->pm->getPlugins();
- $this->assertCount(1, $plugins);
- $this->assertEquals('installer-v1', $plugins[0]->version);
- }
- }
|