forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNoUselessConcatOperatorFixerTest.php
More file actions
245 lines (218 loc) · 7.74 KB
/
Copy pathNoUselessConcatOperatorFixerTest.php
File metadata and controls
245 lines (218 loc) · 7.74 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
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
<?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\Operator;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @internal
*
* @covers \PhpCsFixer\Fixer\Operator\NoUselessConcatOperatorFixer
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Operator\NoUselessConcatOperatorFixer>
*
* @phpstan-import-type _AutogeneratedInputConfiguration from \PhpCsFixer\Fixer\Operator\NoUselessConcatOperatorFixer
*/
final class NoUselessConcatOperatorFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, ?string $input = null): void
{
$this->fixer->configure(['juggle_simple_strings' => true]);
$this->doTest($expected, $input);
}
/**
* @return iterable<int|string, array{0: string, 1?: string}>
*/
public static function provideFixCases(): iterable
{
$templateExpected = '<?php $b = %s;';
$templateInput = '<?php $b = %s.%s;';
$cases = [
'single . single' => ["'a'", "'b'", "'ab'"],
'single . double' => ["'a'", '"b"', '"ab"'],
'double . single' => ['"b\n"', "'a'", '"b\na"'],
'double . double' => ['"b"', '"b"', '"bb"'],
'encapsed . encapsed' => ['"{$a}"', '"{$b}"', '"{$a}{$b}"'],
'encapsed space. encapsed' => ['"{$a1} "', '"{$b2}"', '"{$a1} {$b2}"'],
'encapsed . space encapsed' => ['"{$a}"', '" {$b}"', '"{$a} {$b}"'],
'encapsed space. space encapsed' => ['"{$a} "', '" {$b}"', '"{$a} {$b}"'],
'encapsed . single' => ['"{$a}"', "'Z'", '"{$a}Z"'],
'single . encapsed' => ["'Y'", '"{$a}"', '"Y{$a}"'],
'encapsed spaced. single' => ['"{$a} "', "'G'", '"{$a} G"'],
'single . space encapsed' => ["'V'", '" {$a}"', '"V {$a}"'],
'encapsed . double' => ['"{$a} "', '"XX"', '"{$a} XX"'],
'double . encapsed' => ['"XCV"', '"{$a}"', '"XCV{$a}"'],
'encapsed spaced . double' => ['"{$a} V "', '"PO"', '"{$a} V PO"'],
'double . space encapsed' => ['"DSA"', '" XX {$a}"', '"DSA XX {$a}"'],
];
foreach ($cases as $label => $case) {
yield $label => [
\sprintf($templateExpected, $case[2]),
\sprintf($templateInput, $case[0], $case[1]),
];
}
yield 'encapsed followed by simple double quoted 1' => [
'<?php echo "Hello, {$fruit}s.";',
'<?php echo \'Hello,\' . " {$fruit}s.";',
];
yield 'encapsed followed by simple double quoted 2' => [
'<?php echo "Hello.He drank some juice made of {$fruit}s.Bye $user!" /*1*//*2*/ /*3*//*4*/;',
'<?php echo \'Hello.\' /*1*/ . /*2*/ "He drank some juice made of {$fruit}s."/*3*/./*4*/"Bye $user!";',
];
yield [
'<?php
$string = "foobar";
echo "char @ -4 \"[$string[-2]]\"!";
',
'<?php
$string = "foobar";
echo "char @ -4 \"[$string[-2]"."]\"!";
',
];
yield 'double quote concat double quote + comment' => [
'<?php $fi = "lk" /* 1 *//* 2 */ ;',
'<?php $fi = "l" /* 1 */ . /* 2 */ "k";',
];
yield 'empty concat empty' => [
'<?php $aT = "";',
'<?php $aT = ""."";',
];
yield 'multiple fixes' => [
'<?php $f0 = "abc | defg";',
'<?php $f0 = "a"."b"."c | "."d"."e"."f"."g";',
];
yield 'linebreak with indent inside' => [
'<?php
$text1 = "intro: | |"."
line 2 indent";',
'<?php
$text1 = "intro: |"." |"."
line 2 indent"."";',
];
yield 'linebreak with indent inside + comment' => [
'<?php
$text2 = "intro: "." #a
line 2 indent";',
'<?php
$text2 = "intro: "." "." #a
line 2 indent"."";',
];
yield 'do not fix' => [
'<?php
$a0x = $b . "c";
$a1x = "c" . $b;
$b2x = foo() . "X";
$b3x = foo() . \'Y\';
$b4x = "Z" . foo();
$b5x = \'b\' . foo();
$b6x = \'X \n \' . "\n\t";
$b7x = "\n\t" . \'X $a\';
$b7x = "abc". 1;
$b7x = "def". 1.2;
// bin string
$f202 = b"a"."b";
$f201 = b"a".b"b";
$f203 = "a".B"b";
echo b"He drank some juice made of {$fruit}s.".b" Sliced the {$fruit}s.";
',
];
yield 'do not fix if the execution result would be different' => [
'<?php
echo "abc $d" . "[$e]";
echo "abc $d" . "[3]";
echo "abc $d" . \'[3]\';
echo "abc $d" . "->e";
echo "abc $d" . \'->e\';
echo "abc $d" . "->$e";
echo "abc $d" . "?->e";
echo "abc $d" . "?->$e";
echo "abc $d" . \'?->e\';
',
];
yield 'do not fix if variables would be broken' => [
'<?php
echo "abc $d" . "e $f";
echo "abc $d" . "e";
echo "abc $d" . " e"; // contains full-width space
echo "abc $d" . \'e\';
echo "abc $d" . \' e\'; // contains full-width space
echo "abc $d" . "😃"; // with emoji
echo "私の名前は$name" . "です"; // multibyte characters (Japanese)
',
];
yield 'fix if variables would not be broken' => [
'<?php
echo "$a b";
echo "$a bcde";
echo "abc ${d}e";
echo "abc $d-efg";
echo "$a bcdef";
echo "abc ${d}ef";
echo "abc $d-efgh";
echo "abc $d-$e";
',
'<?php
echo "$a" . " b";
echo "$a bc" . "de";
echo "abc ${d}" . "e";
echo "abc $d" . "-efg";
echo "$a bc" . \'def\';
echo "abc ${d}" . \'ef\';
echo "abc $d" . \'-efgh\';
echo "abc $d" . "-$e";
',
];
yield 'single quote concat single quote but with line break after' => [
"<?php \$fh = 'x'. // some comment
'y';",
];
yield 'single quote concat single quote but with line break before' => [
"<?php \$ff = 'x' // some comment
.'y';",
];
yield 'linebreak without indent inside' => [
'<?php
$text3 = "intro:"."
line 2 indent" ?>',
];
yield 'linebreak before concat + comment' => [
"<?php
\$a = 'The first line of some block.'
.'The second line' // some comment about this line
.'3rd line'
;
",
];
yield 'concat without linebreak, followed by one with linebreak' => [
<<<'PHP'
<?php
$foo = 'ab'
. 'c';
PHP,
<<<'PHP'
<?php
$foo = 'a' . 'b'
. 'c';
PHP,
];
}
public function testWithConfigJuggling(): void
{
$input = '<?php $a = "x" . \'y\';';
$expected = '<?php $a = "xy";';
$this->fixer->configure(['juggle_simple_strings' => true]);
$this->doTest($expected, $input);
$this->fixer->configure(['juggle_simple_strings' => false]);
$this->doTest($input);
}
}