| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- <?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_Controller
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_Controller_Action_Helper_AutoCompleteTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Controller_Action_Helper_AutoCompleteTest::main");
- }
- require_once 'Zend/Controller/Action/Helper/AutoCompleteDojo.php';
- require_once 'Zend/Controller/Action/Helper/AutoCompleteScriptaculous.php';
- require_once 'Zend/Controller/Action.php';
- require_once 'Zend/Controller/Action/HelperBroker.php';
- require_once 'Zend/Controller/Front.php';
- require_once 'Zend/Controller/Request/Http.php';
- require_once 'Zend/Controller/Response/Cli.php';
- require_once 'Zend/Layout.php';
- /**
- * Test class for Zend_Controller_Action_Helper_AutoComplete.
- *
- * @category Zend
- * @package Zend_Controller
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Controller
- * @group Zend_Controller_Action
- * @group Zend_Controller_Action_Helper
- */
- class Zend_Controller_Action_Helper_AutoCompleteTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Runs the test methods of this class.
- *
- * @access public
- * @static
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Action_Helper_AutoCompleteTest");
- $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_Controller_Action_Helper_AutoCompleteTest_LayoutOverride::resetMvcInstance();
- Zend_Controller_Action_HelperBroker::resetHelpers();
- Zend_Controller_Action_HelperBroker::setPluginLoader(null);
- $this->request = new Zend_Controller_Request_Http();
- $this->response = new Zend_Controller_Response_Cli();
- $this->front = Zend_Controller_Front::getInstance();
- $this->front->resetInstance();
- $this->front->setRequest($this->request)->setResponse($this->response);
- $this->viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
- $this->layout = Zend_Layout::startMvc();
- }
- /**
- * 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 testConcreteImplementationsDeriveFromAutoCompleteBaseClass()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $this->assertTrue($dojo instanceof Zend_Controller_Action_Helper_AutoComplete_Abstract);
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $this->assertTrue($scriptaculous instanceof Zend_Controller_Action_Helper_AutoComplete_Abstract);
- }
- public function testEncodeJsonProxiesToJsonActionHelper()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $data = array('foo', 'bar', 'baz');
- $encoded = $dojo->prepareAutoCompletion($data);
- $decoded = Zend_Json::decode($encoded);
- $test = array();
- foreach ($decoded['items'] as $item) {
- $test[] = $item['name'];
- }
- $this->assertSame($data, $test);
- $this->assertFalse($this->layout->isEnabled());
- $headers = $this->response->getHeaders();
- $found = false;
- foreach ($headers as $header) {
- if ('Content-Type' == $header['name']) {
- if ('application/json' == $header['value']) {
- $found = true;
- }
- break;
- }
- }
- $this->assertTrue($found, "JSON content-type header not found");
- }
- public function testDojoHelperEncodesToJson()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $data = array('foo', 'bar', 'baz');
- $encoded = $dojo->direct($data, false);
- $decoded = Zend_Json::decode($encoded);
- $this->assertContains('items', array_keys($decoded));
- $this->assertContains('identifier', array_keys($decoded));
- $this->assertEquals('name', $decoded['identifier']);
- $test = array();
- foreach ($decoded['items'] as $item) {
- $test[] = $item['label'];
- }
- $this->assertEquals($data, $test);
- }
- public function testDojoHelperSendsResponseByDefault()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $dojo->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $dojo->direct($data);
- $decoded = Zend_Json::decode($encoded);
- $test = array();
- foreach ($decoded['items'] as $item) {
- $test[] = $item['name'];
- }
- $this->assertSame($data, $test);
- $body = $this->response->getBody();
- $this->assertSame($encoded, $body);
- }
- public function testDojoHelperDisablesLayoutsAndViewRendererByDefault()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $dojo->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $dojo->direct($data);
- $this->assertFalse($this->layout->isEnabled());
- $this->assertTrue($this->viewRenderer->getNoRender());
- }
- public function testDojoHelperCanEnableLayoutsAndViewRenderer()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $dojo->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $dojo->direct($data, false, true);
- $this->assertTrue($this->layout->isEnabled());
- $this->assertFalse($this->viewRenderer->getNoRender());
- }
- /**
- * @group ZF-9126
- */
- public function testDojoHelperEncodesUnicodeChars()
- {
- $dojo = new Zend_Controller_Action_Helper_AutoCompleteDojo();
- $dojo->suppressExit = true;
- $data = array ('garçon', 'schließen', 'Helgi Þormar Þorbjörnsson');
- $encoded = $dojo->direct($data);
- $body = $this->response->getBody();
- $decoded = Zend_Json::decode($encoded);
- $test = array ();
- foreach ($decoded['items'] as $item) {
- $test[] = $item['name'];
- }
- $this->assertSame($data, $test);
- $this->assertSame($encoded, $body);
- }
- public function testScriptaculousHelperThrowsExceptionOnInvalidDataFormat()
- {
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $data = new stdClass;
- $data->foo = 'bar';
- $data->bar = 'baz';
- try {
- $encoded = $scriptaculous->encodeJson($data);
- $this->fail('Objects should be considered invalid');
- } catch (Zend_Controller_Action_Exception $e) {
- $this->assertContains('Invalid data', $e->getMessage());
- }
- }
- public function testScriptaculousHelperCreatesHtmlMarkup()
- {
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $scriptaculous->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $formatted = $scriptaculous->direct($data);
- $this->assertContains('<ul>', $formatted);
- foreach ($data as $value) {
- $this->assertContains('<li>' . $value . '</li>', $formatted);
- }
- $this->assertContains('</ul>', $formatted);
- }
- public function testScriptaculousHelperSendsResponseByDefault()
- {
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $scriptaculous->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $scriptaculous->direct($data);
- $body = $this->response->getBody();
- $this->assertSame($encoded, $body);
- }
- public function testScriptaculousHelperDisablesLayoutsAndViewRendererByDefault()
- {
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $scriptaculous->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $scriptaculous->direct($data);
- $this->assertFalse($this->layout->isEnabled());
- $this->assertTrue($this->viewRenderer->getNoRender());
- }
- public function testScriptaculousHelperCanEnableLayoutsAndViewRenderer()
- {
- $scriptaculous = new Zend_Controller_Action_Helper_AutoCompleteScriptaculous();
- $scriptaculous->suppressExit = true;
- $data = array('foo', 'bar', 'baz');
- $encoded = $scriptaculous->direct($data, false, true);
- $this->assertTrue($this->layout->isEnabled());
- $this->assertFalse($this->viewRenderer->getNoRender());
- }
- }
- class Zend_Controller_Action_Helper_AutoCompleteTest_LayoutOverride extends Zend_Layout
- {
- public static function resetMvcInstance()
- {
- self::$_mvcInstance = null;
- }
- }
- // Call Zend_Controller_Action_Helper_AutoCompleteTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Controller_Action_Helper_AutoCompleteTest::main") {
- Zend_Controller_Action_Helper_AutoCompleteTest::main();
- }
|