public function BlockFieldPluginTest::testBlockFieldTitleOverride in Display Suite 8.2
Test block title override.
File
- src/
Tests/ BlockFieldPluginTest.php, line 56
Class
- BlockFieldPluginTest
- Tests for managing custom code, and block fields.
Namespace
Drupal\ds\TestsCode
public function testBlockFieldTitleOverride() {
// Block fields.
$edit = array(
'name' => 'Test block title field',
'id' => 'test_block_title_field',
'entities[node]' => '1',
'block' => 'views_block:ds_testing-block_1',
);
$this
->dsCreateBlockField($edit);
$this
->dsSelectLayout();
// Assert it's found on the Field UI for article.
$this
->drupalGet('admin/structure/types/manage/article/display');
$this
->assertRaw('fields[dynamic_block_field:node-test_block_title_field][weight]', t('Test block field found on node article.'));
$fields = array(
'fields[dynamic_block_field:node-test_block_title_field][region]' => 'left',
'fields[dynamic_block_field:node-test_block_title_field][label]' => 'above',
'fields[body][region]' => 'right',
);
$this
->dsSelectLayout();
$this
->dsConfigureUi($fields);
// Create a node.
$settings = array(
'type' => 'article',
'promote' => 1,
);
$node = $this
->drupalCreateNode($settings);
// Look at node and verify the block title is overridden.
$this
->drupalGet('node/' . $node
->id());
$this
->assertRaw('Test block title field', t('Default field label.'));
// Update testing label.
$edit = array(
'use_block_title' => '1',
);
$this
->drupalPostForm('admin/structure/ds/fields/manage_block/test_block_title_field', $edit, t('Save'));
$this
->assertText(t('The field Test block title field has been saved'), t('Test field label override updated'));
// Look at node and verify the block title is overridden.
$this
->drupalGet('node/' . $node
->id());
$this
->assertRaw('Block title from view', t('Field label from view block display.'));
}