2012-03-10 17:56:56 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
2014-12-13 13:44:40 +01:00
|
|
|
use PhpParser\Comment;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Name;
|
|
|
|
use PhpParser\Node\Stmt;
|
2017-04-27 18:14:07 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2014-02-06 14:44:16 +01:00
|
|
|
|
2017-04-27 18:14:07 +02:00
|
|
|
class ClassTest extends TestCase
|
2012-03-10 17:56:56 +01:00
|
|
|
{
|
|
|
|
protected function createClassBuilder($class) {
|
2014-02-06 14:44:16 +01:00
|
|
|
return new Class_($class);
|
2012-03-10 17:56:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testExtendsImplements() {
|
|
|
|
$node = $this->createClassBuilder('SomeLogger')
|
|
|
|
->extend('BaseLogger')
|
2014-02-06 14:44:16 +01:00
|
|
|
->implement('Namespaced\Logger', new Name('SomeInterface'))
|
2014-12-19 18:48:21 +01:00
|
|
|
->implement('\Fully\Qualified', 'namespace\NamespaceRelative')
|
2012-03-10 17:56:56 +01:00
|
|
|
->getNode()
|
|
|
|
;
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('SomeLogger', [
|
2014-02-06 14:44:16 +01:00
|
|
|
'extends' => new Name('BaseLogger'),
|
2017-08-13 14:35:03 +02:00
|
|
|
'implements' => [
|
2014-02-06 14:44:16 +01:00
|
|
|
new Name('Namespaced\Logger'),
|
2014-12-19 18:48:21 +01:00
|
|
|
new Name('SomeInterface'),
|
|
|
|
new Name\FullyQualified('Fully\Qualified'),
|
|
|
|
new Name\Relative('NamespaceRelative'),
|
2017-08-13 14:35:03 +02:00
|
|
|
],
|
|
|
|
]),
|
2012-03-10 17:56:56 +01:00
|
|
|
$node
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAbstract() {
|
|
|
|
$node = $this->createClassBuilder('Test')
|
|
|
|
->makeAbstract()
|
|
|
|
->getNode()
|
|
|
|
;
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('Test', [
|
2016-09-16 14:38:31 +02:00
|
|
|
'flags' => Stmt\Class_::MODIFIER_ABSTRACT
|
2017-08-13 14:35:03 +02:00
|
|
|
]),
|
2012-03-10 17:56:56 +01:00
|
|
|
$node
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFinal() {
|
|
|
|
$node = $this->createClassBuilder('Test')
|
|
|
|
->makeFinal()
|
|
|
|
->getNode()
|
|
|
|
;
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('Test', [
|
2016-09-16 14:38:31 +02:00
|
|
|
'flags' => Stmt\Class_::MODIFIER_FINAL
|
2017-08-13 14:35:03 +02:00
|
|
|
]),
|
2012-03-10 17:56:56 +01:00
|
|
|
$node
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testStatementOrder() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$method = new Stmt\ClassMethod('testMethod');
|
|
|
|
$property = new Stmt\Property(
|
|
|
|
Stmt\Class_::MODIFIER_PUBLIC,
|
2017-08-13 14:35:03 +02:00
|
|
|
[new Stmt\PropertyProperty('testProperty')]
|
2012-03-10 17:56:56 +01:00
|
|
|
);
|
2017-08-13 14:35:03 +02:00
|
|
|
$const = new Stmt\ClassConst([
|
2015-03-20 21:47:20 +01:00
|
|
|
new Node\Const_('TEST_CONST', new Node\Scalar\String_('ABC'))
|
2017-08-13 14:35:03 +02:00
|
|
|
]);
|
|
|
|
$use = new Stmt\TraitUse([new Name('SomeTrait')]);
|
2012-03-10 17:56:56 +01:00
|
|
|
|
|
|
|
$node = $this->createClassBuilder('Test')
|
|
|
|
->addStmt($method)
|
|
|
|
->addStmt($property)
|
2017-08-13 14:35:03 +02:00
|
|
|
->addStmts([$const, $use])
|
2012-03-10 17:56:56 +01:00
|
|
|
->getNode()
|
|
|
|
;
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('Test', [
|
|
|
|
'stmts' => [$use, $const, $property, $method]
|
|
|
|
]),
|
2012-03-10 17:56:56 +01:00
|
|
|
$node
|
|
|
|
);
|
|
|
|
}
|
2012-03-10 23:25:26 +01:00
|
|
|
|
2014-12-13 13:44:40 +01:00
|
|
|
public function testDocComment() {
|
|
|
|
$docComment = <<<'DOC'
|
|
|
|
/**
|
|
|
|
* Test
|
|
|
|
*/
|
|
|
|
DOC;
|
|
|
|
$class = $this->createClassBuilder('Test')
|
|
|
|
->setDocComment($docComment)
|
|
|
|
->getNode();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('Test', [], [
|
|
|
|
'comments' => [
|
2014-12-13 13:44:40 +01:00
|
|
|
new Comment\Doc($docComment)
|
2017-08-13 14:35:03 +02:00
|
|
|
]
|
|
|
|
]),
|
2014-12-13 13:44:40 +01:00
|
|
|
$class
|
|
|
|
);
|
|
|
|
|
|
|
|
$class = $this->createClassBuilder('Test')
|
|
|
|
->setDocComment(new Comment\Doc($docComment))
|
|
|
|
->getNode();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-08-13 14:35:03 +02:00
|
|
|
new Stmt\Class_('Test', [], [
|
|
|
|
'comments' => [
|
2014-12-13 13:44:40 +01:00
|
|
|
new Comment\Doc($docComment)
|
2017-08-13 14:35:03 +02:00
|
|
|
]
|
|
|
|
]),
|
2014-12-13 13:44:40 +01:00
|
|
|
$class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-03-10 23:25:26 +01:00
|
|
|
/**
|
2014-02-06 14:44:16 +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')
|
2017-08-13 14:35:03 +02:00
|
|
|
->addStmt(new Stmt\Echo_([]))
|
2012-03-10 23:25:26 +01:00
|
|
|
;
|
|
|
|
}
|
2014-12-13 13:44:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \LogicException
|
|
|
|
* @expectedExceptionMessage Doc comment must be a string or an instance of PhpParser\Comment\Doc
|
|
|
|
*/
|
|
|
|
public function testInvalidDocComment() {
|
|
|
|
$this->createClassBuilder('Test')
|
|
|
|
->setDocComment(new Comment('Test'));
|
|
|
|
}
|
2014-12-19 18:48:21 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \LogicException
|
|
|
|
* @expectedExceptionMessage Name cannot be empty
|
|
|
|
*/
|
2014-12-19 18:50:16 +01:00
|
|
|
public function testEmptyName() {
|
2014-12-19 18:48:21 +01:00
|
|
|
$this->createClassBuilder('Test')
|
|
|
|
->extend('');
|
|
|
|
}
|
2014-12-19 18:50:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \LogicException
|
|
|
|
* @expectedExceptionMessage Name must be a string or an instance of PhpParser\Node\Name
|
|
|
|
*/
|
|
|
|
public function testInvalidName() {
|
|
|
|
$this->createClassBuilder('Test')
|
2017-08-13 14:35:03 +02:00
|
|
|
->extend(['Foo']);
|
2014-12-19 18:50:16 +01:00
|
|
|
}
|
2014-12-19 18:48:21 +01:00
|
|
|
}
|