![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/composer/tests/Composer/ |
<?php /** * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ use Magento\Composer\MagentoComposerApplication; use Magento\Composer\InfoCommand; use Magento\Composer\RequireUpdateDryRunCommand; use PHPUnit\Framework\MockObject\MockObject; class RequireUpdateDryRunCommandTest extends \PHPUnit\Framework\TestCase { /** * @var MagentoComposerApplication|MockObject */ protected $application; /** * @var InfoCommand|MockObject */ protected $infoCommand; /** * @var RequireUpdateDryRunCommand */ protected $requireUpdateDryRunCommand; /** * @var string */ private $errorMessage = 'Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - 3rdp/e 1.0.0 requires 3rdp/d 1.0.0 -> no matching package found. - 3rdp/e 1.0.0 requires 3rdp/d 1.0.0 -> no matching package found. - 3rdp/e 1.0.0 requires 3rdp/d 1.0.0 -> no matching package found. - Installation request for 3rdp/e 1.0.0 -> satisfiable by 3rdp/e[1.0.0]. Potential causes: - A typo in the package name - The package is not available in a stable-enough version according to your minimum-stability setting see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details. Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.'; /** * @var string */ private $packageInfo = [ 'name' => '3rdp/d', 'descrip.' => 'Plugin project A', 'versions' => '* 1.0.0, 1.1.0, 1.2.0', 'keywords' => '', 'type' => 'library', 'names' => '3rdp/d', 'current_version' => '1.0.0', 'available_versions' => [ '1.1.0', '1.2.0' ] ]; protected function setUp(): void { $this->application = $this->createMock(\Magento\Composer\MagentoComposerApplication::class); $this->infoCommand = $this->createMock(\Magento\Composer\InfoCommand::class); $this->requireUpdateDryRunCommand = new RequireUpdateDryRunCommand( $this->application, $this->infoCommand ); } public function testRun() { $this->application->expects($this->exactly(2))->method('runComposerCommand'); $this->requireUpdateDryRunCommand->run([], ''); } public function testRunException() { $this->application->expects($this->once()) ->method('runComposerCommand') ->willThrowException(new \RuntimeException($this->errorMessage)); $this->expectException(\RuntimeException::class); $this->infoCommand->expects($this->once())->method('run')->willReturn($this->packageInfo); $this->requireUpdateDryRunCommand->run(['3rdp/e 1.2.0'], ''); } }