1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\WhitespacesFixerConfig
- */
- final class WhitespacesFixerConfigTest extends TestCase
- {
- /**
- * @param non-empty-string $indent
- * @param non-empty-string $lineEnding
- * @param ?non-empty-string $exceptionRegExp
- *
- * @dataProvider provideFixCases
- */
- public function testFix(string $indent, string $lineEnding, ?string $exceptionRegExp = null): void
- {
- if (null !== $exceptionRegExp) {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessageMatches('%^'.preg_quote($exceptionRegExp, '%').'$%');
- }
- $config = new WhitespacesFixerConfig($indent, $lineEnding);
- self::assertSame($indent, $config->getIndent());
- self::assertSame($lineEnding, $config->getLineEnding());
- }
- /**
- * @return iterable<array{0: non-empty-string, 1: non-empty-string, 2?: non-empty-string}>
- */
- public static function provideFixCases(): iterable
- {
- yield [' ', "\n"];
- yield ["\t", "\n"];
- yield [' ', "\r\n"];
- yield ["\t", "\r\n"];
- yield [' ', 'asd', 'Invalid "lineEnding" param, expected "\n" or "\r\n".'];
- yield ['std', "\n", 'Invalid "indent" param, expected tab or two or four spaces.'];
- }
- }
|