123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?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\NamespaceNotation;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @author Bram Gotink <bram@gotink.me>
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\NamespaceNotation\NoLeadingNamespaceWhitespaceFixer
- *
- * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\NamespaceNotation\NoLeadingNamespaceWhitespaceFixer>
- */
- final class NoLeadingNamespaceWhitespaceFixerTest 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
- {
- $manySpaces = [];
- for ($i = 1; $i <= 100; ++$i) {
- $manySpaces[] = 'namespace Test'.$i.';';
- }
- // with newline
- yield ["<?php\nnamespace Test1;"];
- yield ["<?php\n\nnamespace Test2;"];
- yield [
- "<?php\nnamespace Test3;",
- "<?php\n namespace Test3;",
- ];
- // without newline
- yield ['<?php namespace Test4;'];
- yield [
- '<?php namespace Test5;',
- '<?php namespace Test5;',
- ];
- // multiple namespaces with newline
- yield [
- '<?php
- namespace Test6a;
- namespace Test6b;',
- ];
- yield [
- '<?php
- namespace Test7a;
- /* abc */
- namespace Test7b;',
- '<?php
- namespace Test7a;
- /* abc */namespace Test7b;',
- ];
- yield [
- '<?php
- namespace Test8a;
- namespace Test8b;',
- '<?php
- namespace Test8a;
- namespace Test8b;',
- ];
- yield [
- '<?php
- namespace Test9a;
- class Test {}
- namespace Test9b;',
- '<?php
- namespace Test9a;
- class Test {}
- namespace Test9b;',
- ];
- yield [
- '<?php
- namespace Test10a;
- use Exception;
- namespace Test10b;',
- '<?php
- namespace Test10a;
- use Exception;
- namespace Test10b;',
- ];
- // multiple namespaces without newline
- yield ['<?php namespace Test11a; namespace Test11b;'];
- yield [
- '<?php namespace Test12a; namespace Test12b;',
- '<?php namespace Test12a; namespace Test12b;', ];
- yield [
- '<?php namespace Test13a; namespace Test13b;',
- '<?php namespace Test13a; namespace Test13b;', ];
- // namespaces without spaces in between
- yield [
- '<?php
- namespace Test14a{}
- namespace Test14b{}',
- '<?php
- namespace Test14a{}namespace Test14b{}',
- ];
- yield [
- '<?php
- namespace Test15a;
- namespace Test15b;',
- '<?php
- namespace Test15a;namespace Test15b;',
- ];
- yield [
- '<?php
- '.implode("\n", $manySpaces),
- '<?php
- '.implode('', $manySpaces),
- ];
- yield [
- '<?php
- #
- namespace TestComment;',
- '<?php
- #
- namespace TestComment;',
- ];
- }
- /**
- * @dataProvider provideWithWhitespacesConfigCases
- */
- public function testWithWhitespacesConfig(string $expected, ?string $input = null): void
- {
- $this->fixer->setWhitespacesConfig(new WhitespacesFixerConfig("\t", "\r\n"));
- $this->doTest($expected, $input);
- }
- /**
- * @return iterable<array{string, string}>
- */
- public static function provideWithWhitespacesConfigCases(): iterable
- {
- yield [
- "<?php\r\nnamespace TestW1a{}\r\nnamespace TestW1b{}",
- "<?php\r\n namespace TestW1a{}\r\nnamespace TestW1b{}",
- ];
- yield [
- "<?php\r\nnamespace Test14a{}\r\nnamespace Test14b{}",
- "<?php\r\n namespace Test14a{}namespace Test14b{}",
- ];
- }
- }
|