Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Messenger\Tests\Command;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Tester\CommandCompletionTester;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\DependencyInjection\ServiceLocator;
use Symfony\Component\Messenger\Command\SetupTransportsCommand;
use Symfony\Component\Messenger\Transport\SetupableTransportInterface;
use Symfony\Component\Messenger\Transport\TransportInterface;
class SetupTransportsCommandTest extends TestCase
{
public function testReceiverNames()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->exactly(2))
->method('get')
->willReturn(
$this->createMock(SetupableTransportInterface::class),
$this->createMock(TransportInterface::class)
);
$serviceLocator
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$tester->execute([]);
$display = $tester->getDisplay();
$this->assertStringContainsString('The "amqp" transport was set up successfully.', $display);
$this->assertStringContainsString('The "other_transport" transport does not support setup.', $display);
}
public function testReceiverNameArgument()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->once())
->method('get')
->willReturn($this->createMock(SetupableTransportInterface::class));
$serviceLocator->expects($this->once())
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$tester->execute(['transport' => 'amqp']);
$display = $tester->getDisplay();
$this->assertStringContainsString('The "amqp" transport was set up successfully.', $display);
}
public function testReceiverNameArgumentNotFound()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->exactly(0))
->method('get');
$serviceLocator->expects($this->exactly(1))
->method('has')
->willReturn(false);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('The "not_found" transport does not exist.');
$tester->execute(['transport' => 'not_found']);
}
public function testThrowsExceptionOnTransportSetup()
{
// mock a setupable-transport, that throws
$amqpTransport = $this->createMock(SetupableTransportInterface::class);
$amqpTransport->expects($this->exactly(1))
->method('setup')
->willThrowException(new \RuntimeException('Server not found'));
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
$serviceLocator->expects($this->exactly(1))
->method('get')
->will($this->onConsecutiveCalls(
$amqpTransport
));
$serviceLocator
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp']);
$tester = new CommandTester($command);
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('An error occurred while setting up the "amqp" transport: Server not found');
$tester->execute(['transport' => 'amqp']);
}
/**
* @dataProvider provideCompletionSuggestions
*/
public function testComplete(array $input, array $expectedSuggestions)
{
$serviceLocator = $this->createMock(ServiceLocator::class);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandCompletionTester($command);
$suggestions = $tester->complete($input);
$this->assertSame($expectedSuggestions, $suggestions);
}
public static function provideCompletionSuggestions()
{
yield 'transport' => [[''], ['amqp', 'other_transport']];
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Messenger\Tests\Command;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Tester\CommandCompletionTester;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\DependencyInjection\ServiceLocator;
use Symfony\Component\Messenger\Command\SetupTransportsCommand;
use Symfony\Component\Messenger\Transport\SetupableTransportInterface;
use Symfony\Component\Messenger\Transport\TransportInterface;
class SetupTransportsCommandTest extends TestCase
{
public function testReceiverNames()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->exactly(2))
->method('get')
->willReturn(
$this->createMock(SetupableTransportInterface::class),
$this->createMock(TransportInterface::class)
);
$serviceLocator
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$tester->execute([]);
$display = $tester->getDisplay();
$this->assertStringContainsString('The "amqp" transport was set up successfully.', $display);
$this->assertStringContainsString('The "other_transport" transport does not support setup.', $display);
}
public function testReceiverNameArgument()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->once())
->method('get')
->willReturn($this->createMock(SetupableTransportInterface::class));
$serviceLocator->expects($this->once())
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$tester->execute(['transport' => 'amqp']);
$display = $tester->getDisplay();
$this->assertStringContainsString('The "amqp" transport was set up successfully.', $display);
}
public function testReceiverNameArgumentNotFound()
{
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
// get method must be call twice and will return consecutively a setup-able transport and a non setup-able transport
$serviceLocator->expects($this->exactly(0))
->method('get');
$serviceLocator->expects($this->exactly(1))
->method('has')
->willReturn(false);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandTester($command);
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('The "not_found" transport does not exist.');
$tester->execute(['transport' => 'not_found']);
}
public function testThrowsExceptionOnTransportSetup()
{
// mock a setupable-transport, that throws
$amqpTransport = $this->createMock(SetupableTransportInterface::class);
$amqpTransport->expects($this->exactly(1))
->method('setup')
->willThrowException(new \RuntimeException('Server not found'));
// mock a service locator
/** @var MockObject&ServiceLocator $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocator::class);
$serviceLocator->expects($this->exactly(1))
->method('get')
->will($this->onConsecutiveCalls(
$amqpTransport
));
$serviceLocator
->method('has')
->willReturn(true);
$command = new SetupTransportsCommand($serviceLocator, ['amqp']);
$tester = new CommandTester($command);
$this->expectException(\RuntimeException::class);
$this->expectExceptionMessage('An error occurred while setting up the "amqp" transport: Server not found');
$tester->execute(['transport' => 'amqp']);
}
/**
* @dataProvider provideCompletionSuggestions
*/
public function testComplete(array $input, array $expectedSuggestions)
{
$serviceLocator = $this->createMock(ServiceLocator::class);
$command = new SetupTransportsCommand($serviceLocator, ['amqp', 'other_transport']);
$tester = new CommandCompletionTester($command);
$suggestions = $tester->complete($input);
$this->assertSame($expectedSuggestions, $suggestions);
}
public static function provideCompletionSuggestions()
{
yield 'transport' => [[''], ['amqp', 'other_transport']];
}
}
Function Calls
None |
Stats
MD5 | 4fe0fac4afae3a5fdca0819dae33d032 |
Eval Count | 0 |
Decode Time | 91 ms |