You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Rest/ControllerTest.php

133 lines
4.2 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_Rest
* @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: ControllerTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/** Test helper */
require_once dirname(__FILE__) . '/../../TestHelper.php';
require_once "PHPUnit/Framework/TestCase.php";
require_once "PHPUnit/Framework/TestSuite.php";
/** Zend_Rest_Controller */
require_once 'Zend/Rest/Controller.php';
/** Zend_Controller_Request_HttpTestCase */
require_once 'Zend/Controller/Request/HttpTestCase.php';
/** Zend_Controller_Response_HttpTestCase */
require_once 'Zend/Controller/Response/HttpTestCase.php';
// Call Zend_Rest_ControllerTest::main() if this source file is executed directly.
if (!defined("PHPUnit_MAIN_METHOD")) {
define("PHPUnit_MAIN_METHOD", "Zend_Rest_ControllerTest::main");
}
/**
* @category Zend
* @package Zend_Rest
* @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
*/
class Zend_Rest_TestController extends Zend_Rest_Controller
{
public $testValue = '';
public function __construct(Zend_Controller_Request_Abstract $request,
Zend_Controller_Response_Abstract $response,
array $invokeArgs = array())
{
$this->testValue = '';
}
public function indexAction()
{
$this->testValue = 'indexAction';
}
public function getAction()
{
$this->testValue = 'getAction';
}
public function postAction()
{
$this->testValue = 'postAction';
}
public function putAction()
{
$this->testValue = 'putAction';
}
public function deleteAction()
{
$this->testValue = 'deleteAction';
}
}
/**
* @category Zend
* @package Zend_Rest
* @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_Rest
*/
class Zend_Rest_ControllerTest extends PHPUnit_Framework_TestCase
{
protected $_testController;
/**
* 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_Rest_ControllerTest");
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
public function setUp()
{
$request = new Zend_Controller_Request_HttpTestCase();
$response = new Zend_Controller_Response_HttpTestCase();
$this->_testController = new Zend_Rest_TestController($request, $response);
}
public function test_action_methods()
{
$this->_testController->indexAction();
$this->assertEquals('indexAction', $this->_testController->testValue);
$this->_testController->getAction();
$this->assertEquals('getAction', $this->_testController->testValue);
$this->_testController->postAction();
$this->assertEquals('postAction', $this->_testController->testValue);
$this->_testController->putAction();
$this->assertEquals('putAction', $this->_testController->testValue);
$this->_testController->deleteAction();
$this->assertEquals('deleteAction', $this->_testController->testValue);
}
}
// Call Zend_Rest_ControllerTest::main() if this source file is executed directly.
if (PHPUnit_MAIN_METHOD == "Zend_Rest_ControllerTest::main") {
Zend_Rest_ControllerTest::main();
}