123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?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\ArrayNotation;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author Adam Marczuk <adam@marczuk.info>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer>
- *
- * @phpstan-import-type _AutogeneratedInputConfiguration from \PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer
- */
- final class WhitespaceAfterCommaInArrayFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- *
- * @param _AutogeneratedInputConfiguration $configuration
- */
- public function testFix(string $expected, ?string $input = null, ?array $configuration = null): void
- {
- if (null !== $configuration) {
- $this->fixer->configure($configuration);
- }
- $this->doTest($expected, $input);
- }
- public static function provideFixCases(): iterable
- {
- // old style array
- yield [
- '<?php $x = array( 1 , "2", 3);',
- '<?php $x = array( 1 ,"2",3);',
- ];
- // old style array with comments
- yield [
- '<?php $x = array /* comment */ ( 1 , "2", 3);',
- '<?php $x = array /* comment */ ( 1 , "2",3);',
- ];
- // short array
- yield [
- '<?php $x = [ 1 , "2", 3 , $y];',
- '<?php $x = [ 1 , "2",3 ,$y];',
- ];
- // don't change function calls
- yield [
- '<?php $x = [1, "2", getValue(1,2 ,3 ) , $y];',
- '<?php $x = [1, "2",getValue(1,2 ,3 ) ,$y];',
- ];
- // don't change function declarations
- yield [
- '<?php $x = [1, "2", function( $x ,$y) { return $x + $y; }, $y];',
- '<?php $x = [1, "2",function( $x ,$y) { return $x + $y; },$y];',
- ];
- // don't change function declarations but change array inside
- yield [
- '<?php $x = [1, "2", "c" => function( $x ,$y) { return [$x , $y]; }, $y ];',
- '<?php $x = [1, "2","c" => function( $x ,$y) { return [$x ,$y]; },$y ];',
- ];
- // don't change anonymous class implements list but change array inside
- yield [
- '<?php $x = [1, "2", "c" => new class implements Foo ,Bar { const FOO = ["x", "y"]; }, $y ];',
- '<?php $x = [1, "2","c" => new class implements Foo ,Bar { const FOO = ["x","y"]; },$y ];',
- ];
- // associative array (old)
- yield [
- '<?php $x = array("a" => $a , "b" => "b", 3=>$this->foo(), "d" => 30 );',
- '<?php $x = array("a" => $a , "b" => "b",3=>$this->foo(), "d" => 30 );',
- ];
- // associative array (short)
- yield [
- '<?php $x = [ "a" => $a , "b"=>"b", 3 => $this->foo(), "d" =>30];',
- '<?php $x = [ "a" => $a , "b"=>"b",3 => $this->foo(), "d" =>30];',
- ];
- // nested arrays
- yield [
- '<?php $x = ["a" => $a, "b" => "b", 3=> [5, 6, 7] , "d" => array(1, 2, 3 , 4)];',
- '<?php $x = ["a" => $a, "b" => "b",3=> [5,6, 7] , "d" => array(1, 2,3 ,4)];',
- ];
- // multi line array
- yield [
- '<?php $x = ["a" =>$a,
- "b"=> "b",
- 3 => $this->foo(),
- "d" => 30];',
- ];
- // multi line array
- yield [
- '<?php $a = [
- "foo" ,
- "bar",
- ];',
- ];
- // nested multiline
- yield [
- '<?php $a = array(array(
- array(T_OPEN_TAG),
- array(T_VARIABLE, "$x"),
- ), 1, );',
- '<?php $a = array(array(
- array(T_OPEN_TAG),
- array(T_VARIABLE,"$x"),
- ),1,);',
- ];
- yield [
- '<?php $a = array( // comment
- 123,
- );',
- ];
- yield [
- '<?php $x = array(...$foo, ...$bar);',
- '<?php $x = array(...$foo,...$bar);',
- ];
- yield [
- '<?php $x = [...$foo, ...$bar];',
- '<?php $x = [...$foo,...$bar];',
- ];
- yield [
- '<?php [0, 1, 2, 3, 4, 5, 6];',
- '<?php [0,1, 2, 3, 4, 5, 6];',
- ['ensure_single_space' => true],
- ];
- yield [
- '<?php [0, 1, 2, 3, 4, 5];',
- "<?php [0,\t1,\t\t\t2,\t 3, \t4, \t 5];",
- ['ensure_single_space' => true],
- ];
- yield [
- '<?php [
- 0, # less than one
- 1, // one
- 42, /* more than one */
- 1000500100900, /** much more than one */
- ];',
- null,
- ['ensure_single_space' => true],
- ];
- yield [
- '<?php [0, /* comment */ 1, /** PHPDoc */ 2];',
- '<?php [0, /* comment */ 1, /** PHPDoc */ 2];',
- ['ensure_single_space' => true],
- ];
- }
- }
|