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
|
<?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\Mention;
use League\CommonMark\Extension\Mention\Mention;
use League\CommonMark\Node\Inline\Text;
use PHPUnit\Framework\TestCase;
final class MentionTest extends TestCase
{
public function testConstructorAndGetters(): void
{
$mention = new Mention('test', '@', 'colinodell');
$this->assertSame('test', $mention->getName());
$this->assertSame('@', $mention->getPrefix());
$this->assertSame('colinodell', $mention->getIdentifier());
$this->assertSame('@colinodell', $mention->getLabel());
$this->assertSame('', $mention->getUrl());
$this->assertCount(1, $mention->children());
$this->assertInstanceOf(Text::class, $child = $mention->firstChild());
\assert($child instanceof Text);
$this->assertSame('@colinodell', $child->getLiteral());
}
public function testConstructorAndGettersWithCustomLabel(): void
{
$mention = new Mention('test', '#', '123', 'Issue #123');
$this->assertSame('#', $mention->getPrefix());
$this->assertSame('123', $mention->getIdentifier());
$this->assertSame('Issue #123', $mention->getLabel());
$this->assertSame('', $mention->getUrl());
$this->assertCount(1, $mention->children());
$this->assertInstanceOf(Text::class, $child = $mention->firstChild());
\assert($child instanceof Text);
$this->assertSame('Issue #123', $child->getLiteral());
}
public function testSetUrl(): void
{
$mention = new Mention('test', '@', 'colinodell');
$mention->setUrl('https://www.twitter.com/colinodell');
$this->assertSame('https://www.twitter.com/colinodell', $mention->getUrl());
}
public function testSetLabel(): void
{
$mention = new Mention('test', '@', 'colinodell');
$this->assertSame('@colinodell', $mention->getLabel());
$this->assertCount(1, $mention->children());
$this->assertInstanceOf(Text::class, $child = $mention->firstChild());
\assert($child instanceof Text);
$this->assertSame('@colinodell', $child->getLiteral());
$mention->setLabel('Colin O\'Dell');
$this->assertSame('Colin O\'Dell', $mention->getLabel());
$this->assertCount(1, $mention->children());
$this->assertInstanceOf(Text::class, $child2 = $mention->firstChild());
\assert($child2 instanceof Text);
$this->assertSame('Colin O\'Dell', $child2->getLiteral());
$this->assertSame($child, $child2);
}
public function testLabelFunctionsWhenLabelDetached(): void
{
$mention = new Mention('test', '@', 'colinodell');
$this->assertSame('@colinodell', $mention->getLabel());
$mention->detachChildren();
$this->assertCount(0, $mention->children());
$this->assertNull($mention->getLabel());
$mention->setLabel('Colin O\'Dell');
$this->assertSame('Colin O\'Dell', $mention->getLabel());
$this->assertCount(1, $mention->children());
$this->assertInstanceOf(Text::class, $child = $mention->firstChild());
\assert($child instanceof Text);
$this->assertSame('Colin O\'Dell', $child->getLiteral());
}
}
|