2011-09-25 16:30:22 +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\Installer\InstallationManager;
|
|
|
|
use Composer\DependencyResolver\Operation\InstallOperation;
|
|
|
|
use Composer\DependencyResolver\Operation\UpdateOperation;
|
|
|
|
use Composer\DependencyResolver\Operation\UninstallOperation;
|
2017-11-04 14:52:13 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class InstallationManagerTest extends TestCase
|
2011-09-25 16:30:22 +00:00
|
|
|
{
|
2018-01-06 14:05:39 +00:00
|
|
|
protected $repository;
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->repository = $this->getMockBuilder('Composer\Repository\InstalledRepositoryInterface')->getMock();
|
2012-04-14 13:45:25 +00:00
|
|
|
}
|
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
public function testAddGetInstaller()
|
2011-09-25 16:30:22 +00:00
|
|
|
{
|
|
|
|
$installer = $this->createInstallerMock();
|
2011-10-22 18:20:19 +00:00
|
|
|
|
|
|
|
$installer
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('supports')
|
|
|
|
->will($this->returnCallback(function ($arg) {
|
|
|
|
return $arg === 'vendor';
|
|
|
|
}));
|
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$manager->addInstaller($installer);
|
2011-09-25 16:30:22 +00:00
|
|
|
$this->assertSame($installer, $manager->getInstaller('vendor'));
|
|
|
|
|
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
$manager->getInstaller('unregistered');
|
|
|
|
}
|
|
|
|
|
2012-11-29 08:24:28 +00:00
|
|
|
public function testAddRemoveInstaller()
|
|
|
|
{
|
|
|
|
$installer = $this->createInstallerMock();
|
|
|
|
|
|
|
|
$installer
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('supports')
|
|
|
|
->will($this->returnCallback(function ($arg) {
|
|
|
|
return $arg === 'vendor';
|
|
|
|
}));
|
|
|
|
|
|
|
|
$installer2 = $this->createInstallerMock();
|
|
|
|
|
|
|
|
$installer2
|
|
|
|
->expects($this->exactly(1))
|
|
|
|
->method('supports')
|
|
|
|
->will($this->returnCallback(function ($arg) {
|
|
|
|
return $arg === 'vendor';
|
|
|
|
}));
|
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2012-11-29 08:24:28 +00:00
|
|
|
|
|
|
|
$manager->addInstaller($installer);
|
|
|
|
$this->assertSame($installer, $manager->getInstaller('vendor'));
|
|
|
|
$manager->addInstaller($installer2);
|
|
|
|
$this->assertSame($installer2, $manager->getInstaller('vendor'));
|
|
|
|
$manager->removeInstaller($installer2);
|
|
|
|
$this->assertSame($installer, $manager->getInstaller('vendor'));
|
|
|
|
}
|
|
|
|
|
2011-09-25 16:30:22 +00:00
|
|
|
public function testExecute()
|
|
|
|
{
|
|
|
|
$manager = $this->getMockBuilder('Composer\Installer\InstallationManager')
|
|
|
|
->setMethods(array('install', 'update', 'uninstall'))
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$installOperation = new InstallOperation($this->createPackageMock());
|
2017-03-08 14:07:29 +00:00
|
|
|
$removeOperation = new UninstallOperation($this->createPackageMock());
|
|
|
|
$updateOperation = new UpdateOperation(
|
2018-07-24 12:32:52 +00:00
|
|
|
$this->createPackageMock(),
|
|
|
|
$this->createPackageMock()
|
2011-09-25 16:30:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('install')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $installOperation);
|
2011-09-25 16:30:22 +00:00
|
|
|
$manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('uninstall')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $removeOperation);
|
2011-09-25 16:30:22 +00:00
|
|
|
$manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('update')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $updateOperation);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$manager->execute($this->repository, $installOperation);
|
|
|
|
$manager->execute($this->repository, $removeOperation);
|
|
|
|
$manager->execute($this->repository, $updateOperation);
|
2011-09-25 16:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testInstall()
|
|
|
|
{
|
|
|
|
$installer = $this->createInstallerMock();
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2011-10-22 18:20:19 +00:00
|
|
|
$manager->addInstaller($installer);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$package = $this->createPackageMock();
|
2011-09-25 16:30:22 +00:00
|
|
|
$operation = new InstallOperation($package, 'test');
|
|
|
|
|
|
|
|
$package
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('supports')
|
|
|
|
->with('library')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2011-09-25 16:30:22 +00:00
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('install')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $package);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$manager->install($this->repository, $operation);
|
2011-09-25 16:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateWithEqualTypes()
|
|
|
|
{
|
|
|
|
$installer = $this->createInstallerMock();
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2011-10-22 18:20:19 +00:00
|
|
|
$manager->addInstaller($installer);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$initial = $this->createPackageMock();
|
|
|
|
$target = $this->createPackageMock();
|
2011-09-25 16:30:22 +00:00
|
|
|
$operation = new UpdateOperation($initial, $target, 'test');
|
|
|
|
|
|
|
|
$initial
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
$target
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('supports')
|
|
|
|
->with('library')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2011-09-25 16:30:22 +00:00
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('update')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $initial, $target);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$manager->update($this->repository, $operation);
|
2011-09-25 16:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateWithNotEqualTypes()
|
|
|
|
{
|
2011-10-22 18:20:19 +00:00
|
|
|
$libInstaller = $this->createInstallerMock();
|
|
|
|
$bundleInstaller = $this->createInstallerMock();
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2011-10-22 18:20:19 +00:00
|
|
|
$manager->addInstaller($libInstaller);
|
|
|
|
$manager->addInstaller($bundleInstaller);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$initial = $this->createPackageMock();
|
|
|
|
$target = $this->createPackageMock();
|
2011-09-25 16:30:22 +00:00
|
|
|
$operation = new UpdateOperation($initial, $target, 'test');
|
|
|
|
|
|
|
|
$initial
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
$target
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('bundles'));
|
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$bundleInstaller
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('supports')
|
|
|
|
->will($this->returnCallback(function ($arg) {
|
|
|
|
return $arg === 'bundles';
|
|
|
|
}));
|
|
|
|
|
|
|
|
$libInstaller
|
|
|
|
->expects($this->once())
|
|
|
|
->method('supports')
|
|
|
|
->with('library')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$libInstaller
|
2011-09-25 16:30:22 +00:00
|
|
|
->expects($this->once())
|
|
|
|
->method('uninstall')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $initial);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$bundleInstaller
|
2011-09-25 16:30:22 +00:00
|
|
|
->expects($this->once())
|
|
|
|
->method('install')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $target);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$manager->update($this->repository, $operation);
|
2011-09-25 16:30:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUninstall()
|
|
|
|
{
|
|
|
|
$installer = $this->createInstallerMock();
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2011-10-22 18:20:19 +00:00
|
|
|
$manager->addInstaller($installer);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$package = $this->createPackageMock();
|
2011-09-25 16:30:22 +00:00
|
|
|
$operation = new UninstallOperation($package, 'test');
|
|
|
|
|
|
|
|
$package
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
|
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('uninstall')
|
2012-04-14 13:45:25 +00:00
|
|
|
->with($this->repository, $package);
|
2011-09-25 16:30:22 +00:00
|
|
|
|
2011-10-22 18:20:19 +00:00
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('supports')
|
|
|
|
->with('library')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$manager->uninstall($this->repository, $operation);
|
2011-09-25 16:30:22 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 21:15:13 +00:00
|
|
|
public function testInstallBinary()
|
|
|
|
{
|
|
|
|
$installer = $this->getMockBuilder('Composer\Installer\LibraryInstaller')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-03-08 14:07:29 +00:00
|
|
|
$manager = new InstallationManager();
|
2016-03-28 21:15:13 +00:00
|
|
|
$manager->addInstaller($installer);
|
|
|
|
|
2017-03-08 14:07:29 +00:00
|
|
|
$package = $this->createPackageMock();
|
2016-03-28 21:15:13 +00:00
|
|
|
|
|
|
|
$package
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getType')
|
|
|
|
->will($this->returnValue('library'));
|
|
|
|
|
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('supports')
|
|
|
|
->with('library')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$installer
|
|
|
|
->expects($this->once())
|
2016-07-02 15:35:09 +00:00
|
|
|
->method('ensureBinariesPresence')
|
2016-03-28 21:15:13 +00:00
|
|
|
->with($package);
|
|
|
|
|
2016-07-02 15:35:09 +00:00
|
|
|
$manager->ensureBinariesPresence($package);
|
2016-03-28 21:15:13 +00:00
|
|
|
}
|
|
|
|
|
2011-09-25 16:30:22 +00:00
|
|
|
private function createInstallerMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Composer\Installer\InstallerInterface')
|
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createPackageMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Composer\Package\PackageInterface')
|
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
}
|