| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <?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 ZendX_Application
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'ZendX_Application_Resource_JqueryTest::main');
- }
- /**
- * Test helper
- */
- require_once dirname(__FILE__) . '/../../../TestHelper.php';
- /**
- * Zend_Loader_Autoloader
- */
- require_once 'Zend/Loader/Autoloader.php';
- /**
- * @category Zend
- * @package ZendX_Application
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Application
- */
- class ZendX_Application_Resource_JqueryTest extends PHPUnit_Framework_TestCase
- {
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite(__CLASS__);
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- public function setUp()
- {
- // Store original autoloaders
- $this->loaders = spl_autoload_functions();
- if (!is_array($this->loaders)) {
- // spl_autoload_functions does not return empty array when no
- // autoloaders registered...
- $this->loaders = array();
- }
- Zend_Loader_Autoloader::resetInstance();
- $this->autoloader = Zend_Loader_Autoloader::getInstance();
- $this->application = new Zend_Application('testing');
- $this->bootstrap = new Zend_Application_Bootstrap_Bootstrap($this->application);
- Zend_Registry::_unsetInstance();
- ZendX_JQuery_View_Helper_JQuery::disableNoConflictMode();
- }
- public function tearDown()
- {
- // Restore original autoloaders
- $loaders = spl_autoload_functions();
- foreach ($loaders as $loader) {
- spl_autoload_unregister($loader);
- }
- foreach ($this->loaders as $loader) {
- spl_autoload_register($loader);
- }
- // Reset autoloader instance so it doesn't affect other tests
- Zend_Loader_Autoloader::resetInstance();
- ZendX_JQuery_View_Helper_JQuery::disableNoConflictMode();
- }
- public function testInitializationInitializesJqueryObject()
- {
- $this->bootstrap->registerPluginResource('view');
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $res = $resource->init();
- $this->assertTrue($res instanceof ZendX_JQuery_View_Helper_JQuery_Container);
- $this->assertSame($res, $resource->getJquery());
- }
- public function testOptionsArePassedOn()
- {
- $options = array(
- 'noconflictmode' => true,
- 'version' => '1.2.3',
- 'localpath' => '/foo/bar/',
- 'ui_version' => '2.3.4',
- 'uilocalpath' => '/bar/foo/',
- 'cdn_ssl' => true,
- 'rendermode' => 192,
- 'javascriptfile' => '/fooBar.js',
- 'javascriptfiles' => array('johndoe.js','janedoe.js'),
- 'stylesheet' => '/fooBar.css',
- 'stylesheets' => array('johndoe.css','janedoe.css'),
- );
- $this->bootstrap->registerPluginResource('view');
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertTrue(ZendX_JQuery_View_Helper_JQuery::getNoConflictMode());
- $this->assertEquals('1.2.3', $res->getVersion());
- $this->assertEquals('/foo/bar/', $res->getLocalPath());
- $this->assertEquals('2.3.4', $res->getUiVersion());
- $this->assertEquals('/bar/foo/', $res->getUiLocalPath());
- $this->assertTrue($res->getCdnSsl());
- $this->assertEquals(192, $res->getRenderMode());
- $this->assertEquals(array('/fooBar.css', 'johndoe.css', 'janedoe.css'),
- $res->getStylesheets());
- $this->assertEquals(array('/fooBar.js', 'johndoe.js', 'janedoe.js'),
- $res->getJavascriptFiles());
- }
- public function testAliasOptionsArePassedOn()
- {
- $options = array(
- 'uiversion' => '3.4.5',
- 'ui_localpath' => '/f00/b4r/',
- 'render_mode' => 187,
- );
- $this->bootstrap->registerPluginResource('view');
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertEquals('3.4.5', $res->getUiVersion());
- $this->assertEquals('/f00/b4r/', $res->getUiLocalPath());
- $this->assertEquals(187, $res->getRenderMode());
- }
- /**
- * @group ZF-10254
- */
- public function testIfUiDisableEnableViewHelperJquery()
- {
- $options = array(
- 'uienable' => false,
- 'enable' => true
- );
- $this->bootstrap->registerPluginResource('view');
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions($options);
- $res = $resource->init();
- $this->assertTrue($res->isEnabled());
- $this->assertFalse($res->uiIsEnabled());
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $res = $resource->init();
- $this->assertTrue($res->isEnabled());
- $this->assertTrue($res->uiIsEnabled());
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions(array('uienable' => false));
- $res = $resource->init();
- $this->assertTrue($res->isEnabled());
- $this->assertFalse($res->uiIsEnabled());
- $resource = new ZendX_Application_Resource_Jquery(array());
- $resource->setBootstrap($this->bootstrap);
- $resource->setOptions(array('enable' => false));
- $res = $resource->init();
- $this->assertFalse($res->isEnabled());
- $this->assertFalse($res->uiIsEnabled());
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Application_Resource_LocaleTest::main') {
- Zend_Application_Resource_LocaleTest::main();
- }
|