* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Templating\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Templating\DelegatingEngine; use Symfony\Component\Templating\EngineInterface; use Symfony\Component\Templating\StreamingEngineInterface; class DelegatingEngineTest extends TestCase { public function testRenderDelegatesToSupportedEngine() { $firstEngine = $this->getEngineMock('template.php', false); $secondEngine = $this->getEngineMock('template.php', true); $secondEngine->expects($this->once()) ->method('render') ->with('template.php', ['foo' => 'bar']) ->willReturn(''); $delegatingEngine = new DelegatingEngine([$firstEngine, $secondEngine]); $result = $delegatingEngine->render('template.php', ['foo' => 'bar']); $this->assertSame('', $result); } public function testRenderWithNoSupportedEngine() { $this->expectException('RuntimeException'); $this->expectExceptionMessage('No engine is able to work with the template "template.php"'); $firstEngine = $this->getEngineMock('template.php', false); $secondEngine = $this->getEngineMock('template.php', false); $delegatingEngine = new DelegatingEngine([$firstEngine, $secondEngine]); $delegatingEngine->render('template.php', ['foo' => 'bar']); } public function testStreamDelegatesToSupportedEngine() { $streamingEngine = $this->getStreamingEngineMock('template.php', true); $streamingEngine->expects($this->once()) ->method('stream') ->with('template.php', ['foo' => 'bar']) ->willReturn(''); $delegatingEngine = new DelegatingEngine([$streamingEngine]); $result = $delegatingEngine->stream('template.php', ['foo' => 'bar']); $this->assertNull($result); } public function testStreamRequiresStreamingEngine() { $this->expectException('LogicException'); $this->expectExceptionMessage('Template "template.php" cannot be streamed as the engine supporting it does not implement StreamingEngineInterface'); $delegatingEngine = new DelegatingEngine([new TestEngine()]); $delegatingEngine->stream('template.php', ['foo' => 'bar']); } public function testExists() { $engine = $this->getEngineMock('template.php', true); $engine->expects($this->once()) ->method('exists') ->with('template.php') ->willReturn(true); $delegatingEngine = new DelegatingEngine([$engine]); $this->assertTrue($delegatingEngine->exists('template.php')); } public function testSupports() { $engine = $this->getEngineMock('template.php', true); $delegatingEngine = new DelegatingEngine([$engine]); $this->assertTrue($delegatingEngine->supports('template.php')); } public function testSupportsWithNoSupportedEngine() { $engine = $this->getEngineMock('template.php', false); $delegatingEngine = new DelegatingEngine([$engine]); $this->assertFalse($delegatingEngine->supports('template.php')); } public function testGetExistingEngine() { $firstEngine = $this->getEngineMock('template.php', false); $secondEngine = $this->getEngineMock('template.php', true); $delegatingEngine = new DelegatingEngine([$firstEngine, $secondEngine]); $this->assertSame($secondEngine, $delegatingEngine->getEngine('template.php')); } public function testGetInvalidEngine() { $this->expectException('RuntimeException'); $this->expectExceptionMessage('No engine is able to work with the template "template.php"'); $firstEngine = $this->getEngineMock('template.php', false); $secondEngine = $this->getEngineMock('template.php', false); $delegatingEngine = new DelegatingEngine([$firstEngine, $secondEngine]); $delegatingEngine->getEngine('template.php'); } private function getEngineMock($template, $supports) { $engine = $this->getMockBuilder('Symfony\Component\Templating\EngineInterface')->getMock(); $engine->expects($this->once()) ->method('supports') ->with($template) ->willReturn($supports); return $engine; } private function getStreamingEngineMock($template, $supports) { $engine = $this->getMockForAbstractClass('Symfony\Component\Templating\Tests\MyStreamingEngine'); $engine->expects($this->once()) ->method('supports') ->with($template) ->willReturn($supports); return $engine; } } interface MyStreamingEngine extends StreamingEngineInterface, EngineInterface { } class TestEngine implements EngineInterface { public function render($name, array $parameters = []) { } public function exists($name) { } public function supports($name) { return true; } public function stream() { } }