123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?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\Console\Report\FixReport;
- use PhpCsFixer\Console\Report\FixReport\ReporterInterface;
- use PhpCsFixer\Console\Report\FixReport\TextReporter;
- /**
- * @author Boris Gorbylev <ekho@ekho.name>
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Console\Report\FixReport\TextReporter
- */
- final class TextReporterTest extends AbstractReporterTestCase
- {
- protected static function createNoErrorReport(): string
- {
- return <<<'TEXT'
- TEXT;
- }
- protected static function createSimpleReport(): string
- {
- return str_replace(
- "\n",
- PHP_EOL,
- <<<'TEXT'
- 1) someFile.php
- ---------- begin diff ----------
- --- Original
- +++ New
- @@ -2,7 +2,7 @@
- class Foo
- {
- - public function bar($foo = 1, $bar)
- + public function bar($foo, $bar)
- {
- }
- }
- ----------- end diff -----------
- TEXT
- );
- }
- protected static function createWithDiffReport(): string
- {
- return str_replace(
- "\n",
- PHP_EOL,
- <<<'TEXT'
- 1) someFile.php
- ---------- begin diff ----------
- --- Original
- +++ New
- @@ -2,7 +2,7 @@
- class Foo
- {
- - public function bar($foo = 1, $bar)
- + public function bar($foo, $bar)
- {
- }
- }
- ----------- end diff -----------
- TEXT
- );
- }
- protected static function createWithAppliedFixersReport(): string
- {
- return str_replace(
- "\n",
- PHP_EOL,
- <<<'TEXT'
- 1) someFile.php (some_fixer_name_here_1, some_fixer_name_here_2)
- TEXT
- );
- }
- protected static function createWithTimeAndMemoryReport(): string
- {
- return str_replace(
- "\n",
- PHP_EOL,
- <<<'TEXT'
- 1) someFile.php
- ---------- begin diff ----------
- --- Original
- +++ New
- @@ -2,7 +2,7 @@
- class Foo
- {
- - public function bar($foo = 1, $bar)
- + public function bar($foo, $bar)
- {
- }
- }
- ----------- end diff -----------
- Fixed 1 of 10 files in 1.234 seconds, 2.50 MB memory used
- TEXT
- );
- }
- protected static function createComplexReport(): string
- {
- return str_replace(
- "\n",
- PHP_EOL,
- <<<'TEXT'
- 1) someFile.php (<comment>some_fixer_name_here_1, some_fixer_name_here_2</comment>)
- <comment> ---------- begin diff ----------</comment>
- this text is a diff ;)
- <comment> ----------- end diff -----------</comment>
- 2) anotherFile.php (<comment>another_fixer_name_here</comment>)
- <comment> ---------- begin diff ----------</comment>
- another diff here ;)
- <comment> ----------- end diff -----------</comment>
- Found 2 of 10 files that can be fixed in 1.234 seconds, 2.50 MB memory used
- TEXT
- );
- }
- protected function createReporter(): ReporterInterface
- {
- return new TextReporter();
- }
- protected function getFormat(): string
- {
- return 'txt';
- }
- protected function assertFormat(string $expected, string $input): void
- {
- self::assertSame($expected, $input);
- }
- }
|