| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?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 "Zend/Locale.php";
- require_once "ZendX/JQuery/View/Helper/DatePicker.php";
- class ZendX_JQuery_View_DatePickerTest extends ZendX_JQuery_View_jQueryTestCase
- {
- public function testCallingInViewEnablesJQueryHelper()
- {
- $element = $this->view->datePicker("element", "");
- $this->assertTrue($this->jquery->isEnabled());
- $this->assertTrue($this->jquery->uiIsEnabled());
- }
- public function testShouldAppendToJqueryHelper()
- {
- $element = $this->view->datePicker("elem1", "", array("option" => "true"));
- $jquery = $this->view->jQuery()->__toString();
- $this->assertContains('datepicker(', $jquery);
- $this->assertContains('"option":"true"', $jquery);
- }
- public function testShouldCreateInputField()
- {
- $element = $this->view->datePicker("elem1", "01.01.2007");
- $this->assertEquals(array('$("#elem1").datepicker({});'), $this->view->jQuery()->getOnLoadActions());
- $this->assertContains("<input", $element);
- $this->assertContains('id="elem1"', $element);
- $this->assertContains('value="01.01.2007"', $element);
- }
- public function testDatePickerSupportsLocaleDe()
- {
- $view = $this->getView();
- $locale = new Zend_Locale('de');
- Zend_Registry::set('Zend_Locale', $locale);
- $view->datePicker("dp1");
- $this->assertEquals(array(
- '$("#dp1").datepicker({"dateFormat":"dd.mm.yy"});',
- ), $view->jQuery()->getOnLoadActions());
- }
- public function testDatePickerSupportsLocaleEn()
- {
- $view = $this->getView();
- $locale = new Zend_Locale('en');
- Zend_Registry::set('Zend_Locale', $locale);
- $view->datePicker("dp2");
- $this->assertEquals(array(
- '$("#dp2").datepicker({"dateFormat":"M d, yy"});',
- ), $view->jQuery()->getOnLoadActions());
- }
- public function testDatePickerSupportsLocaleFr()
- {
- $view = $this->getView();
- $locale = new Zend_Locale('fr');
- Zend_Registry::set('Zend_Locale', $locale);
- $view->datePicker("dp3");
- $this->assertEquals(array(
- '$("#dp3").datepicker({"dateFormat":"d M yy"});',
- ), $view->jQuery()->getOnLoadActions());
- }
- /**
- * @group ZF-5615
- */
- public function testDatePickerLocalization()
- {
- $dpFormat = ZendX_JQuery_View_Helper_DatePicker::resolveZendLocaleToDatePickerFormat("MMM d, yyyy");
- $this->assertEquals("M d, yy", $dpFormat, "'MMM d, yyyy' has to be converted to 'M d, yy'.");
- }
- }
|