-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathFrameworkCodeTest.php
More file actions
235 lines (198 loc) · 7 KB
/
FrameworkCodeTest.php
File metadata and controls
235 lines (198 loc) · 7 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\AutoReview;
use FilesystemIterator;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use ReflectionAttribute;
use ReflectionClass;
use SplFileInfo;
/**
* @internal
*/
#[Group('AutoReview')]
final class FrameworkCodeTest extends TestCase
{
/**
* Cache of source filenames.
*
* @var list<non-empty-string>
*/
private static array $sourceFiles = [];
/**
* Cache of test class names.
*
* @var list<class-string>
*/
private static array $testClasses = [];
/**
* @var list<string>
*/
private static array $recognizedGroupAttributeNames = [
'AutoReview',
'CacheLive',
'DatabaseLive',
'Others',
'SeparateProcess',
];
public function testDeprecationsAreProperlyVersioned(): void
{
$deprecationsWithoutVersion = [];
foreach ($this->getSourceFiles() as $file) {
$lines = file($file, FILE_IGNORE_NEW_LINES);
if ($lines === false) {
continue;
}
foreach ($lines as $number => $line) {
if (! str_contains($line, '@deprecated')) {
continue;
}
if (preg_match('/((?:\/\*)?\*|\/\/)\s+@deprecated\s+(?P<text>.+?)(?:\s*\*\s*)?$/', $line, $matches) === 1) {
$deprecationText = trim($matches['text']);
if (preg_match('/^v?\d+\.\d+/', $deprecationText) !== 1) {
$deprecationsWithoutVersion[] = sprintf('%s:%d', $file, ++$number);
}
}
}
}
$this->assertCount(
0,
$deprecationsWithoutVersion,
sprintf(
"The following lines contain @deprecated annotations without a version number:\n%s",
implode("\n", array_map(static fn (string $location): string => " * {$location}", $deprecationsWithoutVersion)),
),
);
}
/**
* @param class-string $class
*/
#[DataProvider('provideEachTestClassHasCorrectGroupAttributeName')]
public function testEachTestClassHasCorrectGroupAttributeName(string $class): void
{
$reflection = new ReflectionClass($class);
if ($reflection->isAbstract()) {
$this->addToAssertionCount(1);
return;
}
$attributes = $reflection->getAttributes(Group::class);
$this->assertNotEmpty($attributes, sprintf('[%s] Test class is missing a #[Group] attribute.', $class));
$unrecognizedGroups = array_diff(
array_map(static function (ReflectionAttribute $attribute): string {
$groupAttribute = $attribute->newInstance();
self::assertInstanceOf(Group::class, $groupAttribute);
return $groupAttribute->name();
}, $attributes),
self::$recognizedGroupAttributeNames,
);
$this->assertEmpty($unrecognizedGroups, sprintf(
"[%s] Unexpected #[Group] attribute%s:\n%s\nExpected group names to be in \"%s\".",
$class,
count($unrecognizedGroups) > 1 ? 's' : '',
implode("\n", array_map(
static fn (string $group): string => sprintf(' * #[Group(\'%s\')]', $group),
$unrecognizedGroups,
)),
implode(', ', self::$recognizedGroupAttributeNames),
));
}
public static function provideEachTestClassHasCorrectGroupAttributeName(): iterable
{
foreach (self::getTestClasses() as $class) {
yield $class => [$class];
}
}
/**
* @return list<class-string>
*/
private static function getTestClasses(): array
{
if (self::$testClasses !== []) {
return self::$testClasses;
}
helper('filesystem');
$directory = set_realpath(dirname(__DIR__), true);
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator(
$directory,
FilesystemIterator::SKIP_DOTS,
),
RecursiveIteratorIterator::CHILD_FIRST,
);
$testClasses = array_map(
static function (SplFileInfo $file) use ($directory): string {
$relativePath = substr_replace(
$file->getPathname(),
'',
0,
strlen($directory),
);
$relativePath = substr_replace(
$relativePath,
'',
strlen($relativePath) - strlen(DIRECTORY_SEPARATOR . $file->getBasename()),
);
return sprintf(
'CodeIgniter\\%s%s%s',
strtr($relativePath, DIRECTORY_SEPARATOR, '\\'),
$relativePath === '' ? '' : '\\',
$file->getBasename('.' . $file->getExtension()),
);
},
array_filter(
iterator_to_array($iterator, false),
static fn (SplFileInfo $file): bool => $file->isFile()
&& ! str_contains($file->getPathname(), DIRECTORY_SEPARATOR . 'fixtures' . DIRECTORY_SEPARATOR)
&& ! str_contains($file->getPathname(), DIRECTORY_SEPARATOR . 'Views' . DIRECTORY_SEPARATOR),
),
);
$testClasses = array_filter(
$testClasses,
static fn (string $class): bool => is_subclass_of($class, TestCase::class),
);
sort($testClasses);
self::$testClasses = $testClasses;
return $testClasses;
}
/**
* @return list<string>
*/
private function getSourceFiles(): array
{
if (self::$sourceFiles !== []) {
return self::$sourceFiles;
}
helper('filesystem');
$phpFiles = [];
$basePath = dirname(__DIR__, 3);
foreach (['system', 'app', 'tests'] as $dir) {
$directory = set_realpath($basePath . DIRECTORY_SEPARATOR . $dir, true);
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator(
$directory,
FilesystemIterator::SKIP_DOTS,
),
RecursiveIteratorIterator::CHILD_FIRST,
);
/** @var SplFileInfo $file */
foreach ($iterator as $file) {
if ($file->isFile() && str_ends_with($file->getPathname(), '.php')) {
$phpFiles[] = $file->getRealPath();
}
}
}
self::$sourceFiles = $phpFiles;
return $phpFiles;
}
}