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
|
<?php declare(strict_types=1);
namespace PhpParser;
use PHPUnit\Framework\Attributes\DataProvider;
class CommentTest extends \PHPUnit\Framework\TestCase {
public function testGetters(): void {
$comment = new Comment('/* Some comment */',
1, 10, 2, 1, 27, 2);
$this->assertSame('/* Some comment */', $comment->getText());
$this->assertSame('/* Some comment */', (string) $comment);
$this->assertSame(1, $comment->getStartLine());
$this->assertSame(10, $comment->getStartFilePos());
$this->assertSame(2, $comment->getStartTokenPos());
$this->assertSame(1, $comment->getEndLine());
$this->assertSame(27, $comment->getEndFilePos());
$this->assertSame(2, $comment->getEndTokenPos());
}
#[DataProvider('provideTestReformatting')]
public function testReformatting($commentText, $reformattedText): void {
$comment = new Comment($commentText);
$this->assertSame($reformattedText, $comment->getReformattedText());
}
public static function provideTestReformatting() {
return [
['// Some text', '// Some text'],
['/* Some text */', '/* Some text */'],
[
"/**\n * Some text.\n * Some more text.\n */",
"/**\n * Some text.\n * Some more text.\n */"
],
[
"/**\r\n * Some text.\r\n * Some more text.\r\n */",
"/**\n * Some text.\n * Some more text.\n */"
],
[
"/*\n Some text.\n Some more text.\n */",
"/*\n Some text.\n Some more text.\n*/"
],
[
"/*\r\n Some text.\r\n Some more text.\r\n */",
"/*\n Some text.\n Some more text.\n*/"
],
[
"/* Some text.\n More text.\n Even more text. */",
"/* Some text.\n More text.\n Even more text. */"
],
[
"/* Some text.\r\n More text.\r\n Even more text. */",
"/* Some text.\n More text.\n Even more text. */"
],
[
"/* Some text.\n More text.\n Indented text. */",
"/* Some text.\n More text.\n Indented text. */",
],
// invalid comment -> no reformatting
[
"hello\n world",
"hello\n world",
],
];
}
}
|