2012-04-27 09:42:58 +00:00
|
|
|
<?php
|
2017-03-08 14:07:29 +00:00
|
|
|
|
2012-04-27 09:42:58 +00:00
|
|
|
/*
|
|
|
|
* 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\Mock;
|
|
|
|
|
|
|
|
use Composer\Installer\InstallationManager;
|
2013-03-03 16:18:50 +00:00
|
|
|
use Composer\Repository\InstalledRepositoryInterface;
|
2012-06-20 10:05:18 +00:00
|
|
|
use Composer\Package\PackageInterface;
|
2020-10-27 13:04:36 +00:00
|
|
|
use Composer\IO\IOInterface;
|
2012-04-27 09:42:58 +00:00
|
|
|
use Composer\DependencyResolver\Operation\InstallOperation;
|
|
|
|
use Composer\DependencyResolver\Operation\UpdateOperation;
|
|
|
|
use Composer\DependencyResolver\Operation\UninstallOperation;
|
2012-05-13 20:36:48 +00:00
|
|
|
use Composer\DependencyResolver\Operation\MarkAliasInstalledOperation;
|
|
|
|
use Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation;
|
2012-04-27 09:42:58 +00:00
|
|
|
|
|
|
|
class InstallationManagerMock extends InstallationManager
|
|
|
|
{
|
|
|
|
private $installed = array();
|
|
|
|
private $updated = array();
|
|
|
|
private $uninstalled = array();
|
2012-05-13 19:40:42 +00:00
|
|
|
private $trace = array();
|
2012-04-27 09:42:58 +00:00
|
|
|
|
2019-01-17 16:12:33 +00:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function execute(InstalledRepositoryInterface $repo, array $operations, $devMode = true, $runScripts = true)
|
2019-01-17 16:12:33 +00:00
|
|
|
{
|
2019-11-14 14:20:50 +00:00
|
|
|
foreach ($operations as $operation) {
|
2020-01-19 22:11:36 +00:00
|
|
|
$method = $operation->getOperationType();
|
2019-11-14 14:20:50 +00:00
|
|
|
// skipping download() step here for tests
|
|
|
|
$this->$method($repo, $operation);
|
|
|
|
}
|
2019-01-17 16:12:33 +00:00
|
|
|
}
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
public function getInstallPath(PackageInterface $package)
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2013-03-10 18:55:26 +00:00
|
|
|
public function isPackageInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
|
|
|
|
{
|
|
|
|
return $repo->hasPackage($package);
|
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function install(InstalledRepositoryInterface $repo, InstallOperation $operation)
|
2012-04-27 09:42:58 +00:00
|
|
|
{
|
2012-04-29 15:27:37 +00:00
|
|
|
$this->installed[] = $operation->getPackage();
|
2020-04-08 13:18:28 +00:00
|
|
|
$this->trace[] = strip_tags((string) $operation);
|
2012-05-13 19:40:42 +00:00
|
|
|
$repo->addPackage(clone $operation->getPackage());
|
2012-04-27 09:42:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function update(InstalledRepositoryInterface $repo, UpdateOperation $operation)
|
2012-04-27 09:42:58 +00:00
|
|
|
{
|
2012-04-29 15:27:37 +00:00
|
|
|
$this->updated[] = array($operation->getInitialPackage(), $operation->getTargetPackage());
|
2020-04-08 13:18:28 +00:00
|
|
|
$this->trace[] = strip_tags((string) $operation);
|
2012-05-13 19:40:42 +00:00
|
|
|
$repo->removePackage($operation->getInitialPackage());
|
2020-04-20 19:46:56 +00:00
|
|
|
if (!$repo->hasPackage($operation->getTargetPackage())) {
|
|
|
|
$repo->addPackage(clone $operation->getTargetPackage());
|
|
|
|
}
|
2012-04-27 09:42:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function uninstall(InstalledRepositoryInterface $repo, UninstallOperation $operation)
|
2012-04-27 09:42:58 +00:00
|
|
|
{
|
2012-04-29 15:27:37 +00:00
|
|
|
$this->uninstalled[] = $operation->getPackage();
|
2020-04-08 13:18:28 +00:00
|
|
|
$this->trace[] = strip_tags((string) $operation);
|
2012-05-13 19:40:42 +00:00
|
|
|
$repo->removePackage($operation->getPackage());
|
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function markAliasInstalled(InstalledRepositoryInterface $repo, MarkAliasInstalledOperation $operation)
|
2012-05-13 20:36:48 +00:00
|
|
|
{
|
2012-07-01 16:41:58 +00:00
|
|
|
$package = $operation->getPackage();
|
|
|
|
|
|
|
|
$this->installed[] = $package;
|
2020-04-08 13:18:28 +00:00
|
|
|
$this->trace[] = strip_tags((string) $operation);
|
2012-07-01 16:41:58 +00:00
|
|
|
|
2013-04-01 06:10:15 +00:00
|
|
|
parent::markAliasInstalled($repo, $operation);
|
2012-05-13 20:36:48 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 14:49:40 +00:00
|
|
|
public function markAliasUninstalled(InstalledRepositoryInterface $repo, MarkAliasUninstalledOperation $operation)
|
2012-05-13 20:36:48 +00:00
|
|
|
{
|
|
|
|
$this->uninstalled[] = $operation->getPackage();
|
2020-04-08 13:18:28 +00:00
|
|
|
$this->trace[] = strip_tags((string) $operation);
|
2013-04-01 06:10:15 +00:00
|
|
|
|
|
|
|
parent::markAliasUninstalled($repo, $operation);
|
2012-05-13 20:36:48 +00:00
|
|
|
}
|
|
|
|
|
2012-05-13 19:40:42 +00:00
|
|
|
public function getTrace()
|
|
|
|
{
|
|
|
|
return $this->trace;
|
2012-04-27 09:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getInstalledPackages()
|
|
|
|
{
|
|
|
|
return $this->installed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUpdatedPackages()
|
|
|
|
{
|
|
|
|
return $this->updated;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getUninstalledPackages()
|
|
|
|
{
|
|
|
|
return $this->uninstalled;
|
|
|
|
}
|
2020-10-27 13:04:36 +00:00
|
|
|
|
|
|
|
public function notifyInstalls(IOInterface $io)
|
|
|
|
{
|
|
|
|
// noop
|
|
|
|
}
|
2021-02-25 09:00:36 +00:00
|
|
|
|
|
|
|
public function getInstalledPackagesByType()
|
|
|
|
{
|
|
|
|
return $this->installed;
|
|
|
|
}
|
2012-04-27 09:42:58 +00:00
|
|
|
}
|