| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?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 ZendX
- * @package ZendX_JQuery
- * @subpackage View
- * @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$
- */
- require_once "jQueryTestCase.php";
- require_once "ZendX/JQuery/View/Helper/Slider.php";
- class ZendX_JQuery_View_SliderTest extends ZendX_JQuery_View_jQueryTestCase
- {
- public function testCallingInViewEnablesJQueryHelper()
- {
- $element = $this->view->slider("element", "");
- $this->assertTrue($this->jquery->isEnabled());
- $this->assertTrue($this->jquery->uiIsEnabled());
- }
- public function testShouldAppendToJqueryHelper()
- {
- $element = $this->view->slider("elem1", "", array("option" => "true"));
- $jquery = $this->view->jQuery()->__toString();
- $this->assertContains('slider(', $jquery);
- $this->assertContains('"option":"true"', $jquery);
- }
- public function testShouldBuiltSliderElementsWith15API()
- {
- $this->view->jQuery()->setUiVersion("1.5.2");
- $element = $this->view->slider("elem1", "75", array(), array());
- $this->assertEquals(
- array(
- '$("#elem1-slider").slider({"handles":[{"start":"75"}],"change":function(e, ui) {
- $("#elem1").attr("value", $("#elem1-slider").slider("value", 0));
- }
- });'
- ), $this->jquery->getOnLoadActions());
- $this->assertContains("<div", $element);
- $this->assertContains('<div class="ui-slider-handle"></div>', $element);
- $this->assertContains('<input', $element);
- $this->assertContains('type="hidden"', $element);
- $this->assertContains('id="elem1"', $element);
- $this->assertContains('id="elem1-slider"', $element);
- }
- public function testShouldBuiltSliderElementsWith17API()
- {
- $this->view->jQuery()->setUiVersion("1.7.2");
- $element = $this->view->slider("elem1", "75", array(), array());
- $this->assertEquals(
- array(
- '$("#elem1-slider").slider({"values":["75"],"change":function(e, ui) {
- $("#elem1").attr("value", $("#elem1-slider").slider("values", 0));
- }
- });'
- ), $this->jquery->getOnLoadActions());
- $this->assertContains("<div", $element);
- $this->assertContains('<div class="ui-slider-handle"></div>', $element);
- $this->assertContains('<input', $element);
- $this->assertContains('type="hidden"', $element);
- $this->assertContains('id="elem1"', $element);
- $this->assertContains('id="elem1-slider"', $element);
- }
- public function testShouldAllowMultipleSliders()
- {
- $element = $this->view->slider("elem1", "0", array('sliderCount' => 3), array());
- }
- }
|