| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_View
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_View_Helper_Placeholder_RegistryTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_View_Helper_Placeholder_RegistryTest::main");
- }
- /** Zend_View_Helper_Placeholder_Registry */
- require_once 'Zend/View/Helper/Placeholder/Registry.php';
- /**
- * Test class for Zend_View_Helper_Placeholder_Registry.
- *
- * @category Zend
- * @package Zend_View
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_View
- * @group Zend_View_Helper
- */
- class Zend_View_Helper_Placeholder_RegistryTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_View_Helper_Placeholder_Registry
- */
- public $registry;
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_View_Helper_Placeholder_RegistryTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Sets up the fixture, for example, open a network connection.
- * This method is called before a test is executed.
- *
- * @return void
- */
- public function setUp()
- {
- $registry = Zend_Registry::getInstance();
- if (isset($registry[Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY])) {
- unset($registry[Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY]);
- }
- $this->registry = new Zend_View_Helper_Placeholder_Registry();
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @return void
- */
- public function tearDown()
- {
- unset($this->registry);
- }
- /**
- * @return void
- */
- public function testCreateContainer()
- {
- $this->assertFalse($this->registry->containerExists('foo'));
- $this->registry->createContainer('foo');
- $this->assertTrue($this->registry->containerExists('foo'));
- }
- /**
- * @return void
- */
- public function testCreateContainerCreatesDefaultContainerClass()
- {
- $this->assertFalse($this->registry->containerExists('foo'));
- $container = $this->registry->createContainer('foo');
- $this->assertTrue($container instanceof Zend_View_Helper_Placeholder_Container);
- }
- /**
- * @return void
- */
- public function testGetContainerCreatesContainerIfNonExistent()
- {
- $this->assertFalse($this->registry->containerExists('foo'));
- $container = $this->registry->getContainer('foo');
- $this->assertTrue($container instanceof Zend_View_Helper_Placeholder_Container_Abstract);
- $this->assertTrue($this->registry->containerExists('foo'));
- }
- /**
- * @return void
- */
- public function testSetContainerCreatesRegistryEntry()
- {
- $foo = new Zend_View_Helper_Placeholder_Container(array('foo', 'bar'));
- $this->assertFalse($this->registry->containerExists('foo'));
- $this->registry->setContainer('foo', $foo);
- $this->assertTrue($this->registry->containerExists('foo'));
- }
- /**
- * @return void
- */
- public function testSetContainerCreatesRegistersContainerInstance()
- {
- $foo = new Zend_View_Helper_Placeholder_Container(array('foo', 'bar'));
- $this->assertFalse($this->registry->containerExists('foo'));
- $this->registry->setContainer('foo', $foo);
- $container = $this->registry->getContainer('foo');
- $this->assertSame($foo, $container);
- }
- /**
- * @return void
- */
- public function testContainerClassAccessorsSetState()
- {
- $this->assertEquals('Zend_View_Helper_Placeholder_Container', $this->registry->getContainerClass());
- $this->registry->setContainerClass('Zend_View_Helper_Placeholder_RegistryTest_Container');
- $this->assertEquals('Zend_View_Helper_Placeholder_RegistryTest_Container', $this->registry->getContainerClass());
- }
- /**
- * @return void
- */
- public function testSetContainerClassThrowsExceptionWithInvalidContainerClass()
- {
- try {
- $this->registry->setContainerClass('Zend_View_Helper_Placeholder_RegistryTest_BogusContainer');
- $this->fail('Invalid container classes should not be accepted');
- } catch (Exception $e) {
- }
- }
- public function testDeletingContainerRemovesFromRegistry()
- {
- $this->registry->createContainer('foo');
- $this->assertTrue($this->registry->containerExists('foo'));
- $result = $this->registry->deleteContainer('foo');
- $this->assertFalse($this->registry->containerExists('foo'));
- $this->assertTrue($result);
- }
- public function testDeleteContainerReturnsFalseIfContainerDoesNotExist()
- {
- $result = $this->registry->deleteContainer('foo');
- $this->assertFalse($result);
- }
- /**
- * @return void
- */
- public function testUsingCustomContainerClassCreatesContainersOfCustomClass()
- {
- $this->registry->setContainerClass('Zend_View_Helper_Placeholder_RegistryTest_Container');
- $container = $this->registry->createContainer('foo');
- $this->assertTrue($container instanceof Zend_View_Helper_Placeholder_RegistryTest_Container);
- }
- public function testGetRegistryReturnsRegistryInstance()
- {
- $registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
- $this->assertTrue($registry instanceof Zend_View_Helper_Placeholder_Registry);
- }
- public function testGetRegistrySubsequentTimesReturnsSameInstance()
- {
- $registry1 = Zend_View_Helper_Placeholder_Registry::getRegistry();
- $registry2 = Zend_View_Helper_Placeholder_Registry::getRegistry();
- $this->assertSame($registry1, $registry2);
- }
- public function testGetRegistryRegistersWithGlobalRegistry()
- {
- $this->assertFalse(Zend_Registry::isRegistered(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY));
- $registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
- $this->assertTrue(Zend_Registry::isRegistered(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY));
- $registered = Zend_Registry::get(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY);
- $this->assertSame($registry, $registered);
- }
- /**
- * @group ZF-10793
- */
- public function testSetValueCreateContainer()
- {
- $this->registry->setContainerClass('Zend_View_Helper_Placeholder_RegistryTest_Container');
- $data = array(
- 'ZF-10793'
- );
- $container = $this->registry->createContainer('foo', $data);
- $this->assertEquals(array('ZF-10793'), $container->data);
- }
- }
- class Zend_View_Helper_Placeholder_RegistryTest_Container extends Zend_View_Helper_Placeholder_Container_Abstract
- {
- public $data = array();
- public function __construct($data)
- {
- $this->data = $data;
- }
- }
- class Zend_View_Helper_Placeholder_RegistryTest_BogusContainer
- {
- }
- // Call Zend_View_Helper_Placeholder_RegistryTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_View_Helper_Placeholder_RegistryTest::main") {
- Zend_View_Helper_Placeholder_RegistryTest::main();
- }
|