| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?php
- // Call Zend_Controller_Action_Helper_AjaxContextTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- require_once dirname(__FILE__) . '/../../../../TestHelper.php';
- define("PHPUnit_MAIN_METHOD", "Zend_Controller_Action_Helper_AjaxContextTest::main");
- }
- require_once "PHPUnit/Framework/TestCase.php";
- require_once "PHPUnit/Framework/TestSuite.php";
- require_once 'Zend/Controller/Action/Helper/AjaxContext.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';
- require_once 'Zend/View.php';
- /**
- * Test class for Zend_Controller_Action_Helper_AjaxContext.
- */
- class Zend_Controller_Action_Helper_AjaxContextTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Runs the test methods of this class.
- *
- * @access public
- * @static
- */
- public static function main()
- {
- require_once "PHPUnit/TextUI/TestRunner.php";
- $suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Action_Helper_AjaxContextTest");
- $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()
- {
- if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) {
- unset($_SERVER['HTTP_X_REQUESTED_WITH']);
- }
- Zend_Controller_Action_Helper_AjaxContextTest_LayoutOverride::$_mvcInstance = null;
- Zend_Controller_Action_HelperBroker::resetHelpers();
- $this->front = Zend_Controller_Front::getInstance();
- $this->front->resetInstance();
- $this->front->addModuleDirectory(dirname(__FILE__) . '/../../_files/modules');
- $this->layout = Zend_Layout::startMvc();
- $this->helper = new Zend_Controller_Action_Helper_AjaxContext();
- $this->request = new Zend_Controller_Request_Http();
- $this->response = new Zend_Controller_Response_Cli();
- $this->front->setRequest($this->request)->setResponse($this->response);
- $this->view = new Zend_VIew();
- $this->view->addHelperPath(dirname(__FILE__) . '/../../../../../library/Zend/View/Helper/');
- $this->viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer');
- $this->viewRenderer->setView($this->view);
- $this->controller = new Zend_Controller_Action_Helper_AjaxContextTestController(
- $this->request,
- $this->response,
- array()
- );
- $this->helper->setActionController($this->controller);
- }
- /**
- * Tears down the fixture, for example, close a network connection.
- * This method is called after a test is executed.
- *
- * @return void
- */
- public function tearDown()
- {
- if (isset($_SERVER['HTTP_X_REQUESTED_WITH'])) {
- unset($_SERVER['HTTP_X_REQUESTED_WITH']);
- }
- }
- public function testDefaultContextsIncludesHtml()
- {
- $contexts = $this->helper->getContexts();
- $this->assertTrue(isset($contexts['html']));
- $this->assertEquals('ajax.phtml', $this->helper->getSuffix('html'));
- $header = $this->helper->getHeaders('html');
- $this->assertTrue(empty($header));
- }
- public function checkNothingIsDone()
- {
- $this->assertEquals('phtml', $this->viewRenderer->getViewSuffix());
- $headers = $this->response->getHeaders();
- $this->assertTrue(empty($headers));
- }
- public function testInitContextFailsOnNonXhrRequests()
- {
- $this->request->setParam('format', 'xml')
- ->setActionName('foo');
- $this->helper->initContext();
- $this->checkNothingIsDone();
- }
- public function testInitContextFailsWithNoAjaxableActions()
- {
- $_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
- $this->assertTrue($this->request->isXmlHttpRequest());
- $this->controller->contexts = $this->controller->ajaxable;
- unset($this->controller->ajaxable);
- $this->request->setParam('format', 'xml')
- ->setActionName('foo');
- $this->helper->initContext();
- $this->checkNothingIsDone();
- }
- public function testInitContextSwitchesContextWithXhrRequests()
- {
- $_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
- $this->assertTrue($this->request->isXmlHttpRequest());
- $this->request->setParam('format', 'xml')
- ->setActionName('foo');
- $this->helper->initContext();
- $this->assertEquals('xml.phtml', $this->viewRenderer->getViewSuffix());
- $headers = $this->response->getHeaders();
- $found = false;
- foreach ($headers as $header) {
- if ('Content-Type' == $header['name']) {
- $found = true;
- $value = $header['value'];
- }
- }
- $this->assertTrue($found);
- $this->assertEquals('application/xml', $value);
- $this->assertFalse($this->layout->isEnabled());
- }
- public function testGetCurrentContextResetToNullWhenSubsequentInitContextFailsXhrTest()
- {
- $_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
- $this->assertTrue($this->request->isXmlHttpRequest());
- $this->assertNull($this->helper->getCurrentContext());
- $this->request->setParam('format', 'xml')
- ->setActionName('foo');
- $this->helper->initContext();
- $this->assertEquals('xml', $this->helper->getCurrentContext());
- unset($_SERVER['HTTP_X_REQUESTED_WITH']);
- $this->request->setParam('format', 'foo')
- ->setActionName('bogus');
- $this->helper->initContext();
- $this->assertNull($this->helper->getCurrentContext());
- }
- }
- class Zend_Controller_Action_Helper_AjaxContextTestController extends Zend_Controller_Action
- {
- public $ajaxable = array(
- 'foo' => array('xml'),
- 'bar' => array('xml', 'json'),
- 'baz' => array(),
- );
- }
- class Zend_Controller_Action_Helper_AjaxContextTest_LayoutOverride extends Zend_Layout
- {
- public static $_mvcInstance;
- }
- // Call Zend_Controller_Action_Helper_AjaxContextTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Controller_Action_Helper_AjaxContextTest::main") {
- Zend_Controller_Action_Helper_AjaxContextTest::main();
- }
|