123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?php
- namespace Composer\Test\EventDispatcher;
- use Composer\EventDispatcher\Event;
- use Composer\EventDispatcher\EventDispatcher;
- use Composer\Test\TestCase;
- use Composer\Script;
- use Composer\Util\ProcessExecutor;
- 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->once())
- ->method('write')
- ->with('<error>Script Composer\Test\EventDispatcher\EventDispatcherTest::call handling the post-install-cmd event terminated with an exception</error>');
- $dispatcher->dispatchCommandEvent("post-install-cmd", false);
- }
-
- public function testDispatcherCanExecuteSingleCommandLineScript($command)
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->getMock('Composer\Composer'),
- $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->dispatchCommandEvent("post-install-cmd", false);
- }
- public function testDispatcherCanExecuteCliAndPhpInSameEventScriptStack()
- {
- $process = $this->getMock('Composer\Util\ProcessExecutor');
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->getMock('Composer\Composer'),
- $this->getMock('Composer\IO\IOInterface'),
- $process,
- ))
- ->setMethods(array(
- 'getListeners',
- 'executeEventPhpScript',
- ))
- ->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->expects($this->once())
- ->method('executeEventPhpScript')
- ->with('Composer\Test\EventDispatcher\EventDispatcherTest', 'someMethod')
- ->will($this->returnValue(true));
- $dispatcher->dispatchCommandEvent("post-install-cmd", false);
- }
- private function getDispatcherStubForListenersTest($listeners, $io)
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->getMock('Composer\Composer'),
- $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 testDispatcherOutputsCommands()
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->getMock('Composer\Composer'),
- $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));
- ob_start();
- $dispatcher->dispatchCommandEvent("post-install-cmd", false);
- $this->assertEquals('foo', trim(ob_get_clean()));
- }
- public function testDispatcherOutputsErrorOnFailedCommand()
- {
- $dispatcher = $this->getMockBuilder('Composer\EventDispatcher\EventDispatcher')
- ->setConstructorArgs(array(
- $this->getMock('Composer\Composer'),
- $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->once())
- ->method('write')
- ->with($this->equalTo('<error>Script '.$code.' handling the post-install-cmd event returned with an error</error>'));
- $this->setExpectedException('RuntimeException');
- $dispatcher->dispatchCommandEvent("post-install-cmd", false);
- }
- public static function call()
- {
- throw new \RuntimeException();
- }
- public static function someMethod()
- {
- return true;
- }
- }
|