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

154 lines
4.3 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
2012-03-10 17:56:56 +01:00
namespace PhpParser\Builder;
use PhpParser\Comment;
use PhpParser\Node;
use PhpParser\Node\Name;
use PhpParser\Node\Stmt;
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'))
->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', [
'extends' => new Name('BaseLogger'),
2017-08-13 14:35:03 +02:00
'implements' => [
new Name('Namespaced\Logger'),
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', [
'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', [
'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() {
$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([
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
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' => [
new Comment\Doc($docComment)
2017-08-13 14:35:03 +02: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' => [
new Comment\Doc($docComment)
2017-08-13 14:35:03 +02:00
]
]),
$class
);
}
2012-03-10 23:25:26 +01:00
public function testInvalidStmtError() {
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('Unexpected node of type "Stmt_Echo"');
2012-03-10 23:25:26 +01:00
$this->createClassBuilder('Test')
2017-08-13 14:35:03 +02:00
->addStmt(new Stmt\Echo_([]))
2012-03-10 23:25:26 +01:00
;
}
public function testInvalidDocComment() {
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('Doc comment must be a string or an instance of PhpParser\Comment\Doc');
$this->createClassBuilder('Test')
->setDocComment(new Comment('Test'));
}
public function testEmptyName() {
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('Name cannot be empty');
$this->createClassBuilder('Test')
->extend('');
}
public function testInvalidName() {
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('Name must be a string or an instance of Node\Name');
$this->createClassBuilder('Test')
2017-08-13 14:35:03 +02:00
->extend(['Foo']);
}
}