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

56 lines
1.6 KiB
PHP
Raw Normal View History

<?php
class PHPParser_Tests_codeTest extends PHPUnit_Framework_TestCase
{
/**
* @dataProvider provideTestCode
*/
2011-11-26 17:10:18 +01:00
public function testCode($name, $code, $dump) {
$parser = new PHPParser_Parser;
$dumper = new PHPParser_NodeDumper;
$stmts = $parser->parse(new PHPParser_Lexer($code));
2011-11-26 17:10:18 +01:00
$this->assertEquals(
$this->canonicalize($dump),
$this->canonicalize($dumper->dump($stmts)),
$name
);
}
public function provideTestCode() {
$tests = array();
$it = new RecursiveDirectoryIterator(dirname(__FILE__) . '/../../code');
$it = new RecursiveIteratorIterator($it, RecursiveIteratorIterator::LEAVES_ONLY);
2011-11-27 11:20:35 +01:00
if (version_compare(PHP_VERSION, '5.4.0RC1', '>=')) {
$it = new RegexIterator($it, '~\.test(-5\.4)?$~');
} else {
$it = new RegexIterator($it, '~\.test$~');
}
foreach ($it as $file) {
2011-11-27 11:20:35 +01:00
// read file
$fileContents = file_get_contents($file);
// evaluate @@{expr}@@ expressions
$fileContents = preg_replace('/@@\{(.*?)\}@@/e', '$1', $fileContents);
2011-11-27 11:20:35 +01:00
// parse sections
$tests[] = array_map('trim', explode('-----', $fileContents));
}
return $tests;
}
2011-11-26 17:10:18 +01:00
protected function canonicalize($str) {
// trim from both sides
$str = trim($str);
// normalize EOL to \n
$str = str_replace(array("\r\n", "\r"), "\n", $str);
// trim right side of all lines
return implode("\n", array_map('rtrim', explode("\n", $str)));
}
}