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