222 lines
6.7 KiB
PHP
222 lines
6.7 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_Amf
|
||
|
* @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$
|
||
|
*/
|
||
|
|
||
|
// Call Zend_Controller_Action_Helper_MultiPageFormTest::main() if this source file is executed directly.
|
||
|
if (!defined("PHPUnit_MAIN_METHOD")) {
|
||
|
define("PHPUnit_MAIN_METHOD", "Zend_Amf_Adobe_IntrospectorTest::main");
|
||
|
}
|
||
|
|
||
|
require_once dirname(__FILE__) . '/../../../TestHelper.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Amf_Adobe_Introspector
|
||
|
*/
|
||
|
require_once 'Zend/Amf/Adobe/Introspector.php';
|
||
|
|
||
|
/**
|
||
|
* @category Zend
|
||
|
* @package Zend_Amf
|
||
|
* @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_Amf
|
||
|
*/
|
||
|
class Zend_Amf_Adobe_IntrospectorTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public static function main()
|
||
|
{
|
||
|
$suite = new PHPUnit_Framework_TestSuite(__CLASS__);
|
||
|
PHPUnit_TextUI_TestRunner::run($suite);
|
||
|
}
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->introspector = new Zend_Amf_Adobe_Introspector();
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionDoesNotIncludeConstructor()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertNotContains('__construct', $xml);
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionDoesNotIncludeMagicMethods()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertNotContains('__get', $xml);
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionContainsPublicPropertiesOfReturnClassTypes()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertRegexp('/<type[^>]*(name="com_zend_framework_IntrospectorTestCustomType")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<property[^>]*(name="foo")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<property[^>]*(type="string")/', $xml, $xml);
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionDoesNotContainNonPublicPropertiesOfReturnClassTypes()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertNotRegexp('/<property[^>]*(name="_bar")/', $xml, $xml);
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionContainsPublicMethods()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertRegexp('/<operation[^>]*(name="foobar")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<operation[^>]*(name="barbaz")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<operation[^>]*(name="bazbat")/', $xml, $xml);
|
||
|
}
|
||
|
|
||
|
public function testIntrospectionContainsOperationForEachPrototypeOfAPublicMethod()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertEquals(4, substr_count($xml, 'name="foobar"'));
|
||
|
$this->assertEquals(1, substr_count($xml, 'name="barbaz"'));
|
||
|
$this->assertEquals(1, substr_count($xml, 'name="bazbat"'));
|
||
|
}
|
||
|
|
||
|
public function testPassingDirectoriesOptionShouldResolveServiceClassAndType()
|
||
|
{
|
||
|
require_once dirname(__FILE__) . '/_files/ZendAmfAdobeIntrospectorTestType.php';
|
||
|
$xml = $this->introspector->introspect('ZendAmfAdobeIntrospectorTest', array(
|
||
|
'directories' => array(dirname(__FILE__) . '/_files'),
|
||
|
));
|
||
|
$this->assertRegexp('/<operation[^>]*(name="foo")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<type[^>]*(name="ZendAmfAdobeIntrospectorTestType")/', $xml, $xml);
|
||
|
$this->assertRegexp('/<property[^>]*(name="bar")/', $xml, $xml);
|
||
|
}
|
||
|
|
||
|
public function testMissingPropertyDocblockInTypedClassShouldReportTypeAsUnknown()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
if (!preg_match('/(<property[^>]*(name="baz")[^>]*>)/', $xml, $matches)) {
|
||
|
$this->fail('Baz property of com.zend.framework.IntrospectorTestCustomType not found');
|
||
|
}
|
||
|
$node = $matches[1];
|
||
|
$this->assertContains('type="Unknown"', $node, $node);
|
||
|
}
|
||
|
|
||
|
public function testPropertyDocblockWithoutAnnotationInTypedClassShouldReportTypeAsUnknown()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
if (!preg_match('/(<property[^>]*(name="bat")[^>]*>)/', $xml, $matches)) {
|
||
|
$this->fail('Bat property of com.zend.framework.IntrospectorTestCustomType not found');
|
||
|
}
|
||
|
$node = $matches[1];
|
||
|
$this->assertContains('type="Unknown"', $node, $node);
|
||
|
}
|
||
|
|
||
|
public function testTypedClassWithExplicitTypeShouldReportAsThatType()
|
||
|
{
|
||
|
$xml = $this->introspector->introspect('com.zend.framework.IntrospectorTest');
|
||
|
$this->assertRegexp('/<type[^>]*(name="explicit")/', $xml, $xml);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class com_zend_framework_IntrospectorTest
|
||
|
{
|
||
|
/**
|
||
|
* Constructor
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Overloading: get properties
|
||
|
*
|
||
|
* @param string $name
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function __get($name)
|
||
|
{
|
||
|
$prop = '_' . $name;
|
||
|
if (!isset($this->$prop)) {
|
||
|
return null;
|
||
|
}
|
||
|
return $this->$prop;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Foobar
|
||
|
*
|
||
|
* @param string|int $arg
|
||
|
* @return string|stdClass
|
||
|
*/
|
||
|
public function foobar($arg)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Barbaz
|
||
|
*
|
||
|
* @param com_zend_framework_IntrospectorTestCustomType $arg
|
||
|
* @return boolean
|
||
|
*/
|
||
|
public function barbaz($arg)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Bazbat
|
||
|
*
|
||
|
* @return com_zend_framework_IntrospectorTestExplicitType
|
||
|
*/
|
||
|
public function bazbat()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class com_zend_framework_IntrospectorTestCustomType
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $foo;
|
||
|
|
||
|
public $baz;
|
||
|
|
||
|
/**
|
||
|
* Docblock without an annotation
|
||
|
*/
|
||
|
public $bat;
|
||
|
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $_bar;
|
||
|
}
|
||
|
|
||
|
class com_zend_framework_IntrospectorTestExplicitType
|
||
|
{
|
||
|
public $_explicitType = 'explicit';
|
||
|
}
|
||
|
|
||
|
|
||
|
// Call Zend_Amf_Adobe_IntrospectorTest::main() if this source file is executed directly.
|
||
|
if (PHPUnit_MAIN_METHOD == "Zend_Amf_Adobe_IntrospectorTest::main") {
|
||
|
Zend_Amf_Adobe_IntrospectorTest::main();
|
||
|
}
|