public function BlockTest::testBlockVisibility in MongoDB 7
Test block visibility.
File
- mongodb_block_ui/
src/ Tests/ BlockTest.php, line 169
Class
- BlockTest
- Class BlockTest.
Namespace
Drupal\mongodb_block_ui\TestsCode
public function testBlockVisibility() {
$block = array();
// Create a random title for the block.
$title = $this
->randomName(8);
// Create the custom block.
$custom_block = array();
$custom_block['info'] = $this
->randomName(8);
$custom_block['title'] = $title;
$custom_block['body[value]'] = $this
->randomName(32);
$this
->drupalPost('admin/structure/block/add', $custom_block, t('Save block'));
$bid = db_query("SELECT bid FROM {block_custom} WHERE info = :info", array(
':info' => $custom_block['info'],
))
->fetchField();
$block['module'] = 'block';
$block['delta'] = $bid;
$block['title'] = $title;
// Set the block to be hidden on any user path, and to be shown only to
// authenticated users.
$edit = array();
$edit['pages'] = 'user*';
$edit['roles[2]'] = TRUE;
$this
->drupalPost('admin/structure/block/manage/' . $block['module'] . '/' . $block['delta'] . '/configure', $edit, t('Save block'));
// Move block to the first sidebar.
$this
->moveBlockToRegion($block, $this->regions[1]);
$this
->drupalGet('');
$this
->assertText($title, t('Block was displayed on the front page.'));
$this
->drupalGet('user');
$this
->assertNoText($title, t('Block was not displayed according to block visibility rules.'));
// Confirm that the block is not displayed to anonymous users.
$this
->drupalLogout();
$this
->drupalGet('');
$this
->assertNoText($title, t('Block was not displayed to anonymous users.'));
}