1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<?php
declare(strict_types=1);
/*
* This file is part of the league/commonmark package.
*
* (c) Colin O'Dell <colinodell@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\CommonMark\Tests\Unit\Extension\SmartPunct;
use League\CommonMark\Event\DocumentParsedEvent;
use League\CommonMark\Extension\CommonMark\Node\Inline\Strong;
use League\CommonMark\Extension\SmartPunct\Quote;
use League\CommonMark\Extension\SmartPunct\ReplaceUnpairedQuotesListener;
use League\CommonMark\Node\Block\Document;
use League\CommonMark\Node\Block\Paragraph;
use League\CommonMark\Node\Inline\Text;
use League\CommonMark\Node\Node;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
final class ReplaceUnpairedQuotesListenerTest extends TestCase
{
/**
* @param array<int, Node> $paragraphNodes
*/
#[DataProvider('provideTestData')]
public function testWithConsecutiveMerging(array $paragraphNodes, string $expectedText): void
{
$document = new Document();
$document->appendChild($paragraph = new Paragraph());
$paragraph->replaceChildren($paragraphNodes);
(new ReplaceUnpairedQuotesListener())(new DocumentParsedEvent($document));
$this->assertCount(1, $paragraph->children());
$this->assertInstanceOf(Text::class, $paragraph->firstChild());
$this->assertSame($expectedText, $paragraph->firstChild()->getLiteral());
}
/**
* @return iterable<mixed>
*/
public static function provideTestData(): iterable
{
yield [
[
new Text('Don'),
new Quote('\''),
new Text('t you just love CommonMark?'),
],
'Don’t you just love CommonMark?',
];
yield [
[
new Quote('\''),
new Text('tis the season to be jolly'),
],
'’tis the season to be jolly',
];
yield [
[
new Quote('"'),
new Text('A paragraph with no closing quote.'),
],
'“A paragraph with no closing quote.',
];
yield [
[
new Quote('“'),
new Text('A paragraph with no closing quote.'),
],
'“A paragraph with no closing quote.',
];
}
public function testWhenMergingNotPossible(): void
{
$document = new Document();
$document->appendChild($paragraph = new Paragraph());
$strong = new Strong();
$strong->appendChild(new Text('This does not get merged'));
$paragraph->replaceChildren([
new Quote('"'),
$strong,
]);
(new ReplaceUnpairedQuotesListener())(new DocumentParsedEvent($document));
$this->assertCount(2, $paragraph->children());
$this->assertInstanceOf(Text::class, $paragraph->firstChild());
$this->assertSame('“', $paragraph->firstChild()->getLiteral());
$this->assertInstanceOf(Strong::class, $paragraph->lastChild());
}
}
|