‪TYPO3CMS  10.4
ArrayGlobalMatcherTest.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 ‪ArrayGlobalMatcherTest extends UnitTestCase
30 {
34  public function ‪hitsFromFixtureAreFound()
35  {
36  ‪$parser = (new ParserFactory())->create(ParserFactory::PREFER_PHP7);
37  $fixtureFile = __DIR__ . '/Fixtures/ArrayGlobalMatcherFixture.php';
38  $statements = ‪$parser->parse(file_get_contents($fixtureFile));
39 
40  $traverser = new NodeTraverser();
41  $traverser->addVisitor(new NameResolver());
42 
43  $configuration = [
44  '$GLOBALS[\'TYPO3_DB\']' => [
45  'restFiles' => [
46  'Breaking-80929-TYPO3_DBMovedToExtension.rst',
47  ],
48  ],
49  ];
50  $subject = new ‪ArrayGlobalMatcher($configuration);
51  $traverser->addVisitor($subject);
52  $traverser->traverse($statements);
53  $expectedHitLineNumbers = [
54  28,
55  ];
56  $actualHitLineNumbers = [];
57  foreach ($subject->getMatches() as $hit) {
58  $actualHitLineNumbers[] = $hit['line'];
59  }
60  self::assertEquals($expectedHitLineNumbers, $actualHitLineNumbers);
61  }
62 
67  {
68  return [
69  'one match' => [
70  [
71  '$GLOBALS[\'foo\']' => [
72  'restFiles' => [
73  'Foo-1.rst',
74  'Foo-2.rst',
75  ],
76  ],
77  ],
78  '<?php
79  $bar = $GLOBALS[\'foo\'] = \'bar\';',
80  [
81  0 => [
82  'restFiles' => [
83  'Foo-1.rst',
84  'Foo-2.rst',
85  ],
86  ],
87  ],
88  ],
89  ];
90  }
91 
96  public function ‪matchesReturnsExpectedRestFiles(array $configuration, string $phpCode, array $expected)
97  {
98  ‪$parser = (new ParserFactory())->create(ParserFactory::ONLY_PHP7);
99  $statements = ‪$parser->parse($phpCode);
100 
101  $subject = new ‪ArrayGlobalMatcher($configuration);
102 
103  $traverser = new NodeTraverser();
104  $traverser->addVisitor($subject);
105  $traverser->traverse($statements);
106 
107  $result = $subject->getMatches();
108  self::assertEquals($expected[0]['restFiles'], $result[0]['restFiles']);
109  }
110 }
‪$parser
‪$parser
Definition: annotationChecker.php:108
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\ArrayGlobalMatcherTest\matchesReturnsExpectedRestFiles
‪matchesReturnsExpectedRestFiles(array $configuration, string $phpCode, array $expected)
Definition: ArrayGlobalMatcherTest.php:96
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher
Definition: AbstractCoreMatcherTest.php:18
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\ArrayGlobalMatcherTest
Definition: ArrayGlobalMatcherTest.php:30
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\ArrayGlobalMatcherTest\hitsFromFixtureAreFound
‪hitsFromFixtureAreFound()
Definition: ArrayGlobalMatcherTest.php:34
‪TYPO3\CMS\Install\ExtensionScanner\Php\Matcher\ArrayGlobalMatcher
Definition: ArrayGlobalMatcher.php:31
‪TYPO3\CMS\Install\Tests\Unit\ExtensionScanner\Php\Matcher\ArrayGlobalMatcherTest\matchesReturnsExpectedRestFilesDataProvider
‪array matchesReturnsExpectedRestFilesDataProvider()
Definition: ArrayGlobalMatcherTest.php:66