| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979 |
- <?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_Dojo
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_Dojo_View_Helper_DojoTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Dojo_View_Helper_DojoTest::main");
- }
- /** Zend_Dojo_View_Helper_Dojo */
- require_once 'Zend/Dojo/View/Helper/Dojo.php';
- /** Zend_Dojo_View_Helper_Dojo_Container */
- require_once 'Zend/Dojo/View/Helper/Dojo/Container.php';
- /** Zend_Dojo */
- require_once 'Zend/Dojo.php';
- /** Zend_View */
- require_once 'Zend/View.php';
- /**
- * Test class for Zend_Dojo_View_Helper_Dojo.
- *
- * @category Zend
- * @package Zend_Dojo
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Dojo
- * @group Zend_Dojo_View
- */
- class Zend_Dojo_View_Helper_DojoTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Dojo_View_Helper_Dojo_Container
- */
- protected $helper;
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Dojo_View_Helper_DojoTest");
- $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()
- {
- Zend_Registry::_unsetInstance();
- $this->view = $this->getView();
- $this->helper = new Zend_Dojo_View_Helper_Dojo_Container();
- $this->helper->setView($this->view);
- Zend_Registry::set('Zend_Dojo_View_Helper_Dojo', $this->helper);
- Zend_Dojo_View_Helper_Dojo::setUseProgrammatic();
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @return void
- */
- public function tearDown()
- {
- }
- public function getView()
- {
- require_once 'Zend/View.php';
- $view = new Zend_View();
- $view->addHelperPath('Zend/Dojo/View/Helper/', 'Zend_Dojo_View_Helper');
- return $view;
- }
- public function testViewPropertyShouldBeNullByDefault()
- {
- $helper = new Zend_Dojo_View_Helper_Dojo();
- $this->assertNull($helper->view);
- }
- public function testShouldBeAbleToSetViewProperty()
- {
- $this->assertTrue($this->helper->view instanceof Zend_View_Interface);
- }
- public function testNoModulesShouldBeRegisteredByDefault()
- {
- $modules = $this->helper->getModules();
- $this->assertTrue(empty($modules));
- }
- public function testShouldBeAbleToRequireModules()
- {
- $this->helper->requireModule('foo.bar');
- $modules = $this->helper->getModules();
- $this->assertContains('foo.bar', $modules);
- }
- /**
- * @group ZF-3914
- */
- public function testShouldAllowRequiringMultipleModulesAtOnce()
- {
- $modules = array('foo.bar', 'bar.baz', 'baz.bat');
- $this->helper->requireModule($modules);
- $test = $this->helper->getModules();
- foreach ($modules as $module) {
- $this->assertTrue(in_array($module, $test));
- }
- }
- public function testInvalidModuleNameShouldThrowExceptionDuringRegistration()
- {
- try {
- $this->helper->requireModule('foo#$!bar');
- $this->fail('Invalid module name should throw exception during registration');
- } catch (Zend_Dojo_View_Exception $e) {
- $this->assertContains('invalid character', $e->getMessage());
- }
- }
- /**
- * @group ZF-3916
- */
- public function testRequireModuleShouldAllowDashAndUnderscoreCharacters()
- {
- $this->helper->requireModule('dojox.highlight.language._www');
- $this->helper->requireModule('dojo.NodeList-fx');
- }
- public function testShouldNotRegisterDuplicateModules()
- {
- $this->helper->requireModule('foo.bar');
- $this->helper->requireModule('foo.bar');
- $modules = $this->helper->getModules();
- $this->assertContains('foo.bar', $modules);
- $this->assertEquals(1, count($modules));
- }
- public function testModulePathsShouldBeEmptyByDefault()
- {
- $paths = $this->helper->getModulePaths();
- $this->assertTrue(empty($paths));
- }
- public function testShouldBeAbleToRegisterModulePaths()
- {
- $this->helper->registerModulePath('custom', '../custom');
- $paths = $this->helper->getModulePaths();
- $this->assertTrue(array_key_exists('custom', $paths), var_export($paths, 1));
- $this->assertContains('../custom', $paths);
- }
- public function testShouldNotBeAbleToRegisterDuplicateModulePaths()
- {
- $this->helper->registerModulePath('custom', '../custom');
- $this->helper->registerModulePath('custom', '../custom');
- $paths = $this->helper->getModulePaths();
- $this->assertEquals(1, count($paths));
- $this->assertTrue(array_key_exists('custom', $paths));
- $this->assertContains('../custom', $paths);
- }
- public function testShouldBeDisabledByDefault()
- {
- $this->assertFalse($this->helper->isEnabled());
- }
- public function testCallingAUseMethodShouldEnableHelper()
- {
- $this->testShouldBeDisabledByDefault();
- $this->helper->setCdnVersion('1.0');
- $this->assertTrue($this->helper->isEnabled());
- $this->helper->disable();
- $this->assertFalse($this->helper->isEnabled());
- $this->helper->setLocalPath('/js/dojo/dojo.js');
- $this->assertTrue($this->helper->isEnabled());
- }
- public function testShouldUtilizeCdnByDefault()
- {
- $this->helper->enable();
- $this->assertTrue($this->helper->useCdn());
- }
- public function testShouldUseGoogleCdnByDefault()
- {
- $this->assertEquals(Zend_Dojo::CDN_BASE_GOOGLE, $this->helper->getCdnBase());
- }
- public function testShouldAllowSpecifyingCdnBasePath()
- {
- $this->testShouldUseGoogleCdnByDefault();
- $this->helper->setCdnBase(Zend_Dojo::CDN_BASE_AOL);
- $this->assertEquals(Zend_Dojo::CDN_BASE_AOL, $this->helper->getCdnBase());
- }
- public function testShouldUseLatestVersionWhenUsingCdnByDefault()
- {
- $this->helper->enable();
- $this->assertEquals('1.5.0', $this->helper->getCdnVersion());
- }
- public function testShouldAllowSpecifyingDojoVersionWhenUtilizingCdn()
- {
- $this->helper->setCdnVersion('1.0');
- $this->assertEquals('1.0', $this->helper->getCdnVersion());
- }
- /**
- * @group GH-488
- */
- public function testSetCdnVersionForHigherMinorReleases()
- {
- $this->helper->setCdnVersion('1.10');
- $this->assertEquals('1.10', $this->helper->getCdnVersion());
- }
- /**
- * @group GH-488
- */
- public function testSetCdnVersionForHigherMiniReleases()
- {
- $this->helper->setCdnVersion('1.10.29');
- $this->assertEquals('1.10.29', $this->helper->getCdnVersion());
- }
- public function testShouldUseAolCdnDojoPathByDefault()
- {
- $this->assertEquals(Zend_Dojo::CDN_DOJO_PATH_AOL, $this->helper->getCdnDojoPath());
- }
- public function testShouldAllowSpecifyingCdnDojoPath()
- {
- $this->testShouldUseAolCdnDojoPathByDefault();
- $this->helper->setCdnDojoPath(Zend_Dojo::CDN_DOJO_PATH_GOOGLE);
- $this->assertEquals(Zend_Dojo::CDN_DOJO_PATH_GOOGLE, $this->helper->getCdnDojoPath());
- }
- public function testShouldAllowSpecifyingLocalDojoInstall()
- {
- $this->helper->setLocalPath('/js/dojo/dojo.js');
- $this->assertTrue($this->helper->useLocalPath());
- }
- public function testShouldAllowSpecifyingDjConfig()
- {
- $this->helper->setDjConfig(array('parseOnLoad' => 'true'));
- $config = $this->helper->getDjConfig();
- $this->assertTrue(is_array($config));
- $this->assertTrue(array_key_exists('parseOnLoad', $config));
- $this->assertEquals('true', $config['parseOnLoad']);
- }
- public function testShouldAllowRetrievingIndividualDjConfigKeys()
- {
- $this->helper->setDjConfigOption('parseOnLoad', 'true');
- $this->assertEquals('true', $this->helper->getDjConfigOption('parseOnLoad'));
- }
- public function testGetDjConfigShouldReturnEmptyArrayByDefault()
- {
- $this->assertSame(array(), $this->helper->getDjConfig());
- }
- public function testGetDjConfigOptionShouldReturnNullWhenKeyDoesNotExist()
- {
- $this->assertNull($this->helper->getDjConfigOption('bogus'));
- }
- public function testGetDjConfigOptionShouldAllowSpecifyingDefaultValue()
- {
- $this->assertEquals('bar', $this->helper->getDjConfigOption('foo', 'bar'));
- }
- public function testDjConfigShouldSerializeToJson()
- {
- $this->helper->setDjConfigOption('parseOnLoad', true)
- ->enable();
- $html = $this->helper->__toString();
- $this->assertContains('var djConfig = ', $html, var_export($html, 1));
- $this->assertContains('"parseOnLoad":', $html, $html);
- }
- public function testShouldAllowSpecifyingStylesheetByModuleName()
- {
- $this->helper->addStylesheetModule('dijit.themes.tundra');
- $stylesheets = $this->helper->getStylesheetModules();
- $this->assertContains('dijit.themes.tundra', $stylesheets);
- }
- public function testDuplicateStylesheetModulesShouldNotBeAllowed()
- {
- $this->helper->addStylesheetModule('dijit.themes.tundra');
- $stylesheets = $this->helper->getStylesheetModules();
- $this->assertContains('dijit.themes.tundra', $stylesheets);
- $this->helper->addStylesheetModule('dijit.themes.tundra');
- $stylesheets = $this->helper->getStylesheetModules();
- $this->assertEquals(1, count($stylesheets));
- $this->assertContains('dijit.themes.tundra', $stylesheets);
- }
- /**
- * @group ZF-3916
- */
- public function testAddingStylesheetModuleShouldAllowDashAndUnderscoreCharacters()
- {
- $this->helper->addStylesheetModule('dojox._highlight.pygments');
- $this->helper->addStylesheetModule('dojo.NodeList-fx.styles');
- }
- public function testInvalidStylesheetModuleNameShouldThrowException()
- {
- try {
- $this->helper->addStylesheetModule('foo/bar/baz');
- $this->fail('invalid module designation should throw exception');
- } catch (Zend_Dojo_View_Exception $e) {
- $this->assertContains('Invalid', $e->getMessage());
- }
- }
- public function testRenderingModuleStylesheetShouldProperlyCreatePaths()
- {
- $this->helper->enable()
- ->addStylesheetModule('dijit.themes.tundra');
- $html = $this->helper->__toString();
- $this->assertContains('dijit/themes/tundra/tundra.css', $html);
- }
- public function testShouldAllowSpecifyingLocalStylesheet()
- {
- $this->helper->addStylesheet('/css/foo.css');
- $css = $this->helper->getStylesheets();
- $this->assertTrue(is_array($css));
- $this->assertContains('/css/foo.css', $css);
- }
- public function testShouldNotAllowSpecifyingDuplicateLocalStylesheets()
- {
- $this->testShouldAllowSpecifyingLocalStylesheet();
- $this->helper->addStylesheet('/css/foo.css');
- $css = $this->helper->getStylesheets();
- $this->assertTrue(is_array($css));
- $this->assertEquals(1, count($css));
- $this->assertContains('/css/foo.css', $css);
- }
- public function testShouldAllowSpecifyingOnLoadFunctionPointer()
- {
- $this->helper->addOnLoad('foo');
- $onLoad = $this->helper->getOnLoadActions();
- $this->assertTrue(is_array($onLoad));
- $this->assertEquals(1, count($onLoad));
- $action = array_shift($onLoad);
- $this->assertTrue(is_string($action));
- $this->assertEquals('foo', $action);
- }
- public function testShouldAllowCapturingOnLoadActions()
- {
- $this->helper->onLoadCaptureStart(); ?>
- function() {
- bar();
- baz();
- }
- <?php $this->helper->onLoadCaptureEnd();
- $onLoad = $this->helper->getOnLoadActions();
- $this->assertTrue(is_array($onLoad));
- $this->assertEquals(1, count($onLoad));
- $action = array_shift($onLoad);
- $this->assertTrue(is_string($action));
- $this->assertContains('function() {', $action);
- $this->assertContains('bar();', $action);
- $this->assertContains('baz();', $action);
- }
- public function testShouldNotAllowSpecifyingDuplicateOnLoadActions()
- {
- $this->helper->addOnLoad('foo');
- $this->helper->addOnLoad('foo');
- $onLoad = $this->helper->getOnLoadActions();
- $this->assertTrue(is_array($onLoad));
- $this->assertEquals(1, count($onLoad));
- $action = array_shift($onLoad);
- $this->assertEquals('foo', $action);
- }
- public function testDojoMethodShouldReturnContainer()
- {
- $helper = new Zend_Dojo_View_Helper_Dojo();
- $this->assertSame($this->helper, $helper->dojo());
- }
- public function testHelperStorageShouldPersistBetweenViewObjects()
- {
- $view1 = $this->getView();
- $dojo1 = $view1->getHelper('dojo');
- $view2 = $this->getView();
- $dojo2 = $view1->getHelper('dojo');
- $this->assertSame($dojo1, $dojo2);
- }
- public function testSerializingToStringShouldReturnEmptyStringByDefault()
- {
- $this->assertEquals('', $this->helper->__toString());
- }
- public function testEnablingHelperShouldCauseStringSerializationToWork()
- {
- $this->setupDojo();
- $html = $this->helper->__toString();
- $doc = new DOMDocument;
- $doc->loadHTML($html);
- $xPath = new DOMXPath($doc);
- $results = $xPath->query('//script');
- $this->assertEquals(3, $results->length);
- for ($i = 0; $i < 3; ++$i) {
- $script = $doc->saveXML($results->item($i));
- switch ($i) {
- case 0:
- $this->assertContains('var djConfig = ', $script);
- $this->assertContains('parseOnLoad', $script);
- break;
- case 1:
- $this->assertRegexp('#src="http://.+/dojo/[0-9.]+/dojo/dojo.xd.js"#', $script);
- $this->assertContains('/>', $script);
- break;
- case 2:
- $this->assertContains('dojo.registerModulePath("custom", "../custom")', $script, $script);
- $this->assertContains('dojo.require("dijit.layout.ContentPane")', $script, $script);
- $this->assertContains('dojo.require("custom.foo")', $script, $script);
- $this->assertContains('dojo.addOnLoad(foo)', $script, $script);
- break;
- }
- }
- $results = $xPath->query('//style');
- $this->assertEquals(1, $results->length, $html);
- $style = $doc->saveXML($results->item(0));
- $this->assertContains('@import', $style);
- $this->assertEquals(2, substr_count($style, '@import'));
- $this->assertEquals(1, substr_count($style, 'http://ajax.googleapis.com/ajax/libs/dojo/'), $style);
- $this->assertContains('css/custom.css', $style);
- $this->assertContains('dijit/themes/tundra/tundra.css', $style);
- }
- public function testStringSerializationShouldBeDoctypeAware()
- {
- $view = $this->getView();
- $view->doctype('HTML4_LOOSE');
- $this->helper->setView($view);
- $this->setupDojo();
- $html = $this->helper->__toString();
- $this->assertRegexp('|<style [^>]*>[\r\n]+\s*<!--|', $html);
- $this->assertRegexp('|<script [^>]*>[\r\n]+\s*//<!--|', $html);
- $this->helper = new Zend_Dojo_View_Helper_Dojo();
- $view->doctype('XHTML1_STRICT');
- $this->helper->setView($view);
- $this->setupDojo();
- $html = $this->helper->__toString();
- /**
- * @todo should stylesheets be escaped as CDATA when isXhtml()?
- */
- $this->assertRegexp('|<style [^>]*>[\r\n]+\s*<!--|', $html);
- $this->assertRegexp('|<script [^>]*>[\r\n]+\s*//<!\[CDATA\[|', $html);
- }
- public function testDojoHelperContainerPersistsBetweenViewObjects()
- {
- $this->setupDojo();
- $view = $this->getView();
- $this->assertNotSame($this->view, $view);
- $helper = $view->dojo();
- $this->assertSame($this->helper, $helper);
- }
- public function testShouldUseProgrammaticDijitCreationByDefault()
- {
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useProgrammatic());
- }
- public function testShouldAllowSpecifyingDeclarativeDijitCreation()
- {
- $this->testShouldUseProgrammaticDijitCreationByDefault();
- Zend_Dojo_View_Helper_Dojo::setUseDeclarative();
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useDeclarative());
- }
- public function testShouldAllowSpecifyingProgrammaticDijitCreationWithNoScriptGeneration()
- {
- Zend_Dojo_View_Helper_Dojo::setUseProgrammatic(-1);
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useProgrammatic());
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useProgrammaticNoScript());
- }
- public function testAddingProgrammaticDijitsShouldAcceptIdAndArrayOfDijitParams()
- {
- $this->helper->addDijit('foo', array('dojoType' => 'dijit.form.Form'));
- $dijits = $this->helper->getDijits();
- $this->assertTrue(is_array($dijits));
- $this->assertEquals(1, count($dijits));
- $dijit = array_shift($dijits);
- $this->assertTrue(is_array($dijit));
- $this->assertEquals(2, count($dijit));
- $this->assertTrue(array_key_exists('id', $dijit));
- $this->assertTrue(array_key_exists('params', $dijit));
- $this->assertEquals('foo', $dijit['id']);
- $this->assertTrue(is_array($dijit['params']));
- $this->assertEquals(1, count($dijit['params']));
- $this->assertTrue(array_key_exists('dojoType', $dijit['params']));
- $this->assertEquals('dijit.form.Form', $dijit['params']['dojoType']);
- }
- /**
- * @expectedException Zend_Dojo_View_Exception
- */
- public function testAddingDuplicateProgrammaticDijitsShouldRaiseExceptions()
- {
- $this->helper->addDijit('foo', array('dojoType' => 'dijit.form.Form'));
- $this->helper->addDijit('foo', array('dojoType' => 'dijit.form.ComboBox'));
- }
- public function testSettingProgrammaticDijitsShouldOverwriteExistingDijits()
- {
- $this->testAddingProgrammaticDijitsShouldAcceptIdAndArrayOfDijitParams();
- $this->helper->setDijit('foo', array('dojoType' => 'dijit.form.ComboBox'));
- $dijits = $this->helper->getDijits();
- $this->assertTrue(is_array($dijits));
- $this->assertEquals(1, count($dijits));
- $dijit = array_shift($dijits);
- $this->assertEquals('dijit.form.ComboBox', $dijit['params']['dojoType']);
- }
- public function testShouldAllowAddingMultipleDijitsAtOnce()
- {
- $dijits = array(
- 'foo' => array(
- 'dojoType' => 'dijit.form.Form'
- ),
- 'bar' => array(
- 'dojoType' => 'dijit.form.TextBox',
- ),
- );
- $this->helper->addDijits($dijits);
- $test = $this->helper->getDijits();
- $this->assertTrue(is_array($test));
- $this->assertEquals(2, count($test));
- $keys = array();
- foreach ($test as $dijit) {
- $keys[] = $dijit['id'];
- }
- $this->assertSame(array_keys($dijits), $keys);
- }
- public function testSettingMultipleDijitsAtOnceShouldOverwriteAllDijits()
- {
- $this->testAddingProgrammaticDijitsShouldAcceptIdAndArrayOfDijitParams();
- $dijits = array(
- 'bar' => array(
- 'dojoType' => 'dijit.form.Form'
- ),
- 'baz' => array(
- 'dojoType' => 'dijit.form.TextBox',
- ),
- );
- $this->helper->setDijits($dijits);
- $test = $this->helper->getDijits();
- $this->assertTrue(is_array($test));
- $this->assertEquals(2, count($test));
- $keys = array();
- foreach ($test as $dijit) {
- $keys[] = $dijit['id'];
- }
- $this->assertSame(array_keys($dijits), $keys);
- }
- public function testRetrievingDijitsByIdShouldReturnJustParams()
- {
- $this->helper->addDijit('foo', array('dojoType' => 'dijit.form.Form'));
- $params = $this->helper->getDijit('foo');
- $this->assertTrue(is_array($params));
- $this->assertEquals(1, count($params), var_export($params, 1));
- $this->assertTrue(array_key_exists('dojoType', $params));
- $this->assertEquals('dijit.form.Form', $params['dojoType']);
- }
- public function testShouldAllowRemovingIndividualDijits()
- {
- $this->helper->addDijit('foo', array('dojoType' => 'dijit.form.Form'));
- $dijits = $this->helper->getDijits();
- $this->assertTrue(is_array($dijits));
- $this->assertEquals(1, count($dijits));
- $this->helper->removeDijit('foo');
- $dijits = $this->helper->getDijits();
- $this->assertTrue(is_array($dijits));
- $this->assertEquals(0, count($dijits));
- }
- public function testShouldAllowClearingAllDijits()
- {
- $this->testShouldAllowAddingMultipleDijitsAtOnce();
- $this->helper->clearDijits();
- $dijits = $this->helper->getDijits();
- $this->assertTrue(is_array($dijits));
- $this->assertEquals(0, count($dijits));
- }
- public function testShouldAllowRetrievingDijitsAsJsonArray()
- {
- $this->testShouldAllowAddingMultipleDijitsAtOnce();
- $json = $this->helper->dijitsToJson();
- $array = Zend_Json::decode($json);
- $this->assertTrue(is_array($array));
- $keys = array();
- foreach ($array as $dijit) {
- $keys[] = $dijit['id'];
- $this->assertTrue(array_key_exists('params', $dijit));
- $this->assertTrue(is_array($dijit['params']));
- }
- $this->assertSame(array('foo', 'bar'), $keys);
- }
- public function testRenderingShouldCreateZendDijitsObjectAndAddOnloadForDijitsWhenDijitsArePresent()
- {
- $this->helper->enable();
- $this->testShouldAllowAddingMultipleDijitsAtOnce();
- $json = $this->helper->dijitsToJson();
- $html = $this->helper->__toString();
- $this->assertContains($json, $html, $html);
- $found = false;
- foreach ($this->helper->_getZendLoadActions() as $action) {
- if (strstr($action, 'dojo.mixin')) {
- $found = true;
- break;
- }
- }
- $this->assertTrue($found, 'Dijit onload action not created');
- $this->assertContains($action, $html);
- }
- public function testShouldAllowAddingArbitraryJsToPrimaryDojoScriptTag()
- {
- $this->helper->enable();
- $this->helper->addJavascript('var foo = "bar";');
- $html = $this->helper->__toString();
- $found = false;
- if (preg_match_all('|<script[^>]*>(.*?)(</script>)|s', $html, $m)) {
- foreach ($m[1] as $script) {
- if (strstr($script, 'var foo = "bar";')) {
- $found = true;
- break;
- }
- }
- }
- $this->assertTrue($found, 'Js not found: ' . $html);
- }
- public function testShouldAllowClearingArbitraryJsStack()
- {
- $this->testShouldAllowAddingArbitraryJsToPrimaryDojoScriptTag();
- $this->helper->clearJavascript();
- $js = $this->helper->getJavascript();
- $this->assertTrue(is_array($js));
- $this->assertEquals(0, count($js));
- }
- public function testShouldNotAllowAddingDuplicateArbitraryJsToPrimaryDojoScriptTag()
- {
- $this->helper->addJavascript('var foo = "bar";');
- $this->helper->addJavascript('var foo = "bar";');
- $js = $this->helper->getJavascript();
- $this->assertTrue(is_array($js));
- $this->assertEquals(1, count($js), var_export($js, 1));
- $this->assertEquals('var foo = "bar";', $js[0]);
- }
- public function testShouldAllowCapturingArbitraryJsToPrimaryDojoScriptTag()
- {
- $this->helper->javascriptCaptureStart();
- echo 'var foo = "bar";';
- $this->helper->javascriptCaptureEnd();
- $js = $this->helper->getJavascript();
- $this->assertEquals(1, count($js));
- $this->assertContains('var foo = "bar";', $js[0]);
- }
- public function testNoLayersShouldBeRegisteredByDefault()
- {
- $layers = $this->helper->getLayers();
- $this->assertTrue(is_array($layers));
- $this->assertTrue(empty($layers));
- }
- public function testShouldAllowAddingLayers()
- {
- $this->testNoLayersShouldBeRegisteredByDefault();
- $this->helper->addLayer('/js/foo/foo.xd.js');
- $layers = $this->helper->getLayers();
- $this->assertEquals(1, count($layers));
- $this->assertEquals('/js/foo/foo.xd.js', $layers[0]);
- $this->helper->addLayer('/js/bar/bar.xd.js');
- $layers = $this->helper->getLayers();
- $this->assertEquals(2, count($layers));
- $this->assertEquals('/js/foo/foo.xd.js', $layers[0]);
- $this->assertEquals('/js/bar/bar.xd.js', $layers[1]);
- }
- public function testShouldNotAllowDuplicateLayers()
- {
- $this->testShouldAllowAddingLayers();
- $this->helper->addLayer('/js/foo/foo.xd.js');
- $layers = $this->helper->getLayers();
- $this->assertEquals(2, count($layers));
- $this->assertEquals('/js/foo/foo.xd.js', $layers[0]);
- $this->assertEquals('/js/bar/bar.xd.js', $layers[1]);
- }
- public function testShouldAllowRemovingLayers()
- {
- $this->testShouldAllowAddingLayers();
- $this->helper->removeLayer('/js/foo/foo.xd.js');
- $layers = $this->helper->getLayers();
- $this->assertEquals(1, count($layers));
- $this->assertEquals('/js/bar/bar.xd.js', $layers[0]);
- }
- public function testShouldAllowClearingLayers()
- {
- $this->testShouldAllowAddingLayers();
- $this->helper->clearLayers();
- $layers = $this->helper->getLayers();
- $this->assertTrue(is_array($layers));
- $this->assertTrue(empty($layers));
- }
- public function testShouldRenderScriptTagsWithLayersWhenLayersAreRegistered()
- {
- $this->setupDojo();
- $this->testShouldAllowAddingLayers();
- $html = $this->helper->__toString();
- $doc = new DOMDocument;
- $doc->loadHTML($html);
- $xPath = new DOMXPath($doc);
- $results = $xPath->query('//script');
- $found = array();
- for ($i = 0; $i < $results->length; ++$i) {
- $script = $doc->saveXML($results->item($i));
- foreach (array('foo', 'bar') as $layerType) {
- $layer = sprintf('/js/%s/%s.xd.js', $layerType, $layerType);
- if (strstr($script, $layer)) {
- $found[] = $layerType;
- break;
- }
- }
- }
- $this->assertSame(array('foo', 'bar'), $found);
- }
- /**
- * @expectedException Zend_Dojo_View_Exception
- */
- public function testCallingMethodThatDoesNotExistInContainerShouldRaiseException()
- {
- $dojo = new Zend_Dojo_View_Helper_Dojo();
- $dojo->bogus();
- }
- public function testShouldAllowSpecifyingDeclarativeUsage()
- {
- Zend_Dojo_View_Helper_Dojo::setUseDeclarative();
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useDeclarative());
- }
- public function testShouldAllowSpecifyingProgrammaticUsageWithNoScriptGeneration()
- {
- Zend_Dojo_View_Helper_Dojo::setUseProgrammatic(-1);
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useProgrammaticNoScript());
- }
- public function testInvalidFlagPassedToUseProgrammaticShouldUseProgrammaticWithScripts()
- {
- Zend_Dojo_View_Helper_Dojo::setUseProgrammatic('foo');
- $this->assertFalse(Zend_Dojo_View_Helper_Dojo::useProgrammaticNoScript());
- $this->assertTrue(Zend_Dojo_View_Helper_Dojo::useProgrammatic());
- }
- /**
- * @group ZF-3962
- */
- public function testHelperShouldAllowDisablingParseOnLoadWithDeclarativeStyle()
- {
- Zend_Dojo_View_Helper_Dojo::setUseDeclarative();
- $this->helper->requireModule('dijit.layout.ContentPane')
- ->setDjConfigOption('parseOnLoad', 'false')
- ->enable();
- $html = $this->helper->__toString();
- if (!preg_match('/(var djConfig = .*?(?:};))/s', $html, $matches)) {
- $this->fail('Failed to find djConfig settings: ' . $html);
- }
- $this->assertNotContains('"parseOnLoad":true', $matches[1]);
- }
- /**
- * @group ZF-4522
- */
- public function testOnLoadCaptureStartShouldReturnVoid()
- {
- $test = $this->helper->onLoadCaptureStart();
- $this->helper->onLoadCaptureEnd();
- $this->assertNull($test);
- }
- /**
- * @group ZF-4522
- */
- public function testJavascriptCaptureStartShouldReturnVoid()
- {
- $test = $this->helper->javascriptCaptureStart();
- $this->helper->javascriptCaptureEnd();
- $this->assertNull($test);
- }
- /**
- * @group ZF-4587
- * @group ZF-5808
- */
- public function testZendDijitOnLoadMarkupShouldPrecedeAllOtherOnLoadEvents()
- {
- $this->helper->addOnLoad('zend.custom');
- $this->view->textBox('foo', 'bar');
- $test = $this->helper->__toString();
- $this->assertRegexp('/zendDijits.*?(zend\.custom)/s', $test, 'Generated markup: ' . $test);
- }
- public function testDojoViewHelperContainerAddOptionsPassesOnAllStringOptions() {
- $helper = $this->helper;
- $options = array(
- 'requireModules' => 'ZfTestRequiredModule',
- 'laYers' => '_added_layer_',
- 'cdnBase' => 'ZF-RLZ',
- 'cdnVersion' => '1.9.5',
- 'cdnDojoPath' => '_cdn_dojo_path_',
- 'localPath' => '/srv/ZF/dojo/',
- 'stylesheetmodules' => 'test.stylesheet.module',
- 'stylesheets' => 'someStyleSheet',
- 'registerdojostylesheet' => true
- );
- $helper->setOptions($options);
- $this->assertEquals(array('ZfTestRequiredModule'), $helper->getModules());
- $this->assertEquals(array('_added_layer_'), $helper->getLayers());
- $this->assertEquals('ZF-RLZ', $helper->getCdnBase());
- $this->assertEquals('1.9.5', $helper->getCdnVersion());
- $this->assertEquals('_cdn_dojo_path_', $helper->getCdnDojoPath());
- $this->assertEquals('/srv/ZF/dojo/', $helper->getLocalPath());
- $this->assertEquals(array('test.stylesheet.module'), $helper->getStyleSheetModules());
- $this->assertEquals(array('someStyleSheet'), $helper->getStylesheets());
- $this->assertTrue($helper->registerDojoStylesheet());
- }
- public function testDojoViewHelperContainerAddOptionsPassesOnAllArrayOptions() {
- $helper = $this->helper;
- $modulePaths = array('module1' => 'path1', 'module2' => 'path2');
- $layers = array('layer_two','layer_three');
- $djConfig = array('foo1' => 'bar1', 'foo2' => 'bar2');
- $stylesheetMods = array('test.one.style', 'test.two.style');
- $stylesheets = array('style1', 'style2');
- $options = array(
- 'modulePaths' => $modulePaths,
- 'layers' => $layers,
- 'djConfig' => $djConfig,
- 'styleShEEtModules' => $stylesheetMods,
- 'stylesheets' => $stylesheets,
- 'registerdojostylesheet' => false
- );
- $helper->setOptions($options);
- $this->assertEquals($modulePaths, $helper->getModulePaths());
- $this->assertEquals($layers, $helper->getLayers());
- $this->assertEquals($djConfig, $helper->getDjConfig());
- $this->assertEquals($stylesheetMods, $helper->getStyleSheetModules());
- $this->assertEquals($stylesheets, $helper->getStylesheets());
- $this->assertFalse($helper->registerDojoStylesheet());
- }
- public function testJsonExpressionRenders()
- {
- $this->helper->addDijit('foo',
- array('dojoType' => 'dijit.form.TextBox',
- 'onChange' => new Zend_Json_Expr('function(){alert(\'foo\');}'),
- ));
- $output = $this->helper->dijitsToJson();
- $this->assertRegexp('#(function\\(\\){alert\\(\'foo\'\\);})#', $output);
- }
- /**
- * @group GH-340
- */
- public function testRenderStylesheetsOrder()
- {
- $helper = $this->helper;
- $options = array(
- 'localPath' => '',
- 'stylesheetmodules' => 'test.stylesheet.module',
- 'registerdojostylesheet' => true,
- 'enable' => true,
- );
- $helper->setOptions($options);
- $expected = '<style type="text/css">' . "\n"
- . '<!--' . "\n"
- . ' @import "/dojo/resources/dojo.css";' . "\n"
- . ' @import "/test/stylesheet/module/module.css";' . "\n"
- . '-->' . "\n"
- . '</style>';
- $actual = (string) $helper;
- $end = '</style>';
- $actual = substr($actual, 0, strpos($actual, $end) + strlen($end));
- $this->assertEquals($expected, $actual);
- }
- public function setupDojo()
- {
- $this->helper->requireModule('dijit.layout.ContentPane')
- ->registerModulePath('custom', '../custom')
- ->requireModule('custom.foo')
- ->setCdnVersion('1.1')
- ->setDjConfig(array('parseOnLoad' => 'true'))
- ->addStylesheetModule('dijit.themes.tundra')
- ->addStylesheet('/css/custom.css')
- ->addOnLoad('foo');
- }
- }
- // Call Zend_Dojo_View_Helper_DojoTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Dojo_View_Helper_DojoTest::main") {
- Zend_Dojo_View_Helper_DojoTest::main();
- }
|