function NodeFieldTokensTest::testViewsTokenReplacement

Same name and namespace in other branches
  1. 9 core/modules/node/tests/src/Functional/Views/NodeFieldTokensTest.php \Drupal\Tests\node\Functional\Views\NodeFieldTokensTest::testViewsTokenReplacement()
  2. 8.9.x core/modules/node/tests/src/Functional/Views/NodeFieldTokensTest.php \Drupal\Tests\node\Functional\Views\NodeFieldTokensTest::testViewsTokenReplacement()
  3. 11.x core/modules/node/tests/src/Functional/Views/NodeFieldTokensTest.php \Drupal\Tests\node\Functional\Views\NodeFieldTokensTest::testViewsTokenReplacement()

Tests token replacement for Views tokens supplied by the Node module.

File

core/modules/node/tests/src/Functional/Views/NodeFieldTokensTest.php, line 33

Class

NodeFieldTokensTest
Tests replacement of Views tokens supplied by the Node module.

Namespace

Drupal\Tests\node\Functional\Views

Code

public function testViewsTokenReplacement() : void {
  // Create the Article content type with a standard body field.
  /** @var \Drupal\node\NodeTypeInterface $node_type */
  $node_type = NodeType::create([
    'type' => 'article',
    'name' => 'Article',
  ]);
  $node_type->save();
  node_add_body_field($node_type);
  // Create a user and a node.
  $account = $this->createUser();
  $body = $this->randomMachineName(32);
  $summary = $this->randomMachineName(16);
  /** @var \Drupal\node\NodeInterface $node */
  $node = Node::create([
    'type' => 'article',
    'uid' => $account->id(),
    'title' => 'Testing Views tokens',
    'body' => [
      [
        'value' => $body,
        'summary' => $summary,
        'format' => 'plain_text',
      ],
    ],
  ]);
  $node->save();
  $this->drupalGet('test_node_tokens');
  // Body: {{ body }}<br />
  $this->assertSession()
    ->responseContains("Body: <p>{$body}</p>");
  // Raw value: {{ body__value }}<br />
  $this->assertSession()
    ->responseContains("Raw value: {$body}");
  // Raw summary: {{ body__summary }}<br />
  $this->assertSession()
    ->responseContains("Raw summary: {$summary}");
  // Raw format: {{ body__format }}<br />
  $this->assertSession()
    ->responseContains("Raw format: plain_text");
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.