php-parser/test/PhpParser/BuilderFactoryTest.php

166 lines
5.1 KiB
PHP
Raw Normal View History

<?php
namespace PhpParser;
use PhpParser\Node\Arg;
2014-12-19 18:35:19 +01:00
use PhpParser\Node\Expr;
2017-04-24 21:42:59 +02:00
use PhpParser\Node\Expr\BinaryOp\Concat;
2017-04-24 21:28:03 +02:00
use PhpParser\Node\Scalar\String_;
2017-04-27 18:14:07 +02:00
use PHPUnit\Framework\TestCase;
2014-12-19 18:35:19 +01:00
2017-04-27 18:14:07 +02:00
class BuilderFactoryTest extends TestCase
{
/**
* @dataProvider provideTestFactory
*/
public function testFactory($methodName, $className) {
$factory = new BuilderFactory;
$this->assertInstanceOf($className, $factory->$methodName('test'));
}
public function provideTestFactory() {
2017-08-13 14:35:03 +02:00
return [
['namespace', 'PhpParser\Builder\Namespace_'],
['class', 'PhpParser\Builder\Class_'],
['interface', 'PhpParser\Builder\Interface_'],
['trait', 'PhpParser\Builder\Trait_'],
['method', 'PhpParser\Builder\Method'],
['function', 'PhpParser\Builder\Function_'],
['property', 'PhpParser\Builder\Property'],
['param', 'PhpParser\Builder\Param'],
['use', 'PhpParser\Builder\Use_'],
];
}
2014-12-19 18:35:19 +01:00
2017-04-24 21:28:03 +02:00
public function testVal() {
// This method is a wrapper around BuilderHelpers::normalizeValue(),
// which is already tested elsewhere
$factory = new BuilderFactory();
$this->assertEquals(
new String_("foo"),
$factory->val("foo")
);
}
2017-04-24 21:42:59 +02:00
public function testConcat() {
$factory = new BuilderFactory();
$varA = new Expr\Variable('a');
$varB = new Expr\Variable('b');
$varC = new Expr\Variable('c');
$this->assertEquals(
new Concat($varA, $varB),
$factory->concat($varA, $varB)
);
$this->assertEquals(
new Concat(new Concat($varA, $varB), $varC),
$factory->concat($varA, $varB, $varC)
);
$this->assertEquals(
new Concat(new Concat(new String_("a"), $varB), new String_("c")),
$factory->concat("a", $varB, "c")
);
}
/**
* @expectedException \LogicException
* @expectedExceptionMessage Expected at least two expressions
*/
public function testConcatOneError() {
(new BuilderFactory())->concat("a");
}
/**
* @expectedException \LogicException
* @expectedExceptionMessage Expected string or Expr
*/
public function testConcatInvalidExpr() {
(new BuilderFactory())->concat("a", 42);
}
public function testArgs() {
$factory = new BuilderFactory();
$unpack = new Arg(new Expr\Variable('c'), false, true);
$this->assertEquals(
[
new Arg(new Expr\Variable('a')),
new Arg(new String_('b')),
$unpack
],
$factory->args([new Expr\Variable('a'), 'b', $unpack])
);
}
2014-12-19 18:35:19 +01:00
public function testIntegration() {
$factory = new BuilderFactory;
$node = $factory->namespace('Name\Space')
2015-03-10 16:05:55 +01:00
->addStmt($factory->use('Foo\Bar\SomeOtherClass'))
->addStmt($factory->use('Foo\Bar')->as('A'))
2014-12-19 18:35:19 +01:00
->addStmt($factory
->class('SomeClass')
->extend('SomeOtherClass')
->implement('A\Few', '\Interfaces')
2014-12-19 18:35:19 +01:00
->makeAbstract()
->addStmt($factory->method('firstMethod'))
2014-12-19 18:35:19 +01:00
->addStmt($factory->method('someMethod')
->makePublic()
2014-12-19 18:35:19 +01:00
->makeAbstract()
->addParam($factory->param('someParam')->setTypeHint('SomeClass'))
->setDocComment('/**
* This method does something.
*
* @param SomeClass And takes a parameter
*/'))
->addStmt($factory->method('anotherMethod')
->makeProtected()
->addParam($factory->param('someParam')->setDefault('test'))
->addStmt(new Expr\Print_(new Expr\Variable('someParam'))))
->addStmt($factory->property('someProperty')->makeProtected())
->addStmt($factory->property('anotherProperty')
->makePrivate()
2017-08-13 14:35:03 +02:00
->setDefault([1, 2, 3])))
2014-12-19 18:35:19 +01:00
->getNode()
;
$expected = <<<'EOC'
<?php
namespace Name\Space;
2015-03-10 16:05:55 +01:00
use Foo\Bar\SomeOtherClass;
use Foo\Bar as A;
abstract class SomeClass extends SomeOtherClass implements A\Few, \Interfaces
2014-12-19 18:35:19 +01:00
{
protected $someProperty;
private $anotherProperty = array(1, 2, 3);
function firstMethod()
{
}
2014-12-19 18:35:19 +01:00
/**
* This method does something.
*
* @param SomeClass And takes a parameter
*/
public abstract function someMethod(SomeClass $someParam);
protected function anotherMethod($someParam = 'test')
{
print $someParam;
}
}
EOC;
2017-08-13 14:35:03 +02:00
$stmts = [$node];
2014-12-19 18:35:19 +01:00
$prettyPrinter = new PrettyPrinter\Standard();
$generated = $prettyPrinter->prettyPrintFile($stmts);
$this->assertEquals(
str_replace("\r\n", "\n", $expected),
str_replace("\r\n", "\n", $generated)
);
}
}