1
0
Fork 0
composer/tests/Composer/Test/Plugin/PluginInstallerTest.php

189 lines
6.1 KiB
PHP
Raw Normal View History

2011-11-05 22:51:35 +00:00
<?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;
2011-11-05 22:51:35 +00:00
use Composer\Package\Loader\JsonLoader;
use Composer\Package\Loader\ArrayLoader;
2011-11-05 22:51:35 +00:00
use Composer\Package\PackageInterface;
2013-01-06 19:34:52 +00:00
use Composer\Autoload\AutoloadGenerator;
2011-11-05 22:51:35 +00:00
class PluginInstallerTest extends \PHPUnit_Framework_TestCase
2011-11-05 22:51:35 +00:00
{
protected $composer;
protected $packages;
protected $im;
protected $pm;
protected $repository;
protected $io;
2013-01-06 19:34:52 +00:00
protected $autoloadGenerator;
2011-11-05 22:51:35 +00:00
protected function setUp()
{
$loader = new JsonLoader(new ArrayLoader());
2011-11-05 22:51:35 +00:00
$this->packages = array();
for ($i = 1; $i <= 4; $i++) {
$this->packages[] = $loader->load(__DIR__.'/Fixtures/plugin-v'.$i.'/composer.json');
2011-11-05 22:51:35 +00:00
}
$dm = $this->getMockBuilder('Composer\Downloader\DownloadManager')
2011-11-05 22:51:35 +00:00
->disableOriginalConstructor()
->getMock();
$this->im = $this->getMockBuilder('Composer\Installer\InstallationManager')
->disableOriginalConstructor()
->getMock();
$this->pm = $this->getMockBuilder('Composer\Plugin\PluginManager')
->disableOriginalConstructor()
->getMock();
2012-04-17 23:06:23 +00:00
$this->repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
2012-01-17 22:13:35 +00:00
$rm = $this->getMockBuilder('Composer\Repository\RepositoryManager')
->disableOriginalConstructor()
->getMock();
$rm->expects($this->any())
2013-03-03 16:18:50 +00:00
->method('getLocalRepository')
->will($this->returnValue($this->repository));
2012-04-14 13:45:25 +00:00
$this->io = $this->getMock('Composer\IO\IOInterface');
2013-01-06 19:34:52 +00:00
$dispatcher = $this->getMockBuilder('Composer\Script\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->setInstallationManager($this->im);
$this->composer->setPluginManager($this->pm);
$this->composer->setRepositoryManager($rm);
2013-01-06 19:34:52 +00:00
$this->composer->setAutoloadGenerator($this->autoloadGenerator);
$config->merge(array(
'config' => array(
'vendor-dir' => __DIR__.'/Fixtures/',
'bin-dir' => __DIR__.'/Fixtures/bin',
),
));
2011-11-05 22:51:35 +00:00
}
public function testInstallNewPlugin()
2011-11-05 22:51:35 +00:00
{
$this->repository
->expects($this->once())
->method('getPackages')
->will($this->returnValue(array()));
$installer = new PluginInstallerMock($this->io, $this->composer);
2011-11-05 22:51:35 +00:00
$test = $this;
$this->pm
2011-11-05 22:51:35 +00:00
->expects($this->once())
->method('addPlugin')
2011-11-05 22:51:35 +00:00
->will($this->returnCallback(function ($installer) use ($test) {
$test->assertEquals('installer-v1', $installer->version);
}));
2012-04-14 13:45:25 +00:00
$installer->install($this->repository, $this->packages[0]);
2011-11-05 22:51:35 +00:00
}
public function testInstallMultiplePlugins()
{
$this->repository
->expects($this->once())
->method('getPackages')
->will($this->returnValue(array()));
$installer = new PluginInstallerMock($this->io, $this->composer);
$test = $this;
$this->pm
->expects($this->at(0))
->method('addPlugin')
->will($this->returnCallback(function ($plugin) use ($test) {
$test->assertEquals('plugin1', $plugin->name);
$test->assertEquals('installer-v4', $plugin->version);
}));
$this->pm
->expects($this->at(1))
->method('addPlugin')
->will($this->returnCallback(function ($plugin) use ($test) {
$test->assertEquals('plugin2', $plugin->name);
$test->assertEquals('installer-v4', $plugin->version);
}));
$installer->install($this->repository, $this->packages[3]);
}
2011-11-05 22:51:35 +00:00
public function testUpgradeWithNewClassName()
{
$this->repository
->expects($this->once())
->method('getPackages')
->will($this->returnValue(array($this->packages[0])));
$this->repository
->expects($this->exactly(2))
2011-11-05 22:51:35 +00:00
->method('hasPackage')
->will($this->onConsecutiveCalls(true, false));
$installer = new PluginInstallerMock($this->io, $this->composer);
2011-11-05 22:51:35 +00:00
$test = $this;
$this->pm
2011-11-05 22:51:35 +00:00
->expects($this->once())
->method('addPlugin')
->will($this->returnCallback(function ($plugin) use ($test) {
$test->assertEquals('installer-v2', $plugin->version);
2011-11-05 22:51:35 +00:00
}));
2012-04-14 13:45:25 +00:00
$installer->update($this->repository, $this->packages[0], $this->packages[1]);
2011-11-05 22:51:35 +00:00
}
public function testUpgradeWithSameClassName()
{
$this->repository
->expects($this->once())
->method('getPackages')
->will($this->returnValue(array($this->packages[1])));
$this->repository
->expects($this->exactly(2))
2011-11-05 22:51:35 +00:00
->method('hasPackage')
->will($this->onConsecutiveCalls(true, false));
$installer = new PluginInstallerMock($this->io, $this->composer);
2011-11-05 22:51:35 +00:00
$test = $this;
$this->pm
2011-11-05 22:51:35 +00:00
->expects($this->once())
->method('addPlugin')
->will($this->returnCallback(function ($plugin) use ($test) {
$test->assertEquals('installer-v3', $plugin->version);
2011-11-05 22:51:35 +00:00
}));
2012-04-14 13:45:25 +00:00
$installer->update($this->repository, $this->packages[1], $this->packages[2]);
2011-11-05 22:51:35 +00:00
}
}
class PluginInstallerMock extends PluginInstaller
2011-11-05 22:51:35 +00:00
{
public function getInstallPath(PackageInterface $package)
{
$version = $package->getVersion();
2012-06-14 10:10:01 +00:00
return __DIR__.'/Fixtures/plugin-v'.$version[0].'/';
2011-11-05 22:51:35 +00:00
}
2012-06-14 10:10:01 +00:00
}