| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?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_Amf
- * @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_Amf_AuthTest::main() if this source file is executed directly.
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Amf_ResourceTest::main");
- }
- require_once 'Zend/Amf/Server.php';
- require_once 'Zend/Amf/Request.php';
- require_once 'Zend/Amf/Parse/TypeLoader.php';
- require_once 'Zend/Amf/Value/Messaging/RemotingMessage.php';
- /**
- * @category Zend
- * @package Zend_Amf
- * @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_Amf
- */
- class Zend_Amf_ResourceTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Enter description here...
- *
- * @var Zend_Amf_Server
- */
- protected $_server;
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Amf_ResourceTest");
- PHPUnit_TextUI_TestRunner::run($suite);
- }
- public function setUp()
- {
- $this->_server = new Zend_Amf_Server();
- $this->_server->setProduction(false);
- Zend_Amf_Parse_TypeLoader::resetMap();
- }
- protected function tearDown()
- {
- unset($this->_server);
- }
- protected function _callService($method, $class = 'Zend_Amf_Resource_testclass')
- {
- $request = new Zend_Amf_Request();
- $request->setObjectEncoding(0x03);
- $this->_server->setClass($class);
- $newBody = new Zend_Amf_Value_MessageBody("$class.$method","/1",array("test"));
- $request->addAmfBody($newBody);
- $this->_server->handle($request);
- $response = $this->_server->getResponse();
- return $response;
- }
- public function testFile()
- {
- $resp = $this->_callService("returnFile");
- $this->assertContains("test data", $resp->getResponse());
- }
- /**
- * Defining new unknown resource type
- *
- * @expectException Zend_Amf_Server_Exception
- *
- */
- public function testCtxNoResource()
- {
- try {
- $this->_callService("returnCtx");
- } catch(Zend_Amf_Server_Exception $e) {
- $this->assertContains("serialize resource type", $e->getMessage());
- return;
- }
- $this->fail("Failed to throw exception on unknown resource");
- }
- /**
- * Defining new unknown resource type via plugin loader and handling it
- *
- */
- public function testCtxLoader()
- {
- Zend_Amf_Parse_TypeLoader::addResourceDirectory("Test_Resource", dirname(__FILE__)."/Resources");
- $resp = $this->_callService("returnCtx");
- $this->assertContains("Accept-language:", $resp->getResponse());
- $this->assertContains("foo=bar", $resp->getResponse());
- }
- /**
- * Defining new unknown resource type and handling it
- *
- */
- public function testCtx()
- {
- Zend_Amf_Parse_TypeLoader::setResourceLoader(new Zend_Amf_TestResourceLoader("2"));
- $resp = $this->_callService("returnCtx");
- $this->assertContains("Accept-language:", $resp->getResponse());
- $this->assertContains("foo=bar", $resp->getResponse());
- }
- /**
- * Defining new unknown resource type, handler has no parse()
- *
- */
- public function testCtxNoParse()
- {
- Zend_Amf_Parse_TypeLoader::setResourceLoader(new Zend_Amf_TestResourceLoader("3"));
- try {
- $resp = $this->_callService("returnCtx");
- } catch(Zend_Amf_Server_Exception $e) {
- $this->assertContains("Could not call parse()", $e->getMessage());
- return;
- }
- $this->fail("Failed to throw exception on unknown resource");
- }
- }
- class Zend_Amf_Resource_testclass {
- function returnFile()
- {
- return fopen(dirname(__FILE__)."/_files/testdata", "r");
- }
- function returnCtx()
- {
- $opts = array(
- 'http'=>array(
- 'method'=>"GET",
- 'header'=>"Accept-language: en\r\n" .
- "Cookie: foo=bar\r\n"
- )
- );
- $context = stream_context_create($opts);
- return $context;
- }
- }
- class StreamContext2
- {
- public function parse($resource)
- {
- return stream_context_get_options($resource);
- }
- }
- class StreamContext3
- {
- protected function parse($resource)
- {
- return stream_context_get_options($resource);
- }
- }
- class Zend_Amf_TestResourceLoader implements Zend_Loader_PluginLoader_Interface {
- public $suffix;
- public function __construct($suffix) {
- $this->suffix = $suffix;
- }
- public function addPrefixPath($prefix, $path) {}
- public function removePrefixPath($prefix, $path = null) {}
- public function isLoaded($name) {}
- public function getClassName($name) {}
- public function load($name) {
- return $name.$this->suffix;
- }
- }
- if (PHPUnit_MAIN_METHOD == "Zend_Amf_ResourceTest::main") {
- Zend_Amf_ResourceTest::main();
- }
|