php-parser/test/PHPParser/Tests/NodeAbstractTest.php

86 lines
2.7 KiB
PHP
Raw Normal View History

2011-11-27 21:43:27 +01:00
<?php
class PHPParser_Tests_NodeAbstractTest extends PHPUnit_Framework_TestCase
{
public function testConstruct() {
$attributes = array(
'startLine' => 10,
'docComment' => '/** doc comment */',
);
2011-11-27 21:43:27 +01:00
$node = $this->getMockForAbstractClass(
'PHPParser_NodeAbstract',
array(
array(
'subNode' => 'value'
),
$attributes
2011-11-27 21:43:27 +01:00
),
'PHPParser_Node_Dummy'
);
$this->assertEquals('Dummy', $node->getType());
$this->assertEquals(array('subNode'), $node->getSubNodeNames());
2011-11-27 21:43:27 +01:00
$this->assertEquals(10, $node->getLine());
$this->assertEquals('/** doc comment */', $node->getDocComment());
$this->assertEquals('value', $node->subNode);
$this->assertTrue(isset($node->subNode));
$this->assertEquals($attributes, $node->getAttributes());
2011-11-27 21:43:27 +01:00
return $node;
}
/**
* @depends testConstruct
*/
public function testChange(PHPParser_Node $node) {
// change of line
2011-11-27 21:43:27 +01:00
$node->setLine(15);
$this->assertEquals(15, $node->getLine());
// change of doc comment
2011-11-27 21:43:27 +01:00
$node->setDocComment('/** other doc comment */');
$this->assertEquals('/** other doc comment */', $node->getDocComment());
// direct modification
2011-11-27 21:43:27 +01:00
$node->subNode = 'newValue';
$this->assertEquals('newValue', $node->subNode);
// indirect modification
$subNode =& $node->subNode;
$subNode = 'newNewValue';
$this->assertEquals('newNewValue', $node->subNode);
// removal
2011-11-27 21:43:27 +01:00
unset($node->subNode);
$this->assertFalse(isset($node->subNode));
}
public function testAttributes() {
/** @var $node PHPParser_Node */
$node = $this->getMockForAbstractClass('PHPParser_NodeAbstract');
$this->assertEmpty($node->getAttributes());
$node->setAttribute('key', 'value');
$this->assertTrue($node->hasAttribute('key'));
$this->assertEquals('value', $node->getAttribute('key'));
$this->assertFalse($node->hasAttribute('doesNotExist'));
$this->assertNull($node->getAttribute('doesNotExist'));
$this->assertEquals('default', $node->getAttribute('doesNotExist', 'default'));
$node->setAttribute('null', null);
$this->assertTrue($node->hasAttribute('null'));
$this->assertNull($node->getAttribute('null'));
$this->assertNull($node->getAttribute('null', 'default'));
$this->assertEquals(
array(
'key' => 'value',
'null' => null,
),
$node->getAttributes()
);
}
2011-11-27 21:43:27 +01:00
}