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