| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?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-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // Call Zend_Controller_Plugin_PutHandlerTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Controller_Plugin_PutHandlerTest::main");
- }
- require_once 'Zend/Controller/Plugin/PutHandler.php';
- require_once 'Zend/Controller/Request/HttpTestCase.php';
- require_once 'Zend/Controller/Front.php';
- /**
- * Test class for Zend_Controller_Plugin_PutHandler.
- */
- /**
- * @category Zend
- * @package Zend_Controller
- * @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_Controller
- * @group Zend_Controller_Plugin
- */
- class Zend_Controller_Plugin_PutHandlerTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Request object
- * @var Zend_Controller_Request_Http
- */
- public $request;
- /**
- * Error handler plugin
- * @var Zend_Controller_Plugin_PutHandler
- */
- public $plugin;
- /**
- * Runs the test methods of this class.
- *
- * @access public
- * @static
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Plugin_PutHandlerTest");
- $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.
- *
- * @access protected
- */
- protected function setUp()
- {
- Zend_Controller_Front::getInstance()->resetInstance();
- $this->request = new Zend_Controller_Request_HttpTestCase();
- $this->plugin = new Zend_Controller_Plugin_PutHandler();
- $this->plugin->setRequest($this->request);
- }
- public function test_marshall_PUT_body_as_params()
- {
- $this->request->setMethod('PUT');
- $this->request->setRawBody('param1=value1¶m2=value2');
- $this->plugin->preDispatch($this->request);
- $this->assertEquals('value1', $this->request->getParam('param1'));
- $this->assertEquals('value2', $this->request->getParam('param2'));
- }
- }
- // Call Zend_Controller_Plugin_PutHandlerTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Controller_Plugin_PutHandlerTest::main") {
- Zend_Controller_Plugin_PutHandlerTest::main();
- }
|