* * 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:----vVXDQJ8KG+BHD8hokqQ/IYXy86mkB29dgJHUgskVUEgrqOyInUAzSJGoGnh1qP/rsLq6SIVxv1OT7IpeE79bkYLIMtMb6IAUy1DFly/Ns1BB0WYnYUgrKL7YhOR4MZLquAYeiTf2//nQiIQ/f9n1+jpLRUYtrBI1FKDC5V4F7CpXZo4gtoszQ2AK3ZZpzhMVYKm01rjG/mz70TgVRcbjeUYHJetdQj9dhLUIQLG+2WtvEY5QevWmYtXLfzyuNK+VoN/psmboOWYyC2si93U902/79LXyH728hdupmIL0Uu5BucSpcNBd9By3tAapxtutVGdK2H9IwPKlteJ1mWZ3ixqkqHHwr6J2g7gPvym+9tBGygsgpQPY2CWQVLXrwubu5jeKp6gcgtZ8uvzJA8XB1vZR58u6AKrvkbryM7IFOI22EdKT52KumKE+711/p+fvMth8TskCdnmVcsK0zQY0y0bwfsifYiNTPjk5kIv8ouQvxYaFfMze3d0xK9pgcz+aKea+2aUf4gb/MBf54vJ+Y5FyjY538OTJ6BHCmkNdPgpe6Ld6zJoeAHrL3aopftxvY0yATUGiqSZso+n0HdIu1Zm9jG50U5Uf5Ol4t/IeYr3TrB85XeYqddWhklOo5MnyWx8L+W1cjkVUtoKttflBjFxvJc/zynuPRnRlTe5UUXA=----ATTACHMENT:----Njc1MTE5NjgwNDU5NzcwOCA5MTg4ODMzMTA3NTI5MjI3IDY2OTE1OTg1NDQwMjk2MDQ=