1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/test/PHPParser/Tests/codeTest.php

90 lines
2.5 KiB
PHP

<?php
class PHPParser_Tests_codeTest extends PHPUnit_Framework_TestCase
{
/**
* @dataProvider provideTestCode
*/
public function testCode($name, $code, $dump) {
$parser = new PHPParser_Parser;
$dumper = new PHPParser_NodeDumper;
$stmts = $parser->parse(new PHPParser_Lexer($code));
$this->assertEquals(
$this->canonicalize($dump),
$this->canonicalize($dumper->dump($stmts)),
$name
);
}
public function provideTestCode() {
return $this->getTests('test');
}
/**
* @dataProvider provideTestCodeFail
*/
public function testCodeFail($name, $code, $msg) {
$parser = new PHPParser_Parser;
try {
$parser->parse(new PHPParser_Lexer($code));
$this->fail(sprintf('"%s": Expected PHPParser_Error', $name));
} catch (PHPParser_Error $e) {
$this->assertEquals($msg, $e->getMessage(), $name);
}
}
public function provideTestCodeFail() {
$preTests = $this->getTests('test-fail');
$tests = array();
foreach ($preTests as $preTest) {
$name = array_shift($preTest);
foreach (array_chunk($preTest, 2) as $chunk) {
$tests[] = array($name, $chunk[0], $chunk[1]);
}
}
return $tests;
}
protected function getTests($ext) {
$tests = array();
$it = new RecursiveDirectoryIterator(dirname(__FILE__) . '/../../code');
$it = new RecursiveIteratorIterator($it, RecursiveIteratorIterator::LEAVES_ONLY);
$ext = preg_quote($ext, '~');
if (version_compare(PHP_VERSION, '5.4.0RC1', '>=')) {
$it = new RegexIterator($it, '~\.' . $ext . '(-5\.4)?$~');
} else {
$it = new RegexIterator($it, '~\.' . $ext . '$~');
}
foreach ($it as $file) {
// read file
$fileContents = file_get_contents($file);
// evaluate @@{expr}@@ expressions
$fileContents = preg_replace('/@@\{(.*?)\}@@/e', '$1', $fileContents);
// parse sections
$tests[] = array_map('trim', explode('-----', $fileContents));
}
return $tests;
}
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)));
}
}