-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
116 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the box project. | ||
* | ||
* (c) Kevin Herrera <[email protected]> | ||
* Théo Fidry <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace KevinGH\Box\Console; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @covers \KevinGH\Box\Console\DisplayNormalizer | ||
* @internal | ||
*/ | ||
final class DisplayNormalizerTest extends TestCase | ||
{ | ||
/** | ||
* @dataProvider blockProvider | ||
*/ | ||
public static function test_it_can_remove_the_line_returns_from_blocks( | ||
string $value, | ||
?string $expected, | ||
): void { | ||
$expected ??= $value; | ||
|
||
$actual = DisplayNormalizer::removeBlockLineReturn($value); | ||
|
||
self::assertSame($expected, $actual); | ||
} | ||
|
||
public static function blockProvider(): iterable | ||
{ | ||
$unchanged = null; | ||
|
||
yield 'no line return' => [ | ||
<<<'EOF' | ||
[ERROR] Error message. | ||
|
||
|
||
EOF, | ||
$unchanged, | ||
]; | ||
|
||
yield 'one line return' => [ | ||
<<<'EOF' | ||
[ERROR] Error message... | ||
...and the other piece here. | ||
|
||
|
||
EOF, | ||
<<<'EOF' | ||
[ERROR] Error message......and the other piece here. | ||
|
||
|
||
EOF, | ||
]; | ||
|
||
yield 'two line return' => [ | ||
<<<'EOF' | ||
[ERROR] Error message... | ||
...and the other piece here. | ||
And one more. | ||
|
||
|
||
EOF, | ||
<<<'EOF' | ||
[ERROR] Error message......and the other piece here. And one more. | ||
|
||
|
||
EOF, | ||
]; | ||
} | ||
} |