* Jordi Boggiano * * 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; use Composer\Repository\InstalledRepositoryInterface; use Composer\Package\PackageInterface; use Composer\IO\IOInterface; use Composer\DependencyResolver\Operation\InstallOperation; use Composer\DependencyResolver\Operation\UpdateOperation; use Composer\DependencyResolver\Operation\UninstallOperation; use Composer\DependencyResolver\Operation\MarkAliasInstalledOperation; use Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation; class InstallationManagerMock extends InstallationManager { /** * @var PackageInterface[] */ private $installed = array(); /** * @var PackageInterface[][] */ private $updated = array(); /** * @var PackageInterface[] */ private $uninstalled = array(); /** * @var string[] */ private $trace = array(); public function __construct() { } public function execute(InstalledRepositoryInterface $repo, array $operations, $devMode = true, $runScripts = true) { foreach ($operations as $operation) { $method = $operation->getOperationType(); // skipping download() step here for tests $this->$method($repo, $operation); } } public function getInstallPath(PackageInterface $package) { return ''; } public function isPackageInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) { return $repo->hasPackage($package); } /** * @inheritDoc */ public function install(InstalledRepositoryInterface $repo, InstallOperation $operation) { $this->installed[] = $operation->getPackage(); $this->trace[] = strip_tags((string) $operation); $repo->addPackage(clone $operation->getPackage()); return null; } /** * @inheritDoc */ public function update(InstalledRepositoryInterface $repo, UpdateOperation $operation) { $this->updated[] = array($operation->getInitialPackage(), $operation->getTargetPackage()); $this->trace[] = strip_tags((string) $operation); $repo->removePackage($operation->getInitialPackage()); if (!$repo->hasPackage($operation->getTargetPackage())) { $repo->addPackage(clone $operation->getTargetPackage()); } return null; } /** * @inheritDoc */ public function uninstall(InstalledRepositoryInterface $repo, UninstallOperation $operation) { $this->uninstalled[] = $operation->getPackage(); $this->trace[] = strip_tags((string) $operation); $repo->removePackage($operation->getPackage()); return null; } public function markAliasInstalled(InstalledRepositoryInterface $repo, MarkAliasInstalledOperation $operation) { $package = $operation->getPackage(); $this->installed[] = $package; $this->trace[] = strip_tags((string) $operation); parent::markAliasInstalled($repo, $operation); } public function markAliasUninstalled(InstalledRepositoryInterface $repo, MarkAliasUninstalledOperation $operation) { $this->uninstalled[] = $operation->getPackage(); $this->trace[] = strip_tags((string) $operation); parent::markAliasUninstalled($repo, $operation); } /** @return string[] */ public function getTrace() { return $this->trace; } /** @return PackageInterface[] */ public function getInstalledPackages() { return $this->installed; } /** @return PackageInterface[][] */ public function getUpdatedPackages() { return $this->updated; } /** @return PackageInterface[] */ public function getUninstalledPackages() { return $this->uninstalled; } public function notifyInstalls(IOInterface $io) { // noop } /** @return PackageInterface[] */ public function getInstalledPackagesByType() { return $this->installed; } }