-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRulesTest.php
134 lines (120 loc) · 3.9 KB
/
RulesTest.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
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
<?php
declare(strict_types=1);
namespace Eventjet\CodingStandard\Test;
use DirectoryIterator;
use PHPUnit\Framework\TestCase;
use function array_merge;
use function basename;
use function exec;
use function implode;
use function in_array;
use function sprintf;
/**
* @phpstan-type Tool 'phpcs' | 'php-cs-fixer'
*/
final class RulesTest extends TestCase
{
/** @var list<array{string, Tool}> */
private const SKIPPED_INVALID = [
// PHP CS Fixer has no rule for string[] vs array<array-key, string>
['wrong-array-typehint-syntax.php', 'php-cs-fixer'],
// PHP CS Fixer's rule seems to only care about qualified symbols. It adds an import for `\strlen()`, but not
// for `strlen()`.
['global-function-not-imported.php', 'php-cs-fixer'],
['global-constant-not-imported.php', 'php-cs-fixer'],
// PHPCS doesn't seem to have a rule for heredoc/nowdoc indentation
['NowdocNotIndented.php', 'phpcs'],
['HeredocNotIndented.php', 'phpcs'],
];
private static function phpCsFixerCommand(string $file): string
{
return sprintf(
'PHP_CS_FIXER_IGNORE_ENV=1 %s/../vendor/bin/php-cs-fixer fix --dry-run --config %s/php-cs-fixer-config.php %s',
__DIR__,
__DIR__,
$file
);
}
/**
* @param Tool $tool
* @dataProvider valid
*/
public function testValid(string $file, string $tool): void
{
$this->assertIsValid($file, $tool);
}
/**
* @return iterable<string, array{string, Tool}>
*/
public static function valid(): iterable
{
foreach (['phpcs', 'php-cs-fixer'] as $tool) {
foreach (self::gatherFiles(__DIR__ . '/fixtures/valid') as $filename => $path) {
yield $tool . ': ' . $filename => [$path[0], $tool];
}
}
}
/**
* @param Tool $tool
* @dataProvider invalid
*/
public function testInvalid(string $file, string $tool): void
{
if (in_array([basename($file), $tool], self::SKIPPED_INVALID)) {
self::markTestSkipped(sprintf('Skipping %s', $file));
}
$this->assertIsInvalid($file, $tool);
}
/**
* @return iterable<string, array{string, Tool}>
*/
public static function invalid(): iterable
{
foreach (['phpcs', 'php-cs-fixer'] as $tool) {
foreach (self::gatherFiles(__DIR__ . '/fixtures/invalid') as $filename => $path) {
yield $tool . ': ' . $filename => [$path[0], $tool];
}
}
}
/**
* @param Tool $tool
*/
private function assertIsValid(string $file, string $tool): void
{
$command = $tool === 'phpcs'
? sprintf('%s/../vendor/bin/phpcs --standard=EventjetStrict %s', __DIR__, $file)
: self::phpCsFixerCommand($file);
exec($command, $output, $return);
$lines = array_merge(
[sprintf('Failed asserting that %s is valid.', $file)],
$output
);
$message = implode("\n", $lines);
self::assertSame(0, $return, $message);
}
/**
* @param Tool $tool
*/
private function assertIsInvalid(string $file, string $tool): void
{
$command = $tool === 'phpcs'
? sprintf('%s/../vendor/bin/phpcs --standard=EventjetStrict %s', __DIR__, $file)
: self::phpCsFixerCommand($file);
exec($command, $output, $return);
self::assertNotSame(0, $return, sprintf('Failed asserting that %s is invalid.', $file));
}
/**
* @return array<string, array{string}>
*/
private static function gatherFiles(string $directory): array
{
$files = [];
foreach (new DirectoryIterator($directory) as $file) {
if (!$file->isFile()) {
continue;
}
$files[$file->getFilename()] = [$file->getPathname()];
}
return $files;
}
}