php-parser/test/PhpParser/Builder/ClassTest.php

98 lines
2.6 KiB
PHP
Raw Normal View History

2012-03-10 17:56:56 +01:00
<?php
namespace PhpParser\Builder;
use PhpParser\Node;
use PhpParser\Node\Name;
use PhpParser\Node\Stmt;
use PhpParser\NodeVisitorAbstract;
class ClassTest extends \PHPUnit_Framework_TestCase
2012-03-10 17:56:56 +01:00
{
protected function createClassBuilder($class) {
return new Class_($class);
2012-03-10 17:56:56 +01:00
}
public function testExtendsImplements() {
$node = $this->createClassBuilder('SomeLogger')
->extend('BaseLogger')
->implement('Namespaced\Logger', new Name('SomeInterface'))
2012-03-10 17:56:56 +01:00
->getNode()
;
$this->assertEquals(
new Stmt\Class_('SomeLogger', array(
'extends' => new Name('BaseLogger'),
2012-03-10 17:56:56 +01:00
'implements' => array(
new Name('Namespaced\Logger'),
new Name('SomeInterface')
2012-03-10 17:56:56 +01:00
),
)),
$node
);
}
public function testAbstract() {
$node = $this->createClassBuilder('Test')
->makeAbstract()
->getNode()
;
$this->assertEquals(
new Stmt\Class_('Test', array(
'type' => Stmt\Class_::MODIFIER_ABSTRACT
2012-03-10 17:56:56 +01:00
)),
$node
);
}
public function testFinal() {
$node = $this->createClassBuilder('Test')
->makeFinal()
->getNode()
;
$this->assertEquals(
new Stmt\Class_('Test', array(
'type' => Stmt\Class_::MODIFIER_FINAL
2012-03-10 17:56:56 +01:00
)),
$node
);
}
public function testStatementOrder() {
$method = new Stmt\ClassMethod('testMethod');
$property = new Stmt\Property(
Stmt\Class_::MODIFIER_PUBLIC,
array(new Stmt\PropertyProperty('testProperty'))
2012-03-10 17:56:56 +01:00
);
$const = new Stmt\ClassConst(array(
new Node\Const_('TEST_CONST', new Node\Scalar\String('ABC'))
2012-03-10 17:56:56 +01:00
));
$use = new Stmt\TraitUse(array(new Name('SomeTrait')));
2012-03-10 17:56:56 +01:00
$node = $this->createClassBuilder('Test')
->addStmt($method)
->addStmt($property)
->addStmts(array($const, $use))
->getNode()
;
$this->assertEquals(
new Stmt\Class_('Test', array(
2012-03-10 17:56:56 +01:00
'stmts' => array($use, $const, $property, $method)
)),
$node
);
}
2012-03-10 23:25:26 +01:00
/**
* @expectedException \LogicException
2012-03-10 23:25:26 +01:00
* @expectedExceptionMessage Unexpected node of type "Stmt_Echo"
*/
public function testInvalidStmtError() {
$this->createClassBuilder('Test')
->addStmt(new Stmt\Echo_(array()))
2012-03-10 23:25:26 +01:00
;
}
2012-03-10 17:56:56 +01:00
}