TokenBlockTest.php in Token 8
File
tests/src/Functional/TokenBlockTest.php
View source
<?php
namespace Drupal\Tests\token\Functional;
use Drupal\block_content\Entity\BlockContent;
use Drupal\block_content\Entity\BlockContentType;
class TokenBlockTest extends TokenTestBase {
public static $modules = [
'block',
'node',
'views',
'block_content',
];
public function setUp($modules = []) {
parent::setUp();
$this->admin_user = $this
->drupalCreateUser([
'access content',
'administer blocks',
]);
$this
->drupalLogin($this->admin_user);
}
public function testBlockTitleTokens() {
$label = 'tokenblock';
$bundle = BlockContentType::create([
'id' => $label,
'label' => $label,
'revision' => FALSE,
]);
$bundle
->save();
$block_content = BlockContent::create([
'type' => $label,
'label' => '[current-page:title] block title',
'info' => 'Test token title block',
'body[value]' => 'This is the test token title block.',
]);
$block_content
->save();
$block = $this
->drupalPlaceBlock('block_content:' . $block_content
->uuid(), [
'label' => '[user:name]',
]);
$this
->drupalGet($block
->toUrl());
$this
->assertSession()
->linkExists('Browse available tokens.');
$this
->assertText('This field supports tokens. Browse available tokens.');
$this
->drupalPostForm(NULL, [], 'Save block');
$this
->assertText('Title is using the following invalid tokens: [user:name].');
$settings = $block
->get('settings');
$settings['label'] = '[current-page:title] block title';
$block
->set('settings', $settings);
$block
->save();
$this
->drupalCreateContentType([
'type' => 'page',
]);
$node = $this
->drupalCreateNode([
'title' => "Site's first node",
]);
$this
->drupalGet('node/' . $node
->id());
$this
->assertSession()
->responseContains("Site's first node block title");
}
}