123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <?php
- namespace Composer\Test\EventDispatcher;
- use Composer\EventDispatcher\Event;
- use Composer\Installer\InstallerEvents;
- use Composer\Config;
- use Composer\Composer;
- use Composer\TestCase;
- use Composer\IO\BufferIO;
- use Composer\Script\ScriptEvents;
- use Composer\Script\CommandEvent;
- use Composer\Util\ProcessExecutor;
- use Symfony\Component\Console\Output\OutputInterface;
- class EventDispatcherTest extends TestCase
- {
-
- public function testListenerExceptionsAreCaught()
- {
- $io = $this->getMock('Composer\IO\IOInterface');
- $dispatcher = $this->getDispatcherStubForListenersTest(array(
- 'Composer\Test\EventDispatcher\EventDispatcherTest::call',
- ), $io);
- $io->expects($this->at(0))
- ->method('isVerbose')
- ->willReturn(0);
- $io->expects($this->at(1))
- ->method('writeError')
- ->with('> Composer\Test\EventDispatcher\EventDispatcherTest::call');
- $io->expects($this->at(2))
- ->method('writeError')
- ->with('<error>Script Composer\Test\EventDispatcher\EventDispatcherTest::call handling the post-install-cmd event terminated with an exception</error>');
- $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
- }
-
- public function testDispatcherCanConvertScriptEventToCommandEventForListener()
- {
- $io = $this->getMock('Composer\IO\IOInterface');
- $dispatcher = $this->getDispatcherStubForListenersTest(array(
- 'Composer\Test\EventDispatcher\EventDispatcherTest::expectsCommandEvent',
- ), $io);
- $this->assertEquals(1, $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false));
- }
- public function testDispatcherDoesNotAttemptConversionForListenerWithoutTypehint()
- {
- $io = $this->getMock('Composer\IO\IOInterface');
- $dispatcher = $this->getDispatcherStubForListenersTest(array(
- 'Composer\Test\EventDispatcher\EventDispatcherTest::expectsVariableEvent',
- ), $io);
- $this->assertEquals(1, $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false));
- }
-
- public function testDispatcherCanExecuteSingleCommandLineScript($command)
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $this->getMock('Composer\IO\IOInterface'),
- $process,
- ))
- ->setMethods(array('getListeners'))
- ->getMock();
- $listener = array($command);
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnValue($listener));
- $process->expects($this->once())
- ->method('execute')
- ->with($command)
- ->will($this->returnValue(0));
- $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
- }
- public function testDispatcherCanExecuteCliAndPhpInSameEventScriptStack()
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
- $process,
- ))
- ->setMethods(array(
- 'getListeners',
- ))
- ->getMock();
- $process->expects($this->exactly(2))
- ->method('execute')
- ->will($this->returnValue(0));
- $listeners = array(
- 'echo -n foo',
- 'Composer\\Test\\EventDispatcher\\EventDispatcherTest::someMethod',
- 'echo -n bar',
- );
- $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;
- $this->assertEquals($expected, $io->getOutput());
- }
- public function testDispatcherCanExecuteComposerScriptGroups()
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $composer = $this->createComposerInstance(),
- $io = new BufferIO('', OutputInterface::VERBOSITY_VERBOSE),
- $process,
- ))
- ->setMethods(array(
- 'getListeners',
- ))
- ->getMock();
- $process->expects($this->exactly(3))
- ->method('execute')
- ->will($this->returnValue(0));
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnCallback(function (Event $event) {
- if ($event->getName() === 'root') {
- return array('@group');
- } elseif ($event->getName() === 'group') {
- return array('echo -n foo', '@subgroup', 'echo -n bar');
- } elseif ($event->getName() === 'subgroup') {
- return array('echo -n baz');
- }
- return array();
- }));
- $dispatcher->dispatch('root', new CommandEvent('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;
- $this->assertEquals($expected, $io->getOutput());
- }
-
- public function testDispatcherDetectInfiniteRecursion()
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $composer = $this->createComposerInstance(),
- $io = $this->getMock('Composer\IO\IOInterface'),
- $process,
- ))
- ->setMethods(array(
- 'getListeners',
- ))
- ->getMock();
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnCallback(function (Event $event) {
- if ($event->getName() === 'root') {
- return array('@recurse');
- } elseif ($event->getName() === 'recurse') {
- return array('@root');
- }
- return array();
- }));
- $dispatcher->dispatch('root', new CommandEvent('root', $composer, $io));
- }
- private function getDispatcherStubForListenersTest($listeners, $io)
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $io,
- ))
- ->setMethods(array('getListeners'))
- ->getMock();
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnValue($listeners));
- return $dispatcher;
- }
- public function getValidCommands()
- {
- return array(
- array('phpunit'),
- array('echo foo'),
- array('echo -n foo'),
- );
- }
- public function testDispatcherOutputsCommand()
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $io = $this->getMock('Composer\IO\IOInterface'),
- new ProcessExecutor,
- ))
- ->setMethods(array('getListeners'))
- ->getMock();
- $listener = array('echo foo');
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnValue($listener));
- $io->expects($this->once())
- ->method('writeError')
- ->with($this->equalTo('> echo foo'));
- ob_start();
- $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
- $this->assertEquals('foo', trim(ob_get_clean()));
- }
- public function testDispatcherOutputsErrorOnFailedCommand()
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $io = $this->getMock('Composer\IO\IOInterface'),
- new ProcessExecutor,
- ))
- ->setMethods(array('getListeners'))
- ->getMock();
- $code = 'exit 1';
- $listener = array($code);
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnValue($listener));
- $io->expects($this->at(0))
- ->method('isVerbose')
- ->willReturn(0);
- $io->expects($this->at(1))
- ->method('writeError')
- ->willReturn('> exit 1');
- $io->expects($this->at(2))
- ->method('writeError')
- ->with($this->equalTo('<error>Script '.$code.' handling the post-install-cmd event returned with an error</error>'));
- $this->setExpectedException('RuntimeException');
- $dispatcher->dispatchScript(ScriptEvents::POST_INSTALL_CMD, false);
- }
- public function testDispatcherInstallerEvents()
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->createComposerInstance(),
- $this->getMock('Composer\IO\IOInterface'),
- $process,
- ))
- ->setMethods(array('getListeners'))
- ->getMock();
- $dispatcher->expects($this->atLeastOnce())
- ->method('getListeners')
- ->will($this->returnValue(array()));
- $policy = $this->getMock('Composer\DependencyResolver\PolicyInterface');
- $pool = $this->getMockBuilder('Composer\DependencyResolver\Pool')->disableOriginalConstructor()->getMock();
- $installedRepo = $this->getMockBuilder('Composer\Repository\CompositeRepository')->disableOriginalConstructor()->getMock();
- $request = $this->getMockBuilder('Composer\DependencyResolver\Request')->disableOriginalConstructor()->getMock();
- $dispatcher->dispatchInstallerEvent(InstallerEvents::PRE_DEPENDENCIES_SOLVING, true, $policy, $pool, $installedRepo, $request);
- $dispatcher->dispatchInstallerEvent(InstallerEvents::POST_DEPENDENCIES_SOLVING, true, $policy, $pool, $installedRepo, $request, array());
- }
- public static function call()
- {
- throw new \RuntimeException();
- }
- public static function expectsCommandEvent(CommandEvent $event)
- {
- return false;
- }
- public static function expectsVariableEvent($event)
- {
- return false;
- }
- public static function someMethod()
- {
- return true;
- }
- private function createComposerInstance()
- {
- $composer = new Composer;
- $config = new Config;
- $composer->setConfig($config);
- return $composer;
- }
- }
|