1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 12:24:39 +01:00
PHP-Parser/test/PhpParser/NodeTraverserTest.php

148 lines
5.9 KiB
PHP
Raw Normal View History

2011-07-13 23:07:05 +02:00
<?php
namespace PhpParser;
use PhpParser\Node\Scalar\String;
class NodeTraverserTest extends \PHPUnit_Framework_TestCase
2011-07-13 23:07:05 +02:00
{
public function testNonModifying() {
$str1Node = new String('Foo');
$str2Node = new String('Bar');
$echoNode = new Node\Stmt\Echo_(array($str1Node, $str2Node));
$stmts = array($echoNode);
$visitor = $this->getMock('PhpParser\NodeVisitor');
$visitor->expects($this->at(0))->method('beforeTraverse')->with($stmts);
$visitor->expects($this->at(1))->method('enterNode')->with($echoNode);
$visitor->expects($this->at(2))->method('enterNode')->with($str1Node);
$visitor->expects($this->at(3))->method('leaveNode')->with($str1Node);
$visitor->expects($this->at(4))->method('enterNode')->with($str2Node);
$visitor->expects($this->at(5))->method('leaveNode')->with($str2Node);
$visitor->expects($this->at(6))->method('leaveNode')->with($echoNode);
$visitor->expects($this->at(7))->method('afterTraverse')->with($stmts);
2011-08-09 12:42:12 +02:00
$traverser = new NodeTraverser;
2011-08-09 12:42:12 +02:00
$traverser->addVisitor($visitor);
$this->assertEquals($stmts, $traverser->traverse($stmts));
}
2011-07-13 23:07:05 +02:00
public function testModifying() {
$str1Node = new String('Foo');
$str2Node = new String('Bar');
$printNode = new Node\Expr\Print_($str1Node);
// first visitor changes the node, second verifies the change
$visitor1 = $this->getMock('PhpParser\NodeVisitor');
$visitor2 = $this->getMock('PhpParser\NodeVisitor');
// replace empty statements with string1 node
$visitor1->expects($this->at(0))->method('beforeTraverse')->with(array())
->will($this->returnValue(array($str1Node)));
$visitor2->expects($this->at(0))->method('beforeTraverse')->with(array($str1Node));
// replace string1 node with print node
$visitor1->expects($this->at(1))->method('enterNode')->with($str1Node)
->will($this->returnValue($printNode));
$visitor2->expects($this->at(1))->method('enterNode')->with($printNode);
// replace string1 node with string2 node
$visitor1->expects($this->at(2))->method('enterNode')->with($str1Node)
->will($this->returnValue($str2Node));
$visitor2->expects($this->at(2))->method('enterNode')->with($str2Node);
// replace string2 node with string1 node again
$visitor1->expects($this->at(3))->method('leaveNode')->with($str2Node)
->will($this->returnValue($str1Node));
$visitor2->expects($this->at(3))->method('leaveNode')->with($str1Node);
// replace print node with string1 node again
$visitor1->expects($this->at(4))->method('leaveNode')->with($printNode)
->will($this->returnValue($str1Node));
$visitor2->expects($this->at(4))->method('leaveNode')->with($str1Node);
// replace string1 node with empty statements again
$visitor1->expects($this->at(5))->method('afterTraverse')->with(array($str1Node))
->will($this->returnValue(array()));
$visitor2->expects($this->at(5))->method('afterTraverse')->with(array());
2011-07-13 23:07:05 +02:00
$traverser = new NodeTraverser;
$traverser->addVisitor($visitor1);
$traverser->addVisitor($visitor2);
2011-08-09 12:42:12 +02:00
// as all operations are reversed we end where we start
$this->assertEquals(array(), $traverser->traverse(array()));
2011-08-09 12:42:12 +02:00
}
public function testRemove() {
$str1Node = new String('Foo');
$str2Node = new String('Bar');
$visitor = $this->getMock('PhpParser\NodeVisitor');
// remove the string1 node, leave the string2 node
$visitor->expects($this->at(2))->method('leaveNode')->with($str1Node)
->will($this->returnValue(false));
2011-08-09 12:42:12 +02:00
$traverser = new NodeTraverser;
$traverser->addVisitor($visitor);
2011-08-09 12:42:12 +02:00
$this->assertEquals(array($str2Node), $traverser->traverse(array($str1Node, $str2Node)));
2011-07-13 23:07:05 +02:00
}
public function testMerge() {
$strStart = new String('Start');
$strMiddle = new String('End');
$strEnd = new String('Middle');
$strR1 = new String('Replacement 1');
$strR2 = new String('Replacement 2');
2011-08-09 12:42:12 +02:00
$visitor = $this->getMock('PhpParser\NodeVisitor');
2011-07-13 23:07:05 +02:00
// replace strMiddle with strR1 and strR2 by merge
$visitor->expects($this->at(4))->method('leaveNode')->with($strMiddle)
->will($this->returnValue(array($strR1, $strR2)));
2011-08-09 12:42:12 +02:00
$traverser = new NodeTraverser;
$traverser->addVisitor($visitor);
2011-08-09 12:42:12 +02:00
$this->assertEquals(
array($strStart, $strR1, $strR2, $strEnd),
$traverser->traverse(array($strStart, $strMiddle, $strEnd))
);
2011-08-09 12:42:12 +02:00
}
public function testDeepArray() {
$strNode = new String('Foo');
$stmts = array(array(array($strNode)));
2011-08-09 12:42:12 +02:00
$visitor = $this->getMock('PhpParser\NodeVisitor');
$visitor->expects($this->at(1))->method('enterNode')->with($strNode);
$traverser = new NodeTraverser;
$traverser->addVisitor($visitor);
$this->assertEquals($stmts, $traverser->traverse($stmts));
2011-07-13 23:07:05 +02:00
}
2013-09-20 14:39:42 +02:00
public function testRemovingVisitor() {
$visitor1 = $this->getMock('PhpParser\NodeVisitor');
$visitor2 = $this->getMock('PhpParser\NodeVisitor');
$visitor3 = $this->getMock('PhpParser\NodeVisitor');
2013-09-20 14:39:42 +02:00
$traverser = new NodeTraverser;
2013-09-20 14:39:42 +02:00
$traverser->addVisitor($visitor1);
$traverser->addVisitor($visitor2);
$traverser->addVisitor($visitor3);
$preExpected = array($visitor1, $visitor2, $visitor3);
$this->assertAttributeSame($preExpected, 'visitors', $traverser, 'The appropriate visitors have not been added');
$traverser->removeVisitor($visitor2);
$postExpected = array(0 => $visitor1, 2 => $visitor3);
$this->assertAttributeSame($postExpected, 'visitors', $traverser, 'The appropriate visitors are not present after removal');
}
2011-07-13 23:07:05 +02:00
}