forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ProtectedToPrivateFixerTest.php
370 lines (312 loc) · 9.22 KB
/
ProtectedToPrivateFixerTest.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<?php
declare(strict_types=1);
/*
* 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\Fixer\ClassNotation;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @author Filippo Tessarotto <zoeslam@gmail.com>
*
* @internal
*
* @covers \PhpCsFixer\Fixer\ClassNotation\ProtectedToPrivateFixer
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\ClassNotation\ProtectedToPrivateFixer>
*/
final class ProtectedToPrivateFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<int|string, array{0: string, 1?: string}>
*/
public static function provideFixCases(): iterable
{
$attributesAndMethodsOriginal = self::getAttributesAndMethods(true);
$attributesAndMethodsFixed = self::getAttributesAndMethods(false);
yield 'final-extends' => [
"<?php final class MyClass extends MyAbstractClass { {$attributesAndMethodsOriginal} }",
];
yield 'normal-extends' => [
"<?php class MyClass extends MyAbstractClass { {$attributesAndMethodsOriginal} }",
];
yield 'abstract' => [
"<?php abstract class MyAbstractClass { {$attributesAndMethodsOriginal} }",
];
yield 'normal' => [
"<?php class MyClass { {$attributesAndMethodsOriginal} }",
];
yield 'trait' => [
"<?php trait MyTrait { {$attributesAndMethodsOriginal} }",
];
yield 'final-with-trait' => [
"<?php final class MyClass { use MyTrait; {$attributesAndMethodsOriginal} }",
];
yield 'multiline-comment' => [
'<?php final class MyClass { /* public protected private */ }',
];
yield 'inline-comment' => [
"<?php final class MyClass { \n // public protected private \n }",
];
yield 'final' => [
"<?php final class MyClass { {$attributesAndMethodsFixed} } class B {use C;}",
"<?php final class MyClass { {$attributesAndMethodsOriginal} } class B {use C;}",
];
yield 'final-implements' => [
"<?php final class MyClass implements MyInterface { {$attributesAndMethodsFixed} }",
"<?php final class MyClass implements MyInterface { {$attributesAndMethodsOriginal} }",
];
yield 'final-with-use-before' => [
"<?php use stdClass; final class MyClass { {$attributesAndMethodsFixed} }",
"<?php use stdClass; final class MyClass { {$attributesAndMethodsOriginal} }",
];
yield 'final-with-use-after' => [
"<?php final class MyClass { {$attributesAndMethodsFixed} } use stdClass;",
"<?php final class MyClass { {$attributesAndMethodsOriginal} } use stdClass;",
];
yield 'multiple-classes' => [
"<?php final class MyFirstClass { {$attributesAndMethodsFixed} } class MySecondClass { {$attributesAndMethodsOriginal} } final class MyThirdClass { {$attributesAndMethodsFixed} } ",
"<?php final class MyFirstClass { {$attributesAndMethodsOriginal} } class MySecondClass { {$attributesAndMethodsOriginal} } final class MyThirdClass { {$attributesAndMethodsOriginal} } ",
];
yield 'minimal-set' => [
'<?php final class MyClass { private $v1; }',
'<?php final class MyClass { protected $v1; }',
];
yield 'anonymous-class-inside' => [
"<?php
final class Foo
{
{$attributesAndMethodsFixed}
private function bar()
{
new class {
{$attributesAndMethodsOriginal}
};
}
}
",
"<?php
final class Foo
{
{$attributesAndMethodsOriginal}
protected function bar()
{
new class {
{$attributesAndMethodsOriginal}
};
}
}
",
];
yield [
'<?php $a = new class{protected function A(){ echo 123; }};',
];
yield [
'<?php final class Foo { private int $foo; }',
'<?php final class Foo { protected int $foo; }',
];
yield [
'<?php final class Foo { private ?string $foo; }',
'<?php final class Foo { protected ?string $foo; }',
];
yield [
'<?php final class Foo { private array $foo; }',
'<?php final class Foo { protected array $foo; }',
];
}
/**
* @dataProvider provideFix80Cases
*
* @requires PHP 8.0
*/
public function testFix80(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<array{string, string}>
*/
public static function provideFix80Cases(): iterable
{
yield [
'<?php
final class Foo2 {
private int|float $a;
}
',
'<?php
final class Foo2 {
protected int|float $a;
}
',
];
}
/**
* @dataProvider provideFix81Cases
*
* @requires PHP 8.1
*/
public function testFix81(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<int|string, array{0: string, 1?: string}>
*/
public static function provideFix81Cases(): iterable
{
yield [
'<?php
final class Foo { private readonly int $d; }
',
'<?php
final class Foo { protected readonly int $d; }
',
];
yield 'protected final const' => [
// '<?php final class Foo { final private const Y = "i"; }', 'Fatal error: Private constant Foo::Y cannot be final as it is not visible to other classes on line 1.
'<?php
final class Foo1 { final protected const Y = "abc"; }
final class Foo2 { protected final const Y = "def"; }
',
];
yield [
'<?php final class Foo2 { private const X = "tty"; }',
'<?php final class Foo2 { protected const X = "tty"; }',
];
yield [
'<?php final class Foo { private Foo1&Bar $foo; }',
'<?php final class Foo { protected Foo1&Bar $foo; }',
];
// https://wiki.php.net/rfc/enumerations
// Methods may be public, private, or protected, although in practice private and protected are equivalent as inheritance is not allowed.
yield 'enum' => [
'<?php
enum Foo: string
{
private const Spades = 123;
case Hearts = "H";
private function test() {
echo 123;
}
}
Foo::Hearts->test();
',
'<?php
enum Foo: string
{
protected const Spades = 123;
case Hearts = "H";
protected function test() {
echo 123;
}
}
Foo::Hearts->test();
',
];
yield 'enum with trait' => [
'<?php
trait NamedDocumentStatus
{
public function getStatusName(): string
{
return $this->getFoo();
}
}
enum DocumentStats {
use NamedDocumentStatus;
case DRAFT;
private function getFoo(): string {
return "X";
}
}
echo DocumentStats::DRAFT->getStatusName();
',
'<?php
trait NamedDocumentStatus
{
public function getStatusName(): string
{
return $this->getFoo();
}
}
enum DocumentStats {
use NamedDocumentStatus;
case DRAFT;
protected function getFoo(): string {
return "X";
}
}
echo DocumentStats::DRAFT->getStatusName();
',
];
}
/**
* @dataProvider provideFix82Cases
*
* @requires PHP 8.2
*/
public function testFix82(string $expected, string $input): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<string, array{string, string}>
*/
public static function provideFix82Cases(): iterable
{
yield 'final readonly' => [
'<?php
final readonly class Foo {
private function noop(): void{}
}',
'<?php
final readonly class Foo {
protected function noop(): void{}
}',
];
yield 'final readonly reversed' => [
'<?php
readonly final class Foo {
private function noop(): void{}
}',
'<?php
readonly final class Foo {
protected function noop(): void{}
}',
];
}
private static function getAttributesAndMethods(bool $original): string
{
$attributesAndMethodsOriginal = '
public $v1;
protected $v2;
private $v3;
public static $v4;
protected static $v5;
private static $v6;
public function f1(){}
protected function f2(){}
private function f3(){}
public static function f4(){}
protected static function f5(){}
private static function f6(){}
';
if ($original) {
return $attributesAndMethodsOriginal;
}
return str_replace('protected', 'private', $attributesAndMethodsOriginal);
}
}