| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 | <?php declare(strict_types=1);/* * This file is part of sebastian/diff. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespace SebastianBergmann\Diff\Utils;use PHPUnit\Framework\TestCase;/** * @covers SebastianBergmann\Diff\Utils\UnifiedDiffAssertTrait */final class UnifiedDiffAssertTraitTest extends TestCase{    use UnifiedDiffAssertTrait;    /**     * @param string $diff     *     * @dataProvider provideValidCases     */    public function testValidCases(string $diff): void    {        $this->assertValidUnifiedDiffFormat($diff);    }    public function provideValidCases(): array    {        return [            ['--- Original+++ New@@ -8 +8 @@-Z+U',            ],            ['--- Original+++ New@@ -8 +8 @@-Z+U@@ -15 +15 @@-X+V',            ],            'empty diff. is valid' => [                '',            ],        ];    }    public function testNoLinebreakEnd(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Expected diff to end with a line break, got "C".', '#')));        $this->assertValidUnifiedDiffFormat("A\nB\nC");    }    public function testInvalidStartWithoutHeader(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Expected line to start with '@', '-' or '+', got \"A\n\". Line 1.", '#')));        $this->assertValidUnifiedDiffFormat("A\n");    }    public function testInvalidStartHeader1(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Line 1 indicates a header, so line 2 must start with \"+++\".\nLine 1: \"--- A\n\"\nLine 2: \"+ 1\n\".", '#')));        $this->assertValidUnifiedDiffFormat("--- A\n+ 1\n");    }    public function testInvalidStartHeader2(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Header line does not match expected pattern, got \"+++ file	X\n\". Line 2.", '#')));        $this->assertValidUnifiedDiffFormat("--- A\n+++ file\tX\n");    }    public function testInvalidStartHeader3(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Date of header line does not match expected pattern, got "[invalid date]". Line 1.', '#')));        $this->assertValidUnifiedDiffFormat("--- Original\t[invalid date]+++ New@@ -1,2 +1,2 @@-A+B " . ''        );    }    public function testInvalidStartHeader4(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Expected header line to start with \"+++  \", got \"+++INVALID\n\". Line 2.", '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++INVALID@@ -1,2 +1,2 @@-A+B ' . ''        );    }    public function testInvalidLine1(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Expected line to start with '@', '-' or '+', got \"1\n\". Line 5.", '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@-Z1+U'        );    }    public function testInvalidLine2(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Expected string length of minimal 2, got 1. Line 4.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@'        );    }    public function testHunkInvalidFormat(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote("Hunk header line does not match expected pattern, got \"@@ INVALID -1,1 +1,1 @@\n\". Line 3.", '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ INVALID -1,1 +1,1 @@-Z+U'        );    }    public function testHunkOverlapFrom(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected new hunk; "from" (\'-\') start overlaps previous hunk. Line 6.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,1 +8,1 @@-Z+U@@ -7,1 +9,1 @@-Z+U'        );    }    public function testHunkOverlapTo(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected new hunk; "to" (\'+\') start overlaps previous hunk. Line 6.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,1 +8,1 @@-Z+U@@ -17,1 +7,1 @@-Z+U'        );    }    public function testExpectHunk1(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Expected hunk start (\'@\'), got "+". Line 6.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@-Z+U+O'        );    }    public function testExpectHunk2(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected hunk start (\'@\'). Line 6.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,12 +8,12 @@ ' . ' ' . '@@ -38,12 +48,12 @@'        );    }    public function testMisplacedLineAfterComments1(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected line as 2 "No newline" markers have found, ". Line 8.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@-Z\ No newline at end of file+U\ No newline at end of file+A'        );    }    public function testMisplacedLineAfterComments2(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected line as 2 "No newline" markers have found, ". Line 7.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@+U\ No newline at end of file\ No newline at end of file\ No newline at end of file'        );    }    public function testMisplacedLineAfterComments3(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected line as 2 "No newline" markers have found, ". Line 7.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8 +8 @@+U\ No newline at end of file\ No newline at end of file+A'        );    }    public function testMisplacedComment(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected "\ No newline at end of file", it must be preceded by \'+\' or \'-\' line. Line 1.', '#')));        $this->assertValidUnifiedDiffFormat('\ No newline at end of file'        );    }    public function testUnexpectedDuplicateNoNewLineEOF(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected "\\ No newline at end of file", "\\" was already closed. Line 8.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,12 +8,12 @@ ' . ' ' . '\ No newline at end of file ' . '\ No newline at end of file'        );    }    public function testFromAfterClose(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Not expected from (\'-\'), already closed by "\ No newline at end of file". Line 6.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,12 +8,12 @@-A\ No newline at end of file-A\ No newline at end of file'        );    }    public function testSameAfterFromClose(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Not expected same (\' \'), \'-\' already closed by "\ No newline at end of file". Line 6.', '#')));        $this->assertValidUnifiedDiffFormat(            '--- Original+++ New@@ -8,12 +8,12 @@-A\ No newline at end of file A\ No newline at end of file'        );    }    public function testToAfterClose(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Not expected to (\'+\'), already closed by "\ No newline at end of file". Line 6.', '#')));        $this->assertValidUnifiedDiffFormat(            '--- Original+++ New@@ -8,12 +8,12 @@+A\ No newline at end of file+A\ No newline at end of file'        );    }    public function testSameAfterToClose(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Not expected same (\' \'), \'+\' already closed by "\ No newline at end of file". Line 6.', '#')));        $this->assertValidUnifiedDiffFormat(            '--- Original+++ New@@ -8,12 +8,12 @@+A\ No newline at end of file A\ No newline at end of file'        );    }    public function testUnexpectedEOFFromMissingLines(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected EOF, number of lines in hunk "from" (\'-\')) mismatched. Line 7.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,19 +7,2 @@-A+B ' . ''        );    }    public function testUnexpectedEOFToMissingLines(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected EOF, number of lines in hunk "to" (\'+\')) mismatched. Line 7.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -8,2 +7,3 @@-A+B ' . ''        );    }    public function testUnexpectedEOFBothFromAndToMissingLines(): void    {        $this->expectException(\UnexpectedValueException::class);        $this->expectExceptionMessageRegExp(\sprintf('#^%s$#', \preg_quote('Unexpected EOF, number of lines in hunk "from" (\'-\')) and "to" (\'+\') mismatched. Line 7.', '#')));        $this->assertValidUnifiedDiffFormat('--- Original+++ New@@ -1,12 +1,14 @@-A+B ' . ''        );    }}
 |