-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
Copy pathConfigResolverTest.php
256 lines (210 loc) · 8.21 KB
/
ConfigResolverTest.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?php
declare(strict_types=1);
namespace Tests\Application;
use NunoMaduro\PhpInsights\Application\Adapters\Laravel\Preset as LaravelPreset;
use NunoMaduro\PhpInsights\Application\Composer;
use NunoMaduro\PhpInsights\Application\ConfigResolver;
use NunoMaduro\PhpInsights\Domain\Exceptions\InvalidConfiguration;
use NunoMaduro\PhpInsights\Domain\LinkFormatter\FileLinkFormatter;
use NunoMaduro\PhpInsights\Domain\LinkFormatter\NullFileLinkFormatter;
use NunoMaduro\PhpInsights\Domain\Metrics\Architecture\Classes;
use PHPUnit\Framework\TestCase;
use SlevomatCodingStandard\Sniffs\Commenting\DocCommentSpacingSniff;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputOption;
use Tests\Fakes\FakeInput;
final class ConfigResolverTest extends TestCase
{
private string $baseFixturePath;
public function setUp(): void
{
parent::setUp();
$this->baseFixturePath = dirname(__DIR__) . DIRECTORY_SEPARATOR .
'Fixtures' . DIRECTORY_SEPARATOR . 'ConfigResolver' . DIRECTORY_SEPARATOR;
}
public function testGuessDirectoryWithoutComposer(): void
{
$preset = ConfigResolver::guess(new Composer([]));
self::assertSame('default', $preset);
}
public function testGuessComposerWithoutRequire(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath("{$this->baseFixturePath}ComposerWithoutRequire" . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('default', $preset);
}
public function testGuessSymfony(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerSymfony' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('symfony', $preset);
}
public function testGuessLaravel(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerLaravel' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('laravel', $preset);
}
public function testGuessYii(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerYii' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('yii', $preset);
}
public function testGuessMagento2(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerMagento2' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('magento2', $preset);
}
public function testGuessDrupal(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerDrupal' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('drupal', $preset);
}
public function testGuessWordPress(): void
{
$preset = ConfigResolver::guess(
Composer::fromPath($this->baseFixturePath . 'ComposerWordPress' . DIRECTORY_SEPARATOR . 'composer.json')
);
self::assertSame('wordpress', $preset);
}
public function testResolvedConfigIsCorrectlyMerged(): void
{
$config = [
'exclude' => [
'my/path',
],
'config' => [
DocCommentSpacingSniff::class => [
'linesCountBetweenDifferentAnnotationsTypes' => 2,
],
],
];
$finalConfig = ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerWithoutRequire'])
);
self::assertContains('my/path', $finalConfig->getExcludes());
// assert we don't replace the first value
self::assertContains('bower_components', $finalConfig->getExcludes());
self::assertArrayHasKey(DocCommentSpacingSniff::class, $finalConfig->getConfig());
// assert we replace the config value
self::assertEquals(
2,
$finalConfig->getConfigForInsight(DocCommentSpacingSniff::class)['linesCountBetweenDifferentAnnotationsTypes']
);
}
public function testUnknownPresetThrowException(): void
{
$this->expectException(InvalidConfiguration::class);
$config = ['preset' => 'UnknownPreset'];
ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerWithoutRequire'])
);
}
public function testUnknownMetricAddedThrowException(): void
{
$this->expectException(InvalidConfiguration::class);
$this->expectExceptionMessage('Unable to use "say" class as metric in section add.');
$config = ['add' => ['say' => 'hello']];
ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerWithoutRequire'])
);
}
public function testKnownMetricAddedWithNonArrayValueThrowException(): void
{
$this->expectException(InvalidConfiguration::class);
$this->expectExceptionMessage('Added insights for metric "' . Classes::class . '" should be in an array.');
$config = ['add' => [Classes::class => 'hello']];
ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerWithoutRequire'])
);
}
public function testAddUnknownClassThrowException(): void
{
$this->expectException(InvalidConfiguration::class);
$this->expectExceptionMessage('Unable to add "hello" insight, class doesn\'t exists.');
$config = ['add' => [Classes::class => ['hello']]];
ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerWithoutRequire'])
);
}
public function testResolveWithoutIde(): void
{
$config = [];
$config = ConfigResolver::resolve($config, FakeInput::paths([$this->baseFixturePath]));
self::assertInstanceOf(NullFileLinkFormatter::class, $config->getFileLinkFormatter());
}
public function testResolveWithIdePattern(): void
{
$config = ['ide' => 'myide://file=%f&line=%l'];
$config = ConfigResolver::resolve($config, FakeInput::paths([$this->baseFixturePath]));
self::assertInstanceOf(FileLinkFormatter::class, $config->getFileLinkFormatter());
self::assertNotInstanceOf(NullFileLinkFormatter::class, $config->getFileLinkFormatter());
}
public function testMergeInputRequirements(): void
{
$input = new ArrayInput(
[
'--not-whitelisted' => 1,
'--min-complexity' => 1,
'--directory=.',
],
new InputDefinition([
new InputArgument('paths'),
new InputOption('min-complexity'),
new InputOption('disable-security-check'),
new InputOption('not-whitelisted'),
])
);
$config = ConfigResolver::resolve([], $input);
self::assertEquals(1, $config->getMinComplexity());
}
public function testOverridePresetByConfig(): void
{
$preset = LaravelPreset::get(new Composer([]));
$removedRulesByPreset = (array) $preset['remove'];
$config = [
'preset' => 'laravel',
'add' => [
Classes::class => [
$removedRulesByPreset[0],
],
],
];
$finalConfig = ConfigResolver::resolve(
$config,
FakeInput::paths([$this->baseFixturePath . 'ComposerLaravel' . DIRECTORY_SEPARATOR . 'composer.json'])
);
self::assertNotContains($removedRulesByPreset[0], $finalConfig->getRemoves());
}
/**
* @return array<string, array<string>>
*/
public static function provideValidIde(): array
{
return [
'Sublime Text' => ['sublime'],
'PhpStorm' => ['phpstorm'],
'Visual studio Code' => ['vscode'],
'Textmate' => ['textmate'],
'Emacs' => ['textmate'],
'Atom' => ['atom'],
'Macvim' => ['macvim'],
];
}
}