forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfigTest.php
298 lines (245 loc) · 8.31 KB
/
ConfigTest.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?php
/*
* This file is part of PHP CS Fixer.
*
* (c) Fabien Potencier <fabien@symfony.com>
* Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace PhpCsFixer\Tests;
use PhpCsFixer\Config;
use PhpCsFixer\Console\Application;
use PhpCsFixer\Console\Command\FixCommand;
use PhpCsFixer\Console\ConfigurationResolver;
use PhpCsFixer\Finder;
use PhpCsFixer\Fixer\ArrayNotation\NoWhitespaceBeforeCommaInArrayFixer;
use PhpCsFixer\Fixer\ControlStructure\IncludeFixer;
use PhpCsFixer\Fixer\FixerInterface;
use PhpCsFixer\ToolInfo;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\Finder\Finder as SymfonyFinder;
/**
* @internal
*
* @covers \PhpCsFixer\Config
*/
final class ConfigTest extends TestCase
{
public function testConfigRulesUsingSeparateMethod()
{
$config = new Config();
$configResolver = new ConfigurationResolver(
$config,
[
'rules' => 'cast_spaces,braces',
],
getcwd(),
new ToolInfo()
);
static::assertSame(
[
'cast_spaces' => true,
'braces' => true,
],
$configResolver->getRules()
);
}
public function testConfigRulesUsingJsonMethod()
{
$config = new Config();
$configResolver = new ConfigurationResolver(
$config,
[
'rules' => '{"array_syntax": {"syntax": "short"}, "cast_spaces": true}',
],
getcwd(),
new ToolInfo()
);
static::assertSame(
[
'array_syntax' => [
'syntax' => 'short',
],
'cast_spaces' => true,
],
$configResolver->getRules()
);
}
public function testConfigRulesUsingInvalidJson()
{
$this->expectException(\PhpCsFixer\ConfigurationException\InvalidConfigurationException::class);
$config = new Config();
$configResolver = new ConfigurationResolver(
$config,
[
'rules' => '{blah',
],
getcwd(),
new ToolInfo()
);
$configResolver->getRules();
}
public function testCustomConfig()
{
$customConfigFile = __DIR__.'/Fixtures/.php_cs_custom.php';
$application = new Application();
$application->add(new FixCommand(new ToolInfo()));
$commandTester = new CommandTester($application->find('fix'));
$commandTester->execute(
[
'path' => [$customConfigFile],
'--dry-run' => true,
'--config' => $customConfigFile,
],
[
'decorated' => false,
'verbosity' => OutputInterface::VERBOSITY_VERY_VERBOSE,
]
);
static::assertStringMatchesFormat(
sprintf('%%ALoaded config custom_config_test from "%s".%%A', $customConfigFile),
$commandTester->getDisplay(true)
);
}
public function testThatFinderWorksWithDirSetOnConfig()
{
$config = new Config();
$items = iterator_to_array(
$config->getFinder()->in(__DIR__.'/Fixtures/FinderDirectory'),
false
);
static::assertCount(1, $items);
static::assertSame('somefile.php', $items[0]->getFilename());
}
public function testThatCustomFinderWorks()
{
$finder = new Finder();
$finder->in(__DIR__.'/Fixtures/FinderDirectory');
$config = (new Config())->setFinder($finder);
$items = iterator_to_array(
$config->getFinder(),
false
);
static::assertCount(1, $items);
static::assertSame('somefile.php', $items[0]->getFilename());
}
public function testThatCustomSymfonyFinderWorks()
{
$finder = new SymfonyFinder();
$finder->in(__DIR__.'/Fixtures/FinderDirectory');
$config = (new Config())->setFinder($finder);
$items = iterator_to_array(
$config->getFinder(),
false
);
static::assertCount(1, $items);
static::assertSame('somefile.php', $items[0]->getFilename());
}
public function testThatCacheFileHasDefaultValue()
{
$config = new Config();
static::assertSame('.php_cs.cache', $config->getCacheFile());
}
public function testThatCacheFileCanBeMutated()
{
$cacheFile = 'some-directory/some.file';
$config = new Config();
$config->setCacheFile($cacheFile);
static::assertSame($cacheFile, $config->getCacheFile());
}
public function testThatMutatorHasFluentInterface()
{
$config = new Config();
static::assertSame($config, $config->setCacheFile('some-directory/some.file'));
}
public function testRegisterCustomFixersWithInvalidArgument()
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessageMatches('/^Argument must be an array or a Traversable, got "\w+"\.$/');
$config = new Config();
$config->registerCustomFixers('foo');
}
/**
* @param FixerInterface[] $expected
* @param iterable $suite
*
* @dataProvider provideRegisterCustomFixersCases
*/
public function testRegisterCustomFixers(array $expected, $suite)
{
$config = new Config();
$config->registerCustomFixers($suite);
static::assertSame($expected, $config->getCustomFixers());
}
public function testConfigDefault()
{
$config = new Config();
static::assertSame('.php_cs.cache', $config->getCacheFile());
static::assertSame([], $config->getCustomFixers());
static::assertSame('txt', $config->getFormat());
static::assertFalse($config->getHideProgress());
static::assertSame(' ', $config->getIndent());
static::assertSame("\n", $config->getLineEnding());
static::assertSame('default', $config->getName());
static::assertNull($config->getPhpExecutable());
static::assertFalse($config->getRiskyAllowed());
static::assertSame(['@PSR2' => true], $config->getRules());
static::assertTrue($config->getUsingCache());
$finder = $config->getFinder();
static::assertInstanceOf(Finder::class, $finder);
$config->setFormat('xml');
static::assertSame('xml', $config->getFormat());
$config->setHideProgress(true);
static::assertTrue($config->getHideProgress());
$config->setIndent("\t");
static::assertSame("\t", $config->getIndent());
$finder = new Finder();
$config->setFinder($finder);
static::assertSame($finder, $config->getFinder());
$config->setLineEnding("\r\n");
static::assertSame("\r\n", $config->getLineEnding());
$config->setPhpExecutable(null);
static::assertNull($config->getPhpExecutable());
$config->setUsingCache(false);
static::assertFalse($config->getUsingCache());
}
public function testSetInvalidFinder()
{
$config = new Config();
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessageMatches('/^Argument must be an array or a Traversable, got "integer"\.$/');
$config->setFinder(123);
}
/**
* @return array
*/
public function provideRegisterCustomFixersCases()
{
$fixers = [
new NoWhitespaceBeforeCommaInArrayFixer(),
new IncludeFixer(),
];
return [
[$fixers, $fixers],
[$fixers, new \ArrayIterator($fixers)],
];
}
public function testConfigConstructorWithName()
{
$anonymousConfig = new Config();
$namedConfig = new Config('foo');
static::assertSame($anonymousConfig->getName(), 'default');
static::assertSame($namedConfig->getName(), 'foo');
}
/**
* @group legacy
* @expectedDeprecation PhpCsFixer\Config::create is deprecated since 2.17 and will be removed in 3.0.
*/
public function testDeprecatedConstructor()
{
Config::create();
}
}