104 lines
3.3 KiB
PHP
104 lines
3.3 KiB
PHP
|
<?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-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @version $Id: PutHandlerTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
// 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 dirname(__FILE__) . '/../../../TestHelper.php';
|
||
|
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-2009 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()
|
||
|
{
|
||
|
require_once "PHPUnit/TextUI/TestRunner.php";
|
||
|
|
||
|
$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();
|
||
|
}
|
||
|
|