public function NodeViewBuilderTest::testPendingRevisionLinks in Drupal 9
Same name and namespace in other branches
- 8 core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php \Drupal\Tests\node\Kernel\NodeViewBuilderTest::testPendingRevisionLinks()
Tests that node links are displayed correctly in pending revisions.
@covers ::buildComponents @covers ::renderLinks @covers ::buildLinks
File
- core/
modules/ node/ tests/ src/ Kernel/ NodeViewBuilderTest.php, line 72
Class
- NodeViewBuilderTest
- Tests the node view builder.
Namespace
Drupal\Tests\node\KernelCode
public function testPendingRevisionLinks() {
$account = User::create([
'name' => $this
->randomString(),
]);
$account
->save();
$title = $this
->randomMachineName();
$node = Node::create([
'type' => 'article',
'title' => $title,
'uid' => $account
->id(),
]);
$node
->save();
/** @var \Drupal\node\NodeInterface $pending_revision */
$pending_revision = $this->storage
->createRevision($node, FALSE);
$draft_title = $title . ' draft';
$pending_revision
->setTitle($draft_title);
$pending_revision
->save();
$build = $this->viewBuilder
->view($node, 'teaser');
$output = (string) $this->renderer
->renderPlain($build);
$this
->assertStringContainsString("title=\"{$title}\"", $output);
$build = $this->viewBuilder
->view($pending_revision, 'teaser');
$output = (string) $this->renderer
->renderPlain($build);
$this
->assertStringContainsString("title=\"{$draft_title}\"", $output);
}