123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <?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;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Whitespace\IndentationTypeFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Whitespace\IndentationTypeFixer>
- */
- final class IndentationTypeFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{0: string, 1?: string}>
- */
- public static function provideFixCases(): iterable
- {
- yield [
- '<?php
- echo ALPHA;',
- "<?php
- \t\techo ALPHA;",
- ];
- yield [
- '<?php
- echo BRAVO;',
- "<?php
- \t\techo BRAVO;",
- ];
- yield [
- '<?php
- echo CHARLIE;',
- "<?php
- \t\techo CHARLIE;",
- ];
- yield [
- '<?php
- echo DELTA;',
- "<?php
- \t\techo DELTA;",
- ];
- yield [
- "<?php
- echo 'ECHO';",
- "<?php
- \t\techo 'ECHO';",
- ];
- yield [
- '<?php
- echo FOXTROT;',
- "<?php
- \t \techo FOXTROT;",
- ];
- yield [
- '<?php
- echo GOLF;',
- "<?php
- \t \techo GOLF;",
- ];
- yield [
- '<?php
- echo HOTEL;',
- "<?php
- \t \techo HOTEL;",
- ];
- yield [
- '<?php
- echo INDIA;',
- "<?php
- \t echo INDIA;",
- ];
- yield [
- '<?php
- echo JULIET;',
- "<?php
- \t \techo JULIET;",
- ];
- yield [
- '<?php
- echo KILO;',
- "<?php
- \t \techo KILO;",
- ];
- yield [
- '<?php
- echo MIKE;',
- "<?php
- \t \techo MIKE;",
- ];
- yield [
- '<?php
- echo NOVEMBER;',
- "<?php
- \techo NOVEMBER;",
- ];
- yield [
- '<?php
- echo OSCAR;',
- "<?php
- \t \t echo OSCAR;",
- ];
- yield [
- '<?php
- echo PAPA;',
- "<?php
- \t \t echo PAPA;",
- ];
- yield [
- '<?php
- echo QUEBEC;',
- "<?php
- \t \t echo QUEBEC;",
- ];
- yield [
- '<?php $x = "a: \t";',
- ];
- yield [
- "<?php
- \$x = \"
- \tLike
- \ta
- \tdog\";",
- ];
- yield [
- '<?php
- /**
- * Test that tabs in docblocks are converted to spaces.
- *
- * @test
- *
- * @return
- */',
- "<?php
- \t/**
- \t * Test that tabs in docblocks are converted to spaces.
- \t *
- \t * @test
- \t *
- \t * @return
- \t */",
- ];
- yield [
- '<?php
- /**
- * Test that tabs in docblocks are converted to spaces.
- */',
- "<?php
- \t\t/**
- \t\t * Test that tabs in docblocks are converted to spaces.
- \t\t */",
- ];
- yield [
- '<?php
- /*
- | Test that tabs in comments are converted to spaces '."\t".'.
- */',
- "<?php
- \t/*
- \t | Test that tabs in comments are converted to spaces \t.
- \t */",
- ];
- yield [
- "<?php
- /**
- * This variable
- * should not be '\t', really!
- */",
- "<?php
- \t/**
- \t * This variable
- \t * should not be '\t', really!
- \t */",
- ];
- yield [
- "<?php\necho 1;\n?>\r\n\t\$a = ellow;",
- ];
- }
- /**
- * @dataProvider provideMessyWhitespacesCases
- */
- public function testMessyWhitespaces(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<int|string, array{string, string}>
- */
- public static function provideMessyWhitespacesCases(): iterable
- {
- yield [
- "<?php
- \t\techo KILO;",
- '<?php
- echo KILO;',
- ];
- yield [
- "<?php
- \t\t echo QUEBEC;",
- '<?php
- echo QUEBEC;',
- ];
- yield [
- "<?php
- \t/**
- \t * This variable
- \t * should not be '\t', really!
- \t */",
- "<?php
- /**
- * This variable
- * should not be '\t', really!
- */",
- ];
- yield 'mix indentation' => [
- "<?php
- \t\t/*
- \t\t * multiple indentation
- \t\t * shall be handled properly
- \t\t */",
- "<?php
- \t\t/*
- \t\t * multiple indentation
- \t * shall be handled properly
- \t */",
- ];
- yield [
- "<?php
- function myFunction() {
- \t\$foo = 1;
- \t//abc
- \t\$myFunction = 2;
- \t\$middleVar = 1;
- }",
- '<?php
- function myFunction() {
- $foo = 1;
- //abc
- $myFunction = 2;
- $middleVar = 1;
- }',
- ];
- }
- /**
- * @dataProvider provideMessyWhitespacesReversedCases
- */
- public function testMessyWhitespacesReversed(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig(' ', "\r\n"));
- $this->doTest($input, $expected);
- }
- /**
- * @return iterable<array{string, string}>
- */
- public static function provideMessyWhitespacesReversedCases(): iterable
- {
- foreach (self::provideMessyWhitespacesCases() as $name => $case) {
- if ('mix indentation' === $name) {
- continue;
- }
- yield $name => $case;
- }
- }
- /**
- * @dataProvider provideDoubleSpaceIndentCases
- */
- public function testDoubleSpaceIndent(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig(' '));
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{0: string, 1?: string}>
- */
- public static function provideDoubleSpaceIndentCases(): iterable
- {
- yield ['<?php
- if (true) {
- if (true) {
- (new stdClass())->foo(
- "text",
- "text2"
- );
- }
- }'];
- yield [
- "<?php
- if (true) {
- if (true) {
- (new stdClass())->foo(
- 'text',
- 'text2'
- );
- }
- }",
- "<?php
- if (true) {
- if (true) {
- \t(new stdClass())->foo(
- \t 'text',
- \t 'text2'
- \t);
- }
- }",
- ];
- yield [
- '<?php
- /*
- * Foo
- */
- ',
- "<?php
- \t/*
- \t * Foo
- \t */
- ", ];
- }
- }
|