2012-01-25 12:40:16 +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\MetapackageInstaller;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2012-01-25 12:40:16 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class MetapackageInstallerTest extends TestCase
|
2012-01-25 12:40:16 +00:00
|
|
|
{
|
|
|
|
private $repository;
|
|
|
|
private $installer;
|
|
|
|
private $io;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->repository = $this->getMockBuilder('Composer\Repository\InstalledRepositoryInterface')->getMock();
|
2012-01-25 12:40:16 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2012-01-25 12:40:16 +00:00
|
|
|
|
2019-01-29 10:14:22 +00:00
|
|
|
$this->installer = new MetapackageInstaller($this->io);
|
2012-01-25 12:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testInstall()
|
|
|
|
{
|
|
|
|
$package = $this->createPackageMock();
|
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addPackage')
|
|
|
|
->with($package);
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$this->installer->install($this->repository, $package);
|
2012-01-25 12:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate()
|
|
|
|
{
|
|
|
|
$initial = $this->createPackageMock();
|
2019-01-29 10:14:22 +00:00
|
|
|
$initial->expects($this->once())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2017-03-08 14:07:29 +00:00
|
|
|
$target = $this->createPackageMock();
|
2019-01-29 10:14:22 +00:00
|
|
|
$target->expects($this->once())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.1'));
|
2012-01-25 12:40:16 +00:00
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('hasPackage')
|
|
|
|
->with($initial)
|
|
|
|
->will($this->onConsecutiveCalls(true, false));
|
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->once())
|
|
|
|
->method('removePackage')
|
|
|
|
->with($initial);
|
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addPackage')
|
|
|
|
->with($target);
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$this->installer->update($this->repository, $initial, $target);
|
2012-01-25 12:40:16 +00:00
|
|
|
|
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$this->installer->update($this->repository, $initial, $target);
|
2012-01-25 12:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUninstall()
|
|
|
|
{
|
|
|
|
$package = $this->createPackageMock();
|
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->exactly(2))
|
|
|
|
->method('hasPackage')
|
|
|
|
->with($package)
|
|
|
|
->will($this->onConsecutiveCalls(true, false));
|
|
|
|
|
|
|
|
$this->repository
|
|
|
|
->expects($this->once())
|
|
|
|
->method('removePackage')
|
|
|
|
->with($package);
|
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$this->installer->uninstall($this->repository, $package);
|
2012-01-25 12:40:16 +00:00
|
|
|
|
2013-08-07 08:50:12 +00:00
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
2012-01-25 12:40:16 +00:00
|
|
|
|
2012-04-14 13:45:25 +00:00
|
|
|
$this->installer->uninstall($this->repository, $package);
|
2012-01-25 12:40:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private function createPackageMock()
|
|
|
|
{
|
2012-08-23 13:52:40 +00:00
|
|
|
return $this->getMockBuilder('Composer\Package\Package')
|
2021-08-21 15:41:52 +00:00
|
|
|
->setConstructorArgs(array(md5((string) mt_rand()), '1.0.0.0', '1.0.0'))
|
2012-01-25 12:40:16 +00:00
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
}
|