* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Templating\Tests\Helper; use PHPUnit\Framework\TestCase; use Symfony\Component\Templating\Helper\SlotsHelper; class SlotsHelperTest extends TestCase { public function testHasGetSet() { $helper = new SlotsHelper(); $helper->set('foo', 'bar'); $this->assertEquals('bar', $helper->get('foo'), '->set() sets a slot value'); $this->assertEquals('bar', $helper->get('bar', 'bar'), '->get() takes a default value to return if the slot does not exist'); $this->assertTrue($helper->has('foo'), '->has() returns true if the slot exists'); $this->assertFalse($helper->has('bar'), '->has() returns false if the slot does not exist'); } public function testOutput() { $helper = new SlotsHelper(); $helper->set('foo', 'bar'); ob_start(); $ret = $helper->output('foo'); $output = ob_get_clean(); $this->assertEquals('bar', $output, '->output() outputs the content of a slot'); $this->assertTrue($ret, '->output() returns true if the slot exists'); ob_start(); $ret = $helper->output('bar', 'bar'); $output = ob_get_clean(); $this->assertEquals('bar', $output, '->output() takes a default value to return if the slot does not exist'); $this->assertTrue($ret, '->output() returns true if the slot does not exist but a default value is provided'); ob_start(); $ret = $helper->output('bar'); $output = ob_get_clean(); $this->assertEquals('', $output, '->output() outputs nothing if the slot does not exist'); $this->assertFalse($ret, '->output() returns false if the slot does not exist'); } public function testStartStop() { $helper = new SlotsHelper(); $helper->start('bar'); echo 'foo'; $helper->stop(); $this->assertEquals('foo', $helper->get('bar'), '->start() starts a slot'); $this->assertTrue($helper->has('bar'), '->starts() starts a slot'); $helper->start('bar'); try { $helper->start('bar'); $helper->stop(); $this->fail('->start() throws an InvalidArgumentException if a slot with the same name is already started'); } catch (\Exception $e) { $helper->stop(); $this->assertInstanceOf('\InvalidArgumentException', $e, '->start() throws an InvalidArgumentException if a slot with the same name is already started'); $this->assertEquals('A slot named "bar" is already started.', $e->getMessage(), '->start() throws an InvalidArgumentException if a slot with the same name is already started'); } try { $helper->stop(); $this->fail('->stop() throws an LogicException if no slot is started'); } catch (\Exception $e) { $this->assertInstanceOf('\LogicException', $e, '->stop() throws an LogicException if no slot is started'); $this->assertEquals('No slot started.', $e->getMessage(), '->stop() throws an LogicException if no slot is started'); } } } __halt_compiler();----SIGNATURE:----fYUElJTISd7mGn2D9rut6wqaGWzBKGeTvblIZ9sg1r8ku9DH3DW9GM2crnI1Vwn79dgJ1YZLzZKFEtrg7ml7zOw0eWvSGJ6O8Se8PglrYZ/oxCbBWcZYU6xvsBu5kT/zuPSAk98uuM5WdAkXOMm6dX2dgTvoCVFZ195Kk+eAL8ae2MkNQr8HE1hgV5jId+Kz4a9iCsWvWbRIHBv2MSLKyJynwAdw3DqwqCEdCM22BWjGa+Q/s8/HVDwN4Ce+iwh8Jthltl2KmIFCkU459czONaT4bzEajuoaZy3Y8h5FuYnVQTkRCYlyCj/7TMXWxT5w/6YqXmNEFlzNe1RcpDw1MDZOnrD6MzyNCVgHK1c9dYFC514oobLkoCP/O+AmK1y28z9SCwCaWRQHcGwxwNb0bEp8esra6hJER3yyplq161YXEcoO6O4CoEx5qcXM3ZHka/5jB0YAm9UsxVDHtsfWRM6mHKT7C1rP2Py+7w+lE1tHlyHwHm5ZwBlU3We3wVOKK08/ZcVnFliZDlDLJ6NAMlzEXVdKjh+Su7MMVxJKI0mrTTcKXjMPNbfo83x4gYWrMfrLq5LqWcOBl37Qr9EBaaU4b0UAqzWtQAbnCaPviPETimv9lFoUuVwqfE+Armdl7Ldtd/Pf6XzSoPr8pDD+3frCTg0HdAsj1pQb/lbaMXI=----ATTACHMENT:----NDgzNjE0NjY4NTAwNjE0NCA4MTA4NjQyNDQ5MTM0MTE2IDIyMTQ2OTYxMTQzMzY5MA==