12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /*
- * This file is part of the symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Components\Templating\Helper;
- use Symfony\Components\Templating\Helper\SlotsHelper;
- class SlotsHelperTest extends \PHPUnit_Framework_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->assertTrue(!$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->assertEquals(true, $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->assertEquals(true, $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->assertEquals(false, $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 (\InvalidArgumentException $e)
- {
- $helper->stop();
- }
- try
- {
- $helper->stop();
- $this->fail('->stop() throws an LogicException if no slot is started');
- }
- catch (\LogicException $e)
- {
- }
- }
- }
|