177 lines
5.7 KiB
PHP
177 lines
5.7 KiB
PHP
<?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\InstallerInstaller;
|
|
use Composer\Package\Loader\JsonLoader;
|
|
use Composer\Package\Loader\ArrayLoader;
|
|
use Composer\Package\PackageInterface;
|
|
|
|
class InstallerInstallerTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
protected $composer;
|
|
protected $packages;
|
|
protected $im;
|
|
protected $repository;
|
|
protected $io;
|
|
|
|
protected function setUp()
|
|
{
|
|
$loader = new JsonLoader(new ArrayLoader());
|
|
$this->packages = array();
|
|
for ($i = 1; $i <= 4; $i++) {
|
|
$this->packages[] = $loader->load(__DIR__.'/Fixtures/installer-v'.$i.'/composer.json');
|
|
}
|
|
|
|
$dm = $this->getMockBuilder('Composer\Downloader\DownloadManager')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->im = $this->getMockBuilder('Composer\Installer\InstallationManager')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->repository = $this->getMock('Composer\Repository\InstalledRepositoryInterface');
|
|
|
|
$rm = $this->getMockBuilder('Composer\Repository\RepositoryManager')
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$rm->expects($this->any())
|
|
->method('getLocalRepositories')
|
|
->will($this->returnValue(array($this->repository)));
|
|
|
|
$this->io = $this->getMock('Composer\IO\IOInterface');
|
|
|
|
$this->composer = new Composer();
|
|
$config = new Config();
|
|
$this->composer->setConfig($config);
|
|
$this->composer->setDownloadManager($dm);
|
|
$this->composer->setInstallationManager($this->im);
|
|
$this->composer->setRepositoryManager($rm);
|
|
|
|
$config->merge(array(
|
|
'config' => array(
|
|
'vendor-dir' => __DIR__.'/Fixtures/',
|
|
'bin-dir' => __DIR__.'/Fixtures/bin',
|
|
),
|
|
));
|
|
}
|
|
|
|
public function testInstallNewInstaller()
|
|
{
|
|
$this->repository
|
|
->expects($this->once())
|
|
->method('getPackages')
|
|
->will($this->returnValue(array()));
|
|
$installer = new InstallerInstallerMock($this->io, $this->composer);
|
|
|
|
$test = $this;
|
|
$this->im
|
|
->expects($this->once())
|
|
->method('addInstaller')
|
|
->will($this->returnCallback(function ($installer) use ($test) {
|
|
$test->assertEquals('installer-v1', $installer->version);
|
|
}));
|
|
|
|
$installer->install($this->repository, $this->packages[0]);
|
|
}
|
|
|
|
public function testInstallMultipleInstallers()
|
|
{
|
|
$this->repository
|
|
->expects($this->once())
|
|
->method('getPackages')
|
|
->will($this->returnValue(array()));
|
|
|
|
$installer = new InstallerInstallerMock($this->io, $this->composer);
|
|
|
|
$test = $this;
|
|
|
|
$this->im
|
|
->expects($this->at(0))
|
|
->method('addInstaller')
|
|
->will($this->returnCallback(function ($installer) use ($test) {
|
|
$test->assertEquals('custom1', $installer->name);
|
|
$test->assertEquals('installer-v4', $installer->version);
|
|
}));
|
|
|
|
$this->im
|
|
->expects($this->at(1))
|
|
->method('addInstaller')
|
|
->will($this->returnCallback(function ($installer) use ($test) {
|
|
$test->assertEquals('custom2', $installer->name);
|
|
$test->assertEquals('installer-v4', $installer->version);
|
|
}));
|
|
|
|
$installer->install($this->repository, $this->packages[3]);
|
|
}
|
|
|
|
public function testUpgradeWithNewClassName()
|
|
{
|
|
$this->repository
|
|
->expects($this->once())
|
|
->method('getPackages')
|
|
->will($this->returnValue(array($this->packages[0])));
|
|
$this->repository
|
|
->expects($this->exactly(2))
|
|
->method('hasPackage')
|
|
->will($this->onConsecutiveCalls(true, false));
|
|
$installer = new InstallerInstallerMock($this->io, $this->composer);
|
|
|
|
$test = $this;
|
|
$this->im
|
|
->expects($this->once())
|
|
->method('addInstaller')
|
|
->will($this->returnCallback(function ($installer) use ($test) {
|
|
$test->assertEquals('installer-v2', $installer->version);
|
|
}));
|
|
|
|
$installer->update($this->repository, $this->packages[0], $this->packages[1]);
|
|
}
|
|
|
|
public function testUpgradeWithSameClassName()
|
|
{
|
|
$this->repository
|
|
->expects($this->once())
|
|
->method('getPackages')
|
|
->will($this->returnValue(array($this->packages[1])));
|
|
$this->repository
|
|
->expects($this->exactly(2))
|
|
->method('hasPackage')
|
|
->will($this->onConsecutiveCalls(true, false));
|
|
$installer = new InstallerInstallerMock($this->io, $this->composer);
|
|
|
|
$test = $this;
|
|
$this->im
|
|
->expects($this->once())
|
|
->method('addInstaller')
|
|
->will($this->returnCallback(function ($installer) use ($test) {
|
|
$test->assertEquals('installer-v3', $installer->version);
|
|
}));
|
|
|
|
$installer->update($this->repository, $this->packages[1], $this->packages[2]);
|
|
}
|
|
}
|
|
|
|
class InstallerInstallerMock extends InstallerInstaller
|
|
{
|
|
public function getInstallPath(PackageInterface $package)
|
|
{
|
|
$version = $package->getVersion();
|
|
|
|
return __DIR__.'/Fixtures/installer-v'.$version[0].'/';
|
|
}
|
|
}
|