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/Server/Reflection/ClassTest.php

148 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_Server
* @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: ClassTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
require_once 'Zend/Server/Reflection/Class.php';
require_once 'PHPUnit/Framework/TestCase.php';
require_once 'PHPUnit/Framework/IncompleteTestError.php';
require_once 'Zend/Server/Reflection.php';
/**
* Test case for Zend_Server_Reflection_Class
*
* @category Zend
* @package Zend_Server
* @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_Server
*/
class Zend_Server_Reflection_ClassTest extends PHPUnit_Framework_TestCase
{
/**
* __construct() test
*
* Call as method call
*
* Expects:
* - reflection:
* - namespace: Optional;
* - argv: Optional; has default;
*
* Returns: void
*/
public function test__construct()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$this->assertTrue($r instanceof Zend_Server_Reflection_Class);
$this->assertEquals('', $r->getNamespace());
$methods = $r->getMethods();
$this->assertTrue(is_array($methods));
foreach ($methods as $m) {
$this->assertTrue($m instanceof Zend_Server_Reflection_Method);
}
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'), 'namespace');
$this->assertEquals('namespace', $r->getNamespace());
}
/**
* __call() test
*
* Call as method call
*
* Expects:
* - method:
* - args:
*
* Returns: mixed
*/
public function test__call()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$this->assertTrue(is_string($r->getName()));
$this->assertEquals('Zend_Server_Reflection', $r->getName());
}
/**
* test __get/set
*/
public function testGetSet()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$r->system = true;
$this->assertTrue($r->system);
}
/**
* getMethods() test
*
* Call as method call
*
* Returns: array
*/
public function testGetMethods()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$methods = $r->getMethods();
$this->assertTrue(is_array($methods));
foreach ($methods as $m) {
$this->assertTrue($m instanceof Zend_Server_Reflection_Method);
}
}
/**
* namespace test
*/
public function testGetNamespace()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$this->assertEquals('', $r->getNamespace());
$r->setNamespace('namespace');
$this->assertEquals('namespace', $r->getNamespace());
}
/**
* __wakeup() test
*
* Call as method call
*
* Returns: void
*/
public function test__wakeup()
{
$r = new Zend_Server_Reflection_Class(new ReflectionClass('Zend_Server_Reflection'));
$s = serialize($r);
$u = unserialize($s);
$this->assertTrue($u instanceof Zend_Server_Reflection_Class);
$this->assertEquals('', $u->getNamespace());
$this->assertEquals($r->getName(), $u->getName());
$rMethods = $r->getMethods();
$uMethods = $r->getMethods();
$this->assertEquals(count($rMethods), count($uMethods));
}
}