forked from microsoft/tolerant-php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParserFrameworkValidationTests.php
72 lines (65 loc) · 3.44 KB
/
ParserFrameworkValidationTests.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
use Microsoft\PhpParser\Token;
use PHPUnit\Framework\TestCase;
class ParserFrameworkValidationTests extends TestCase {
public function frameworkErrorProvider() {
$totalSize = 0;
$frameworks = glob(__DIR__ . "/../validation/frameworks/*", GLOB_ONLYDIR);
$testProviderArray = [];
foreach ($frameworks as $frameworkDir) {
$frameworkName = basename($frameworkDir);
$iterator = new RecursiveDirectoryIterator(__DIR__ . "/../validation/frameworks/" . $frameworkName);
foreach (new RecursiveIteratorIterator($iterator) as $file) {
$pathName = $file->getPathname();
if (preg_match('/\.php$/', $pathName) > 0) {
// Include files ending in ".php", but don't include XML(foo.phpunit.xml) or binary files (foo.php.gz)
$totalSize += $file->getSize();
$testProviderArray[$frameworkName . "::" . $file->getBasename()] = [$pathName, $frameworkName];
}
}
}
if (count($testProviderArray) === 0) {
throw new Exception("ERROR: Validation testsuite frameworks not found - run `git submodule update --init --recursive` to download.");
}
return $testProviderArray;
}
/**
* @dataProvider frameworkErrorProvider
*/
public function testFrameworkErrors($testCaseFile, $frameworkName) {
$fileContents = file_get_contents($testCaseFile);
$parser = new \Microsoft\PhpParser\Parser();
$sourceFile = $parser->parseSourceFile($fileContents);
try {
foreach ($sourceFile->getDescendantNodesAndTokens() as $child) {
if ($child instanceof Token) {
if (get_class($child) === Token::class && $child->kind !== \Microsoft\PhpParser\TokenKind::Unknown) {
// NOTE: This parsing many tokens each from 10000+ files - the PHPUnit assert method calls are slow and
// Without this optimization, the test suite takes 93 seconds.
// With this optimization, the method takes 30 seconds.
continue;
}
$this->assertNotEquals(\Microsoft\PhpParser\TokenKind::Unknown, $child->kind, "input: $testCaseFile\r\nexpected: ");
$this->assertNotInstanceOf(\Microsoft\PhpParser\SkippedToken::class, $child, "input: $testCaseFile\r\nexpected: ");
$this->assertNotInstanceOf(\Microsoft\PhpParser\MissingToken::class, $child, "input: $testCaseFile\r\nexpected: ");
}
}
} catch (Throwable $e) {
$directory = __DIR__ . "/output/$frameworkName/";
if (!file_exists($dir = __DIR__ . "/output")) {
mkdir($dir);
}
if (!file_exists($directory)) {
mkdir($directory);
}
$outFile = $directory . basename($testCaseFile);
file_put_contents($outFile, $fileContents);
throw $e;
}
// echo json_encode($parser->getErrors($sourceFile));
}
}