forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNoSpacesInsideParenthesisFixerTest.php
More file actions
184 lines (163 loc) · 3.62 KB
/
Copy pathNoSpacesInsideParenthesisFixerTest.php
File metadata and controls
184 lines (163 loc) · 3.62 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
<?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\Whitespace;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @author Marc Aubé
*
* @internal
*
* @covers \PhpCsFixer\Fixer\Whitespace\NoSpacesInsideParenthesisFixer
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Whitespace\NoSpacesInsideParenthesisFixer>
*/
final class NoSpacesInsideParenthesisFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
public function testLeaveNewLinesAlone(): void
{
$expected = <<<'EOF'
<?php
class Foo
{
private function bar()
{
if (foo(
'foo' ,
'bar' ,
[1, 2, 3],
'baz' // a comment just to mix things up
)) {
return 1;
};
}
}
EOF;
$this->doTest($expected);
}
/**
* @return iterable<array{0: string, 1?: string}>
*/
public static function provideFixCases(): iterable
{
yield [
'<?php foo();',
'<?php foo( );',
];
yield [
'<?php
if (true) {
// if body
}',
'<?php
if ( true ) {
// if body
}',
];
yield [
'<?php
if (true) {
// if body
}',
'<?php
if ( true ) {
// if body
}',
];
yield [
'<?php
function foo($bar, $baz)
{
// function body
}',
'<?php
function foo( $bar, $baz )
{
// function body
}',
];
yield [
'<?php
$foo->bar($arg1, $arg2);',
'<?php
$foo->bar( $arg1, $arg2 );',
];
yield [
'<?php
$var = array( 1, 2, 3 );
',
];
yield [
'<?php
$var = [ 1, 2, 3 ];
',
];
// list call with trailing comma - need to leave alone
yield [
'<?php list($path, $mode, ) = foo();',
];
yield [
'<?php list($path, $mode,) = foo();',
];
yield [
'<?php
$a = $b->test( // do not remove space
$e // between `(` and `)`
// and this comment
);',
];
}
/**
* @dataProvider provideFix80Cases
*
* @requires PHP 8.0
*/
public function testFix80(string $expected, string $input): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<array{string, string}>
*/
public static function provideFix80Cases(): iterable
{
yield [
'<?php function foo(mixed $a){}',
'<?php function foo( mixed $a ){}',
];
}
/**
* @dataProvider provideFix81Cases
*
* @requires PHP 8.1
*/
public function testFix81(string $expected, string $input): void
{
$this->doTest($expected, $input);
}
/**
* @return iterable<string, array{string, string}>
*/
public static function provideFix81Cases(): iterable
{
yield 'first callable class' => [
'<?php $a = strlen(...);',
'<?php $a = strlen( ... );',
];
}
}