‪TYPO3CMS  10.4
FunctionCallMatcherTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
20 use PhpParser\NodeTraverser;
21 use PhpParser\NodeVisitor\NameResolver;
22 use PhpParser\ParserFactory;
24 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
25 
29 class ‪FunctionCallMatcherTest extends UnitTestCase
30 {
34  public function ‪hitsFromFixtureAreFound()
35  {
36  ‪$parser = (new ParserFactory())->create(ParserFactory::PREFER_PHP7);
37  $fixtureFile = __DIR__ . '/Fixtures/FunctionCallMatcherFixture.php';
38  $statements = ‪$parser->parse(file_get_contents($fixtureFile));
39 
40  $traverser = new NodeTraverser();
41  $traverser->addVisitor(new NameResolver());
42 
43  $configuration = [
44  'debugBegin' => [
45  'numberOfMandatoryArguments' => 0,
46  'maximumNumberOfArguments' => 0,
47  'restFiles' => [
48  'Breaking-37180-RemovedExtDirectDebugAndGLOBALSerror.rst',
49  ],
50  ],
51  ];
52  $subject = new ‪FunctionCallMatcher($configuration);
53  $traverser->addVisitor($subject);
54  $traverser->traverse($statements);
55  $expectedHitLineNumbers = [
56  28,
57  ];
58  $actualHitLineNumbers = [];
59  foreach ($subject->getMatches() as $hit) {
60  $actualHitLineNumbers[] = $hit['line'];
61  }
62  self::assertEquals($expectedHitLineNumbers, $actualHitLineNumbers);
63  }
64 
69  {
70  $phpCode = <<<'EOC'
71 <?php
76 class foo
77 {
78  public function aTest()
79  {
80  // This valid match should not match since the entire file is ignored
81  debugBegin();
82  }
83 }
84 EOC;
85 
86  ‪$parser = (new ParserFactory())->create(ParserFactory::ONLY_PHP7);
87  $statements = ‪$parser->parse($phpCode);
88 
89  $traverser = new NodeTraverser();
90  $configuration = [
91  'debugBegin' => [
92  'numberOfMandatoryArguments' => 0,
93  'maximumNumberOfArguments' => 0,
94  'restFiles' => [
95  'Breaking-37180-RemovedExtDirectDebugAndGLOBALSerror.rst',
96  ],
97  ],
98  ];
99  $subject = new ‪FunctionCallMatcher($configuration);
100  $traverser->addVisitor($subject);
101  $traverser->traverse($statements);
102 
103  self::assertEmpty($subject->getMatches());
104  }
105 }
‪$parser
‪$parser
Definition: annotationChecker.php:108
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher
Definition: AbstractCoreMatcherTest.php:18
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\FunctionCallMatcherTest\matchIsIgnoredIfIgnoreFileIsSet
‪matchIsIgnoredIfIgnoreFileIsSet()
Definition: FunctionCallMatcherTest.php:68
‪TYPO3\CMS\Install\ExtensionScanner\Php\Matcher\FunctionCallMatcher
Definition: FunctionCallMatcher.php:30
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\FunctionCallMatcherTest\hitsFromFixtureAreFound
‪hitsFromFixtureAreFound()
Definition: FunctionCallMatcherTest.php:34
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\FunctionCallMatcherTest
Definition: FunctionCallMatcherTest.php:30