View source
<?php
namespace Drupal\block\Tests\Views;
use Drupal\Component\Serialization\Json;
use Drupal\Core\Url;
use Drupal\system\Tests\Cache\AssertPageCacheContextsAndTagsTrait;
use Drupal\views\Entity\View;
use Drupal\views\Views;
use Drupal\views\Tests\ViewTestBase;
use Drupal\views\Tests\ViewTestData;
use Drupal\Core\Template\Attribute;
class DisplayBlockTest extends ViewTestBase {
use AssertPageCacheContextsAndTagsTrait;
public static $modules = array(
'node',
'block_test_views',
'test_page_test',
'contextual',
'views_ui',
);
public static $testViews = array(
'test_view_block',
'test_view_block2',
);
protected function setUp() {
parent::setUp();
ViewTestData::createTestViews(get_class($this), array(
'block_test_views',
));
$this
->enableViewsTestModule();
}
public function testBlockCategory() {
$this
->drupalLogin($this
->drupalCreateUser(array(
'administer views',
'administer blocks',
)));
$edit = array();
$edit['label'] = $this
->randomString();
$edit['id'] = strtolower($this
->randomMachineName());
$edit['show[wizard_key]'] = 'standard:views_test_data';
$edit['description'] = $this
->randomString();
$edit['block[create]'] = TRUE;
$edit['block[style][row_plugin]'] = 'fields';
$this
->drupalPostForm('admin/structure/views/add', $edit, t('Save and edit'));
$pattern = '//tr[.//td[text()=:category] and .//td//a[contains(@href, :href)]]';
$arguments = array(
':href' => \Drupal::Url('block.admin_add', array(
'plugin_id' => 'views_block:' . $edit['id'] . '-block_1',
'theme' => 'classy',
)),
':category' => t('Lists (Views)'),
);
$this
->drupalGet('admin/structure/block');
$this
->clickLinkPartialName('Place block');
$elements = $this
->xpath($pattern, $arguments);
$this
->assertTrue(!empty($elements), 'The test block appears in the category for its base table.');
$this
->drupalPostForm('admin/structure/views/view/' . $edit['id'] . '/edit/block_1', array(), t('Duplicate @display_title', array(
'@display_title' => 'Block',
)));
$this
->assertUrl('admin/structure/views/view/' . $edit['id'] . '/edit/block_2');
$this
->drupalGet('admin/structure/views/view/' . $edit['id'] . '/edit/block_1');
$link = $this
->xpath('//a[@id="views-block-1-block-category" and normalize-space(text())=:category]', $arguments);
$this
->assertTrue(!empty($link));
$this
->clickLink(t('Lists (Views)'));
$category = $this
->randomString();
$this
->drupalPostForm(NULL, array(
'block_category' => $category,
), t('Apply'));
$this
->drupalPostForm(NULL, array(), t('Duplicate @display_title', array(
'@display_title' => 'Block',
)));
$this
->assertUrl('admin/structure/views/view/' . $edit['id'] . '/edit/block_3');
$this
->drupalPostForm(NULL, array(), t('Save'));
$arguments[':category'] = $category;
$this
->drupalGet('admin/structure/block');
$this
->clickLinkPartialName('Place block');
$elements = $this
->xpath($pattern, $arguments);
$this
->assertTrue(!empty($elements), 'The test block appears in the custom category.');
$arguments = array(
':href' => \Drupal::Url('block.admin_add', array(
'plugin_id' => 'views_block:' . $edit['id'] . '-block_2',
'theme' => 'classy',
)),
':category' => t('Lists (Views)'),
);
$elements = $this
->xpath($pattern, $arguments);
$this
->assertTrue(!empty($elements), 'The first duplicated test block remains in the original category.');
$arguments = array(
':href' => \Drupal::Url('block.admin_add', array(
'plugin_id' => 'views_block:' . $edit['id'] . '-block_3',
'theme' => 'classy',
)),
':category' => $category,
);
$elements = $this
->xpath($pattern, $arguments);
$this
->assertTrue(!empty($elements), 'The second duplicated test block appears in the custom category.');
}
public function testDeleteBlockDisplay() {
$block_1 = $this
->drupalPlaceBlock('views_block:test_view_block-block_1', array(
'label' => 'test_view_block-block_1:1',
));
$block_2 = $this
->drupalPlaceBlock('views_block:test_view_block-block_1', array(
'label' => 'test_view_block-block_1:2',
));
$block_3 = $this
->drupalPlaceBlock('views_block:test_view_block2-block_1', array(
'label' => 'test_view_block2-block_1',
));
$block_4 = $this
->drupalPlaceBlock('views_block:test_view_block2-block_2', array(
'label' => 'test_view_block2-block_2',
));
$this
->drupalGet('test-page');
$this
->assertBlockAppears($block_1);
$this
->assertBlockAppears($block_2);
$this
->assertBlockAppears($block_3);
$this
->assertBlockAppears($block_4);
$block_storage = $this->container
->get('entity.manager')
->getStorage('block');
$view = Views::getView('test_view_block');
$view
->initDisplay();
$view->displayHandlers
->remove('block_1');
$view->storage
->save();
$this
->assertFalse($block_storage
->load($block_1
->id()), 'The block for this display was removed.');
$this
->assertFalse($block_storage
->load($block_2
->id()), 'The block for this display was removed.');
$this
->assertTrue($block_storage
->load($block_3
->id()), 'A block from another view was unaffected.');
$this
->assertTrue($block_storage
->load($block_4
->id()), 'A block from another view was unaffected.');
$this
->drupalGet('test-page');
$this
->assertNoBlockAppears($block_1);
$this
->assertNoBlockAppears($block_2);
$this
->assertBlockAppears($block_3);
$this
->assertBlockAppears($block_4);
$view = Views::getView('test_view_block2');
$view
->initDisplay();
$view->displayHandlers
->remove('block_1');
$view->storage
->save();
$this
->assertFalse($block_storage
->load($block_3
->id()), 'The block for this display was removed.');
$this
->assertTrue($block_storage
->load($block_4
->id()), 'A block from another display on the same view was unaffected.');
$this
->drupalGet('test-page');
$this
->assertNoBlockAppears($block_3);
$this
->assertBlockAppears($block_4);
}
public function testViewsBlockForm() {
$this
->drupalLogin($this
->drupalCreateUser(array(
'administer blocks',
)));
$default_theme = $this
->config('system.theme')
->get('default');
$this
->drupalGet('admin/structure/block/add/views_block:test_view_block-block_1/' . $default_theme);
$elements = $this
->xpath('//input[@name="label"]');
$this
->assertTrue(empty($elements), 'The label field is not found for Views blocks.');
$this
->assertNoFieldById('edit-machine-name', 'views_block__test_view_block_1', 'The machine name is hidden on the views block form.');
$this
->drupalPostForm(NULL, array(), t('Save block'));
$storage = $this->container
->get('entity.manager')
->getStorage('block');
$block = $storage
->load('views_block__test_view_block_block_1');
$this
->assertTrue(!empty($block), 'The expected block was loaded.');
for ($i = 2; $i <= 3; $i++) {
$this
->drupalPostForm('admin/structure/block/add/views_block:test_view_block-block_1/' . $default_theme, array(), t('Save block'));
$block = $storage
->load('views_block__test_view_block_block_1_' . $i);
$this
->assertTrue(!empty($block), 'The expected block was loaded.');
}
$this
->drupalGet('admin/structure/block/add/views_block:test_view_block-block_1/' . $default_theme);
$edit = array();
$edit['settings[override][items_per_page]'] = 10;
$this
->drupalPostForm('admin/structure/block/add/views_block:test_view_block-block_1/' . $default_theme, $edit, t('Save block'));
$block = $storage
->load('views_block__test_view_block_block_1_4');
$config = $block
->getPlugin()
->getConfiguration();
$this
->assertEqual(10, $config['items_per_page'], "'Items per page' is properly saved.");
$edit['settings[override][items_per_page]'] = 5;
$this
->drupalPostForm('admin/structure/block/manage/views_block__test_view_block_block_1_4', $edit, t('Save block'));
$block = $storage
->load('views_block__test_view_block_block_1_4');
$config = $block
->getPlugin()
->getConfiguration();
$this
->assertEqual(5, $config['items_per_page'], "'Items per page' is properly saved.");
$edit = array();
$edit['settings[views_label_checkbox]'] = 1;
$edit['settings[views_label]'] = 'Custom title';
$this
->drupalPostForm('admin/structure/block/add/views_block:test_view_block-block_1/' . $default_theme, $edit, t('Save block'));
$block = $storage
->load('views_block__test_view_block_block_1_5');
$config = $block
->getPlugin()
->getConfiguration();
$this
->assertEqual('Custom title', $config['views_label'], "'Label' is properly saved.");
}
public function testBlockRendering() {
$block = $this
->drupalPlaceBlock('views_block:test_view_block-block_1', array(
'label' => 'test_view_block-block_1:1',
'views_label' => 'Custom title',
));
$this
->drupalGet('');
$result = $this
->xpath('//div[contains(@class, "region-sidebar-first")]/div[contains(@class, "block-views")]/h2');
$this
->assertEqual((string) $result[0], 'Custom title');
$plugin = $block
->getPlugin();
$plugin
->setConfigurationValue('views_label', '');
$block
->save();
$this
->drupalGet('');
$result = $this
->xpath('//div[contains(@class, "region-sidebar-first")]/div[contains(@class, "block-views")]/h2');
$this
->assertEqual((string) $result[0], 'test_view_block');
$block
->getPlugin()
->setConfigurationValue('label_display', FALSE);
$block
->save();
$this
->drupalGet('');
$result = $this
->xpath('//div[contains(@class, "region-sidebar-first")]/div[contains(@class, "block-views")]/h2');
$this
->assertTrue(empty($result), 'The title is not visible.');
$this
->assertCacheTags(array_merge($block
->getCacheTags(), [
'block_view',
'config:block_list',
'config:system.site',
'config:views.view.test_view_block',
'rendered',
]));
}
public function testBlockEmptyRendering() {
$url = new Url('test_page_test.test_page');
\Drupal::database()
->truncate('views_test_data')
->execute();
$view = View::load('test_view_block');
$view
->invalidateCaches();
$block = $this
->drupalPlaceBlock('views_block:test_view_block-block_1', array(
'label' => 'test_view_block-block_1:1',
'views_label' => 'Custom title',
));
$this
->drupalGet('');
$this
->assertEqual(1, count($this
->xpath('//div[contains(@class, "block-views-blocktest-view-block-block-1")]')));
$display =& $view
->getDisplay('block_1');
$display['display_options']['block_hide_empty'] = TRUE;
$view
->save();
$this
->drupalGet($url);
$this
->assertEqual(0, count($this
->xpath('//div[contains(@class, "block-views-blocktest-view-block-block-1")]')));
$this
->assertCacheTags(array_merge($block
->getCacheTags(), [
'block_view',
'config:block_list',
'config:views.view.test_view_block',
'rendered',
]));
$this
->assertCacheContexts([
'url.query_args:_wrapper_format',
]);
$display =& $view
->getDisplay('block_1');
$display['display_options']['defaults']['header'] = FALSE;
$display['display_options']['header']['example'] = [
'field' => 'area_text_custom',
'id' => 'area_text_custom',
'table' => 'views',
'plugin_id' => 'text_custom',
'content' => 'test header',
'empty' => TRUE,
];
$view
->save();
$this
->drupalGet($url);
$this
->assertEqual(1, count($this
->xpath('//div[contains(@class, "block-views-blocktest-view-block-block-1")]')));
$this
->assertCacheTags(array_merge($block
->getCacheTags(), [
'block_view',
'config:block_list',
'config:views.view.test_view_block',
'rendered',
]));
$this
->assertCacheContexts([
'url.query_args:_wrapper_format',
]);
$display =& $view
->getDisplay('block_1');
$display['display_options']['defaults']['header'] = FALSE;
$display['display_options']['header']['example'] = [
'field' => 'area_text_custom',
'id' => 'area_text_custom',
'table' => 'views',
'plugin_id' => 'text_custom',
'content' => 'test header',
'empty' => FALSE,
];
$view
->save();
$this
->drupalGet($url);
$this
->assertEqual(0, count($this
->xpath('//div[contains(@class, "block-views-blocktest-view-block-block-1")]')));
$this
->assertCacheTags(array_merge($block
->getCacheTags(), [
'block_view',
'config:block_list',
'config:views.view.test_view_block',
'rendered',
]));
$this
->assertCacheContexts([
'url.query_args:_wrapper_format',
]);
$display =& $view
->getDisplay('block_1');
$display['display_options']['defaults']['empty'] = FALSE;
$display['display_options']['empty']['example'] = [
'field' => 'area_text_custom',
'id' => 'area_text_custom',
'table' => 'views',
'plugin_id' => 'text_custom',
'content' => 'test empty',
];
$view
->save();
$this
->drupalGet($url);
$this
->assertEqual(1, count($this
->xpath('//div[contains(@class, "block-views-blocktest-view-block-block-1")]')));
$this
->assertCacheTags(array_merge($block
->getCacheTags(), [
'block_view',
'config:block_list',
'config:views.view.test_view_block',
'rendered',
]));
$this
->assertCacheContexts([
'url.query_args:_wrapper_format',
]);
}
public function testBlockContextualLinks() {
$this
->drupalLogin($this
->drupalCreateUser(array(
'administer views',
'access contextual links',
'administer blocks',
)));
$block = $this
->drupalPlaceBlock('views_block:test_view_block-block_1');
$cached_block = $this
->drupalPlaceBlock('views_block:test_view_block-block_1');
$this
->drupalGet('test-page');
$id = 'block:block=' . $block
->id() . ':langcode=en|entity.view.edit_form:view=test_view_block:location=block&name=test_view_block&display_id=block_1&langcode=en';
$cached_id = 'block:block=' . $cached_block
->id() . ':langcode=en|entity.view.edit_form:view=test_view_block:location=block&name=test_view_block&display_id=block_1&langcode=en';
$this
->assertRaw('<div' . new Attribute(array(
'data-contextual-id' => $id,
)) . '></div>', format_string('Contextual link placeholder with id @id exists.', array(
'@id' => $id,
)));
$this
->assertRaw('<div' . new Attribute(array(
'data-contextual-id' => $cached_id,
)) . '></div>', format_string('Contextual link placeholder with id @id exists.', array(
'@id' => $cached_id,
)));
$post = array(
'ids[0]' => $id,
'ids[1]' => $cached_id,
);
$response = $this
->drupalPostWithFormat('contextual/render', 'json', $post, array(
'query' => array(
'destination' => 'test-page',
),
));
$this
->assertResponse(200);
$json = Json::decode($response);
$this
->assertIdentical($json[$id], '<ul class="contextual-links"><li class="block-configure"><a href="' . base_path() . 'admin/structure/block/manage/' . $block
->id() . '">Configure block</a></li><li class="entityviewedit-form"><a href="' . base_path() . 'admin/structure/views/view/test_view_block/edit/block_1">Edit view</a></li></ul>');
$this
->assertIdentical($json[$cached_id], '<ul class="contextual-links"><li class="block-configure"><a href="' . base_path() . 'admin/structure/block/manage/' . $cached_block
->id() . '">Configure block</a></li><li class="entityviewedit-form"><a href="' . base_path() . 'admin/structure/views/view/test_view_block/edit/block_1">Edit view</a></li></ul>');
}
}