1
0
Fork 0
composer/tests/Composer/Test/EventDispatcher/EventDispatcherTest.php

645 lines
22 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
/*
* 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\EventDispatcher;
use Composer\EventDispatcher\Event;
2016-07-21 22:20:56 +00:00
use Composer\EventDispatcher\EventDispatcher;
use Composer\EventDispatcher\ScriptExecutionException;
use Composer\Installer\InstallerEvents;
2016-02-10 14:35:53 +00:00
use Composer\Config;
use Composer\Composer;
use Composer\IO\IOInterface;
use Composer\Test\TestCase;
use Composer\IO\BufferIO;
use Composer\Script\ScriptEvents;
2018-11-12 14:57:44 +00:00
use Composer\Script\Event as ScriptEvent;
2012-12-06 08:56:27 +00:00
use Composer\Util\ProcessExecutor;
use Composer\Util\Platform;
use Symfony\Component\Console\Output\OutputInterface;
class EventDispatcherTest extends TestCase
{
public function testListenerExceptionsAreCaught(): void
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
$io = $this->getIOMock(IOInterface::NORMAL);
2022-08-17 12:20:07 +00:00
$dispatcher = $this->getDispatcherStubForListenersTest([
2015-09-28 09:51:14 +00:00
'Composer\Test\EventDispatcher\EventDispatcherTest::call',
2022-08-17 12:20:07 +00:00
], $io);
$io->expects([
['text' => '> Composer\Test\EventDispatcher\EventDispatcherTest::call'],
['text' => 'Script Composer\Test\EventDispatcher\EventDispatcherTest::call handling the post-install-cmd event terminated with an exception'],
], true);
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
}
/**
* @dataProvider provideValidCommands
*/
2022-02-22 15:47:09 +00:00
public function testDispatcherCanExecuteSingleCommandLineScript(string $command): void
{
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
$command,
2022-08-17 12:20:07 +00:00
], true);
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
$process,
2022-08-17 12:20:07 +00:00
])
->onlyMethods(['getListeners'])
->getMock();
2022-08-17 12:20:07 +00:00
$listener = [$command];
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listener));
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
}
2016-07-21 22:20:56 +00:00
/**
* @dataProvider provideDevModes
2016-07-21 22:20:56 +00:00
*/
2022-02-22 15:47:09 +00:00
public function testDispatcherPassDevModeToAutoloadGeneratorForScriptEvents(bool $devMode): void
2016-07-21 22:20:56 +00:00
{
$composer = $this->createComposerInstance();
$generator = $this->getGeneratorMockForDevModePassingTest();
$generator->expects($this->atLeastOnce())
->method('setDevMode')
->with($devMode);
$composer->setAutoloadGenerator($generator);
$package = $this->getMockBuilder('Composer\Package\RootPackageInterface')->getMock();
2022-08-17 12:20:07 +00:00
$package->method('getScripts')->will($this->returnValue(['scriptName' => ['scriptName']]));
2016-07-21 22:20:56 +00:00
$composer->setPackage($package);
$composer->setRepositoryManager($this->getRepositoryManagerMockForDevModePassingTest());
$composer->setInstallationManager($this->getMockBuilder('Composer\Installer\InstallationManager')->disableOriginalConstructor()->getMock());
2016-07-21 22:20:56 +00:00
$dispatcher = new EventDispatcher(
$composer,
$this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
$this->getProcessExecutorMock()
2016-07-21 22:20:56 +00:00
);
$event = $this->getMockBuilder('Composer\Script\Event')
->disableOriginalConstructor()
->getMock();
$event->method('getName')->will($this->returnValue('scriptName'));
$event->expects($this->atLeastOnce())
->method('isDevMode')
->will($this->returnValue($devMode));
$dispatcher->hasEventListeners($event);
}
public static function provideDevModes(): array
2016-07-21 22:20:56 +00:00
{
2022-08-17 12:20:07 +00:00
return [
[true],
[false],
];
2016-07-21 22:20:56 +00:00
}
/**
* @return \PHPUnit\Framework\MockObject\MockObject&\Composer\Autoload\AutoloadGenerator
*/
2016-07-21 22:20:56 +00:00
private function getGeneratorMockForDevModePassingTest()
{
$generator = $this->getMockBuilder('Composer\Autoload\AutoloadGenerator')
->disableOriginalConstructor()
2022-08-17 12:20:07 +00:00
->onlyMethods([
2016-07-21 22:20:56 +00:00
'buildPackageMap',
'parseAutoloads',
'createLoader',
'setDevMode',
2022-08-17 12:20:07 +00:00
])
2016-07-21 22:20:56 +00:00
->getMock();
$generator
->method('buildPackageMap')
2022-08-17 12:20:07 +00:00
->will($this->returnValue([]));
2016-07-21 22:20:56 +00:00
$generator
->method('parseAutoloads')
2022-08-17 12:20:07 +00:00
->will($this->returnValue(['psr-0' => [], 'psr-4' => [], 'classmap' => [], 'files' => [], 'exclude-from-classmap' => []]));
2016-07-21 22:20:56 +00:00
$generator
->method('createLoader')
->will($this->returnValue($this->getMockBuilder('Composer\Autoload\ClassLoader')->getMock()));
2016-07-21 22:20:56 +00:00
return $generator;
}
/**
* @return \PHPUnit\Framework\MockObject\MockObject&\Composer\Repository\RepositoryManager
*/
2016-07-21 22:20:56 +00:00
private function getRepositoryManagerMockForDevModePassingTest()
{
$rm = $this->getMockBuilder('Composer\Repository\RepositoryManager')
->disableOriginalConstructor()
2022-08-17 12:20:07 +00:00
->onlyMethods(['getLocalRepository'])
2016-07-21 22:20:56 +00:00
->getMock();
$repo = $this->getMockBuilder('Composer\Repository\InstalledRepositoryInterface')->getMock();
2016-07-21 22:20:56 +00:00
$repo
->method('getCanonicalPackages')
2022-08-17 12:20:07 +00:00
->will($this->returnValue([]));
2016-07-21 22:20:56 +00:00
$rm
->method('getLocalRepository')
->will($this->returnValue($repo));
return $rm;
}
public function testDispatcherRemoveListener(): void
{
$composer = $this->createComposerInstance();
$composer->setRepositoryManager($this->getRepositoryManagerMockForDevModePassingTest());
$composer->setInstallationManager($this->getMockBuilder('Composer\Installer\InstallationManager')->disableOriginalConstructor()->getMock());
$dispatcher = new EventDispatcher(
$composer,
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$this->getProcessExecutorMock()
);
2022-08-17 12:20:07 +00:00
$listener = [$this, 'someMethod'];
$listener2 = [$this, 'someMethod2'];
$listener3 = 'Composer\\Test\\EventDispatcher\\EventDispatcherTest::someMethod';
$dispatcher->addListener('ev1', $listener, 0);
$dispatcher->addListener('ev1', $listener, 1);
$dispatcher->addListener('ev1', $listener2, 1);
$dispatcher->addListener('ev1', $listener3);
$dispatcher->addListener('ev2', $listener3);
$dispatcher->addListener('ev2', $listener);
$dispatcher->dispatch('ev1');
$dispatcher->dispatch('ev2');
$expected = '> ev1: Composer\Test\EventDispatcher\EventDispatcherTest->someMethod'.PHP_EOL
.'> ev1: Composer\Test\EventDispatcher\EventDispatcherTest->someMethod2'.PHP_EOL
.'> ev1: Composer\Test\EventDispatcher\EventDispatcherTest->someMethod'.PHP_EOL
.'> ev1: Composer\Test\EventDispatcher\EventDispatcherTest::someMethod'.PHP_EOL
.'> ev2: Composer\Test\EventDispatcher\EventDispatcherTest::someMethod'.PHP_EOL
.'> ev2: Composer\Test\EventDispatcher\EventDispatcherTest->someMethod'.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
$dispatcher->removeListener($this);
$dispatcher->dispatch('ev1');
$dispatcher->dispatch('ev2');
$expected .= '> ev1: Composer\Test\EventDispatcher\EventDispatcherTest::someMethod'.PHP_EOL
.'> ev2: Composer\Test\EventDispatcher\EventDispatcherTest::someMethod'.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public function testDispatcherCanExecuteCliAndPhpInSameEventScriptStack(): void
{
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
'echo -n foo',
'echo -n bar',
2022-08-17 12:20:07 +00:00
], true);
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$process,
2022-08-17 12:20:07 +00:00
])
->onlyMethods([
'getListeners',
2022-08-17 12:20:07 +00:00
])
->getMock();
2022-08-17 12:20:07 +00:00
$listeners = [
'echo -n foo',
'Composer\\Test\\EventDispatcher\\EventDispatcherTest::someMethod',
'echo -n bar',
2022-08-17 12:20:07 +00:00
];
2015-06-24 07:21:36 +00:00
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listeners));
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
$expected = '> post-install-cmd: echo -n foo'.PHP_EOL.
'> post-install-cmd: Composer\Test\EventDispatcher\EventDispatcherTest::someMethod'.PHP_EOL.
'> post-install-cmd: echo -n bar'.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public function testDispatcherCanPutEnv(): void
{
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
$this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$this->getProcessExecutorMock(),
2022-08-17 12:20:07 +00:00
])
->onlyMethods([
'getListeners',
2022-08-17 12:20:07 +00:00
])
->getMock();
2022-08-17 12:20:07 +00:00
$listeners = [
'@putenv ABC=123',
'Composer\\Test\\EventDispatcher\\EventDispatcherTest::getTestEnv',
2022-08-17 12:20:07 +00:00
];
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listeners));
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
$expected = '> post-install-cmd: @putenv ABC=123'.PHP_EOL.
'> post-install-cmd: Composer\Test\EventDispatcher\EventDispatcherTest::getTestEnv'.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public function testDispatcherAppendsDirBinOnPathForEveryListener(): void
{
2022-02-22 15:47:09 +00:00
$currentDirectoryBkp = Platform::getCwd();
$composerBinDirBkp = Platform::getEnv('COMPOSER_BIN_DIR');
chdir(__DIR__);
Platform::putEnv('COMPOSER_BIN_DIR', __DIR__ . '/vendor/bin');
2022-08-17 12:20:07 +00:00
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')->setConstructorArgs([
$this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$this->getProcessExecutorMock(),
2022-08-17 12:20:07 +00:00
])->onlyMethods([
'getListeners',
2022-08-17 12:20:07 +00:00
])->getMock();
2022-08-17 12:20:07 +00:00
$listeners = [
'Composer\\Test\\EventDispatcher\\EventDispatcherTest::createsVendorBinFolderChecksEnvDoesNotContainsBin',
'Composer\\Test\\EventDispatcher\\EventDispatcherTest::createsVendorBinFolderChecksEnvContainsBin',
2022-08-17 12:20:07 +00:00
];
$dispatcher->expects($this->atLeastOnce())->method('getListeners')->will($this->returnValue($listeners));
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
rmdir(__DIR__ . '/vendor/bin');
rmdir(__DIR__ . '/vendor');
chdir($currentDirectoryBkp);
if ($composerBinDirBkp) {
Platform::putEnv('COMPOSER_BIN_DIR', $composerBinDirBkp);
} else {
Platform::clearEnv('COMPOSER_BIN_DIR');
}
}
public function testDispatcherSupportForAdditionalArgs(): void
{
$process = $this->getProcessExecutorMock();
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
->setConstructorArgs([
$this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$process,
])
->onlyMethods([
'getListeners',
])
->getMock();
$reflMethod = new \ReflectionMethod($dispatcher, 'getPhpExecCommand');
if (PHP_VERSION_ID < 80100) {
$reflMethod->setAccessible(true);
}
$phpCmd = $reflMethod->invoke($dispatcher);
$args = ProcessExecutor::escape('ARG').' '.ProcessExecutor::escape('ARG2').' '.ProcessExecutor::escape('--arg');
$process->expects([
'echo -n foo',
$phpCmd.' foo.php '.$args.' then the rest',
'echo -n bar '.$args,
], true);
$listeners = [
'echo -n foo @no_additional_args',
'@php foo.php @additional_args then the rest',
'echo -n bar',
];
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listeners));
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false, ['ARG', 'ARG2', '--arg']);
$expected = '> post-install-cmd: echo -n foo'.PHP_EOL.
'> post-install-cmd: @php foo.php '.$args.' then the rest'.PHP_EOL.
'> post-install-cmd: echo -n bar '.$args.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public static function createsVendorBinFolderChecksEnvDoesNotContainsBin(): void
{
mkdir(__DIR__ . '/vendor/bin', 0700, true);
$val = getenv('PATH');
if (!$val) {
$val = getenv('Path');
}
self::assertStringNotContainsString(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'bin', $val);
}
public static function createsVendorBinFolderChecksEnvContainsBin(): void
{
$val = getenv('PATH');
if (!$val) {
$val = getenv('Path');
}
self::assertStringContainsString(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'bin', $val);
}
public static function getTestEnv(): void
2020-11-22 13:48:56 +00:00
{
$val = getenv('ABC');
if ($val !== '123') {
throw new \Exception('getenv() did not return the expected value. expected 123 got '. var_export($val, true));
}
}
public function testDispatcherCanExecuteComposerScriptGroups(): void
{
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
'echo -n foo',
'echo -n baz',
'echo -n bar',
2022-08-17 12:20:07 +00:00
], true);
2015-11-21 19:28:10 +00:00
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$composer = $this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
$process,
2022-08-17 12:20:07 +00:00
])
->onlyMethods([
'getListeners',
2022-08-17 12:20:07 +00:00
])
->getMock();
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
2022-08-17 12:20:07 +00:00
->will($this->returnCallback(static function (Event $event): array {
if ($event->getName() === 'root') {
2022-08-17 12:20:07 +00:00
return ['@group'];
2016-05-17 10:34:54 +00:00
}
if ($event->getName() === 'group') {
2022-08-17 12:20:07 +00:00
return ['echo -n foo', '@subgroup', 'echo -n bar'];
2016-05-17 10:34:54 +00:00
}
if ($event->getName() === 'subgroup') {
2022-08-17 12:20:07 +00:00
return ['echo -n baz'];
}
2022-08-17 12:20:07 +00:00
return [];
}));
2018-11-12 14:57:44 +00:00
$dispatcher->dispatch('root', new ScriptEvent('root', $composer, $io));
$expected = '> root: @group'.PHP_EOL.
'> group: echo -n foo'.PHP_EOL.
'> group: @subgroup'.PHP_EOL.
'> subgroup: echo -n baz'.PHP_EOL.
'> group: echo -n bar'.PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public function testRecursionInScriptsNames(): void
{
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
'echo Hello '.ProcessExecutor::escape('World'),
2022-08-17 12:20:07 +00:00
], true);
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
$composer = $this->createComposerInstance(),
$io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
2020-11-22 13:48:56 +00:00
$process,
2022-08-17 12:20:07 +00:00
])
->onlyMethods([
2020-11-22 13:48:56 +00:00
'getListeners',
2022-08-17 12:20:07 +00:00
])
->getMock();
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
2022-08-17 12:20:07 +00:00
->will($this->returnCallback(static function (Event $event): array {
2020-11-22 13:48:56 +00:00
if ($event->getName() === 'hello') {
2022-08-17 12:20:07 +00:00
return ['echo Hello'];
}
2020-11-22 13:48:56 +00:00
if ($event->getName() === 'helloWorld') {
2022-08-17 12:20:07 +00:00
return ['@hello World'];
}
2022-08-17 12:20:07 +00:00
return [];
}));
2018-12-03 09:59:04 +00:00
$dispatcher->dispatch('helloWorld', new ScriptEvent('helloWorld', $composer, $io));
$expected = "> helloWorld: @hello World".PHP_EOL.
"> hello: echo Hello " .self::getCmd("'World'").PHP_EOL;
self::assertEquals($expected, $io->getOutput());
}
public function testDispatcherDetectInfiniteRecursion(): void
2015-11-09 12:05:16 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
2015-11-09 12:05:16 +00:00
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$composer = $this->createComposerInstance(),
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
$this->getProcessExecutorMock(),
2022-08-17 12:20:07 +00:00
])
->onlyMethods([
2015-11-09 12:05:16 +00:00
'getListeners',
2022-08-17 12:20:07 +00:00
])
2015-11-09 12:05:16 +00:00
->getMock();
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
2022-08-17 12:20:07 +00:00
->will($this->returnCallback(static function (Event $event): array {
2015-11-09 12:05:16 +00:00
if ($event->getName() === 'root') {
2022-08-17 12:20:07 +00:00
return ['@recurse'];
2016-05-17 10:34:54 +00:00
}
if ($event->getName() === 'recurse') {
2022-08-17 12:20:07 +00:00
return ['@root'];
2015-11-09 12:05:16 +00:00
}
2022-08-17 12:20:07 +00:00
return [];
2015-11-09 12:05:16 +00:00
}));
2018-11-12 14:57:44 +00:00
$dispatcher->dispatch('root', new ScriptEvent('root', $composer, $io));
2015-11-09 12:05:16 +00:00
}
/**
* @param array<callable|string> $listeners
*
* @return \PHPUnit\Framework\MockObject\MockObject&\Composer\EventDispatcher\EventDispatcher
*/
2022-02-22 15:47:09 +00:00
private function getDispatcherStubForListenersTest(array $listeners, IOInterface $io)
{
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$io,
2022-08-17 12:20:07 +00:00
])
->onlyMethods(['getListeners'])
->getMock();
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listeners));
return $dispatcher;
}
public static function provideValidCommands(): array
{
2022-08-17 12:20:07 +00:00
return [
['phpunit'],
['echo foo'],
['echo -n foo'],
];
}
public function testDispatcherOutputsCommand(): void
2012-12-06 08:56:27 +00:00
{
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
new ProcessExecutor($io),
2022-08-17 12:20:07 +00:00
])
->onlyMethods(['getListeners'])
2012-12-06 08:56:27 +00:00
->getMock();
2022-08-17 12:20:07 +00:00
$listener = ['echo foo'];
2012-12-06 08:56:27 +00:00
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listener));
2015-06-09 07:02:32 +00:00
$io->expects($this->once())
->method('writeError')
->with($this->equalTo('> echo foo'));
$io->expects($this->once())
2020-01-14 14:46:58 +00:00
->method('writeRaw')
2016-12-06 15:03:03 +00:00
->with($this->equalTo('foo'.PHP_EOL), false);
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
2012-12-06 08:56:27 +00:00
}
public function testDispatcherOutputsErrorOnFailedCommand(): void
2012-12-06 08:56:27 +00:00
{
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$io = $this->getIOMock(IOInterface::NORMAL),
2012-12-06 08:56:27 +00:00
new ProcessExecutor,
2022-08-17 12:20:07 +00:00
])
->onlyMethods(['getListeners'])
2012-12-06 08:56:27 +00:00
->getMock();
$code = 'exit 1';
2022-08-17 12:20:07 +00:00
$listener = [$code];
2012-12-06 08:56:27 +00:00
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
->will($this->returnValue($listener));
$io->expects([
['text' => '> exit 1'],
['text' => 'Script '.$code.' handling the post-install-cmd event returned with error code 1'],
], true);
self::expectException(ScriptExecutionException::class);
self::expectExceptionMessage('Error Output: ');
$dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
2012-12-06 08:56:27 +00:00
}
public function testDispatcherInstallerEvents(): void
2014-07-29 13:25:16 +00:00
{
$dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
2022-08-17 12:20:07 +00:00
->setConstructorArgs([
2016-02-10 14:35:53 +00:00
$this->createComposerInstance(),
$this->getMockBuilder('Composer\IO\IOInterface')->getMock(),
$this->getProcessExecutorMock(),
2022-08-17 12:20:07 +00:00
])
->onlyMethods(['getListeners'])
2014-07-29 13:25:16 +00:00
->getMock();
$dispatcher->expects($this->atLeastOnce())
->method('getListeners')
2022-08-17 12:20:07 +00:00
->will($this->returnValue([]));
2014-07-29 13:25:16 +00:00
$transaction = $this->getMockBuilder('Composer\DependencyResolver\LockTransaction')->disableOriginalConstructor()->getMock();
2014-07-29 13:25:16 +00:00
$dispatcher->dispatchInstallerEvent(InstallerEvents::PRE_OPERATIONS_EXEC, true, true, $transaction);
2014-07-29 13:25:16 +00:00
}
public static function call(): void
{
throw new \RuntimeException();
}
/**
* @return true
*/
public static function someMethod(): bool
{
return true;
}
2016-02-10 14:35:53 +00:00
/**
* @return true
*/
public static function someMethod2(): bool
{
return true;
}
private function createComposerInstance(): Composer
2016-02-10 14:35:53 +00:00
{
$composer = new Composer;
$config = new Config();
2016-02-10 14:35:53 +00:00
$composer->setConfig($config);
$package = $this->getMockBuilder('Composer\Package\RootPackageInterface')->getMock();
$composer->setPackage($package);
2016-02-10 14:35:53 +00:00
return $composer;
}
2012-06-14 10:10:01 +00:00
}